From 7161f230fc471bb1388278ec78f5a496020eedf6 Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Wed, 29 May 2019 11:06:41 +1200 Subject: [PATCH 01/53] Start migration to node --- .gitattributes | 262 +++++++++++++++++++++++++++++++++++++++++++++++++ .gitignore | 243 ++++++++++++++++++++++++++++++++++++++++++++- .nvmrc | 1 - LICENSE.html | 86 ++++++++-------- Procfile | 1 + composer.json | 1 - package.json | 18 +++- server.js | 68 +++++++++++++ yarn.lock | Bin 0 -> 86057 bytes 9 files changed, 629 insertions(+), 51 deletions(-) create mode 100644 .gitattributes delete mode 100644 .nvmrc create mode 100644 Procfile delete mode 100644 composer.json create mode 100644 server.js create mode 100644 yarn.lock diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..f1c5b48b --- /dev/null +++ b/.gitattributes @@ -0,0 +1,262 @@ +# Common settings that generally should always be used with your language specific settings + +# Auto detect text files and perform LF normalization +# https://www.davidlaing.com/2012/09/19/customise-your-gitattributes-to-become-a-git-ninja/ +* text=auto + +# +# The above will handle all files NOT found below +# + +# Documents +*.bibtex text diff=bibtex +*.doc diff=astextplain +*.DOC diff=astextplain +*.docx diff=astextplain +*.DOCX diff=astextplain +*.dot diff=astextplain +*.DOT diff=astextplain +*.pdf diff=astextplain +*.PDF diff=astextplain +*.rtf diff=astextplain +*.RTF diff=astextplain +*.md text +*.tex text diff=tex +*.adoc text +*.textile text +*.mustache text +*.csv text +*.tab text +*.tsv text +*.sql text + +# Graphics +*.png binary +*.jpg binary +*.jpeg binary +*.gif binary +*.tif binary +*.tiff binary +*.ico binary +# SVG treated as an asset (binary) by default. +*.svg text +# If you want to treat it as binary, +# use the following line instead. +# *.svg binary + +*.eps binary + +# +# Exclude files from exporting +# + +.gitattributes export-ignore +.gitignore export-ignore + +## GITATTRIBUTES FOR WEB PROJECTS +# +# These settings are for any web project. +# +# Details per file setting: +# text These files should be normalized (i.e. convert CRLF to LF). +# binary These files are binary and should be left untouched. +# +# Note that binary is a macro for -text -diff. +###################################################################### + +# Auto detect +## Handle line endings automatically for files detected as +## text and leave all files detected as binary untouched. +## This will handle all files NOT defined below. +* text=auto + +# Source code +*.bash text eol=lf +*.bat text eol=crlf +*.cmd text eol=crlf +*.coffee text +*.css text +*.htm text diff=html +*.html text diff=html +*.inc text +*.ini text +*.js text +*.json text +*.jsx text +*.less text +*.ls text +*.map text -diff +*.od text +*.onlydata text +*.php text diff=php +*.pl text +*.ps1 text eol=crlf +*.py text diff=python +*.rb text diff=ruby +*.sass text +*.scm text +*.scss text diff=css +*.sh text eol=lf +*.sql text +*.styl text +*.tag text +*.ts text +*.tsx text +*.xml text +*.xhtml text diff=html + +# Docker +*.dockerignore text +Dockerfile text + +# Documentation +*.ipynb text +*.markdown text +*.md text +*.mdwn text +*.mdown text +*.mkd text +*.mkdn text +*.mdtxt text +*.mdtext text +*.txt text +AUTHORS text +CHANGELOG text +CHANGES text +CONTRIBUTING text +COPYING text +copyright text +*COPYRIGHT* text +INSTALL text +license text +LICENSE text +NEWS text +readme text +*README* text +TODO text + +# Templates +*.dot text +*.ejs text +*.haml text +*.handlebars text +*.hbs text +*.hbt text +*.jade text +*.latte text +*.mustache text +*.njk text +*.phtml text +*.tmpl text +*.tpl text +*.twig text +*.vue text + +# Linters +.csslintrc text +.eslintrc text +.htmlhintrc text +.jscsrc text +.jshintrc text +.jshintignore text +.stylelintrc text + +# Configs +*.bowerrc text +*.cnf text +*.conf text +*.config text +.babelrc text +.browserslistrc text +.editorconfig text +.env text +.gitattributes text +.gitconfig text +.htaccess text +*.lock text -diff +package-lock.json text -diff +*.npmignore text +*.yaml text +*.yml text +browserslist text +Makefile text +makefile text + +# Heroku +Procfile text +.slugignore text + +# Graphics +*.ai binary +*.bmp binary +*.eps binary +*.gif binary +*.gifv binary +*.ico binary +*.jng binary +*.jp2 binary +*.jpg binary +*.jpeg binary +*.jpx binary +*.jxr binary +*.pdf binary +*.png binary +*.psb binary +*.psd binary +# SVG treated as an asset (binary) by default. +*.svg text +# If you want to treat it as binary, +# use the following line instead. +# *.svg binary +*.svgz binary +*.tif binary +*.tiff binary +*.wbmp binary +*.webp binary + +# Audio +*.kar binary +*.m4a binary +*.mid binary +*.midi binary +*.mp3 binary +*.ogg binary +*.ra binary + +# Video +*.3gpp binary +*.3gp binary +*.as binary +*.asf binary +*.asx binary +*.fla binary +*.flv binary +*.m4v binary +*.mng binary +*.mov binary +*.mp4 binary +*.mpeg binary +*.mpg binary +*.ogv binary +*.swc binary +*.swf binary +*.webm binary + +# Archives +*.7z binary +*.gz binary +*.jar binary +*.rar binary +*.tar binary +*.zip binary + +# Fonts +*.ttf binary +*.eot binary +*.otf binary +*.woff binary +*.woff2 binary + +# Executables +*.exe binary +*.pyc binary diff --git a/.gitignore b/.gitignore index 4e9ba1e5..262e3b65 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,242 @@ -.DS_Store -.idea ./config.json + +# Created by https://www.gitignore.io/api/node,linux,macos,windows,intellij +# Edit at https://www.gitignore.io/?templates=node,linux,macos,windows,intellij + +### Intellij ### +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 + +# User-specific stuff +.idea/**/workspace.xml +.idea/**/tasks.xml +.idea/**/usage.statistics.xml +.idea/**/dictionaries +.idea/**/shelf + +# Generated files +.idea/**/contentModel.xml + +# Sensitive or high-churn files +.idea/**/dataSources/ +.idea/**/dataSources.ids +.idea/**/dataSources.local.xml +.idea/**/sqlDataSources.xml +.idea/**/dynamic.xml +.idea/**/uiDesigner.xml +.idea/**/dbnavigator.xml + +# Gradle +.idea/**/gradle.xml +.idea/**/libraries + +# Gradle and Maven with auto-import +# When using Gradle or Maven with auto-import, you should exclude module files, +# since they will be recreated, and may cause churn. Uncomment if using +# auto-import. +# .idea/modules.xml +# .idea/*.iml +# .idea/modules + +# CMake +cmake-build-*/ + +# Mongo Explorer plugin +.idea/**/mongoSettings.xml + +# File-based project format +*.iws + +# IntelliJ +out/ + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Cursive Clojure plugin +.idea/replstate.xml + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties + +# Editor-based Rest Client +.idea/httpRequests + +# Android studio 3.1+ serialized cache file +.idea/caches/build_file_checksums.ser + +# JetBrains templates +**___jb_tmp___ + +### Intellij Patch ### +# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 + +# *.iml +# modules.xml +# .idea/misc.xml +# *.ipr + +# Sonarlint plugin +.idea/sonarlint + +### Linux ### +*~ + +# temporary files which can be created if a process still has a handle open of a deleted file +.fuse_hidden* + +# KDE directory preferences +.directory + +# Linux trash folder which might appear on any partition or disk +.Trash-* + +# .nfs files are created when an open file is removed but is still being accessed +.nfs* + +### macOS ### +# General +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +### Node ### +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* + +# Diagnostic reports (https://nodejs.org/api/report.html) +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# TypeScript v1 declaration files +typings/ + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variables file +.env +.env.test + +# parcel-bundler cache (https://parceljs.org/) +.cache + +# next.js build output +.next + +# nuxt.js build output +.nuxt + +# vuepress build output +.vuepress/dist + +# Serverless directories +.serverless/ + +# FuseBox cache +.fusebox/ + +# DynamoDB Local files +.dynamodb/ + +### Windows ### +# Windows thumbnail cache files +Thumbs.db +ehthumbs.db +ehthumbs_vista.db + +# Dump file +*.stackdump + +# Folder config file +[Dd]esktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Windows Installer files +*.cab +*.msi +*.msix +*.msm +*.msp + +# Windows shortcuts +*.lnk + +# End of https://www.gitignore.io/api/node,linux,macos,windows,intellij diff --git a/.nvmrc b/.nvmrc deleted file mode 100644 index d346e2ab..00000000 --- a/.nvmrc +++ /dev/null @@ -1 +0,0 @@ -5.3 diff --git a/LICENSE.html b/LICENSE.html index a6674cf2..53b9a84a 100644 --- a/LICENSE.html +++ b/LICENSE.html @@ -1,28 +1,29 @@ + -MIT License - - - - - - + + + + -
-{{gravatar}} -

The MIT License (MIT)

-

Copyright © {{info}}

+
+ {{{gravatar}}} +

The MIT License (MIT)

+

Copyright © {{info}}

-

Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the “Software”), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions:

+

Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the “Software”), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions:

-

The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software.

+

The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software.

-

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE.

-
- - +

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE.

+
+ + diff --git a/Procfile b/Procfile new file mode 100644 index 00000000..489b2700 --- /dev/null +++ b/Procfile @@ -0,0 +1 @@ +web: node server.js diff --git a/composer.json b/composer.json deleted file mode 100644 index 0967ef42..00000000 --- a/composer.json +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/package.json b/package.json index c49153a6..c009f664 100644 --- a/package.json +++ b/package.json @@ -8,6 +8,8 @@ "url": "git@github.com:remy/mit-license.git" }, "scripts": { + "start": "node server.js", + "dev": "nodemon server.js", "test": "node test.js" }, "bugs": { @@ -15,7 +17,19 @@ }, "license": "SEE LICENSE IN LICENSE", "dependencies": { - "nconf": "^0.8.4", - "request": "^2.72.0" + "compression": "^1.7.4", + "dayjs": "^1.8.14", + "express": "^4.17.1", + "express-res-html": "^0.2.3", + "md5": "^2.2.1", + "mustache": "^3.0.1", + "mustache-express": "^1.2.8" + }, + "devDependencies": { + "@types/bluebird": "^3.5.27", + "@types/compression": "^0.0.36", + "@types/express": "^4.16.1", + "@types/md5": "^2.1.33", + "nodemon": "^1.19.1" } } diff --git a/server.js b/server.js new file mode 100644 index 00000000..237a85e8 --- /dev/null +++ b/server.js @@ -0,0 +1,68 @@ +const express = require('express') +const path = require('path') +const fs = require('fs') +const PORT = process.env.PORT || 80 +const mustache = require('mustache') +const compression = require('compression') +const dayjs = require('dayjs') +const md5 = require('md5') + +// Read License file +const template = fs.readFileSync('LICENSE.html', "utf8") +mustache.parse(template); + +// Prepare application +const app = express() +app.use(compression()) +app.use(require('express-res-html')) + +// Setup useful variables +const year = dayjs().year() + +// Any theme request +app.get('/themes/:file', (req, res) => res.sendFile(path.join(__dirname, 'themes', req.params.file))) + +// Any user request +app.get('/users/:file', (req, res) => res.sendFile(path.join(__dirname, 'users', req.params.file))) + +// Any other HTTP GET request +app.get('*', (req, res) => { + // Get user id (example: 'rem.mit-license.org/@2019' -> 'rem') + const id = req.hostname.split('.')[0] + + // Load the user data (example: from 'rem.mit-license.org/@2019' -> 'users/rem.json') + fs.readFile(path.join('users', `${id}.json`), 'utf8', (err, data) => { + // If error opening + if (err) { + if (err.code === 'ENOENT') { + // File not found + info = `${year} ` + theme = `default` + gravatar = `` + } else { + // Other error + res.status(500).end() + } + } else { + // No error + const user = JSON.parse(data) + info = `${year} ${user.copyright}` + theme = user.theme || "default" + gravatar = user.gravatar ? `` : `` + // gravatar = ''; + } + + // Parse the options specified in the URL + // console.log(req.path.split('/')) + const options = {} + res.set('Content-Type', 'text/html'); + res.send(new Buffer.from(mustache.render(template, { + info, + theme, + gravatar + }))); + }); +}) + +// Start listening for HTTP requests +app.listen(PORT) diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 0000000000000000000000000000000000000000..06ae70e71e542aae04cf0f96f6f7913ebd8ca442 GIT binary patch literal 86057 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 J{LHxF{vV;I5~2VA literal 0 HcmV?d00001 From 924e7ace1a3c4a110c3a6423ebced9a41b29520e Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Wed, 29 May 2019 11:09:58 +1200 Subject: [PATCH 02/53] Add Gravatar ALT --- server.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/server.js b/server.js index 237a85e8..02d798c6 100644 --- a/server.js +++ b/server.js @@ -48,13 +48,10 @@ app.get('*', (req, res) => { const user = JSON.parse(data) info = `${year} ${user.copyright}` theme = user.theme || "default" - gravatar = user.gravatar ? `` : `` - // gravatar = ''; + gravatar = user.gravatar ? `Profile image` : `` } // Parse the options specified in the URL - // console.log(req.path.split('/')) - const options = {} res.set('Content-Type', 'text/html'); res.send(new Buffer.from(mustache.render(template, { info, From 563de1648d35b7b33f7da1e584709dfe0941f775 Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Wed, 29 May 2019 11:28:37 +1200 Subject: [PATCH 03/53] Multiple copyright holders --- README.md | 222 +++++++++++++++++++++++++++------------------------ package.json | 1 + server.js | 3 +- yarn.lock | Bin 86057 -> 86267 bytes 4 files changed, 121 insertions(+), 105 deletions(-) diff --git a/README.md b/README.md index 18d4e7ba..d1fd7d48 100644 --- a/README.md +++ b/README.md @@ -2,12 +2,12 @@ I always forget to add an MIT-license.txt file to my projects, so I wanted to link to a single resource that would always be up to date and would always have my details online. -Why keep this to myself, there's two ways to create your *own* MIT license page: +Why keep this to myself, there's two ways to create your _own_ MIT license page: -1. Make a request to the API (details below) -2. Fork this project and send a pull request +1. Make a request to the API (details below) +2. Fork this project and send a pull request -Now I can always include http://rem.mit-license.org in all my projects which links `rem` (the cname) against my copyright holder name `Remy Sharp` - all stored in the `users` directory. +Now I can always include in all my projects which links `rem` (the cname) against my copyright holder name `Remy Sharp` - all stored in the `users` directory. ## Requesting your own MIT license page @@ -19,7 +19,7 @@ curl -d'{ "copyright": "Remy Sharp" }' https://rem.mit-license.org If the `rem` user isn't taken already, then this will create the new user file on the fly and the url will be immediately available. -You can send a full JSON file to the API, not *just* the copyright, so this works too: +You can send a full JSON file to the API, not _just_ the copyright, so this works too: ```bash curl -d'{ "copyright": "Remy Sharp", "url": "http://remysharp.com", "email": "me@mysite.com", "format": "txt" }' https://rem.mit-license.org @@ -35,13 +35,13 @@ The `users` directory contains a list of files, each representing a host on mit- Available fields: -* copyright (required) -* url -* email -* format -* gravatar -* version -* theme +- copyright (required) +- url +- email +- format +- gravatar +- version +- theme ### copyright @@ -53,7 +53,21 @@ Create a new file and give it the name of the CNAME you want (in my case it's `r } ``` -Means I can now link to: http://rem.mit-license.org and it will show my license name (note that the date will always show the current year). +Means I can now link to: and it will show my license name (note that the date will always show the current year). + +You can also use an array to hold multiple copyright holders: + +```json +{ + "copyright": ["Remy Sharp (http://remysharp.com)", "Richie Bendall (https://richienb.github.io)"] +} +``` + +Which will be formatted as: + +``` +Remy Sharp (http://remysharp.com) and Richie Bendall (https://richienb.github.io) +``` ### url @@ -113,7 +127,7 @@ Though I don't expect the license text to change ever, this is just some extra a Targeting requires the [sha from the license commit](https://github.com/remy/mit-license/commits/master/LICENSE.html). This can be specified on the URL (in your permalink) or in the JSON file. -For example: http://rem.mit-license.org/a526bf7ad1 (make sure to view-source) shows an older version of the LICENSE.html file (compared to the [latest version](http://rem.mit-license.org) - the older version didn't have the new themes). +For example: (make sure to view-source) shows an older version of the LICENSE.html file (compared to the [latest version](http://rem.mit-license.org) - the older version didn't have the new themes). This can also be targeted in my JSON file: @@ -143,69 +157,69 @@ To use a theme, add the `theme` property to your `user.json` file, for example: Current available themes: -* default - [preview](http://mit-license.org) (by - [@remy](https://github.com/remy), - [@raphaelbastide](https://github.com/raphaelbastide) & - [@evertton](https://github.com/evertton)) -* flesch - [preview](http://jsbin.com/ufefid/3) (by - [@flesch](https://github.com/flesch)) -* eula-modern - [preview](http://jsbin.com/ExiVida/1/) (by [@sauerlo](https://github.com/lsauer)) -* afterdark - [preview](http://jsbin.com/ivufon/4) (by [@rmartindotco](https://github.com/rmartindotco)) -* orange - [preview](http://jsbin.com/uzubos/2) (by [@kirbylover4000](https://github.com/kirbylover4000)) -* plaintext - [preview](http://jsbin.com/uzubos/4) (by [@barberboy](https://github.com/barberboy)) -* double-windsor - [preview](http://jsbin.com/uzubos/5/) (by [@desandro](https://github.com)) -* cherry - [preview](http://jsbin.com/ufefid/5/) (by [@mustafa-x](https://github.com/mustafa-x)) -* white cherry - [preview](http://jsbin.com/uzezas/2/) (by [@mustafa-x](https://github.com/mustafa-x)) -* blackwood - [preview](http://jsbin.com/uzezas/) (by [@mustafa-x](https://github.com/mustafa-x)) -* hipster-gray - [preview](http://jsbin.com/ivufon/10) (by [@noformnocontent](https://github.com/noformnocontent)) -* xtansia - [preview](http://jsbin.com/ereren/1/) (by [@tomass1996](https://github.com/tomass1996)) -* magic-mint - [preview](http://jsbin.com/obibot/1/) (by [@ekhager](https://github.com/ekhager)) -* default-dark - [preview](http://jsbin.com/uhagaw/10) (by - [@remy](https://github.com/remy), - [@raphaelbastide](https://github.com/raphaelbastide) & - [@evertton](https://github.com/evertton)) -* black-beauty - [preview](http://jsbin.com/dovivu) (by [@evertton](https://github.com/evertton)) -* silver-style - [preview](http://jsbin.com/erezijI/2) (by [@dev-dipesh](https://github.com/Dev-Dipesh)) -* friendly - [preview](http://jsbin.com/hilula) (by [@evertton](https://github.com/evertton)) -* opensans - [preview](http://jsbin.com/UfepUvah) (by [@pburtchaell](https://github.com/pburtchaell)) -* solarized - [preview](http://jsbin.com/yimax/1) (by [@anmoljagetia](https://github.com/anmoljagetia)) -* willpower - [preview](http://jsbin.com/piheyicoyi/1) (by [@willpowerart](https://github.com/willpowerart)) -* rokkitt - [preview](http://jsbin.com/zudayiqeco/1) (by [@luizpicolo](https://github.com/luizpicolo)) -* mitserrat - [preview](http://jsbin.com/xeqekutuwe/1) (by [@WouterJanson](https://github.com/WouterJanson)) -* material - [preview](http://ahaasler.github.io/mit-license-material-theme/) (by [@ahaasler](https://github.com/ahaasler)). *Available colours: blue gray (default), red, pink, purple, deep purple, indigo, blue, light blue, cyan, teal, green, light green, lime, yellow, amber, orange, deep orange, brown and grey. To use a specific colour, add it as a dash-separated suffix on the theme name, such as `material-deep-orange`.* -* hmt-blue - [preview](https://jsbin.com/naqorar/) (by [@J2TeaM](https://github.com/J2TeaM)) -* dusk - [preview](https://output.jsbin.com/giqivoh) (by [@georapbox](https://github.com/georapbox)) -* 8bits - [preview](https://matricali.github.io/mit-license-8bits-theme/) (by [@matricali](https://github.com/matricali)). *Available colours: monochrome, monochrome-white, monochrome-blue-white, monochrome-green, monochrome-amber. To use a specific colour, add it as a dash-separated suffix on the theme name, such as `8bits-monochrome`.* -* hacker - [preview](https://tommy.mit-license.org/) (by [@TommyPujol06](https://github.com/TommyPujol06)) +- default - [preview](http://mit-license.org) (by + [@remy](https://github.com/remy), + [@raphaelbastide](https://github.com/raphaelbastide) & + [@evertton](https://github.com/evertton)) +- flesch - [preview](http://jsbin.com/ufefid/3) (by + [@flesch](https://github.com/flesch)) +- eula-modern - [preview](http://jsbin.com/ExiVida/1/) (by [@sauerlo](https://github.com/lsauer)) +- afterdark - [preview](http://jsbin.com/ivufon/4) (by [@rmartindotco](https://github.com/rmartindotco)) +- orange - [preview](http://jsbin.com/uzubos/2) (by [@kirbylover4000](https://github.com/kirbylover4000)) +- plaintext - [preview](http://jsbin.com/uzubos/4) (by [@barberboy](https://github.com/barberboy)) +- double-windsor - [preview](http://jsbin.com/uzubos/5/) (by [@desandro](https://github.com)) +- cherry - [preview](http://jsbin.com/ufefid/5/) (by [@mustafa-x](https://github.com/mustafa-x)) +- white cherry - [preview](http://jsbin.com/uzezas/2/) (by [@mustafa-x](https://github.com/mustafa-x)) +- blackwood - [preview](http://jsbin.com/uzezas/) (by [@mustafa-x](https://github.com/mustafa-x)) +- hipster-gray - [preview](http://jsbin.com/ivufon/10) (by [@noformnocontent](https://github.com/noformnocontent)) +- xtansia - [preview](http://jsbin.com/ereren/1/) (by [@tomass1996](https://github.com/tomass1996)) +- magic-mint - [preview](http://jsbin.com/obibot/1/) (by [@ekhager](https://github.com/ekhager)) +- default-dark - [preview](http://jsbin.com/uhagaw/10) (by + [@remy](https://github.com/remy), + [@raphaelbastide](https://github.com/raphaelbastide) & + [@evertton](https://github.com/evertton)) +- black-beauty - [preview](http://jsbin.com/dovivu) (by [@evertton](https://github.com/evertton)) +- silver-style - [preview](http://jsbin.com/erezijI/2) (by [@dev-dipesh](https://github.com/Dev-Dipesh)) +- friendly - [preview](http://jsbin.com/hilula) (by [@evertton](https://github.com/evertton)) +- opensans - [preview](http://jsbin.com/UfepUvah) (by [@pburtchaell](https://github.com/pburtchaell)) +- solarized - [preview](http://jsbin.com/yimax/1) (by [@anmoljagetia](https://github.com/anmoljagetia)) +- willpower - [preview](http://jsbin.com/piheyicoyi/1) (by [@willpowerart](https://github.com/willpowerart)) +- rokkitt - [preview](http://jsbin.com/zudayiqeco/1) (by [@luizpicolo](https://github.com/luizpicolo)) +- mitserrat - [preview](http://jsbin.com/xeqekutuwe/1) (by [@WouterJanson](https://github.com/WouterJanson)) +- material - [preview](http://ahaasler.github.io/mit-license-material-theme/) (by [@ahaasler](https://github.com/ahaasler)). _Available colours: blue gray (default), red, pink, purple, deep purple, indigo, blue, light blue, cyan, teal, green, light green, lime, yellow, amber, orange, deep orange, brown and grey. To use a specific colour, add it as a dash-separated suffix on the theme name, such as `material-deep-orange`._ +- hmt-blue - [preview](https://jsbin.com/naqorar/) (by [@J2TeaM](https://github.com/J2TeaM)) +- dusk - [preview](https://output.jsbin.com/giqivoh) (by [@georapbox](https://github.com/georapbox)) +- 8bits - [preview](https://matricali.github.io/mit-license-8bits-theme/) (by [@matricali](https://github.com/matricali)). _Available colours: monochrome, monochrome-white, monochrome-blue-white, monochrome-green, monochrome-amber. To use a specific colour, add it as a dash-separated suffix on the theme name, such as `8bits-monochrome`._ +- hacker - [preview](https://tommy.mit-license.org/) (by [@TommyPujol06](https://github.com/TommyPujol06)) ## Formats & URLs The following types of requests can be made to this project: -* [http://rem.mit-license.org/](http://rem.mit-license.org/) HTML, or the default format specified in -the json file (currently none specified on `rem`) -* [http://rem.mit-license.org/license.html](http://rem.mit-license.org/license.html) HTML -* [http://rem.mit-license.org/license.txt](http://rem.mit-license.org/license.txt) Text -* [http://rem.mit-license.org/a526bf7ad1](http://rem.mit-license.org/a526bf7ad1) a526bf7ad1 version, HTML, or the -default format specified in the json file (again, none specified for -`rem` so defaults to HTML) -* [http://rem.mit-license.org/a526bf7ad1/license.html](http://rem.mit-license.org/a526bf7ad1/license.html) a526bf7ad1 version, -HTML -* [http://rem.mit-license.org/a526bf7ad1/license.txt](http://rem.mit-license.org/a526bf7ad1/license.txt) a526bf7ad1 version, -text +- HTML, or the default format specified in + the json file (currently none specified on `rem`) +- HTML +- Text +- a526bf7ad1 version, HTML, or the + default format specified in the json file (again, none specified for + `rem` so defaults to HTML) +- a526bf7ad1 version, + HTML +- a526bf7ad1 version, + text The url also supports including a start year: -* [http://rem.mit-license.org/2009/](http://rem.mit-license.org/2009/) will - show a license year range of 2009-2016 (2016 being the current year) -* [http://rem.mit-license.org/2009-2010](http://rem.mit-license.org/2009-2010/) - allows me to force the year range -* [http://rem.mit-license.org/a526bf7ad1/2009-2010/license.txt](http://rem.mit-license.org/a526bf7ad1/2009-2010/license.txt) a526bf7ad1 version, with year range of 2009-2010 in plain text +- will + show a license year range of 2009-2016 (2016 being the current year) +- [http://rem.mit-license.org/2009-2010](http://rem.mit-license.org/2009-2010/) + allows me to force the year range +- a526bf7ad1 version, with year range of 2009-2010 in plain text Finally, the url also supports pinning the year -* [http://rem.mit-license.org/@2009](http://rem.mit-license.org/@2009) - this is useful for when your software copyright should expire ([as discussed here](https://github.com/remy/mit-license/issues/771)) +- + this is useful for when your software copyright should expire ([as discussed here](https://github.com/remy/mit-license/issues/771)) ## Ways to contribute @@ -213,11 +227,11 @@ Aside from code contributions that make the project better, there are a few othe Development contributions from: -* [remy](https://github.com/remy) -* [batuhanicoz](https://github.com/batuhanicoz) -* [georgebashi](https://github.com/georgebashi) -* [mathiasbynens](https://github.com/mathiasbynens) -* [evertton](https://github.com/evertton) +- [remy](https://github.com/remy) +- [batuhanicoz](https://github.com/batuhanicoz) +- [georgebashi](https://github.com/georgebashi) +- [mathiasbynens](https://github.com/mathiasbynens) +- [evertton](https://github.com/evertton) **SSL and wildcard DNS is supported by [CloudFlare](https://www.cloudflare.com) - thank you 🙏💙** @@ -229,19 +243,19 @@ Of course I'll do my best to continue running the domain and hosting, but this i Domain contributions: -* [remy](https://github.com/remy) - 2011-2012 -* [barberboy](https://github.com/barberboy) - 2012-2013 -* [paulirish](https://github.com/paulirish) - 2013-2014 -* [batuhanicoz](https://github.com/batuhanicoz) - 2014-2015 -* [buritica](https://github.com/buritica) - 2015-2016 -* [adamstrawson](https://github.com/adamstrawson) - 2016-2018 (2 years) -* [keithamus](https://github.com/keithamus) - 2018-2026 (8 years) -* [pmuellr](https://github.com/pmuellr) - 2026-2027 -* [danielknell](https://github.com/danielknell) - 2027-2029 (2 years) -* [barberboy](https://github.com/barberboy) - 2029-2030 -* [mostly-magic](https://github.com/mostly-magic) - 2030-2032 +- [remy](https://github.com/remy) - 2011-2012 +- [barberboy](https://github.com/barberboy) - 2012-2013 +- [paulirish](https://github.com/paulirish) - 2013-2014 +- [batuhanicoz](https://github.com/batuhanicoz) - 2014-2015 +- [buritica](https://github.com/buritica) - 2015-2016 +- [adamstrawson](https://github.com/adamstrawson) - 2016-2018 (2 years) +- [keithamus](https://github.com/keithamus) - 2018-2026 (8 years) +- [pmuellr](https://github.com/pmuellr) - 2026-2027 +- [danielknell](https://github.com/danielknell) - 2027-2029 (2 years) +- [barberboy](https://github.com/barberboy) - 2029-2030 +- [mostly-magic](https://github.com/mostly-magic) - 2030-2032 -*Please note that the whois says 2021 as you can only have 10 active registered years with ICANN - but the domain is set to auto-renew, so it's all good :)* +_Please note that the whois says 2021 as you can only have 10 active registered years with ICANN - but the domain is set to auto-renew, so it's all good :)_ ### 2. Hosting @@ -249,32 +263,32 @@ For the first 5 years mit-license.org was hosted on my own dedicated server, but Hosting contributions: -* [remy](https://github.com/remy) - 2011-2016 Apr... -* [therebelrobot](https://github.com/therebelrobot) 1 month -* [mkody](https://github.com/mkody) 2 months -* [dan9186](https://github.com/dan9186) 1 year -* Kristin Anthony 1 year -* [zhengyi-yang](https://github.com/zhengyi-yang) 5 months -* [catodd](https://github.com/catodd) 2 months -* [lrz0](https://github.com/lrz0) 1 month -* [matricali](https://github.com/matricali) 3 months -* [youchenlee](https://github.com/youchenlee) 12 months -* [ramsey](https://github.com/ramsey) 12 months -* [rmm5t](https://github.com/rmm5t) 1 month -* [wrainaud](https://github.com/wrainaud) 3 months -* [romkey](https://github.com/romkey) 12 months -* [kylewelsby](https://github.com/kylewelsby) 6 months -* [wiesner](https://github.com/wiesner) 1 month -* [rajinwonderland](https://github.com/rajinwonderland) 3 months -* [miszo](https://github.com/miszo) 1 month -* [you?](https://www.paypal.me/rem) +- [remy](https://github.com/remy) - 2011-2016 Apr... +- [therebelrobot](https://github.com/therebelrobot) 1 month +- [mkody](https://github.com/mkody) 2 months +- [dan9186](https://github.com/dan9186) 1 year +- Kristin Anthony 1 year +- [zhengyi-yang](https://github.com/zhengyi-yang) 5 months +- [catodd](https://github.com/catodd) 2 months +- [lrz0](https://github.com/lrz0) 1 month +- [matricali](https://github.com/matricali) 3 months +- [youchenlee](https://github.com/youchenlee) 12 months +- [ramsey](https://github.com/ramsey) 12 months +- [rmm5t](https://github.com/rmm5t) 1 month +- [wrainaud](https://github.com/wrainaud) 3 months +- [romkey](https://github.com/romkey) 12 months +- [kylewelsby](https://github.com/kylewelsby) 6 months +- [wiesner](https://github.com/wiesner) 1 month +- [rajinwonderland](https://github.com/rajinwonderland) 3 months +- [miszo](https://github.com/miszo) 1 month +- [you?](https://www.paypal.me/rem) ### 3. A lick of paint -I'm a developer, I seem only capable of *grey*! If you're a designer and want to contribute a decent lick of paint on the project that would be super. Just create a new theme and send me a pull request. +I'm a developer, I seem only capable of _grey_! If you're a designer and want to contribute a decent lick of paint on the project that would be super. Just create a new theme and send me a pull request. ## License And of course: -MIT: http://rem.mit-license.org +MIT: diff --git a/package.json b/package.json index c009f664..1fdd0ab9 100644 --- a/package.json +++ b/package.json @@ -21,6 +21,7 @@ "dayjs": "^1.8.14", "express": "^4.17.1", "express-res-html": "^0.2.3", + "humanize-list": "^1.0.1", "md5": "^2.2.1", "mustache": "^3.0.1", "mustache-express": "^1.2.8" diff --git a/server.js b/server.js index 02d798c6..63671470 100644 --- a/server.js +++ b/server.js @@ -6,6 +6,7 @@ const mustache = require('mustache') const compression = require('compression') const dayjs = require('dayjs') const md5 = require('md5') +const humanizeList = require('humanize-list') // Read License file const template = fs.readFileSync('LICENSE.html', "utf8") @@ -46,7 +47,7 @@ app.get('*', (req, res) => { } else { // No error const user = JSON.parse(data) - info = `${year} ${user.copyright}` + info = `${year} ${typeof user.copyright === "string" ? user.copyright : humanizeList(user.copyright)}` theme = user.theme || "default" gravatar = user.gravatar ? `Profile image` : `` } diff --git a/yarn.lock b/yarn.lock index 06ae70e71e542aae04cf0f96f6f7913ebd8ca442..40b83784ce89f0f6b5db431f56726484e97d15e5 100644 GIT binary patch delta 151 zcmZ3vfc5u6)(sO{c{56L6Z0~wQgw4Oi%X^-P-B#s{9%HQKZ>xvu09H1*HF(u&rq)< zy-GRNJk{LLGTF=^(KN->!o(ugA{EF?O)*U~NVKppHL)~HHZrzMn_ei*C?aF3og7t> gUXT**nw4+j9Z?cdUg#O-mE`Q7W?;LyuXXk*0AKPnxc~qF delta 14 Wcmeypkagt()(sO{Hz&2tJOuzb1P8MK From ee93bd099dc59f570afaa5c0ef6cf6ee88701e80 Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Wed, 29 May 2019 17:03:11 +1200 Subject: [PATCH 04/53] ISC Support, added some option integrations, minificaiton --- .eslintrc.json | 24 + .travis.yml | 5 +- Procfile | 2 +- README.md | 4 +- licenses/ISC.ejs | 27 + LICENSE.html => licenses/MIT.ejs | 46 +- licenses/components/footer.ejs | 3 + licenses/components/header.ejs | 37 + package.json | 76 +- server.js | 106 +- server.ts | 99 + test.js | 22 +- themes/8bits-monochrome-amber.css | 197 +- themes/8bits-monochrome-blue-white.css | 197 +- themes/8bits-monochrome-green.css | 197 +- themes/8bits-monochrome-white.css | 197 +- themes/8bits-monochrome.css | 197 +- themes/afterdark.css | 78 +- themes/black-beauty.css | 87 +- themes/blackwood.css | 201 +- themes/cherry-white.css | 143 +- themes/cherry.css | 141 +- themes/default-dark.css | 116 +- themes/default.css | 127 +- themes/double-windsor.css | 84 +- themes/dusk.css | 157 +- themes/eula-modern.css | 160 +- themes/flesch.css | 62 +- themes/friendly.css | 95 +- themes/hacker.css | 7982 +++++++++++++++++++++--- themes/hipster-gray.css | 426 +- themes/hmt-blue.css | 264 +- themes/magic-mint.css | 127 +- themes/material-amber.css | 151 +- themes/material-blue.css | 151 +- themes/material-brown.css | 151 +- themes/material-cyan.css | 151 +- themes/material-deep-orange.css | 151 +- themes/material-deep-purple.css | 151 +- themes/material-green.css | 151 +- themes/material-grey.css | 151 +- themes/material-indigo.css | 151 +- themes/material-light-blue.css | 151 +- themes/material-light-green.css | 151 +- themes/material-lime.css | 151 +- themes/material-orange.css | 151 +- themes/material-pink.css | 151 +- themes/material-purple.css | 151 +- themes/material-red.css | 151 +- themes/material-teal.css | 151 +- themes/material-yellow.css | 151 +- themes/material.css | 151 +- themes/mitserrat.css | 69 +- themes/open-sans.css | 75 +- themes/orange.css | 103 +- themes/page_gradient_linear.svg | 13 +- themes/page_gradient_radial.svg | 13 +- themes/plaintext.css | 6 +- themes/rokkitt.css | 79 +- themes/silver-style.css | 97 +- themes/solarized.css | 92 +- themes/willpower.css | 84 +- themes/xtansia.css | 80 +- tsconfig.json | 12 + yarn.lock | Bin 86267 -> 74408 bytes 65 files changed, 12889 insertions(+), 2389 deletions(-) create mode 100644 .eslintrc.json create mode 100644 licenses/ISC.ejs rename LICENSE.html => licenses/MIT.ejs (50%) create mode 100644 licenses/components/footer.ejs create mode 100644 licenses/components/header.ejs create mode 100644 server.ts create mode 100644 tsconfig.json diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 00000000..c300aaca --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,24 @@ +{ + "env": { + "browser": true, + "es6": true, + "node": true + }, + "parser": "@typescript-eslint/parser", + "plugins": ["@typescript-eslint"], + "extends": "google", + "globals": { + "Atomics": "readonly", + "SharedArrayBuffer": "readonly" + }, + "parserOptions": { + "ecmaVersion": 2018, + "sourceType": "module" + }, + "rules": { + "indent": ["error", 4], + "semi": ["error", "never"], + "brace-style": 0, + "max-len": 0 + } +} diff --git a/.travis.yml b/.travis.yml index a6c8f557..49f6342d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,3 @@ language: node_js -sudo: false -node_js: - - "stable" +sudo: false +node_js: lts/* diff --git a/Procfile b/Procfile index 489b2700..2be5f808 100644 --- a/Procfile +++ b/Procfile @@ -1 +1 @@ -web: node server.js +web: yarn start diff --git a/README.md b/README.md index d1fd7d48..f93ec6d6 100644 --- a/README.md +++ b/README.md @@ -65,9 +65,7 @@ You can also use an array to hold multiple copyright holders: Which will be formatted as: -``` -Remy Sharp (http://remysharp.com) and Richie Bendall (https://richienb.github.io) -``` + Remy Sharp (http://remysharp.com) and Richie Bendall (https://richienb.github.io) ### url diff --git a/licenses/ISC.ejs b/licenses/ISC.ejs new file mode 100644 index 00000000..4b1b8695 --- /dev/null +++ b/licenses/ISC.ejs @@ -0,0 +1,27 @@ + + + +<% include components/header %> + + +
+ <%- gravatar %> +

The ISC License (ISC)

+

Copyright © <%= info %>

+ +

Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies.

+ +

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

+
+ <% include components/footer %> + + + diff --git a/LICENSE.html b/licenses/MIT.ejs similarity index 50% rename from LICENSE.html rename to licenses/MIT.ejs index 53b9a84a..f29c83a1 100644 --- a/LICENSE.html +++ b/licenses/MIT.ejs @@ -1,49 +1,13 @@ - - MIT License - - - - - - - +<% include components/header %>
- {{{gravatar}}} + <%- gravatar %>

The MIT License (MIT)

-

Copyright © {{info}}

+

Copyright © <%= info %>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal @@ -63,9 +27,7 @@

The MIT License (MIT)

OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

- + <% include components/footer %> diff --git a/licenses/components/footer.ejs b/licenses/components/footer.ejs new file mode 100644 index 00000000..414ecfd1 --- /dev/null +++ b/licenses/components/footer.ejs @@ -0,0 +1,3 @@ + diff --git a/licenses/components/header.ejs b/licenses/components/header.ejs new file mode 100644 index 00000000..ab5dbb4f --- /dev/null +++ b/licenses/components/header.ejs @@ -0,0 +1,37 @@ + + MIT License + + + + + + + diff --git a/package.json b/package.json index 1fdd0ab9..150f800f 100644 --- a/package.json +++ b/package.json @@ -1,36 +1,44 @@ { - "author": "Remy Sharp (http://remysharp.com/)", - "name": "mit-licence", - "description": "Hosted MIT License with details controlled through this repo", - "version": "1.0.0", - "repository": { - "type": "git", - "url": "git@github.com:remy/mit-license.git" - }, - "scripts": { - "start": "node server.js", - "dev": "nodemon server.js", - "test": "node test.js" - }, - "bugs": { - "url": "https://github.com/remy/mit-license/issues" - }, - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "compression": "^1.7.4", - "dayjs": "^1.8.14", - "express": "^4.17.1", - "express-res-html": "^0.2.3", - "humanize-list": "^1.0.1", - "md5": "^2.2.1", - "mustache": "^3.0.1", - "mustache-express": "^1.2.8" - }, - "devDependencies": { - "@types/bluebird": "^3.5.27", - "@types/compression": "^0.0.36", - "@types/express": "^4.16.1", - "@types/md5": "^2.1.33", - "nodemon": "^1.19.1" - } + "author": "Remy Sharp (http://remysharp.com/)", + "name": "mit-licence", + "description": "Hosted MIT License with details controlled through this repo", + "version": "1.0.0", + "repository": { + "type": "git", + "url": "git@github.com:remy/mit-license.git" + }, + "scripts": { + "start": "tsc server.ts && node server.js", + "dev": "ts-node-dev --respawn --transpileOnly server.ts", + "test": "node test.js", + "lint": "eslint . --color --fix" + }, + "bugs": { + "url": "https://github.com/remy/mit-license/issues" + }, + "license": "SEE LICENSE IN LICENSE", + "dependencies": { + "compression": "^1.7.4", + "dayjs": "^1.8.14", + "ejs": "^2.6.1", + "express": "^4.17.1", + "express-minify": "^1.0.0", + "humanize-list": "^1.0.1", + "is-number": "^7.0.0", + "md5": "^2.2.1", + "tmp": "^0.1.0", + "typescript": "^3.4.5" + }, + "devDependencies": { + "@types/compression": "^0.0.36", + "@types/express": "^4.16.1", + "@types/express-minify": "^0.1.34", + "@types/is-number": "^3.0.1", + "@types/md5": "^2.1.33", + "@types/tmp": "^0.1.0", + "@typescript-eslint/eslint-plugin": "^1.9.0", + "eslint": "^5.16.0", + "eslint-config-google": "^0.13.0", + "ts-node-dev": "^1.0.0-pre.39" + } } diff --git a/server.js b/server.js index 63671470..fc1bef22 100644 --- a/server.js +++ b/server.js @@ -1,66 +1,68 @@ -const express = require('express') -const path = require('path') -const fs = require('fs') -const PORT = process.env.PORT || 80 -const mustache = require('mustache') -const compression = require('compression') -const dayjs = require('dayjs') -const md5 = require('md5') -const humanizeList = require('humanize-list') - -// Read License file -const template = fs.readFileSync('LICENSE.html', "utf8") -mustache.parse(template); - +var express = require('express'); +var path = require('path'); +var fs = require('fs'); +var PORT = process.env.PORT || 80; +var compression = require('compression'); +var dayjs = require('dayjs'); +var md5 = require('md5'); +var humanizeList = require('humanize-list'); +var minify = require('express-minify'); // Prepare application -const app = express() -app.use(compression()) -app.use(require('express-res-html')) - +var app = express(); +app.use(compression()); +app.use(minify({ + cache: require('tmp').dirSync().name +})); +app.set('view engine', 'ejs'); +// Setup static files +app.use('/themes', express.static('themes')); +app.use('/users', express.static('users')); +app.use('/favicon.ico', express.static(__dirname + '/favicon.ico')); // Setup useful variables -const year = dayjs().year() - -// Any theme request -app.get('/themes/:file', (req, res) => res.sendFile(path.join(__dirname, 'themes', req.params.file))) - -// Any user request -app.get('/users/:file', (req, res) => res.sendFile(path.join(__dirname, 'users', req.params.file))) - +var yearNow = dayjs().year(); +// HTTP POST API +app.post('/', function (req, res) { + res.end(); +}); // Any other HTTP GET request -app.get('*', (req, res) => { +app.get('*', function (req, res) { // Get user id (example: 'rem.mit-license.org/@2019' -> 'rem') - const id = req.hostname.split('.')[0] - + var id = req.hostname.split('.')[0]; + // Get params (example: 'rem.mit-license.org/@2019' -> ['@2019']) + var params = req.path.split('/'); + params.shift(); + // + var year = yearNow; // Load the user data (example: from 'rem.mit-license.org/@2019' -> 'users/rem.json') - fs.readFile(path.join('users', `${id}.json`), 'utf8', (err, data) => { + fs.readFile(path.join('users', id + ".json"), 'utf8', function (err, data) { + var info, theme, gravatar; // If error opening if (err) { if (err.code === 'ENOENT') { // File not found - info = `${year} ` - theme = `default` - gravatar = `` - } else { - // Other error - res.status(500).end() + info = year + " "; + theme = 'default'; + gravatar = ''; + } + else { + // Other error + res.status(500).end(); } - } else { - // No error - const user = JSON.parse(data) - info = `${year} ${typeof user.copyright === "string" ? user.copyright : humanizeList(user.copyright)}` - theme = user.theme || "default" - gravatar = user.gravatar ? `Profile image` : `` } - + else { + // No error + var user = JSON.parse(data); + info = year + " " + (typeof user.copyright === 'string' ? user.copyright : humanizeList(user.copyright)); + theme = user.theme || 'default'; + gravatar = user.gravatar ? "\"Profile" : ''; + } // Parse the options specified in the URL - res.set('Content-Type', 'text/html'); - res.send(new Buffer.from(mustache.render(template, { - info, - theme, - gravatar - }))); + res.render(path.join(__dirname, 'licenses', 'MIT.ejs'), { + info: info, + theme: theme, + gravatar: gravatar + }); }); -}) - +}); // Start listening for HTTP requests -app.listen(PORT) +app.listen(PORT); diff --git a/server.ts b/server.ts new file mode 100644 index 00000000..f6fd9cd6 --- /dev/null +++ b/server.ts @@ -0,0 +1,99 @@ +import express from 'express' +import path from 'path' +import fs from 'fs' +const PORT = process.env.PORT || 80 +import compression from 'compression' +import dayjs from 'dayjs' +import md5 from 'md5' +import humanizeList from 'humanize-list' +import minify from 'express-minify' +import isNumber from 'is-number' + +// Prepare application +const app = express() +app.use(compression()) +app.use(minify({ + cache: require('tmp').dirSync().name, +})) +app.set('view engine', 'ejs') + +// Setup static files +app.use('/themes', express.static('themes')) +app.use('/users', express.static('users')) +app.use('/favicon.ico', express.static(__dirname + '/favicon.ico')) + +// Setup useful variables +const yearNow = dayjs().year() + +// HTTP POST API +app.post('/', (_req, res) => { + res.end() +}) + +// Any other HTTP GET request +app.get('*', (req, res) => { + // Get user id (example: 'rem.mit-license.org/@2019' -> 'rem') + const id = req.hostname.split('.')[0] + + // Get params (example: 'rem.mit-license.org/@2019' -> ['@2019']) + const params = req.path.split('/') + params.shift() + + // Load the user data (example: from 'rem.mit-license.org/@2019' -> 'users/rem.json') + fs.readFile(path.join('users', `${id}.json`), 'utf8', (err, data: string) => { + let name: string, theme: string, gravatar: string + const user = JSON.parse(data || "{}") + // If error opening + if (err) { + if (err.code === 'ENOENT') { + // File not found + name = "" + theme = 'default' + gravatar = '' + } else { + // Other error + res.status(500).end() + return; + } + } else { + // No error + name = typeof user.copyright === 'string' ? user.copyright : humanizeList(user.copyright) + theme = user.theme || 'default' + gravatar = user.gravatar ? `Profile image` : '' + } + + const year = (() => { + // rem.mit-license.org/@2019 + const customYear = params.find(val => val.startsWith("@")) + + // rem.mit-license.org/2019 + const fromYear = params.find(val => !isNaN(parseInt(val.replace("-", "")))) + + // If current year + if (customYear) return customYear.replace(/[@-]/g, "") + + // If from year + if (fromYear) { + // If from year is same as current + if (parseInt(fromYear) === yearNow) return yearNow + + return `${fromYear.replace("-", "")}-${yearNow.toString().replace("-", "")}` + } + + return yearNow + })() + + const customLicense = params.find(val => val.startsWith("+")) + const license = customLicense ? customLicense.replace("+", "") : user.license || `${"MIT"}.ejs` + + // Parse the options specified in the URL + res.render(path.join(__dirname, 'licenses', license), { + info: `${year} ${name}`, + theme, + gravatar, + }) + }) +}) + +// Start listening for HTTP requests +app.listen(PORT) diff --git a/test.js b/test.js index 852c2c96..7f9408fc 100644 --- a/test.js +++ b/test.js @@ -1,13 +1,13 @@ #!/bin/env node -var fs = require('fs'); -var users = fs.readdirSync('users'); -users.forEach(function (user) { - try { - var content = fs.readFileSync('users/' + user).toString(); - JSON.parse(content); - } catch (e) { - console.error('Invalid JSON in file: ' + user); - process.exit(1); - } -}); +const fs = require('fs') +const users = fs.readdirSync('users') +users.forEach(function(user) { + try { + const content = fs.readFileSync('users/' + user).toString() + JSON.parse(content) + } catch (e) { + console.error('Invalid JSON in file: ' + user) + process.exit(1) + } +}) diff --git a/themes/8bits-monochrome-amber.css b/themes/8bits-monochrome-amber.css index d4a970bc..86968e61 100644 --- a/themes/8bits-monochrome-amber.css +++ b/themes/8bits-monochrome-amber.css @@ -1,101 +1,122 @@ /* 8bit theme v1.0.0 by Jorge Matricali, https://github.com/matricali/mit-license-8bits-theme */ /* MIT License https://jorge-matricali.mit-license.org/ */ @import url('https://fonts.googleapis.com/css?family=PT+Mono|VT323'); + body { - font-family: 'PT Mono', monospace; - padding: .4em; - font-size: 1.1em; - background: #000; - color: #ffbf00; + font-family: 'PT Mono', monospace; + padding: .4em; + font-size: 1.1em; + background: #000; + color: #ffbf00; } + a:link, a:visited { - text-decoration: none; - color: #ffbf00; + text-decoration: none; + color: #ffbf00; } + article { - display: block; - margin: 1em; - position: relative; - max-width: 800px; - margin: 10px auto 0; -} -article h1 { - color: #ffbf00; - width: 100%; - margin: 0 auto; - padding-top: 1.5em; - font-size: 3em; -} -article h1, -article h1 + p { - font-family: 'VT323', monospace; - padding-left: 6%; -} -article h1 + p { - margin-top: 0; - margin-bottom: 3em; -} -article h1 + p a:link, -article h1 + p a:visited { - color: #ffbf00; -} -article p { - padding: 0 2em; - text-align: justify; -} -article p:last-child { - padding-bottom: 1.8em; - font-size: 0.9em; -} -footer { - margin: 0 auto; - font-size: .8em; - text-align: center; -} -#gravatar { - display: block; - float: right; -} -@media (min-width: 750px) { - #gravatar { - position: absolute; - top: 4em; - right: 3em; - } - #gravatar + h1 + p + p { - padding-top: 2em; - } - h1 + p { - padding-right: 6em; - } - h1 + p + p { - padding-top: 0.8em; - } -} -@media (max-width: 750px) { - body { - font-size: 14px; - } - #gravatar { + display: block; + margin: 1em; position: relative; - top: 4em; - right: 2em; - } - article h1 + p { - padding-bottom: 1em; - } - article h1 + p + p { - padding-top: 0.8em; - } - footer { - padding-bottom: 4em; - } + max-width: 800px; + margin: 10px auto 0; } + +article h1 { + color: #ffbf00; + width: 100%; + margin: 0 auto; + padding-top: 1.5em; + font-size: 3em; +} + +article h1, +article h1+p { + font-family: 'VT323', monospace; + padding-left: 6%; +} + +article h1+p { + margin-top: 0; + margin-bottom: 3em; +} + +article h1+p a:link, +article h1+p a:visited { + color: #ffbf00; +} + +article p { + padding: 0 2em; + text-align: justify; +} + +article p:last-child { + padding-bottom: 1.8em; + font-size: 0.9em; +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center; +} + +#gravatar { + display: block; + float: right; +} + +@media (min-width: 750px) { + #gravatar { + position: absolute; + top: 4em; + right: 3em; + } + + #gravatar+h1+p+p { + padding-top: 2em; + } + + h1+p { + padding-right: 6em; + } + + h1+p+p { + padding-top: 0.8em; + } +} + +@media (max-width: 750px) { + body { + font-size: 14px; + } + + #gravatar { + position: relative; + top: 4em; + right: 2em; + } + + article h1+p { + padding-bottom: 1em; + } + + article h1+p+p { + padding-top: 0.8em; + } + + footer { + padding-bottom: 4em; + } +} + img { - -webkit-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10); - -moz-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10); - -ms-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10); - -o-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10); - filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10); + -webkit-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10); + -moz-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10); + -ms-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10); + -o-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10); + filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10); } diff --git a/themes/8bits-monochrome-blue-white.css b/themes/8bits-monochrome-blue-white.css index 2fe544e0..578dafc7 100644 --- a/themes/8bits-monochrome-blue-white.css +++ b/themes/8bits-monochrome-blue-white.css @@ -1,101 +1,122 @@ /* 8bits theme v1.1.0 by Jorge Matricali, https://github.com/matricali/mit-license-8bits-theme */ /* MIT License https://jorge-matricali.mit-license.org/ */ @import url('https://fonts.googleapis.com/css?family=PT+Mono|VT323'); + body { - font-family: 'PT Mono', monospace; - padding: .4em; - font-size: 1.1em; - background: #00f; - color: #fff; + font-family: 'PT Mono', monospace; + padding: .4em; + font-size: 1.1em; + background: #00f; + color: #fff; } + a:link, a:visited { - text-decoration: none; - color: #fff; + text-decoration: none; + color: #fff; } + article { - display: block; - margin: 1em; - position: relative; - max-width: 800px; - margin: 10px auto 0; -} -article h1 { - color: #fff; - width: 100%; - margin: 0 auto; - padding-top: 1.5em; - font-size: 3em; -} -article h1, -article h1 + p { - font-family: 'VT323', monospace; - padding-left: 6%; -} -article h1 + p { - margin-top: 0; - margin-bottom: 3em; -} -article h1 + p a:link, -article h1 + p a:visited { - color: #fff; -} -article p { - padding: 0 2em; - text-align: justify; -} -article p:last-child { - padding-bottom: 1.8em; - font-size: 0.9em; -} -footer { - margin: 0 auto; - font-size: .8em; - text-align: center; -} -#gravatar { - display: block; - float: right; -} -@media (min-width: 750px) { - #gravatar { - position: absolute; - top: 4em; - right: 3em; - } - #gravatar + h1 + p + p { - padding-top: 2em; - } - h1 + p { - padding-right: 6em; - } - h1 + p + p { - padding-top: 0.8em; - } -} -@media (max-width: 750px) { - body { - font-size: 14px; - } - #gravatar { + display: block; + margin: 1em; position: relative; - top: 4em; - right: 2em; - } - article h1 + p { - padding-bottom: 1em; - } - article h1 + p + p { - padding-top: 0.8em; - } - footer { - padding-bottom: 4em; - } + max-width: 800px; + margin: 10px auto 0; } + +article h1 { + color: #fff; + width: 100%; + margin: 0 auto; + padding-top: 1.5em; + font-size: 3em; +} + +article h1, +article h1+p { + font-family: 'VT323', monospace; + padding-left: 6%; +} + +article h1+p { + margin-top: 0; + margin-bottom: 3em; +} + +article h1+p a:link, +article h1+p a:visited { + color: #fff; +} + +article p { + padding: 0 2em; + text-align: justify; +} + +article p:last-child { + padding-bottom: 1.8em; + font-size: 0.9em; +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center; +} + +#gravatar { + display: block; + float: right; +} + +@media (min-width: 750px) { + #gravatar { + position: absolute; + top: 4em; + right: 3em; + } + + #gravatar+h1+p+p { + padding-top: 2em; + } + + h1+p { + padding-right: 6em; + } + + h1+p+p { + padding-top: 0.8em; + } +} + +@media (max-width: 750px) { + body { + font-size: 14px; + } + + #gravatar { + position: relative; + top: 4em; + right: 2em; + } + + article h1+p { + padding-bottom: 1em; + } + + article h1+p+p { + padding-top: 0.8em; + } + + footer { + padding-bottom: 4em; + } +} + img { - -webkit-filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%); - -moz-filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%); - -ms-filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%); - -o-filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%); - filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%); + -webkit-filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%); + -moz-filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%); + -ms-filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%); + -o-filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%); + filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%); } diff --git a/themes/8bits-monochrome-green.css b/themes/8bits-monochrome-green.css index 285b6277..940dfd82 100644 --- a/themes/8bits-monochrome-green.css +++ b/themes/8bits-monochrome-green.css @@ -1,101 +1,122 @@ /* 8bits theme v1.1.0 by Jorge Matricali, https://github.com/matricali/mit-license-8bits-theme */ /* MIT License https://jorge-matricali.mit-license.org/ */ @import url('https://fonts.googleapis.com/css?family=PT+Mono|VT323'); + body { - font-family: 'PT Mono', monospace; - padding: .4em; - font-size: 1.1em; - background: #000; - color: #0f0; + font-family: 'PT Mono', monospace; + padding: .4em; + font-size: 1.1em; + background: #000; + color: #0f0; } + a:link, a:visited { - text-decoration: none; - color: #0f0; + text-decoration: none; + color: #0f0; } + article { - display: block; - margin: 1em; - position: relative; - max-width: 800px; - margin: 10px auto 0; -} -article h1 { - color: #0f0; - width: 100%; - margin: 0 auto; - padding-top: 1.5em; - font-size: 3em; -} -article h1, -article h1 + p { - font-family: 'VT323', monospace; - padding-left: 6%; -} -article h1 + p { - margin-top: 0; - margin-bottom: 3em; -} -article h1 + p a:link, -article h1 + p a:visited { - color: #0f0; -} -article p { - padding: 0 2em; - text-align: justify; -} -article p:last-child { - padding-bottom: 1.8em; - font-size: 0.9em; -} -footer { - margin: 0 auto; - font-size: .8em; - text-align: center; -} -#gravatar { - display: block; - float: right; -} -@media (min-width: 750px) { - #gravatar { - position: absolute; - top: 4em; - right: 3em; - } - #gravatar + h1 + p + p { - padding-top: 2em; - } - h1 + p { - padding-right: 6em; - } - h1 + p + p { - padding-top: 0.8em; - } -} -@media (max-width: 750px) { - body { - font-size: 14px; - } - #gravatar { + display: block; + margin: 1em; position: relative; - top: 4em; - right: 2em; - } - article h1 + p { - padding-bottom: 1em; - } - article h1 + p + p { - padding-top: 0.8em; - } - footer { - padding-bottom: 4em; - } + max-width: 800px; + margin: 10px auto 0; } + +article h1 { + color: #0f0; + width: 100%; + margin: 0 auto; + padding-top: 1.5em; + font-size: 3em; +} + +article h1, +article h1+p { + font-family: 'VT323', monospace; + padding-left: 6%; +} + +article h1+p { + margin-top: 0; + margin-bottom: 3em; +} + +article h1+p a:link, +article h1+p a:visited { + color: #0f0; +} + +article p { + padding: 0 2em; + text-align: justify; +} + +article p:last-child { + padding-bottom: 1.8em; + font-size: 0.9em; +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center; +} + +#gravatar { + display: block; + float: right; +} + +@media (min-width: 750px) { + #gravatar { + position: absolute; + top: 4em; + right: 3em; + } + + #gravatar+h1+p+p { + padding-top: 2em; + } + + h1+p { + padding-right: 6em; + } + + h1+p+p { + padding-top: 0.8em; + } +} + +@media (max-width: 750px) { + body { + font-size: 14px; + } + + #gravatar { + position: relative; + top: 4em; + right: 2em; + } + + article h1+p { + padding-bottom: 1em; + } + + article h1+p+p { + padding-top: 0.8em; + } + + footer { + padding-bottom: 4em; + } +} + img { - -webkit-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10) hue-rotate(40deg); - -moz-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10) hue-rotate(40deg); - -ms-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10) hue-rotate(40deg); - -o-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10) hue-rotate(40deg); - filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10) hue-rotate(40deg); + -webkit-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10) hue-rotate(40deg); + -moz-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10) hue-rotate(40deg); + -ms-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10) hue-rotate(40deg); + -o-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10) hue-rotate(40deg); + filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10) hue-rotate(40deg); } diff --git a/themes/8bits-monochrome-white.css b/themes/8bits-monochrome-white.css index 8b9b3d3a..1a4b1a70 100644 --- a/themes/8bits-monochrome-white.css +++ b/themes/8bits-monochrome-white.css @@ -1,101 +1,122 @@ /* 8bits theme v1.1.0 by Jorge Matricali, https://github.com/matricali/mit-license-8bits-theme */ /* MIT License https://jorge-matricali.mit-license.org/ */ @import url('https://fonts.googleapis.com/css?family=PT+Mono|VT323'); + body { - font-family: 'PT Mono', monospace; - padding: .4em; - font-size: 1.1em; - background: #fff; - color: #000; + font-family: 'PT Mono', monospace; + padding: .4em; + font-size: 1.1em; + background: #fff; + color: #000; } + a:link, a:visited { - text-decoration: none; - color: #000; + text-decoration: none; + color: #000; } + article { - display: block; - margin: 1em; - position: relative; - max-width: 800px; - margin: 10px auto 0; -} -article h1 { - color: #000; - width: 100%; - margin: 0 auto; - padding-top: 1.5em; - font-size: 3em; -} -article h1, -article h1 + p { - font-family: 'VT323', monospace; - padding-left: 6%; -} -article h1 + p { - margin-top: 0; - margin-bottom: 3em; -} -article h1 + p a:link, -article h1 + p a:visited { - color: #000; -} -article p { - padding: 0 2em; - text-align: justify; -} -article p:last-child { - padding-bottom: 1.8em; - font-size: 0.9em; -} -footer { - margin: 0 auto; - font-size: .8em; - text-align: center; -} -#gravatar { - display: block; - float: right; -} -@media (min-width: 750px) { - #gravatar { - position: absolute; - top: 4em; - right: 3em; - } - #gravatar + h1 + p + p { - padding-top: 2em; - } - h1 + p { - padding-right: 6em; - } - h1 + p + p { - padding-top: 0.8em; - } -} -@media (max-width: 750px) { - body { - font-size: 14px; - } - #gravatar { + display: block; + margin: 1em; position: relative; - top: 4em; - right: 2em; - } - article h1 + p { - padding-bottom: 1em; - } - article h1 + p + p { - padding-top: 0.8em; - } - footer { - padding-bottom: 4em; - } + max-width: 800px; + margin: 10px auto 0; } + +article h1 { + color: #000; + width: 100%; + margin: 0 auto; + padding-top: 1.5em; + font-size: 3em; +} + +article h1, +article h1+p { + font-family: 'VT323', monospace; + padding-left: 6%; +} + +article h1+p { + margin-top: 0; + margin-bottom: 3em; +} + +article h1+p a:link, +article h1+p a:visited { + color: #000; +} + +article p { + padding: 0 2em; + text-align: justify; +} + +article p:last-child { + padding-bottom: 1.8em; + font-size: 0.9em; +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center; +} + +#gravatar { + display: block; + float: right; +} + +@media (min-width: 750px) { + #gravatar { + position: absolute; + top: 4em; + right: 3em; + } + + #gravatar+h1+p+p { + padding-top: 2em; + } + + h1+p { + padding-right: 6em; + } + + h1+p+p { + padding-top: 0.8em; + } +} + +@media (max-width: 750px) { + body { + font-size: 14px; + } + + #gravatar { + position: relative; + top: 4em; + right: 2em; + } + + article h1+p { + padding-bottom: 1em; + } + + article h1+p+p { + padding-top: 0.8em; + } + + footer { + padding-bottom: 4em; + } +} + img { - -webkit-filter: contrast(700%) grayscale(100%) saturate(100); - -moz-filter: contrast(700%) grayscale(100%) saturate(100); - -ms-filter: contrast(700%) grayscale(100%) saturate(100); - -o-filter: contrast(700%) grayscale(100%) saturate(100); - filter: contrast(700%) grayscale(100%) saturate(100); + -webkit-filter: contrast(700%) grayscale(100%) saturate(100); + -moz-filter: contrast(700%) grayscale(100%) saturate(100); + -ms-filter: contrast(700%) grayscale(100%) saturate(100); + -o-filter: contrast(700%) grayscale(100%) saturate(100); + filter: contrast(700%) grayscale(100%) saturate(100); } diff --git a/themes/8bits-monochrome.css b/themes/8bits-monochrome.css index 73b3dae6..09e35b79 100644 --- a/themes/8bits-monochrome.css +++ b/themes/8bits-monochrome.css @@ -1,101 +1,122 @@ /* 8bits theme v1.1.0 by Jorge Matricali, https://github.com/matricali/mit-license-8bits-theme */ /* MIT License https://jorge-matricali.mit-license.org/ */ @import url('https://fonts.googleapis.com/css?family=PT+Mono|VT323'); + body { - font-family: 'PT Mono', monospace; - padding: .4em; - font-size: 1.1em; - background: #000; - color: #fff; + font-family: 'PT Mono', monospace; + padding: .4em; + font-size: 1.1em; + background: #000; + color: #fff; } + a:link, a:visited { - text-decoration: none; - color: #fff; + text-decoration: none; + color: #fff; } + article { - display: block; - margin: 1em; - position: relative; - max-width: 800px; - margin: 10px auto 0; -} -article h1 { - color: #fff; - width: 100%; - margin: 0 auto; - padding-top: 1.5em; - font-size: 3em; -} -article h1, -article h1 + p { - font-family: 'VT323', monospace; - padding-left: 6%; -} -article h1 + p { - margin-top: 0; - margin-bottom: 3em; -} -article h1 + p a:link, -article h1 + p a:visited { - color: #fff; -} -article p { - padding: 0 2em; - text-align: justify; -} -article p:last-child { - padding-bottom: 1.8em; - font-size: 0.9em; -} -footer { - margin: 0 auto; - font-size: .8em; - text-align: center; -} -#gravatar { - display: block; - float: right; -} -@media (min-width: 750px) { - #gravatar { - position: absolute; - top: 4em; - right: 3em; - } - #gravatar + h1 + p + p { - padding-top: 2em; - } - h1 + p { - padding-right: 6em; - } - h1 + p + p { - padding-top: 0.8em; - } -} -@media (max-width: 750px) { - body { - font-size: 14px; - } - #gravatar { + display: block; + margin: 1em; position: relative; - top: 4em; - right: 2em; - } - article h1 + p { - padding-bottom: 1em; - } - article h1 + p + p { - padding-top: 0.8em; - } - footer { - padding-bottom: 4em; - } + max-width: 800px; + margin: 10px auto 0; } + +article h1 { + color: #fff; + width: 100%; + margin: 0 auto; + padding-top: 1.5em; + font-size: 3em; +} + +article h1, +article h1+p { + font-family: 'VT323', monospace; + padding-left: 6%; +} + +article h1+p { + margin-top: 0; + margin-bottom: 3em; +} + +article h1+p a:link, +article h1+p a:visited { + color: #fff; +} + +article p { + padding: 0 2em; + text-align: justify; +} + +article p:last-child { + padding-bottom: 1.8em; + font-size: 0.9em; +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center; +} + +#gravatar { + display: block; + float: right; +} + +@media (min-width: 750px) { + #gravatar { + position: absolute; + top: 4em; + right: 3em; + } + + #gravatar+h1+p+p { + padding-top: 2em; + } + + h1+p { + padding-right: 6em; + } + + h1+p+p { + padding-top: 0.8em; + } +} + +@media (max-width: 750px) { + body { + font-size: 14px; + } + + #gravatar { + position: relative; + top: 4em; + right: 2em; + } + + article h1+p { + padding-bottom: 1em; + } + + article h1+p+p { + padding-top: 0.8em; + } + + footer { + padding-bottom: 4em; + } +} + img { - -webkit-filter: contrast(700%) grayscale(100%) saturate(100); - -moz-filter: contrast(700%) grayscale(100%) saturate(100); - -ms-filter: contrast(700%) grayscale(100%) saturate(100); - -o-filter: contrast(700%) grayscale(100%) saturate(100); - filter: contrast(700%) grayscale(100%) saturate(100); + -webkit-filter: contrast(700%) grayscale(100%) saturate(100); + -moz-filter: contrast(700%) grayscale(100%) saturate(100); + -ms-filter: contrast(700%) grayscale(100%) saturate(100); + -o-filter: contrast(700%) grayscale(100%) saturate(100); + filter: contrast(700%) grayscale(100%) saturate(100); } diff --git a/themes/afterdark.css b/themes/afterdark.css index a20079f4..dac33bb1 100644 --- a/themes/afterdark.css +++ b/themes/afterdark.css @@ -1,12 +1,66 @@ -body {margin:0; padding: 50px;background: #242f3a;font: 16px/28px "Garamond",serif; color: #94979e;} -article, footer { display:block; max-width:720px; margin:0 auto; } -article { padding:28px;} -footer { padding:0 28px; text-align:center; } -h1 { margin:0; font-size: 24px; line-height: 32px;color:#d7721a} -a, a:visited { color:#577446; padding:4px; text-decoration:none; } -a:active, a:hover { color:#5dd912; } -a img { position: absolute; top: 0; right: 0; border: 0; } -:-moz-any-link:focus {background:#bc4a46;} -::selection {background:#bc4a46;} -::-moz-selection {background:#bc4a46;} -#gravatar { position: relative; float: right; margin-bottom: 1em; margin-left: 1em; border: 1px solid #ddd; } \ No newline at end of file +body { + margin: 0; + padding: 50px; + background: #242f3a; + font: 16px/28px "Garamond", serif; + color: #94979e; +} + +article, footer { + display: block; + max-width: 720px; + margin: 0 auto; +} + +article { + padding: 28px; +} + +footer { + padding: 0 28px; + text-align: center; +} + +h1 { + margin: 0; + font-size: 24px; + line-height: 32px; + color: #d7721a +} + +a, a:visited { + color: #577446; + padding: 4px; + text-decoration: none; +} + +a:active, a:hover { + color: #5dd912; +} + +a img { + position: absolute; + top: 0; + right: 0; + border: 0; +} + +:-moz-any-link:focus { + background: #bc4a46; +} + +::selection { + background: #bc4a46; +} + +::-moz-selection { + background: #bc4a46; +} + +#gravatar { + position: relative; + float: right; + margin-bottom: 1em; + margin-left: 1em; + border: 1px solid #ddd; +} diff --git a/themes/black-beauty.css b/themes/black-beauty.css index acd47a85..837d966f 100644 --- a/themes/black-beauty.css +++ b/themes/black-beauty.css @@ -1,63 +1,63 @@ @import url(https://fonts.googleapis.com/css?family=Lato:300); html { - font-size: 16px; - background-color: #1a1a1a; + font-size: 16px; + background-color: #1a1a1a; } body { - font-family: "Lato", Helvetica, Arial, sans-serif; - font-size: 1.3em; - font-weight: 300; - color: #CCC; + font-family: "Lato", Helvetica, Arial, sans-serif; + font-size: 1.3em; + font-weight: 300; + color: #CCC; } article, footer { - max-width: 877px; - margin: 0 auto; - text-align: center; + max-width: 877px; + margin: 0 auto; + text-align: center; } article { - margin-top: 1em; - background-color: #2a2a2a; - padding: 1em; - text-align: center; - position: relative; + margin-top: 1em; + background-color: #2a2a2a; + padding: 1em; + text-align: center; + position: relative; } article p { - text-align: left; + text-align: left; } article p:first-of-type { - text-align: center; - font-size: .8em; + text-align: center; + font-size: .8em; } article p:last-of-type { - border-left: 3px solid #CCC; - padding-left: 15px; + border-left: 3px solid #CCC; + padding-left: 15px; } #gravatar { - width: 70px; - border-radius: 35px; - display: block; - margin: 0 auto; - position: absolute; - right: -6px; - bottom: -20px; + width: 70px; + border-radius: 35px; + display: block; + margin: 0 auto; + position: absolute; + right: -6px; + bottom: -20px; } h1 { - font-size: 1.5em; - font-weight: 300; - text-transform: uppercase; - display: inline-block; - padding-bottom: 12px; - border-bottom: 2px dashed #CCC; - margin: 0; + font-size: 1.5em; + font-weight: 300; + text-transform: uppercase; + display: inline-block; + padding-bottom: 12px; + border-bottom: 2px dashed #CCC; + margin: 0; } a { @@ -67,20 +67,19 @@ a { } a:hover, a:focus, a:active { - color: white; + color: white; } @media (min-width: 640px) { - h1 { - font-size: 2.4em; - } + h1 { + font-size: 2.4em; + } - body { - font-size: 1.4em; - } + body { + font-size: 1.4em; + } - article p:first-of-type { - font-size: 1em; - } + article p:first-of-type { + font-size: 1em; + } } - diff --git a/themes/blackwood.css b/themes/blackwood.css index 9427ff34..1c8600d0 100644 --- a/themes/blackwood.css +++ b/themes/blackwood.css @@ -1,41 +1,166 @@ @import url(https://fonts.googleapis.com/css?family=Lustria); -body { background: url(data:image/jpeg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAAA8AAD/4QMtaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjAtYzA2MSA2NC4xNDA5NDksIDIwMTAvMTIvMDctMTA6NTc6MDEgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDUzUuMSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QzNEOEQ3NzU1NDBBMTFFMTk4MjJCQ0IwQTI2N0M1ODUiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QzNEOEQ3NzY1NDBBMTFFMTk4MjJCQ0IwQTI2N0M1ODUiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDM0Q4RDc3MzU0MEExMUUxOTgyMkJDQjBBMjY3QzU4NSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDM0Q4RDc3NDU0MEExMUUxOTgyMkJDQjBBMjY3QzU4NSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pv/uACZBZG9iZQBkwAAAAAEDABUEAwYKDQAAGHMAABm8AAAzCQAA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JNptJpNJpJJpJJNJNtppNptppJNNtpNpNtppNNNNJJNJpJpNNNJtNtNNppNJpppNJtJtppJtJtppppNpptJtpNJpJNtJNptNpttpttJNJppJtttpJJNNtJJNNJNtJtNNpNttttNNJJtpJtNpJtNNNJpNNJJtNttJJJJNNJJJptNJtNJpJpNtpNJNtJJtNNptJppNttJtJtptpJJNpJJpttJpJttJNttNttJJJtttJNpNNNNJtpJpJNtpNJpJJpptpNNpppppNNtJJtJpJppNJNptJptJtptNJpJpNJttJJJpNJNNNJpptJpttJNNpNNpppJpNpJttNNtNppJttJtptttJtJJNNJNJNJNpttpJtNptpptpptJpNpNJNJJJttNJNptJJJpJpttpNNpJJNppJJppttJJJJptJtJptttpNNpNJJJtNpJJJJpNNtNpNtJtNNJptNpNtptptJptpJNNNptNtpNJtJtttJpJNNJJNNNpNpNNNtNJNJtptJptJNtpNttNtpNtpJJNJpppptpNtNNJttpNpJNtNJJNNNNNptptJtttJttNtpppNJNpJtJNNppptJttJJtJtJppJNNJNJNppptNNtNtNtJJtpJpNNJJJppNtpttJJJtNNJNNJNJJJpNNNppNpptJptttNttJtJNtJNtJppNpNtNNppptptttNpNJNtNtNJJpppttNtJJptNtJNtpNpNJtptNNJtpptpNJJptNJtJptpNNtNppNNpNtJJNtpptNptttJJptNJpJJJJtNpJNJpJpJNpJNNtptpppNJpJpJpptJttJNtJttJJNpJppJNtttNtptNNJtJJNNJtJpJJJJNpJNNJJpJtpJNpNNtNtNNpNJNNNptpppJtttNttptptNtpJpNNJJNNpNpNtJJpptptJJtptNJJNNNJptJJJppJppptpJpNptNJpJJNNtpJNJJtNNpJJttJppNJpNNNJNtttttJtNNtttNpNttJNpJNtNNNNptJptNNtJtpJtJNppJJtttJtJJpNJtJtJppttNtNJJNJttJtNJtNJpJJtpNJJJttNNJJNJJJpJNNJJNptppptJNJpNppptttJpJpptNJJpJtJJpNNJNJtJtpNNttpptJJNJNJJNNJppJpJJpJpJJptNtJtptJtpNJJNttpNNtJJJttNJJpJNpJNppJppNJNNttJtJpJNtNJtptNtpJtptNtNtpNJppJJpJJNNNJNNNJNJNtNpNptJppptpJNJtJJNNtJNNtptNtJpNtNJNtNpNNptJNNJJJJNNtNttJJtttttJNtpJNptJJtNJpNJtJtJtpJNpptJtJJtJNttNptptNtNtJtNtNJttptJtttNNJtJttNJptJJttNNJtJttNtpJNJtNJNtttJtpNNpptJJpJJpJJJtpJtpNtJtNNptJppNtJpppppJNNNttpttpNtNNJtJptppJJNtpNNNtNttJtJpNptJpJNptNtJtNttpttpNJNppJJtJNtNNNNttNtpJJNNptJJJNJppNttJNttptpptNpJtpNpNtpJtNNNJJtJJtttptJNtNNNNpJNptJNJNNNJtJpNpNJNpJJNJtpJtNJNNptJNtNNtppNJpttNpJNJtpNtJNJttNNNptJJJJNppJpJNNNJNNpNtttNNJJtNJJtNJttptpptJpNNJppNJtNJpJptpJpttpJttttNNppppJpNtJpptNNJttpNptttJtJJppJpJJppNpNJNttNNtpJNNJtJtpJNNpJppJNpNJppttJNtJJNJpNpJNNJtNNNpJNNtJtNJpJppJJJNNpptpNptp/9oACAEBAwE/EASOYxW+RYUtXaFbqND7/wBQgorzPdFyfUaTNGKFdlcujFboavhE56ClQuruRKrUYY0fkmvMQXcs+TH11ZdcmThyTYpSGglW1Iapcp/hrYkVMA+H3EXcY8dA0qmy9joWKUqxRz1+CjrT5FUHlR6gS75iV3cRuC8qPJXKySdBksl/Y6SJM18junFoYkq6Onn8Mtl/jFbZ5UMinNQZpNYcNjOH0VEUIqTuScT1HdrVQxKM/wDkl1vAlBXhvwNS2tEc/XuIZlMqkx+lgqDx9EaHMpecqCo1Nk/I2qEqUqUac/pb+8xdxMU9RQrm2+xe836ErXpHsebA5U8z8KkeY9jctN3SzuSKlZS9x4WlmfAlesGu5FSUSuuhRyJDRk+juOJONnU7Ka7iQ56v0QLd4/SpVq0iw0FRFSo1UYSjsUM+sGwVj2VLqJ9piynLFMm6JpJjtN6Civn8FCjNU8oMRq0px3FcPye6zyH6EqT2JX3/ANRVI1efDGnXyeyZY7pz5Qzch5GJCXPwJ1qq7kURRKKDp5eR0ma0FJtKa26lI118iQn9gmkcjVwvhDh5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) repeat scroll 0 0 transparent; font-family: 'Lustria', serif; font-weight: 400; margin: 0 auto; max-width: 450px; padding-top: 70px; position: relative; width: 80%; font-size: 0.9em; } - -article { display:block; max-width:720px; margin:0 auto; } -article { background-color: #FFFFFF; border: 12px solid #3A3A3A; border-radius: 10px 10px 10px 10px; max-width: 450px; padding: 0 15px; width: 80%; } -h1 { width: 84%; font-size: 1.6em; } -article p:nth-of-type(1) { font-size: 1.2em; color: red; } -footer { margin: 0 auto; max-width: 450px; position: absolute; top: 90px; width: 80%; right:0; } -footer p { zoom: 1; background-color: #FFFFFF; -moz-box-shadow: 1px 1px 3px #989898; -webkit-box-shadow: 1px 1px 3px #989898; -moz-box-shadow: 1px 1px 3px #989898; box-shadow: 1px 1px 3px #989898; font-size: 0.9em ; max-width: 318px; padding: 4px 7px; position: absolute; right: -106px; top: 0; - -webkit-transform: rotate(34.5deg); /* Saf3.1+, Chrome */ --moz-transform: rotate(34.5deg); /* FF3.5+ */ --o-transform: rotate(34.5deg); /* Opera 10.5 */ --ms-transform: rotate(40deg); /* IE9 */ -transform: rotate(34.5deg);} -footer p:before { background-color: #999999; -moz-box-shadow: 1px 1px 2px #000000; -webkit-box-shadow: 1px 1px 2px #000000; box-shadow: 1px 1px 2px #000000; content: ""; display: block; height: 30px; left: 0; opacity: 0.5; position: absolute; top: -13px; width: 7px; --webkit-transform: rotate(34.5deg); /* Saf3.1+, Chrome */ --moz-transform: rotate(34.5deg); /* FF3.5+ */ --o-transform: rotate(34.5deg); /* Opera 10.5 */ --ms-transform: rotate(34.5deg); /* IE9 */ -transform: rotate(34.5deg); -zoom: 1; } -footer p:after { background-color: #999999; box-shadow: 1px 1px 2px #000000; content: ""; height: 30px; opacity: 0.5; position: absolute; right: 0; width: 7px; --webkit-transform: rotate(34.5deg); /* Saf3.1+, Chrome */ --moz-transform: rotate(34.5deg); /* FF3.5+ */ --o-transform: rotate(34.5deg); /* Opera 10.5 */ --ms-transform: rotate(34.5deg); /* IE9 */ -transform: rotate(34.5deg); -zoom:1; } -footer a { text-decoration: none;} -a, a:visited { color: #F00; border-bottom: 1px dotted #F5D5CD; } -a:active, a:hover { border-bottom: 1px dotted #F00; } -/* ie 8 and lower hackery as they don't support proper rotates and filters conflict with ms-transform. So we simply remove those css styles and have the footer sit at the bottom */ -*+html footer p { position: static; background: none; } -*+html footer { position: static; background-color: #fff; margin-top: 10px; } -@media \0screen { - footer p:before, footer p:after { display: none; } - footer p { position: static; background: none; } - footer { position: static; background-color: #fff; } +body { + background: url(data:image/jpeg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAAA8AAD/4QMtaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjAtYzA2MSA2NC4xNDA5NDksIDIwMTAvMTIvMDctMTA6NTc6MDEgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDUzUuMSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QzNEOEQ3NzU1NDBBMTFFMTk4MjJCQ0IwQTI2N0M1ODUiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QzNEOEQ3NzY1NDBBMTFFMTk4MjJCQ0IwQTI2N0M1ODUiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDM0Q4RDc3MzU0MEExMUUxOTgyMkJDQjBBMjY3QzU4NSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDM0Q4RDc3NDU0MEExMUUxOTgyMkJDQjBBMjY3QzU4NSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pv/uACZBZG9iZQBkwAAAAAEDABUEAwYKDQAAGHMAABm8AAAzCQAA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JNptJpNJpJJpJJNJNtppNptppJNNtpNpNtppNNNNJJNJpJpNNNJtNtNNppNJpppNJtJtppJtJtppppNpptJtpNJpJNtJNptNpttpttJNJppJtttpJJNNtJJNNJNtJtNNpNttttNNJJtpJtNpJtNNNJpNNJJtNttJJJJNNJJJptNJtNJpJpNtpNJNtJJtNNptJppNttJtJtptpJJNpJJpttJpJttJNttNttJJJtttJNpNNNNJtpJpJNtpNJpJJpptpNNpppppNNtJJtJpJppNJNptJptJtptNJpJpNJttJJJpNJNNNJpptJpttJNNpNNpppJpNpJttNNtNppJttJtptttJtJJNNJNJNJNpttpJtNptpptpptJpNpNJNJJJttNJNptJJJpJpttpNNpJJNppJJppttJJJJptJtJptttpNNpNJJJtNpJJJJpNNtNpNtJtNNJptNpNtptptJptpJNNNptNtpNJtJtttJpJNNJJNNNpNpNNNtNJNJtptJptJNtpNttNtpNtpJJNJpppptpNtNNJttpNpJNtNJJNNNNNptptJtttJttNtpppNJNpJtJNNppptJttJJtJtJppJNNJNJNppptNNtNtNtJJtpJpNNJJJppNtpttJJJtNNJNNJNJJJpNNNppNpptJptttNttJtJNtJNtJppNpNtNNppptptttNpNJNtNtNJJpppttNtJJptNtJNtpNpNJtptNNJtpptpNJJptNJtJptpNNtNppNNpNtJJNtpptNptttJJptNJpJJJJtNpJNJpJpJNpJNNtptpppNJpJpJpptJttJNtJttJJNpJppJNtttNtptNNJtJJNNJtJpJJJJNpJNNJJpJtpJNpNNtNtNNpNJNNNptpppJtttNttptptNtpJpNNJJNNpNpNtJJpptptJJtptNJJNNNJptJJJppJppptpJpNptNJpJJNNtpJNJJtNNpJJttJppNJpNNNJNtttttJtNNtttNpNttJNpJNtNNNNptJptNNtJtpJtJNppJJtttJtJJpNJtJtJppttNtNJJNJttJtNJtNJpJJtpNJJJttNNJJNJJJpJNNJJNptppptJNJpNppptttJpJpptNJJpJtJJpNNJNJtJtpNNttpptJJNJNJJNNJppJpJJpJpJJptNtJtptJtpNJJNttpNNtJJJttNJJpJNpJNppJppNJNNttJtJpJNtNJtptNtpJtptNtNtpNJppJJpJJNNNJNNNJNJNtNpNptJppptpJNJtJJNNtJNNtptNtJpNtNJNtNpNNptJNNJJJJNNtNttJJtttttJNtpJNptJJtNJpNJtJtJtpJNpptJtJJtJNttNptptNtNtJtNtNJttptJtttNNJtJttNJptJJttNNJtJttNtpJNJtNJNtttJtpNNpptJJpJJpJJJtpJtpNtJtNNptJppNtJpppppJNNNttpttpNtNNJtJptppJJNtpNNNtNttJtJpNptJpJNptNtJtNttpttpNJNppJJtJNtNNNNttNtpJJNNptJJJNJppNttJNttptpptNpJtpNpNtpJtNNNJJtJJtttptJNtNNNNpJNptJNJNNNJtJpNpNJNpJJNJtpJtNJNNptJNtNNtppNJpttNpJNJtpNtJNJttNNNptJJJJNppJpJNNNJNNpNtttNNJJtNJJtNJttptpptJpNNJppNJtNJpJptpJpttpJttttNNppppJpNtJpptNNJttpNptttJtJJppJpJJppNpNJNttNNtpJNNJtJtpJNNpJppJNpNJppttJNtJJNJpNpJNNJtNNNpJNNtJtNJpJppJJJNNpptpNptp/9oACAEBAwE/EASOYxW+RYUtXaFbqND7/wBQgorzPdFyfUaTNGKFdlcujFboavhE56ClQuruRKrUYY0fkmvMQXcs+TH11ZdcmThyTYpSGglW1Iapcp/hrYkVMA+H3EXcY8dA0qmy9joWKUqxRz1+CjrT5FUHlR6gS75iV3cRuC8qPJXKySdBksl/Y6SJM18junFoYkq6Onn8Mtl/jFbZ5UMinNQZpNYcNjOH0VEUIqTuScT1HdrVQxKM/wDkl1vAlBXhvwNS2tEc/XuIZlMqkx+lgqDx9EaHMpecqCo1Nk/I2qEqUqUac/pb+8xdxMU9RQrm2+xe836ErXpHsebA5U8z8KkeY9jctN3SzuSKlZS9x4WlmfAlesGu5FSUSuuhRyJDRk+juOJONnU7Ka7iQ56v0QLd4/SpVq0iw0FRFSo1UYSjsUM+sGwVj2VLqJ9piynLFMm6JpJjtN6Civn8FCjNU8oMRq0px3FcPye6zyH6EqT2JX3/ANRVI1efDGnXyeyZY7pz5Qzch5GJCXPwJ1qq7kURRKKDp5eR0ma0FJtKa26lI118iQn9gmkcjVwvhDh5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) repeat scroll 0 0 transparent; + font-family: 'Lustria', serif; + font-weight: 400; + margin: 0 auto; + max-width: 450px; + padding-top: 70px; + position: relative; + width: 80%; + font-size: 0.9em; +} + +article { + display: block; + max-width: 720px; + margin: 0 auto; +} + +article { + background-color: #FFFFFF; + border: 12px solid #3A3A3A; + border-radius: 10px 10px 10px 10px; + max-width: 450px; + padding: 0 15px; + width: 80%; +} + +h1 { + width: 84%; + font-size: 1.6em; +} + +article p:nth-of-type(1) { + font-size: 1.2em; + color: red; +} + +footer { + margin: 0 auto; + max-width: 450px; + position: absolute; + top: 90px; + width: 80%; + right: 0; +} + +footer p { + zoom: 1; + background-color: #FFFFFF; + -moz-box-shadow: 1px 1px 3px #989898; + -webkit-box-shadow: 1px 1px 3px #989898; + -moz-box-shadow: 1px 1px 3px #989898; + box-shadow: 1px 1px 3px #989898; + font-size: 0.9em; + max-width: 318px; + padding: 4px 7px; + position: absolute; + right: -106px; + top: 0; + -webkit-transform: rotate(34.5deg); + /* Saf3.1+, Chrome */ + -moz-transform: rotate(34.5deg); + /* FF3.5+ */ + -o-transform: rotate(34.5deg); + /* Opera 10.5 */ + -ms-transform: rotate(40deg); + /* IE9 */ + transform: rotate(34.5deg); +} + +footer p:before { + background-color: #999999; + -moz-box-shadow: 1px 1px 2px #000000; + -webkit-box-shadow: 1px 1px 2px #000000; + box-shadow: 1px 1px 2px #000000; + content: ""; + display: block; + height: 30px; + left: 0; + opacity: 0.5; + position: absolute; + top: -13px; + width: 7px; + -webkit-transform: rotate(34.5deg); + /* Saf3.1+, Chrome */ + -moz-transform: rotate(34.5deg); + /* FF3.5+ */ + -o-transform: rotate(34.5deg); + /* Opera 10.5 */ + -ms-transform: rotate(34.5deg); + /* IE9 */ + transform: rotate(34.5deg); + zoom: 1; +} + +footer p:after { + background-color: #999999; + box-shadow: 1px 1px 2px #000000; + content: ""; + height: 30px; + opacity: 0.5; + position: absolute; + right: 0; + width: 7px; + -webkit-transform: rotate(34.5deg); + /* Saf3.1+, Chrome */ + -moz-transform: rotate(34.5deg); + /* FF3.5+ */ + -o-transform: rotate(34.5deg); + /* Opera 10.5 */ + -ms-transform: rotate(34.5deg); + /* IE9 */ + transform: rotate(34.5deg); + zoom: 1; +} + +footer a { + text-decoration: none; +} + +a, a:visited { + color: #F00; + border-bottom: 1px dotted #F5D5CD; +} + +a:active, a:hover { + border-bottom: 1px dotted #F00; +} + +/* ie 8 and lower hackery as they don't support proper rotates and filters conflict with ms-transform. So we simply remove those css styles and have the footer sit at the bottom */ +*+html footer p { + position: static; + background: none; +} + +*+html footer { + position: static; + background-color: #fff; + margin-top: 10px; +} + +@media \0screen { + footer p:before, footer p:after { + display: none; + } + + footer p { + position: static; + background: none; + } + + footer { + position: static; + background-color: #fff; + } +} + +#gravatar { + position: relative; + float: left; + margin-top: 1em; + margin-right: 1em; + border: 1px solid #ddd; } -#gravatar { position: relative; float: left; margin-top: 1em; margin-right: 1em; border: 1px solid #ddd; } diff --git a/themes/cherry-white.css b/themes/cherry-white.css index b3b23421..2211116b 100644 --- a/themes/cherry-white.css +++ b/themes/cherry-white.css @@ -1,19 +1,128 @@ @import url(https://fonts.googleapis.com/css?family=Alegreya:400italic,400,700); -body { color: #94979E; font: 16px/28px 'Alegreya', "Garamond",serif; margin: 0; padding: 0 50px;} -article, footer { display:block; max-width:720px; margin:0 auto; } -article {background: repeat scroll 0 0 #FFFFFF; border-bottom: 4px solid #FF3366; border-right: 3px solid #FF6666; padding: 45px 28px 28px; position: relative; -webkit-border-radius: 0px 0 10px 10px; -moz-border-radius: 0px 0 10px 10px; border-radius: 0px 0 10px 10px; margin-top: 28px; border-left: 1px solid #F7F7F7;} -h1 { background: none repeat scroll 0 0 #FF3366; color: #FFFFFF; font-size: 24px; left: -12px; line-height: 32px; padding: 10px 0 10px 13px; position: absolute; top: -22px; width: 100%; display: block; -moz-box-shadow: 2px 7px 0px -3px #CCCCCC; -webkit-box-shadow: 2px 7px 0px -3px #CCCCCC; box-shadow: 2px 7px 0px -3px #CCCCCC; } -h1:after { background-color: #AD0431; border-radius: 0 0 0 32px; content: ""; height: 7px; left: 3px; position: absolute; top: 52px; width: 7px; } -h1:before { background-color: #D01B4B; content: ""; height: 11px; left: 0; position: absolute; top: 52px; width: 11px; -webkit-border-radius: 0 0 0 32px; -moz-border-radius: 0 0 0 32px; border-radius: 0 0 0 32px; } -article p:nth-of-type(1) {font-size: 24px;} -a, a:visited { color:#3A3A3A; padding:4px 4px 0 4px; text-decoration:none; } -a:active, a:hover { color:#710257; } -a img { position: absolute; top: 0; right: 0; border: 0; } -:-moz-any-link:focus {color:#bc4a46;} -::selection {color:#bc4a46;} -::-moz-selection {color:#bc4a46; } -footer { background-color: #FFFFFF; border-bottom: 3px solid #FF3366; margin-top: 10px; padding: 4px 28px; text-align: center; border-top: 1px solid #F5F5F5; } -footer a { padding: 10px; } -footer p { font-size: 16px; margin: 0; padding: 0;} -#gravatar { position: relative; float: right; border: 3px solid #CCCCCC; top: -2.3em; z-index: 1; border-radius: 10px; } \ No newline at end of file +body { + color: #94979E; + font: 16px/28px 'Alegreya', "Garamond", serif; + margin: 0; + padding: 0 50px; +} + +article, footer { + display: block; + max-width: 720px; + margin: 0 auto; +} + +article { + background: repeat scroll 0 0 #FFFFFF; + border-bottom: 4px solid #FF3366; + border-right: 3px solid #FF6666; + padding: 45px 28px 28px; + position: relative; + -webkit-border-radius: 0px 0 10px 10px; + -moz-border-radius: 0px 0 10px 10px; + border-radius: 0px 0 10px 10px; + margin-top: 28px; + border-left: 1px solid #F7F7F7; +} + +h1 { + background: none repeat scroll 0 0 #FF3366; + color: #FFFFFF; + font-size: 24px; + left: -12px; + line-height: 32px; + padding: 10px 0 10px 13px; + position: absolute; + top: -22px; + width: 100%; + display: block; + -moz-box-shadow: 2px 7px 0px -3px #CCCCCC; + -webkit-box-shadow: 2px 7px 0px -3px #CCCCCC; + box-shadow: 2px 7px 0px -3px #CCCCCC; +} + +h1:after { + background-color: #AD0431; + border-radius: 0 0 0 32px; + content: ""; + height: 7px; + left: 3px; + position: absolute; + top: 52px; + width: 7px; +} + +h1:before { + background-color: #D01B4B; + content: ""; + height: 11px; + left: 0; + position: absolute; + top: 52px; + width: 11px; + -webkit-border-radius: 0 0 0 32px; + -moz-border-radius: 0 0 0 32px; + border-radius: 0 0 0 32px; +} + +article p:nth-of-type(1) { + font-size: 24px; +} + +a, a:visited { + color: #3A3A3A; + padding: 4px 4px 0 4px; + text-decoration: none; +} + +a:active, a:hover { + color: #710257; +} + +a img { + position: absolute; + top: 0; + right: 0; + border: 0; +} + +:-moz-any-link:focus { + color: #bc4a46; +} + +::selection { + color: #bc4a46; +} + +::-moz-selection { + color: #bc4a46; +} + +footer { + background-color: #FFFFFF; + border-bottom: 3px solid #FF3366; + margin-top: 10px; + padding: 4px 28px; + text-align: center; + border-top: 1px solid #F5F5F5; +} + +footer a { + padding: 10px; +} + +footer p { + font-size: 16px; + margin: 0; + padding: 0; +} + +#gravatar { + position: relative; + float: right; + border: 3px solid #CCCCCC; + top: -2.3em; + z-index: 1; + border-radius: 10px; +} diff --git a/themes/cherry.css b/themes/cherry.css index f9c00996..6dc6f661 100644 --- a/themes/cherry.css +++ b/themes/cherry.css @@ -1,19 +1,126 @@ @import url(https://fonts.googleapis.com/css?family=Alegreya:400italic,400,700); -body { background: url("cherry.png") repeat scroll 0 0 transparent; color: #94979E; font: 16px/28px 'Alegreya', "Garamond",serif; margin: 0; padding: 0 50px;} -article, footer { display:block; max-width:720px; margin:0 auto; } -article {background: repeat scroll 0 0 #FFFFFF; border-bottom: 4px solid #FF3366; border-right: 3px solid #FF6666;padding: 74px 28px 28px; position: relative; -webkit-border-radius: 0px 0 10px 10px; -moz-border-radius: 0px 0 10px 10px; border-radius: 0px 0 10px 10px; } -h1 { background: none repeat scroll 0 0 #FF3366; color: #FFFFFF; font-size: 24px; left: -12px; line-height: 32px; padding: 10px 0 10px 13px; position: absolute; top: 0; width: 100%; display: block; -moz-box-shadow: 2px 7px 0px -3px #CCCCCC; -webkit-box-shadow: 2px 7px 0px -3px #CCCCCC; box-shadow: 2px 7px 0px -3px #CCCCCC; } -h1:after { background-color: #AD0431; border-radius: 0 0 0 32px; content: ""; height: 7px; left: 3px; position: absolute; top: 52px; width: 7px; } -h1:before { background-color: #D01B4B; content: ""; height: 11px; left: 0; position: absolute; top: 52px; width: 11px; -webkit-border-radius: 0 0 0 32px; -moz-border-radius: 0 0 0 32px; border-radius: 0 0 0 32px; } -article p:nth-of-type(1) {font-size: 24px;} -a, a:visited { color:#3A3A3A; padding:4px 4px 0 4px; text-decoration:none; } -a:active, a:hover { color:#710257; } -a img { position: absolute; top: 0; right: 0; border: 0; } -:-moz-any-link:focus {color:#bc4a46;} -::selection {color:#bc4a46;} -::-moz-selection {color:#bc4a46; } -footer { background-color: #FFFFFF; border-bottom: 3px solid #FF3366; margin-top: 10px; padding: 4px 28px; text-align: center; } -footer a { padding: 10px; } -footer p { font-size: 16px; margin: 0; padding: 0;} -#gravatar { position: relative; float: right; border: 3px solid #CCCCCC; top: -4.3em; z-index: 1; border-radius: 10px; } \ No newline at end of file +body { + background: url("cherry.png") repeat scroll 0 0 transparent; + color: #94979E; + font: 16px/28px 'Alegreya', "Garamond", serif; + margin: 0; + padding: 0 50px; +} + +article, footer { + display: block; + max-width: 720px; + margin: 0 auto; +} + +article { + background: repeat scroll 0 0 #FFFFFF; + border-bottom: 4px solid #FF3366; + border-right: 3px solid #FF6666; + padding: 74px 28px 28px; + position: relative; + -webkit-border-radius: 0px 0 10px 10px; + -moz-border-radius: 0px 0 10px 10px; + border-radius: 0px 0 10px 10px; +} + +h1 { + background: none repeat scroll 0 0 #FF3366; + color: #FFFFFF; + font-size: 24px; + left: -12px; + line-height: 32px; + padding: 10px 0 10px 13px; + position: absolute; + top: 0; + width: 100%; + display: block; + -moz-box-shadow: 2px 7px 0px -3px #CCCCCC; + -webkit-box-shadow: 2px 7px 0px -3px #CCCCCC; + box-shadow: 2px 7px 0px -3px #CCCCCC; +} + +h1:after { + background-color: #AD0431; + border-radius: 0 0 0 32px; + content: ""; + height: 7px; + left: 3px; + position: absolute; + top: 52px; + width: 7px; +} + +h1:before { + background-color: #D01B4B; + content: ""; + height: 11px; + left: 0; + position: absolute; + top: 52px; + width: 11px; + -webkit-border-radius: 0 0 0 32px; + -moz-border-radius: 0 0 0 32px; + border-radius: 0 0 0 32px; +} + +article p:nth-of-type(1) { + font-size: 24px; +} + +a, a:visited { + color: #3A3A3A; + padding: 4px 4px 0 4px; + text-decoration: none; +} + +a:active, a:hover { + color: #710257; +} + +a img { + position: absolute; + top: 0; + right: 0; + border: 0; +} + +:-moz-any-link:focus { + color: #bc4a46; +} + +::selection { + color: #bc4a46; +} + +::-moz-selection { + color: #bc4a46; +} + +footer { + background-color: #FFFFFF; + border-bottom: 3px solid #FF3366; + margin-top: 10px; + padding: 4px 28px; + text-align: center; +} + +footer a { + padding: 10px; +} + +footer p { + font-size: 16px; + margin: 0; + padding: 0; +} + +#gravatar { + position: relative; + float: right; + border: 3px solid #CCCCCC; + top: -4.3em; + z-index: 1; + border-radius: 10px; +} diff --git a/themes/default-dark.css b/themes/default-dark.css index 58b45393..47cf5ee5 100644 --- a/themes/default-dark.css +++ b/themes/default-dark.css @@ -1,20 +1,100 @@ @import url(https://fonts.googleapis.com/css?family=Inconsolata); -html { background: #1a1a1a; } -body { margin: 0; font-family: "Inconsolata", "DejaVu Sans Mono","Bitstream Vera Sans Mono", monospace; font-size: 1.2em; line-height: 1.2em; color: #999;} -article, footer { display: block; min-width: 360px; max-width: 900px; width: 80%; } -article { margin: 2.5em auto 0 auto; border: 1px solid ; border-color: #505050 #373737 #373737 #505050; padding: 2em; background: #2a2a2a; } -h1 { margin-top: 0; } -article p:first-of-type { margin-top: 1.6em; } -article p:last-child { margin-bottom: 0; } -footer { margin: 0em auto 2em auto; text-align: center; } -footer a { color: #666; text-shadow: 0 1px 1px #999; text-decoration:none; font-size:.8em; padding: 1em; } + +html { + background: #1a1a1a; +} + +body { + margin: 0; + font-family: "Inconsolata", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", monospace; + font-size: 1.2em; + line-height: 1.2em; + color: #999; +} + +article, footer { + display: block; + min-width: 360px; + max-width: 900px; + width: 80%; +} + +article { + margin: 2.5em auto 0 auto; + border: 1px solid; + border-color: #505050 #373737 #373737 #505050; + padding: 2em; + background: #2a2a2a; +} + +h1 { + margin-top: 0; +} + +article p:first-of-type { + margin-top: 1.6em; +} + +article p:last-child { + margin-bottom: 0; +} + +footer { + margin: 0em auto 2em auto; + text-align: center; +} + +footer a { + color: #666; + text-shadow: 0 1px 1px #999; + text-decoration: none; + font-size: .8em; + padding: 1em; +} + /*footer a:before{content: "â¦"; font-size:1.5em; padding-right:.2em; } */ -footer a:hover, footer a:focus { color: white; } -h1 {font-weight:normal; display:inline; border-bottom:1px solid #999; padding:0 0 3px 0; line-height: 36px; } -a { color:#0520cf; text-decoration:none;} -a:hover, a:focus { color:#2844FA; } -a:active { color:white; } -:-moz-any-link:focus {color:#000; border:0;} -::selection {background:#ccc;} -::-moz-selection {background:#ccc;} -#gravatar{position:relative;float:right; margin-bottom: 1em; margin-left: 1em; border: 1px solid #999;} \ No newline at end of file +footer a:hover, footer a:focus { + color: white; +} + +h1 { + font-weight: normal; + display: inline; + border-bottom: 1px solid #999; + padding: 0 0 3px 0; + line-height: 36px; +} + +a { + color: #0520cf; + text-decoration: none; +} + +a:hover, a:focus { + color: #2844FA; +} + +a:active { + color: white; +} + +:-moz-any-link:focus { + color: #000; + border: 0; +} + +::selection { + background: #ccc; +} + +::-moz-selection { + background: #ccc; +} + +#gravatar { + position: relative; + float: right; + margin-bottom: 1em; + margin-left: 1em; + border: 1px solid #999; +} diff --git a/themes/default.css b/themes/default.css index c95cd86c..fb575c14 100644 --- a/themes/default.css +++ b/themes/default.css @@ -1,22 +1,109 @@ @import url(https://fonts.googleapis.com/css?family=Inconsolata); -html { background: #eee; } -body { margin: 0; font-family: "Inconsolata", "DejaVu Sans Mono","Bitstream Vera Sans Mono", monospace; font-size: 1.2em; line-height: 1.2em; } -article, footer { display: block; min-width: 360px; max-width: 900px; width: 80%; } -article { margin: 2.5em auto 0 auto; border: 1px solid ; border-color: #ddd #aaa #aaa #ddd; padding: 2em; background: #fff; } -h1 { margin-top: 0; } -article p:first-of-type { margin-top: 1.6em; } -article p:last-child { margin-bottom: 0; } -footer { margin: 0em auto 2em auto; text-align: center; } -footer a { color: #666; text-shadow: 0 1px 1px #fff; text-decoration:none; font-size:.8em; padding: 1em; } -/*footer a:before{content: "⏦"; font-size:1.5em; padding-right:.2em; } */ -footer a:hover, footer a:focus { color: #111; } -h1 {font-weight:normal; display:inline; border-bottom:1px solid black; padding:0 0 3px 0; line-height: 36px; } -a { color:#2844FA; text-decoration:none;} -a:hover, a:focus { color:#1B29A4; } -a:active { color:#000; } -:-moz-any-link:focus {color:#000; border:0;} -::selection {background:#ccc;} -::-moz-selection {background:#ccc;} -#gravatar { position: relative; float: right; margin-bottom: 1em; margin-left: 1em; border: 1px solid #ddd; } -@media all and (max-width: 500px) { article {padding:1em;} body {font-size:1em;} } +html { + background: #eee; +} + +body { + margin: 0; + font-family: "Inconsolata", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", monospace; + font-size: 1.2em; + line-height: 1.2em; +} + +article, footer { + display: block; + min-width: 360px; + max-width: 900px; + width: 80%; +} + +article { + margin: 2.5em auto 0 auto; + border: 1px solid; + border-color: #ddd #aaa #aaa #ddd; + padding: 2em; + background: #fff; +} + +h1 { + margin-top: 0; +} + +article p:first-of-type { + margin-top: 1.6em; +} + +article p:last-child { + margin-bottom: 0; +} + +footer { + margin: 0em auto 2em auto; + text-align: center; +} + +footer a { + color: #666; + text-shadow: 0 1px 1px #fff; + text-decoration: none; + font-size: .8em; + padding: 1em; +} + +/*footer a:before{content: "⏦"; font-size:1.5em; padding-right:.2em; } */ +footer a:hover, footer a:focus { + color: #111; +} + +h1 { + font-weight: normal; + display: inline; + border-bottom: 1px solid black; + padding: 0 0 3px 0; + line-height: 36px; +} + +a { + color: #2844FA; + text-decoration: none; +} + +a:hover, a:focus { + color: #1B29A4; +} + +a:active { + color: #000; +} + +:-moz-any-link:focus { + color: #000; + border: 0; +} + +::selection { + background: #ccc; +} + +::-moz-selection { + background: #ccc; +} + +#gravatar { + position: relative; + float: right; + margin-bottom: 1em; + margin-left: 1em; + border: 1px solid #ddd; +} + +@media all and (max-width: 500px) { + article { + padding: 1em; + } + + body { + font-size: 1em; + } +} diff --git a/themes/double-windsor.css b/themes/double-windsor.css index cc5b8642..48db1e6a 100644 --- a/themes/double-windsor.css +++ b/themes/double-windsor.css @@ -1,75 +1,75 @@ @import url(https://fonts.googleapis.com/css?family=Lora:400,400italic); body { - font-family: Lora, Constantia, Georgia, serif; - padding: 8px; - line-height: 1.6em; - color: #444; + font-family: Lora, Constantia, Georgia, serif; + padding: 8px; + line-height: 1.6em; + color: #444; } article { - max-width: 660px; - margin: 10px auto 0; - text-align: justify; + max-width: 660px; + margin: 10px auto 0; + text-align: justify; } h1 { - font-weight: 400; - text-align: center; - font-variant: small-caps; - letter-spacing: 0.25em; - font-size: 1.9em; - border-bottom: 1px solid #EEE; - padding-bottom: 0.8em; - margin-bottom: 5px; - line-height: 1.1em; + font-weight: 400; + text-align: center; + font-variant: small-caps; + letter-spacing: 0.25em; + font-size: 1.9em; + border-bottom: 1px solid #EEE; + padding-bottom: 0.8em; + margin-bottom: 5px; + line-height: 1.1em; } article p:nth-of-type(1) { - border-top: 1px solid #EEE; - margin-top: 0; - padding-top: 1.2em; - font-style: italic; - text-align: center; - font-size: 1.05em; + border-top: 1px solid #EEE; + margin-top: 0; + padding-top: 1.2em; + font-style: italic; + text-align: center; + font-size: 1.05em; } article p:last-child { - padding-bottom: 1.3em; - margin-bottom: 0.0em; - border-bottom: 1px solid #EEE; - font-size: 0.95em; + padding-bottom: 1.3em; + margin-bottom: 0.0em; + border-bottom: 1px solid #EEE; + font-size: 0.95em; } a { - padding: 0.1em; + padding: 0.1em; } a:link, a:visited { - text-decoration: none; - color: #C53; - border-bottom: 1px dotted; + text-decoration: none; + color: #C53; + border-bottom: 1px dotted; } a:hover { - background: #D64; - color: white; - border: none; + background: #D64; + color: white; + border: none; } a:active { - background: #920; + background: #920; } footer { - border-top: 1px solid #EEE; - font-size: 0.8em; - text-align: center; - max-width: 660px; - margin: 0 auto; - margin-top: 5px; - font-style: italic; + border-top: 1px solid #EEE; + font-size: 0.8em; + text-align: center; + max-width: 660px; + margin: 0 auto; + margin-top: 5px; + font-style: italic; } #gravatar { @@ -77,4 +77,4 @@ footer { position: relative; float: right; top: -1.7em; -} \ No newline at end of file +} diff --git a/themes/dusk.css b/themes/dusk.css index 46c0c190..c8dde6a1 100644 --- a/themes/dusk.css +++ b/themes/dusk.css @@ -1,133 +1,132 @@ /* Dusk theme v1.0.0 by @georapbox */ - @import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400); *::selection { - background: #de5833; - color: #eff7ff; + background: #de5833; + color: #eff7ff; } *::-moz-selection { - background: #de5833; - color: #eff7ff; + background: #de5833; + color: #eff7ff; } * { - margin: 0; - padding: 0; + margin: 0; + padding: 0; } body { - font-family: 'Open Sans', Helvetica Neue, Helvetica, Arial, sans-serif; - font-size: 1.1em; - background: #272b35; - color: #67778a; - margin: 86px 0; - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; + font-family: 'Open Sans', Helvetica Neue, Helvetica, Arial, sans-serif; + font-size: 1.1em; + background: #272b35; + color: #67778a; + margin: 86px 0; + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; } a:link, a:visited, a:hover { - position: relative; - text-decoration: none; - color: #de5833; - -webkit-transition: color 0.3s ease-in-out; - transition: color 0.3s ease-in-out; - -webkit-transform: scaleX(0); - transform: scaleX(0); + position: relative; + text-decoration: none; + color: #de5833; + -webkit-transition: color 0.3s ease-in-out; + transition: color 0.3s ease-in-out; + -webkit-transform: scaleX(0); + transform: scaleX(0); } a:hover { - color: #eff7ff; + color: #eff7ff; } a:before { - content: " "; - position: absolute; - width: 100%; - height: 2px; - bottom: 0; - left: 0; - background-color: #de5833; - visibility: hidden; - -webkit-transform: scaleX(0); - transform: scaleX(0); - -webkit-transition: all 0.3s ease-in-out; - transition: all 0.3s ease-in-out; + content: " "; + position: absolute; + width: 100%; + height: 2px; + bottom: 0; + left: 0; + background-color: #de5833; + visibility: hidden; + -webkit-transform: scaleX(0); + transform: scaleX(0); + -webkit-transition: all 0.3s ease-in-out; + transition: all 0.3s ease-in-out; } a:hover:before { - visibility: visible; - -webkit-transform: scaleX(1); - transform: scaleX(1); + visibility: visible; + -webkit-transform: scaleX(1); + transform: scaleX(1); } article { - display: block; - margin: 1.0em; - position: relative; - margin: 0 auto; + display: block; + margin: 1.0em; + position: relative; + margin: 0 auto; } article h1 { - margin: 0; - padding: 60px 0.4em 0 0.4em; - color: #eff7ff; - font-size: 2.0em; - font-weight: 300; - text-align: center; - background: #1F222A; + margin: 0; + padding: 60px 0.4em 0 0.4em; + color: #eff7ff; + font-size: 2.0em; + font-weight: 300; + text-align: center; + background: #1F222A; } -article h1 + p { - max-width: 100%; - margin-top: 0; - padding-top: 0.1em; - padding-bottom: 60px; - font-size: 1.0em; - text-align: center; - background: #1F222A; +article h1+p { + max-width: 100%; + margin-top: 0; + padding-top: 0.1em; + padding-bottom: 60px; + font-size: 1.0em; + text-align: center; + background: #1F222A; } -article h1 + p + p { - margin-top: 1.6em; +article h1+p+p { + margin-top: 1.6em; } article p { - padding: 0 1.4em; - text-align: justify; - line-height: 1.5; - max-width: 960px; - margin: 1.0em auto; + padding: 0 1.4em; + text-align: justify; + line-height: 1.5; + max-width: 960px; + margin: 1.0em auto; } article p:last-child { - padding-bottom: 1.8em; - font-size: 0.9em; + padding-bottom: 1.8em; + font-size: 0.9em; } footer { - margin: 0 auto; - font-size: 0.8em; - text-align: center; + margin: 0 auto; + font-size: 0.8em; + text-align: center; } footer p { - padding: 0 1.4em; + padding: 0 1.4em; } #gravatar { - display: block; - position: absolute; - top: -43px; - left: 50%; - margin-left: -43px; - border-radius: 100%; - border: 3px solid #272b35; + display: block; + position: absolute; + top: -43px; + left: 50%; + margin-left: -43px; + border-radius: 100%; + border: 3px solid #272b35; } @media (max-width: 750px) { - article h1 + p { - font-size: 0.8em; - } + article h1+p { + font-size: 0.8em; + } } diff --git a/themes/eula-modern.css b/themes/eula-modern.css index ae1e0c6a..f08c6ab4 100644 --- a/themes/eula-modern.css +++ b/themes/eula-modern.css @@ -1,135 +1,137 @@ /*author: lo sauer, 2013 - https://github.com/lsauer, @sauerlo */ * { - scrollbar-base-color: white; - scrollbar-track-color: white; - scrollbar-darkshadow-color: white; - scrollbar-3dlight-color: white; - scrollbar-arrow-color: #757778; - scrollbar-shadow-color: #bec1c4; - scrollbar-highlight-color: #bec1c4; + scrollbar-base-color: white; + scrollbar-track-color: white; + scrollbar-darkshadow-color: white; + scrollbar-3dlight-color: white; + scrollbar-arrow-color: #757778; + scrollbar-shadow-color: #bec1c4; + scrollbar-highlight-color: #bec1c4; } ::-webkit-scrollbar { - width: 8px; - height: 8px; + width: 8px; + height: 8px; } ::-webkit-scrollbar-thumb { - background: #888; - border-radius: 8px; - border:1px solid rgba(0,0,0,0.3); - box-shadow: -3px -3px 6px rgba(180,180,160,.5) inset, 3px 3px 3px rgba(226,226,225,.5) inset; + background: #888; + border-radius: 8px; + border: 1px solid rgba(0, 0, 0, 0.3); + box-shadow: -3px -3px 6px rgba(180, 180, 160, .5) inset, 3px 3px 3px rgba(226, 226, 225, .5) inset; } ::-webkit-scrollbar-track { - background:#fbfbfb; - box-shadow: 3px 3px 10px rgba(0,0,0,.25) inset; + background: #fbfbfb; + box-shadow: 3px 3px 10px rgba(0, 0, 0, .25) inset; } body { - font-family: Segoe UI, 'SegoeUIWF',Arial,sans-serif; - padding: 10px; - line-height: 1.5em; + font-family: Segoe UI, 'SegoeUIWF', Arial, sans-serif; + padding: 10px; + line-height: 1.5em; } article { - position: relative; - color: #444; - max-width: 700px; - margin: 10px auto 0px; - text-align: justify; + position: relative; + color: #444; + max-width: 700px; + margin: 10px auto 0px; + text-align: justify; } @media (max-device-height: 699px) { - article { - max-width: none !important; - margin: 8px 8px !important; - } + article { + max-width: none !important; + margin: 8px 8px !important; + } } h1 { - font-size: 3.7em; - line-height: 1.3em; - font-family: Segoe UI Light,'SegoeUILightWF',Arial,sans-serif; - color: #000; - padding: 0px; - font-weight: normal; - clear: both; - margin: .2em auto .4em; - margin-right: 100px; /* allow for avatar */ + font-size: 3.7em; + line-height: 1.3em; + font-family: Segoe UI Light, 'SegoeUILightWF', Arial, sans-serif; + color: #000; + padding: 0px; + font-weight: normal; + clear: both; + margin: .2em auto .4em; + margin-right: 100px; + /* allow for avatar */ } -article p:nth-of-type(1) { background: #666; - color: white; - border: none; - border-top: 1px solid #eee; - margin-top: 0; - padding: .3em .3em; - font-style: normal; - text-align: center; - font-size: 0.95em; +article p:nth-of-type(1) { + background: #666; + color: white; + border: none; + border-top: 1px solid #eee; + margin-top: 0; + padding: .3em .3em; + font-style: normal; + text-align: center; + font-size: 0.95em; } article p:last-child { - line-height: 26px; - padding-left: 15px; - border-width: 0px 0px 0px 3px; - border-style: solid; - padding-bottom: 1.3em; - margin-bottom: 0.0em; - font-size: 0.9em; + line-height: 26px; + padding-left: 15px; + border-width: 0px 0px 0px 3px; + border-style: solid; + padding-bottom: 1.3em; + margin-bottom: 0.0em; + font-size: 0.9em; } a { - padding: 0.1em; + padding: 0.1em; } a:link, a:visited { - text-decoration: none; - color: #666; - border: none; - transition: all 1s; - padding: 1px; + text-decoration: none; + color: #666; + border: none; + transition: all 1s; + padding: 1px; } a:hover { - background: #666; - color: white; - border: none; - transition: all 1s; + background: #666; + color: white; + border: none; + transition: all 1s; } article a:link, article a:visited { - color: #fff; - background: #666; + color: #fff; + background: #666; } a:active { - background: #999; + background: #999; } footer { - border-top: 1px solid #eee; - font-size: 0.8em; - text-align: center; - max-width: 660px; - margin: 0 auto; - margin-top: 5px; - font-style: italic; + border-top: 1px solid #eee; + font-size: 0.8em; + text-align: center; + max-width: 660px; + margin: 0 auto; + margin-top: 5px; + font-style: italic; } footer a:link, footer a:visited { - color:#ccc; + color: #ccc; } #gravatar { - position: absolute; - right: 0; - border: 3px solid #ccc; - // top: 4.5em; - z-index: 1; - border-radius: 10px; + position: absolute; + right: 0; + border: 3px solid #ccc; + // top: 4.5em; + z-index: 1; + border-radius: 10px; } diff --git a/themes/flesch.css b/themes/flesch.css index ecec83a7..1b7858f4 100644 --- a/themes/flesch.css +++ b/themes/flesch.css @@ -1,13 +1,55 @@ body { - margin:0; padding: 50px; + margin: 0; + padding: 50px; background: #fff url(/themes/flesch.png); - font: 16px/28px "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif; color: #252519; + font: 16px/28px "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif; + color: #252519; +} + +article, footer { + display: block; + max-width: 720px; + margin: 0; +} + +article { + padding: 28px; + background: #fff; + border: 1px solid #ccc; +} + +footer { + padding: 0 28px; + text-align: center; +} + +h1 { + margin: 0; + font-size: 24px; + line-height: 32px; +} + +a, a:visited { + color: #105cb6; + padding: 4px; + text-decoration: none; +} + +a:active, a:hover { + color: #003; +} + +a img { + position: absolute; + top: 0; + right: 0; + border: 0; +} + +#gravatar { + position: relative; + float: right; + margin-bottom: 1em; + margin-left: 1em; + border: 1px solid #ddd; } -article, footer { display:block; max-width:720px; margin:0; } -article { padding:28px; background:#fff; border:1px solid #ccc; } -footer { padding:0 28px; text-align:center; } -h1 { margin:0; font-size: 24px; line-height: 32px;} -a, a:visited { color:#105cb6; padding:4px; text-decoration:none; } -a:active, a:hover { color:#003; } -a img { position: absolute; top: 0; right: 0; border: 0; } -#gravatar { position: relative; float: right; margin-bottom: 1em; margin-left: 1em; border: 1px solid #ddd; } \ No newline at end of file diff --git a/themes/friendly.css b/themes/friendly.css index 775c22d3..cb6cb482 100644 --- a/themes/friendly.css +++ b/themes/friendly.css @@ -1,77 +1,76 @@ @import url(https://fonts.googleapis.com/css?family=Lato:300); html { - font-size: 16px; - background-color: #f7f7f7; + font-size: 16px; + background-color: #f7f7f7; } body { - font-family: "Lato", Helvetica, Arial, sans-serif; - font-size: 1.3em; - font-weight: 300; - color: #333; + font-family: "Lato", Helvetica, Arial, sans-serif; + font-size: 1.3em; + font-weight: 300; + color: #333; } article, footer { - max-width: 877px; - margin: 0 auto; - text-align: center; + max-width: 877px; + margin: 0 auto; + text-align: center; } article { - margin-top: 1em; - padding: 1em; - text-align: center; - position: relative; + margin-top: 1em; + padding: 1em; + text-align: center; + position: relative; } article p { - text-align: left; + text-align: left; } article p:first-of-type { - text-align: center; - font-size: .8em; - + text-align: center; + font-size: .8em; } article p:last-of-type { - border-left: 3px solid #333; - padding-left: 15px; + border-left: 3px solid #333; + padding-left: 15px; } #gravatar { - width: 70px; - border-radius: 35px; - display: block; - margin: 0 auto; - position: absolute; - bottom: -3em; - left: 0; + width: 70px; + border-radius: 35px; + display: block; + margin: 0 auto; + position: absolute; + bottom: -3em; + left: 0; } h1 { - font-size: 1.5em; - font-weight: 300; - text-transform: uppercase; - display: inline-block; - padding-bottom: 12px; - border-bottom: 2px dashed #d9d9d9; - margin: 0; + font-size: 1.5em; + font-weight: 300; + text-transform: uppercase; + display: inline-block; + padding-bottom: 12px; + border-bottom: 2px dashed #d9d9d9; + margin: 0; } footer { - background: #dadada; - border-radius: 5px; + background: #dadada; + border-radius: 5px; } footer p { - text-align: left; - padding-left: 80px; + text-align: left; + padding-left: 80px; } footer p a { - color: #333; + color: #333; } a { @@ -81,19 +80,19 @@ a { } a:hover, a:focus, a:active { - color: black; + color: black; } @media (min-width: 640px) { - h1 { - font-size: 2.4em; - } + h1 { + font-size: 2.4em; + } - body { - font-size: 1.4em; - } + body { + font-size: 1.4em; + } - article p:first-of-type { - font-size: 1em; - } + article p:first-of-type { + font-size: 1em; + } } diff --git a/themes/hacker.css b/themes/hacker.css index 523904f3..bbc5314b 100644 --- a/themes/hacker.css +++ b/themes/hacker.css @@ -1,965 +1,7019 @@ +html { + font-family: sans-serif; + -ms-text-size-adjust: 100%; + -webkit-text-size-adjust: 100% +} -html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%} -body{margin:0} -article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block} -audio,canvas,progress,video{display:inline-block;vertical-align:baseline} -audio:not([controls]){display:none;height:0} -[hidden],template{display:none} -a{background-color:transparent} -a:active,a:hover{outline:0} -abbr[title]{border-bottom:1px dotted} -b,strong{font-weight:bold} -dfn{font-style:italic} -h1{font-size:2em;margin:.67em 0} -mark{background:#ff0;color:#000} -small{font-size:80%} -sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline} -sup{top:-0.5em} -sub{bottom:-0.25em} -img{border:0} -svg:not(:root){overflow:hidden} -figure{margin:1em 40px} -hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0} -pre{overflow:auto} -code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em} -button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0} -button{overflow:visible} -button,select{text-transform:none} -button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer} -button[disabled],html input[disabled]{cursor:default} -button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0} -input{line-height:normal} -input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0} -input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto} -input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box} -input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none} -fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em} -legend{border:0;padding:0} -textarea{overflow:auto} -optgroup{font-weight:bold} -table{border-collapse:collapse;border-spacing:0} -td,th{padding:0} -@media print{*,*:before,*:after{background:transparent !important;color:#000 !important;box-shadow:none !important;text-shadow:none !important} a,a:visited{text-decoration:underline} a[href]:after{content:" (" attr(href) ")"} abbr[title]:after{content:" (" attr(title) ")"} a[href^="#"]:after,a[href^="javascript:"]:after{content:""} pre,blockquote{border:1px solid #999;page-break-inside:avoid} thead{display:table-header-group} tr,img{page-break-inside:avoid} img{max-width:100% !important} p,h2,h3{orphans:3;widows:3} h2,h3{page-break-after:avoid} select{background:#fff !important} .navbar{display:none} .btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important} .label{border:1px solid #000} .table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important} .table-bordered th,.table-bordered td{border:1px solid #ddd !important}}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale} -.glyphicon-asterisk:before{content:"\2a"} -.glyphicon-plus:before{content:"\2b"} -.glyphicon-euro:before,.glyphicon-eur:before{content:"\20ac"} -.glyphicon-minus:before{content:"\2212"} -.glyphicon-cloud:before{content:"\2601"} -.glyphicon-envelope:before{content:"\2709"} -.glyphicon-pencil:before{content:"\270f"} -.glyphicon-glass:before{content:"\e001"} -.glyphicon-music:before{content:"\e002"} -.glyphicon-search:before{content:"\e003"} -.glyphicon-heart:before{content:"\e005"} -.glyphicon-star:before{content:"\e006"} -.glyphicon-star-empty:before{content:"\e007"} -.glyphicon-user:before{content:"\e008"} -.glyphicon-film:before{content:"\e009"} -.glyphicon-th-large:before{content:"\e010"} -.glyphicon-th:before{content:"\e011"} -.glyphicon-th-list:before{content:"\e012"} -.glyphicon-ok:before{content:"\e013"} -.glyphicon-remove:before{content:"\e014"} -.glyphicon-zoom-in:before{content:"\e015"} -.glyphicon-zoom-out:before{content:"\e016"} -.glyphicon-off:before{content:"\e017"} -.glyphicon-signal:before{content:"\e018"} -.glyphicon-cog:before{content:"\e019"} -.glyphicon-trash:before{content:"\e020"} -.glyphicon-home:before{content:"\e021"} -.glyphicon-file:before{content:"\e022"} -.glyphicon-time:before{content:"\e023"} -.glyphicon-road:before{content:"\e024"} -.glyphicon-download-alt:before{content:"\e025"} -.glyphicon-download:before{content:"\e026"} -.glyphicon-upload:before{content:"\e027"} -.glyphicon-inbox:before{content:"\e028"} -.glyphicon-play-circle:before{content:"\e029"} -.glyphicon-repeat:before{content:"\e030"} -.glyphicon-refresh:before{content:"\e031"} -.glyphicon-list-alt:before{content:"\e032"} -.glyphicon-lock:before{content:"\e033"} -.glyphicon-flag:before{content:"\e034"} -.glyphicon-headphones:before{content:"\e035"} -.glyphicon-volume-off:before{content:"\e036"} -.glyphicon-volume-down:before{content:"\e037"} -.glyphicon-volume-up:before{content:"\e038"} -.glyphicon-qrcode:before{content:"\e039"} -.glyphicon-barcode:before{content:"\e040"} -.glyphicon-tag:before{content:"\e041"} -.glyphicon-tags:before{content:"\e042"} -.glyphicon-book:before{content:"\e043"} -.glyphicon-bookmark:before{content:"\e044"} -.glyphicon-print:before{content:"\e045"} -.glyphicon-camera:before{content:"\e046"} -.glyphicon-font:before{content:"\e047"} -.glyphicon-bold:before{content:"\e048"} -.glyphicon-italic:before{content:"\e049"} -.glyphicon-text-height:before{content:"\e050"} -.glyphicon-text-width:before{content:"\e051"} -.glyphicon-align-left:before{content:"\e052"} -.glyphicon-align-center:before{content:"\e053"} -.glyphicon-align-right:before{content:"\e054"} -.glyphicon-align-justify:before{content:"\e055"} -.glyphicon-list:before{content:"\e056"} -.glyphicon-indent-left:before{content:"\e057"} -.glyphicon-indent-right:before{content:"\e058"} -.glyphicon-facetime-video:before{content:"\e059"} -.glyphicon-picture:before{content:"\e060"} -.glyphicon-map-marker:before{content:"\e062"} -.glyphicon-adjust:before{content:"\e063"} -.glyphicon-tint:before{content:"\e064"} -.glyphicon-edit:before{content:"\e065"} -.glyphicon-share:before{content:"\e066"} -.glyphicon-check:before{content:"\e067"} -.glyphicon-move:before{content:"\e068"} -.glyphicon-step-backward:before{content:"\e069"} -.glyphicon-fast-backward:before{content:"\e070"} -.glyphicon-backward:before{content:"\e071"} -.glyphicon-play:before{content:"\e072"} -.glyphicon-pause:before{content:"\e073"} -.glyphicon-stop:before{content:"\e074"} -.glyphicon-forward:before{content:"\e075"} -.glyphicon-fast-forward:before{content:"\e076"} -.glyphicon-step-forward:before{content:"\e077"} -.glyphicon-eject:before{content:"\e078"} -.glyphicon-chevron-left:before{content:"\e079"} -.glyphicon-chevron-right:before{content:"\e080"} -.glyphicon-plus-sign:before{content:"\e081"} -.glyphicon-minus-sign:before{content:"\e082"} -.glyphicon-remove-sign:before{content:"\e083"} -.glyphicon-ok-sign:before{content:"\e084"} -.glyphicon-question-sign:before{content:"\e085"} -.glyphicon-info-sign:before{content:"\e086"} -.glyphicon-screenshot:before{content:"\e087"} -.glyphicon-remove-circle:before{content:"\e088"} -.glyphicon-ok-circle:before{content:"\e089"} -.glyphicon-ban-circle:before{content:"\e090"} -.glyphicon-arrow-left:before{content:"\e091"} -.glyphicon-arrow-right:before{content:"\e092"} -.glyphicon-arrow-up:before{content:"\e093"} -.glyphicon-arrow-down:before{content:"\e094"} -.glyphicon-share-alt:before{content:"\e095"} -.glyphicon-resize-full:before{content:"\e096"} -.glyphicon-resize-small:before{content:"\e097"} -.glyphicon-exclamation-sign:before{content:"\e101"} -.glyphicon-gift:before{content:"\e102"} -.glyphicon-leaf:before{content:"\e103"} -.glyphicon-fire:before{content:"\e104"} -.glyphicon-eye-open:before{content:"\e105"} -.glyphicon-eye-close:before{content:"\e106"} -.glyphicon-warning-sign:before{content:"\e107"} -.glyphicon-plane:before{content:"\e108"} -.glyphicon-calendar:before{content:"\e109"} -.glyphicon-random:before{content:"\e110"} -.glyphicon-comment:before{content:"\e111"} -.glyphicon-magnet:before{content:"\e112"} -.glyphicon-chevron-up:before{content:"\e113"} -.glyphicon-chevron-down:before{content:"\e114"} -.glyphicon-retweet:before{content:"\e115"} -.glyphicon-shopping-cart:before{content:"\e116"} -.glyphicon-folder-close:before{content:"\e117"} -.glyphicon-folder-open:before{content:"\e118"} -.glyphicon-resize-vertical:before{content:"\e119"} -.glyphicon-resize-horizontal:before{content:"\e120"} -.glyphicon-hdd:before{content:"\e121"} -.glyphicon-bullhorn:before{content:"\e122"} -.glyphicon-bell:before{content:"\e123"} -.glyphicon-certificate:before{content:"\e124"} -.glyphicon-thumbs-up:before{content:"\e125"} -.glyphicon-thumbs-down:before{content:"\e126"} -.glyphicon-hand-right:before{content:"\e127"} -.glyphicon-hand-left:before{content:"\e128"} -.glyphicon-hand-up:before{content:"\e129"} -.glyphicon-hand-down:before{content:"\e130"} -.glyphicon-circle-arrow-right:before{content:"\e131"} -.glyphicon-circle-arrow-left:before{content:"\e132"} -.glyphicon-circle-arrow-up:before{content:"\e133"} -.glyphicon-circle-arrow-down:before{content:"\e134"} -.glyphicon-globe:before{content:"\e135"} -.glyphicon-wrench:before{content:"\e136"} -.glyphicon-tasks:before{content:"\e137"} -.glyphicon-filter:before{content:"\e138"} -.glyphicon-briefcase:before{content:"\e139"} -.glyphicon-fullscreen:before{content:"\e140"} -.glyphicon-dashboard:before{content:"\e141"} -.glyphicon-paperclip:before{content:"\e142"} -.glyphicon-heart-empty:before{content:"\e143"} -.glyphicon-link:before{content:"\e144"} -.glyphicon-phone:before{content:"\e145"} -.glyphicon-pushpin:before{content:"\e146"} -.glyphicon-usd:before{content:"\e148"} -.glyphicon-gbp:before{content:"\e149"} -.glyphicon-sort:before{content:"\e150"} -.glyphicon-sort-by-alphabet:before{content:"\e151"} -.glyphicon-sort-by-alphabet-alt:before{content:"\e152"} -.glyphicon-sort-by-order:before{content:"\e153"} -.glyphicon-sort-by-order-alt:before{content:"\e154"} -.glyphicon-sort-by-attributes:before{content:"\e155"} -.glyphicon-sort-by-attributes-alt:before{content:"\e156"} -.glyphicon-unchecked:before{content:"\e157"} -.glyphicon-expand:before{content:"\e158"} -.glyphicon-collapse-down:before{content:"\e159"} -.glyphicon-collapse-up:before{content:"\e160"} -.glyphicon-log-in:before{content:"\e161"} -.glyphicon-flash:before{content:"\e162"} -.glyphicon-log-out:before{content:"\e163"} -.glyphicon-new-window:before{content:"\e164"} -.glyphicon-record:before{content:"\e165"} -.glyphicon-save:before{content:"\e166"} -.glyphicon-open:before{content:"\e167"} -.glyphicon-saved:before{content:"\e168"} -.glyphicon-import:before{content:"\e169"} -.glyphicon-export:before{content:"\e170"} -.glyphicon-send:before{content:"\e171"} -.glyphicon-floppy-disk:before{content:"\e172"} -.glyphicon-floppy-saved:before{content:"\e173"} -.glyphicon-floppy-remove:before{content:"\e174"} -.glyphicon-floppy-save:before{content:"\e175"} -.glyphicon-floppy-open:before{content:"\e176"} -.glyphicon-credit-card:before{content:"\e177"} -.glyphicon-transfer:before{content:"\e178"} -.glyphicon-cutlery:before{content:"\e179"} -.glyphicon-header:before{content:"\e180"} -.glyphicon-compressed:before{content:"\e181"} -.glyphicon-earphone:before{content:"\e182"} -.glyphicon-phone-alt:before{content:"\e183"} -.glyphicon-tower:before{content:"\e184"} -.glyphicon-stats:before{content:"\e185"} -.glyphicon-sd-video:before{content:"\e186"} -.glyphicon-hd-video:before{content:"\e187"} -.glyphicon-subtitles:before{content:"\e188"} -.glyphicon-sound-stereo:before{content:"\e189"} -.glyphicon-sound-dolby:before{content:"\e190"} -.glyphicon-sound-5-1:before{content:"\e191"} -.glyphicon-sound-6-1:before{content:"\e192"} -.glyphicon-sound-7-1:before{content:"\e193"} -.glyphicon-copyright-mark:before{content:"\e194"} -.glyphicon-registration-mark:before{content:"\e195"} -.glyphicon-cloud-download:before{content:"\e197"} -.glyphicon-cloud-upload:before{content:"\e198"} -.glyphicon-tree-conifer:before{content:"\e199"} -.glyphicon-tree-deciduous:before{content:"\e200"} -.glyphicon-cd:before{content:"\e201"} -.glyphicon-save-file:before{content:"\e202"} -.glyphicon-open-file:before{content:"\e203"} -.glyphicon-level-up:before{content:"\e204"} -.glyphicon-copy:before{content:"\e205"} -.glyphicon-paste:before{content:"\e206"} -.glyphicon-alert:before{content:"\e209"} -.glyphicon-equalizer:before{content:"\e210"} -.glyphicon-king:before{content:"\e211"} -.glyphicon-queen:before{content:"\e212"} -.glyphicon-pawn:before{content:"\e213"} -.glyphicon-bishop:before{content:"\e214"} -.glyphicon-knight:before{content:"\e215"} -.glyphicon-baby-formula:before{content:"\e216"} -.glyphicon-tent:before{content:"\26fa"} -.glyphicon-blackboard:before{content:"\e218"} -.glyphicon-bed:before{content:"\e219"} -.glyphicon-apple:before{content:"\f8ff"} -.glyphicon-erase:before{content:"\e221"} -.glyphicon-hourglass:before{content:"\231b"} -.glyphicon-lamp:before{content:"\e223"} -.glyphicon-duplicate:before{content:"\e224"} -.glyphicon-piggy-bank:before{content:"\e225"} -.glyphicon-scissors:before{content:"\e226"} -.glyphicon-bitcoin:before{content:"\e227"} -.glyphicon-btc:before{content:"\e227"} -.glyphicon-xbt:before{content:"\e227"} -.glyphicon-yen:before{content:"\00a5"} -.glyphicon-jpy:before{content:"\00a5"} -.glyphicon-ruble:before{content:"\20bd"} -.glyphicon-rub:before{content:"\20bd"} -.glyphicon-scale:before{content:"\e230"} -.glyphicon-ice-lolly:before{content:"\e231"} -.glyphicon-ice-lolly-tasted:before{content:"\e232"} -.glyphicon-education:before{content:"\e233"} -.glyphicon-option-horizontal:before{content:"\e234"} -.glyphicon-option-vertical:before{content:"\e235"} -.glyphicon-menu-hamburger:before{content:"\e236"} -.glyphicon-modal-window:before{content:"\e237"} -.glyphicon-oil:before{content:"\e238"} -.glyphicon-grain:before{content:"\e239"} -.glyphicon-sunglasses:before{content:"\e240"} -.glyphicon-text-size:before{content:"\e241"} -.glyphicon-text-color:before{content:"\e242"} -.glyphicon-text-background:before{content:"\e243"} -.glyphicon-object-align-top:before{content:"\e244"} -.glyphicon-object-align-bottom:before{content:"\e245"} -.glyphicon-object-align-horizontal:before{content:"\e246"} -.glyphicon-object-align-left:before{content:"\e247"} -.glyphicon-object-align-vertical:before{content:"\e248"} -.glyphicon-object-align-right:before{content:"\e249"} -.glyphicon-triangle-right:before{content:"\e250"} -.glyphicon-triangle-left:before{content:"\e251"} -.glyphicon-triangle-bottom:before{content:"\e252"} -.glyphicon-triangle-top:before{content:"\e253"} -.glyphicon-console:before{content:"\e254"} -.glyphicon-superscript:before{content:"\e255"} -.glyphicon-subscript:before{content:"\e256"} -.glyphicon-menu-left:before{content:"\e257"} -.glyphicon-menu-right:before{content:"\e258"} -.glyphicon-menu-down:before{content:"\e259"} -.glyphicon-menu-up:before{content:"\e260"} -*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} -*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} -html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)} -body{font-family:Monospace;font-size:14px;line-height:1.428571429;color:#0c0;background-color:#222} -input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit} -a{color:#0f0;text-decoration:none}a:hover,a:focus{color:#00b300;text-decoration:underline} -a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} -figure{margin:0} -img{vertical-align:middle} -.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto} -.img-rounded{border-radius:0} -.img-thumbnail{padding:4px;line-height:1.428571429;background-color:#222;border:1px solid #ddd;border-radius:0;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto} -.img-circle{border-radius:50%} -hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #3c3c3c} -.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0} -.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} -[role="button"]{cursor:pointer} -h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:Monospace;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#030} -h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%} -h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%} -h1,.h1{font-size:36px} -h2,.h2{font-size:30px} -h3,.h3{font-size:23px} -h4,.h4{font-size:17px} -h5,.h5{font-size:14px} -h6,.h6{font-size:11px} -p{margin:0 0 10px} -.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}} -small,.small{font-size:85%} -mark,.mark{background-color:#3c3c3c;padding:.2em} -.text-left{text-align:left} -.text-right{text-align:right} -.text-center{text-align:center} -.text-justify{text-align:justify} -.text-nowrap{white-space:nowrap} -.text-lowercase{text-transform:lowercase} -.text-uppercase{text-transform:uppercase} -.text-capitalize{text-transform:capitalize} -.text-muted{color:#030} -.text-primary{color:#0f0}a.text-primary:hover{color:#0c0} -.text-success{color:#0d0}a.text-success:hover{color:#0a0} -.text-info{color:#7d8cff}a.text-info:hover{color:#4a5fff} -.text-warning{color:#f4ff00}a.text-warning:hover{color:#c3cc00} -.text-danger{color:#d00}a.text-danger:hover{color:#a00} -.bg-primary{color:#fff;background-color:#0f0}a.bg-primary:hover{background-color:#0c0} -.bg-success{background-color:#3c3c3c}a.bg-success:hover{background-color:#222} -.bg-info{background-color:#3c3c3c}a.bg-info:hover{background-color:#222} -.bg-warning{background-color:#3c3c3c}a.bg-warning:hover{background-color:#222} -.bg-danger{background-color:#3c3c3c}a.bg-danger:hover{background-color:#222} -.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #030} -ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0} -.list-unstyled{padding-left:0;list-style:none} -.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px} -dl{margin-top:0;margin-bottom:20px} -dt,dd{line-height:1.428571429} -dt{font-weight:bold} -dd{margin-left:0} -@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap} .dl-horizontal dd{margin-left:180px}} -abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #030} -.initialism{font-size:90%;text-transform:uppercase} -blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #030}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0} -blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.428571429;color:#030}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'} -.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #030;border-left:0;text-align:right}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''} -.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'} -address{margin-bottom:20px;font-style:normal;line-height:1.428571429} -code,kbd,pre,samp{font-family:Monospace} -code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:0} -kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:0;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}kbd kbd{padding:0;font-size:100%;font-weight:bold;box-shadow:none} -pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.428571429;word-break:break-all;word-wrap:break-word;color:#0c0;background-color:#f5f5f5;border:1px solid #ccc;border-radius:0}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0} -.pre-scrollable{max-height:340px;overflow-y:scroll} -.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}} -.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px} -.row{margin-left:-15px;margin-right:-15px} -.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px} -.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12{float:left} -.col-xs-12{width:100%} -.col-xs-11{width:91.66666666666666%} -.col-xs-10{width:83.33333333333334%} -.col-xs-9{width:75%} -.col-xs-8{width:66.66666666666666%} -.col-xs-7{width:58.333333333333336%} -.col-xs-6{width:50%} -.col-xs-5{width:41.66666666666667%} -.col-xs-4{width:33.33333333333333%} -.col-xs-3{width:25%} -.col-xs-2{width:16.666666666666664%} -.col-xs-1{width:8.333333333333332%} -.col-xs-pull-12{right:100%} -.col-xs-pull-11{right:91.66666666666666%} -.col-xs-pull-10{right:83.33333333333334%} -.col-xs-pull-9{right:75%} -.col-xs-pull-8{right:66.66666666666666%} -.col-xs-pull-7{right:58.333333333333336%} -.col-xs-pull-6{right:50%} -.col-xs-pull-5{right:41.66666666666667%} -.col-xs-pull-4{right:33.33333333333333%} -.col-xs-pull-3{right:25%} -.col-xs-pull-2{right:16.666666666666664%} -.col-xs-pull-1{right:8.333333333333332%} -.col-xs-pull-0{right:auto} -.col-xs-push-12{left:100%} -.col-xs-push-11{left:91.66666666666666%} -.col-xs-push-10{left:83.33333333333334%} -.col-xs-push-9{left:75%} -.col-xs-push-8{left:66.66666666666666%} -.col-xs-push-7{left:58.333333333333336%} -.col-xs-push-6{left:50%} -.col-xs-push-5{left:41.66666666666667%} -.col-xs-push-4{left:33.33333333333333%} -.col-xs-push-3{left:25%} -.col-xs-push-2{left:16.666666666666664%} -.col-xs-push-1{left:8.333333333333332%} -.col-xs-push-0{left:auto} -.col-xs-offset-12{margin-left:100%} -.col-xs-offset-11{margin-left:91.66666666666666%} -.col-xs-offset-10{margin-left:83.33333333333334%} -.col-xs-offset-9{margin-left:75%} -.col-xs-offset-8{margin-left:66.66666666666666%} -.col-xs-offset-7{margin-left:58.333333333333336%} -.col-xs-offset-6{margin-left:50%} -.col-xs-offset-5{margin-left:41.66666666666667%} -.col-xs-offset-4{margin-left:33.33333333333333%} -.col-xs-offset-3{margin-left:25%} -.col-xs-offset-2{margin-left:16.666666666666664%} -.col-xs-offset-1{margin-left:8.333333333333332%} -.col-xs-offset-0{margin-left:0} -@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12{float:left} .col-sm-12{width:100%} .col-sm-11{width:91.66666666666666%} .col-sm-10{width:83.33333333333334%} .col-sm-9{width:75%} .col-sm-8{width:66.66666666666666%} .col-sm-7{width:58.333333333333336%} .col-sm-6{width:50%} .col-sm-5{width:41.66666666666667%} .col-sm-4{width:33.33333333333333%} .col-sm-3{width:25%} .col-sm-2{width:16.666666666666664%} .col-sm-1{width:8.333333333333332%} .col-sm-pull-12{right:100%} .col-sm-pull-11{right:91.66666666666666%} .col-sm-pull-10{right:83.33333333333334%} .col-sm-pull-9{right:75%} .col-sm-pull-8{right:66.66666666666666%} .col-sm-pull-7{right:58.333333333333336%} .col-sm-pull-6{right:50%} .col-sm-pull-5{right:41.66666666666667%} .col-sm-pull-4{right:33.33333333333333%} .col-sm-pull-3{right:25%} .col-sm-pull-2{right:16.666666666666664%} .col-sm-pull-1{right:8.333333333333332%} .col-sm-pull-0{right:auto} .col-sm-push-12{left:100%} .col-sm-push-11{left:91.66666666666666%} .col-sm-push-10{left:83.33333333333334%} .col-sm-push-9{left:75%} .col-sm-push-8{left:66.66666666666666%} .col-sm-push-7{left:58.333333333333336%} .col-sm-push-6{left:50%} .col-sm-push-5{left:41.66666666666667%} .col-sm-push-4{left:33.33333333333333%} .col-sm-push-3{left:25%} .col-sm-push-2{left:16.666666666666664%} .col-sm-push-1{left:8.333333333333332%} .col-sm-push-0{left:auto} .col-sm-offset-12{margin-left:100%} .col-sm-offset-11{margin-left:91.66666666666666%} .col-sm-offset-10{margin-left:83.33333333333334%} .col-sm-offset-9{margin-left:75%} .col-sm-offset-8{margin-left:66.66666666666666%} .col-sm-offset-7{margin-left:58.333333333333336%} .col-sm-offset-6{margin-left:50%} .col-sm-offset-5{margin-left:41.66666666666667%} .col-sm-offset-4{margin-left:33.33333333333333%} .col-sm-offset-3{margin-left:25%} .col-sm-offset-2{margin-left:16.666666666666664%} .col-sm-offset-1{margin-left:8.333333333333332%} .col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12{float:left} .col-md-12{width:100%} .col-md-11{width:91.66666666666666%} .col-md-10{width:83.33333333333334%} .col-md-9{width:75%} .col-md-8{width:66.66666666666666%} .col-md-7{width:58.333333333333336%} .col-md-6{width:50%} .col-md-5{width:41.66666666666667%} .col-md-4{width:33.33333333333333%} .col-md-3{width:25%} .col-md-2{width:16.666666666666664%} .col-md-1{width:8.333333333333332%} .col-md-pull-12{right:100%} .col-md-pull-11{right:91.66666666666666%} .col-md-pull-10{right:83.33333333333334%} .col-md-pull-9{right:75%} .col-md-pull-8{right:66.66666666666666%} .col-md-pull-7{right:58.333333333333336%} .col-md-pull-6{right:50%} .col-md-pull-5{right:41.66666666666667%} .col-md-pull-4{right:33.33333333333333%} .col-md-pull-3{right:25%} .col-md-pull-2{right:16.666666666666664%} .col-md-pull-1{right:8.333333333333332%} .col-md-pull-0{right:auto} .col-md-push-12{left:100%} .col-md-push-11{left:91.66666666666666%} .col-md-push-10{left:83.33333333333334%} .col-md-push-9{left:75%} .col-md-push-8{left:66.66666666666666%} .col-md-push-7{left:58.333333333333336%} .col-md-push-6{left:50%} .col-md-push-5{left:41.66666666666667%} .col-md-push-4{left:33.33333333333333%} .col-md-push-3{left:25%} .col-md-push-2{left:16.666666666666664%} .col-md-push-1{left:8.333333333333332%} .col-md-push-0{left:auto} .col-md-offset-12{margin-left:100%} .col-md-offset-11{margin-left:91.66666666666666%} .col-md-offset-10{margin-left:83.33333333333334%} .col-md-offset-9{margin-left:75%} .col-md-offset-8{margin-left:66.66666666666666%} .col-md-offset-7{margin-left:58.333333333333336%} .col-md-offset-6{margin-left:50%} .col-md-offset-5{margin-left:41.66666666666667%} .col-md-offset-4{margin-left:33.33333333333333%} .col-md-offset-3{margin-left:25%} .col-md-offset-2{margin-left:16.666666666666664%} .col-md-offset-1{margin-left:8.333333333333332%} .col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12{float:left} .col-lg-12{width:100%} .col-lg-11{width:91.66666666666666%} .col-lg-10{width:83.33333333333334%} .col-lg-9{width:75%} .col-lg-8{width:66.66666666666666%} .col-lg-7{width:58.333333333333336%} .col-lg-6{width:50%} .col-lg-5{width:41.66666666666667%} .col-lg-4{width:33.33333333333333%} .col-lg-3{width:25%} .col-lg-2{width:16.666666666666664%} .col-lg-1{width:8.333333333333332%} .col-lg-pull-12{right:100%} .col-lg-pull-11{right:91.66666666666666%} .col-lg-pull-10{right:83.33333333333334%} .col-lg-pull-9{right:75%} .col-lg-pull-8{right:66.66666666666666%} .col-lg-pull-7{right:58.333333333333336%} .col-lg-pull-6{right:50%} .col-lg-pull-5{right:41.66666666666667%} .col-lg-pull-4{right:33.33333333333333%} .col-lg-pull-3{right:25%} .col-lg-pull-2{right:16.666666666666664%} .col-lg-pull-1{right:8.333333333333332%} .col-lg-pull-0{right:auto} .col-lg-push-12{left:100%} .col-lg-push-11{left:91.66666666666666%} .col-lg-push-10{left:83.33333333333334%} .col-lg-push-9{left:75%} .col-lg-push-8{left:66.66666666666666%} .col-lg-push-7{left:58.333333333333336%} .col-lg-push-6{left:50%} .col-lg-push-5{left:41.66666666666667%} .col-lg-push-4{left:33.33333333333333%} .col-lg-push-3{left:25%} .col-lg-push-2{left:16.666666666666664%} .col-lg-push-1{left:8.333333333333332%} .col-lg-push-0{left:auto} .col-lg-offset-12{margin-left:100%} .col-lg-offset-11{margin-left:91.66666666666666%} .col-lg-offset-10{margin-left:83.33333333333334%} .col-lg-offset-9{margin-left:75%} .col-lg-offset-8{margin-left:66.66666666666666%} .col-lg-offset-7{margin-left:58.333333333333336%} .col-lg-offset-6{margin-left:50%} .col-lg-offset-5{margin-left:41.66666666666667%} .col-lg-offset-4{margin-left:33.33333333333333%} .col-lg-offset-3{margin-left:25%} .col-lg-offset-2{margin-left:16.666666666666664%} .col-lg-offset-1{margin-left:8.333333333333332%} .col-lg-offset-0{margin-left:0}}table{background-color:transparent} -caption{padding-top:8px;padding-bottom:8px;color:#030;text-align:left} -th{text-align:left} -.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.428571429;vertical-align:top;border-top:1px solid #444} -.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #444} -.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0} -.table>tbody+tbody{border-top:2px solid #444} -.table .table{background-color:#222} -.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px} -.table-bordered{border:1px solid #444}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #444} -.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px} -.table-striped>tbody>tr:nth-of-type(odd){background-color:#080808} -.table-hover>tbody>tr:hover{background-color:#030} -table col[class*="col-"]{position:static;float:none;display:table-column} -table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell} -.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#030} -.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#001900} -.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#3c3c3c} -.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#2f2f2f} -.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#3c3c3c} -.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#2f2f2f} -.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#3c3c3c} -.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#2f2f2f} -.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#3c3c3c} -.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#2f2f2f} -.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #444}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap} .table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0} .table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0} .table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}} -fieldset{padding:0;margin:0;border:0;min-width:0} -legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#0c0;border:0;border-bottom:1px solid #e5e5e5} -label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold} -input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box} -input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal} -input[type="file"]{display:block} -input[type="range"]{display:block;width:100%} -select[multiple],select[size]{height:auto} -input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} -output{display:block;padding-top:7px;font-size:14px;line-height:1.428571429;color:#090} -.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.428571429;color:#090;background-color:#000;background-image:none;border:1px solid #444;border-radius:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}.form-control:focus{border-color:#0f0;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(0, 255, 0, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(0, 255, 0, 0.6)} -.form-control::-moz-placeholder{color:#060;opacity:1} -.form-control:-ms-input-placeholder{color:#060} -.form-control::-webkit-input-placeholder{color:#060} -.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#030;opacity:1} -.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed} -textarea.form-control{height:auto} -input[type="search"]{-webkit-appearance:none} -@media screen and (-webkit-min-device-pixel-ratio:0){input[type="date"],input[type="time"],input[type="datetime-local"],input[type="month"]{line-height:34px}input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm,.input-group-sm input[type="date"],.input-group-sm input[type="time"],.input-group-sm input[type="datetime-local"],.input-group-sm input[type="month"]{line-height:30px} input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg,.input-group-lg input[type="date"],.input-group-lg input[type="time"],.input-group-lg input[type="datetime-local"],.input-group-lg input[type="month"]{line-height:45px}}.form-group{margin-bottom:15px} -.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer} -.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-left:-20px;margin-top:4px \9} -.radio+.radio,.checkbox+.checkbox{margin-top:-5px} -.radio-inline,.checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer} -.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px} -input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed} -.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed} -.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed} -.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:34px}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0} -.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:0}select.input-sm{height:30px;line-height:30px} -textarea.input-sm,select[multiple].input-sm{height:auto} -.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:0}select.form-group-sm .form-control{height:30px;line-height:30px} -textarea.form-group-sm .form-control,select[multiple].form-group-sm .form-control{height:auto} -.form-group-sm .form-control-static{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;min-height:32px} -.input-lg{height:45px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:0}select.input-lg{height:45px;line-height:45px} -textarea.input-lg,select[multiple].input-lg{height:auto} -.form-group-lg .form-control{height:45px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:0}select.form-group-lg .form-control{height:45px;line-height:45px} -textarea.form-group-lg .form-control,select[multiple].form-group-lg .form-control{height:auto} -.form-group-lg .form-control-static{height:45px;padding:10px 16px;font-size:18px;line-height:1.33;min-height:38px} -.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px} -.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none} -.input-lg+.form-control-feedback{width:45px;height:45px;line-height:45px} -.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px} -.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#0d0} -.has-success .form-control{border-color:#0d0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#0a0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #4f4;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #4f4} -.has-success .input-group-addon{color:#0d0;border-color:#0d0;background-color:#3c3c3c} -.has-success .form-control-feedback{color:#0d0} -.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#f4ff00} -.has-warning .form-control{border-color:#f4ff00;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#c3cc00;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #f8ff66;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #f8ff66} -.has-warning .input-group-addon{color:#f4ff00;border-color:#f4ff00;background-color:#3c3c3c} -.has-warning .form-control-feedback{color:#f4ff00} -.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#d00} -.has-error .form-control{border-color:#d00;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#a00;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #f44;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #f44} -.has-error .input-group-addon{color:#d00;border-color:#d00;background-color:#3c3c3c} -.has-error .form-control-feedback{color:#d00} -.has-feedback label~.form-control-feedback{top:25px} -.has-feedback label.sr-only~.form-control-feedback{top:0} -.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#4dff4d} -@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle} .form-inline .form-control{display:inline-block;width:auto;vertical-align:middle} .form-inline .form-control-static{display:inline-block} .form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto} .form-inline .input-group>.form-control{width:100%} .form-inline .control-label{margin-bottom:0;vertical-align:middle} .form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0} .form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0} .form-inline .has-feedback .form-control-feedback{top:0}} -.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px} -.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px} -.form-horizontal .form-group{margin-left:-15px;margin-right:-15px} -@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{right:15px} -@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:14.3px}} -@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px}} -.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.428571429;border-radius:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px} -.btn:hover,.btn:focus,.btn.focus{color:#0f0;text-decoration:none} -.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)} -.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;pointer-events:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none} -.btn-default{color:#0f0;background-color:#222;border-color:#111}.btn-default:hover,.btn-default:focus,.btn-default.focus,.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#0f0;background-color:#080808;border-color:#000} -.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none} -.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#222;border-color:#111} -.btn-default .badge{color:#222;background-color:#0f0} -.btn-primary{color:#222;background-color:#0f0;border-color:#111}.btn-primary:hover,.btn-primary:focus,.btn-primary.focus,.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#222;background-color:#0c0;border-color:#000} -.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none} -.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#0f0;border-color:#111} -.btn-primary .badge{color:#0f0;background-color:#222} -.btn-success{color:#222;background-color:#090;border-color:#111}.btn-success:hover,.btn-success:focus,.btn-success.focus,.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#222;background-color:#060;border-color:#000} -.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none} -.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#090;border-color:#111} -.btn-success .badge{color:#090;background-color:#222} -.btn-info{color:#222;background-color:#36c;border-color:#111}.btn-info:hover,.btn-info:focus,.btn-info.focus,.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#222;background-color:#2952a3;border-color:#000} -.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none} -.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#36c;border-color:#111} -.btn-info .badge{color:#36c;background-color:#222} -.btn-warning{color:#222;background-color:#f4ff00;border-color:#111}.btn-warning:hover,.btn-warning:focus,.btn-warning.focus,.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#222;background-color:#c3cc00;border-color:#000} -.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none} -.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f4ff00;border-color:#111} -.btn-warning .badge{color:#f4ff00;background-color:#222} -.btn-danger{color:#222;background-color:#f00;border-color:#111}.btn-danger:hover,.btn-danger:focus,.btn-danger.focus,.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#222;background-color:#c00;border-color:#000} -.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none} -.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#f00;border-color:#111} -.btn-danger .badge{color:#f00;background-color:#222} -.btn-link{color:#0f0;font-weight:normal;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none} -.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent} -.btn-link:hover,.btn-link:focus{color:#00b300;text-decoration:underline;background-color:transparent} -.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#030;text-decoration:none} -.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:0} -.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:0} -.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:0} -.btn-block{display:block;width:100%} -.btn-block+.btn-block{margin-top:5px} -input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%} -.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1} -.collapse{display:none}.collapse.in{display:block} -tr.collapse.in{display:table-row} -tbody.collapse.in{display:table-row-group} -.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height, visibility;transition-property:height, visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease} -.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-right:4px solid transparent;border-left:4px solid transparent} -.dropup,.dropdown{position:relative} -.dropdown-toggle:focus{outline:0} -.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#3c3c3c;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:0;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto} -.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#333} -.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.428571429;color:#0c0;white-space:nowrap} -.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#222;background-color:#0f0} -.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#222;text-decoration:none;outline:0;background-color:#0f0} -.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#030} -.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed} -.open>.dropdown-menu{display:block} -.open>a{outline:0} -.dropdown-menu-right{left:auto;right:0} -.dropdown-menu-left{left:0;right:auto} -.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.428571429;color:#a2a2a2;white-space:nowrap} -.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990} -.pull-right>.dropdown-menu{right:0;left:auto} -.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid;content:""} -.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px} -@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0} .navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2} -.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px} -.btn-toolbar{margin-left:-5px}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left} -.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px} -.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0} -.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0} -.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0} -.btn-group>.btn-group{float:left} -.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0} -.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0} -.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0} -.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0} -.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px} -.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px} -.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none} -.btn .caret{margin-left:0} -.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0} -.dropup .btn-lg .caret{border-width:0 5px 5px} -.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%} -.btn-group-vertical>.btn-group>.btn{float:none} -.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0} -.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0} -.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0} -.btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:0;border-top-right-radius:0;border-top-left-radius:0} -.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0} -.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0} -.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0} -.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%} -.btn-group-justified>.btn-group .btn{width:100%} -.btn-group-justified>.btn-group .dropdown-menu{left:auto} -[data-toggle="buttons"]>.btn input[type="radio"],[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],[data-toggle="buttons"]>.btn input[type="checkbox"],[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none} -.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-left:0;padding-right:0} -.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0} -.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:45px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:0}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:45px;line-height:45px} -textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto} -.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:0}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px} -textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto} -.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0} -.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle} -.input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;color:#090;text-align:center;background-color:#222;border:1px solid #444;border-radius:0}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:0} -.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:0} -.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0} -.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0} -.input-group-addon:first-child{border-right:0} -.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0} -.input-group-addon:last-child{border-left:0} -.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px} -.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2} -.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px} -.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{margin-left:-1px} -.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#030} -.nav>li.disabled>a{color:#030}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#030;text-decoration:none;background-color:transparent;cursor:not-allowed} -.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#030;border-color:#0f0} -.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5} -.nav>li>a>img{max-width:none} -.nav-tabs{border-bottom:1px solid #444}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.428571429;border:1px solid transparent;border-radius:0 0 0 0}.nav-tabs>li>a:hover{border-color:#444 #444 #444} -.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#090;background-color:#333;border:1px solid #222;border-bottom-color:transparent;cursor:default} -.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px} -.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto} -@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:0} -.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd} -@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:0 0 0 0} .nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#222}} -.nav-pills>li{float:left}.nav-pills>li>a{border-radius:0} -.nav-pills>li+li{margin-left:2px} -.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#0f0} -.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0} -.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px} -.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto} -@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}} -.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:0} -.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd} -@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:0 0 0 0} .nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#222}} -.tab-content>.tab-pane{display:none} -.tab-content>.active{display:block} -.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0} -.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:0}} -@media (min-width:768px){.navbar-header{float:left}} -.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto} -@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important} .navbar-collapse.in{overflow-y:visible} .navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}} -.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}} -.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}} -.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}} -.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}} -.navbar-fixed-top{top:0;border-width:0 0 1px} -.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0} -.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none} -.navbar-brand>img{display:block} -@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}} -.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:0}.navbar-toggle:focus{outline:0} -.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px} -.navbar-toggle .icon-bar+.icon-bar{margin-top:4px} -@media (min-width:768px){.navbar-toggle{display:none}} -.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px} -@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px} .navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}} -.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle} .navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle} .navbar-form .form-control-static{display:inline-block} .navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto} .navbar-form .input-group>.form-control{width:100%} .navbar-form .control-label{margin-bottom:0;vertical-align:middle} .navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0} .navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0} .navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}} -@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}} -.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0} -.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0} -.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px} -.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px} -.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}} -@media (min-width:768px){.navbar-left{float:left !important} .navbar-right{float:right !important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#080808;border-color:#000}.navbar-default .navbar-brand{color:#0f0}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#0c0;background-color:transparent} -.navbar-default .navbar-text{color:#0f0} -.navbar-default .navbar-nav>li>a{color:#0f0}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#090;background-color:#222} -.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#999;background-color:#000} -.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent} -.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd} -.navbar-default .navbar-toggle .icon-bar{background-color:#888} -.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#000} -.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#000;color:#999} -@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#0f0}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#090;background-color:#222} .navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#999;background-color:#000} .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}} -.navbar-default .navbar-link{color:#0f0}.navbar-default .navbar-link:hover{color:#090} -.navbar-default .btn-link{color:#0f0}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#090} -.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc} -.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#007f00}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent} -.navbar-inverse .navbar-text{color:#007f00} -.navbar-inverse .navbar-nav>li>a{color:#007f00}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent} -.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808} -.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent} -.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333} -.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff} -.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010} -.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff} -@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808} .navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808} .navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#007f00}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent} .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808} .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}} -.navbar-inverse .navbar-link{color:#007f00}.navbar-inverse .navbar-link:hover{color:#fff} -.navbar-inverse .btn-link{color:#007f00}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff} -.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444} -.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#3c3c3c;border-radius:0}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#0f0} -.breadcrumb>.active{color:#090} -.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:0}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.428571429;text-decoration:none;color:#0f0;background-color:#222;border:1px solid #444;margin-left:-1px} -.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:0;border-top-left-radius:0} -.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:0;border-top-right-radius:0} -.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{color:#00b300;background-color:#030;border-color:#555} -.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#222;background-color:#0f0;border-color:#0f0;cursor:default} -.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#3f3;background-color:#3c3c3c;border-color:#444;cursor:not-allowed} -.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px} -.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:0;border-top-left-radius:0} -.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:0;border-top-right-radius:0} -.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px} -.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:0;border-top-left-radius:0} -.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:0;border-top-right-radius:0} -.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#222;border:1px solid #444;border-radius:0} -.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#030} -.pager .next>a,.pager .next>span{float:right} -.pager .previous>a,.pager .previous>span{float:left} -.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#030;background-color:#222;cursor:not-allowed} -.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#222;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer} -.label:empty{display:none} -.btn .label{position:relative;top:-1px} -.label-default{background-color:#030}.label-default[href]:hover,.label-default[href]:focus{background-color:#000} -.label-primary{background-color:#0f0}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#0c0} -.label-success{background-color:#090}.label-success[href]:hover,.label-success[href]:focus{background-color:#060} -.label-info{background-color:#36c}.label-info[href]:hover,.label-info[href]:focus{background-color:#2952a3} -.label-warning{background-color:#f4ff00}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#c3cc00} -.label-danger{background-color:#f00}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c00} -.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;color:#0f0;line-height:1;vertical-align:baseline;white-space:nowrap;text-align:center;background-color:#222;border-radius:10px}.badge:empty{display:none} -.btn .badge{position:relative;top:-1px} -.btn-xs .badge,.btn-group-xs>.btn .badge{top:0;padding:1px 5px} -a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer} -.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#0f0;background-color:#fff} -.list-group-item>.badge{float:right} -.list-group-item>.badge+.badge{margin-right:5px} -.nav-pills>li>a>.badge{margin-left:3px} -.jumbotron{padding:30px 15px;margin-bottom:30px;color:inherit;background-color:#080808}.jumbotron h1,.jumbotron .h1{color:inherit} -.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200} -.jumbotron>hr{border-top-color:#000} -.container .jumbotron,.container-fluid .jumbotron{border-radius:0} -.jumbotron .container{max-width:100%} -@media screen and (min-width:768px){.jumbotron{padding:48px 0}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px} .jumbotron h1,.jumbotron .h1{font-size:63px}} -.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.428571429;background-color:#222;border:1px solid #ddd;border-radius:0;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-left:auto;margin-right:auto} -a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#0f0} -.thumbnail .caption{padding:9px;color:#0c0} -.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:0}.alert h4{margin-top:0;color:inherit} -.alert .alert-link{font-weight:bold} -.alert>p,.alert>ul{margin-bottom:0} -.alert>p+p{margin-top:5px} -.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit} -.alert-success{background-color:#3c3c3c;border-color:#2f2f2f;color:#0d0}.alert-success hr{border-top-color:#222} -.alert-success .alert-link{color:#0a0} -.alert-info{background-color:#3c3c3c;border-color:#2a2a2a;color:#7d8cff}.alert-info hr{border-top-color:#1d1d1d} -.alert-info .alert-link{color:#4a5fff} -.alert-warning{background-color:#3c3c3c;border-color:#343434;color:#f4ff00}.alert-warning hr{border-top-color:#272727} -.alert-warning .alert-link{color:#c3cc00} -.alert-danger{background-color:#3c3c3c;border-color:#343434;color:#d00}.alert-danger hr{border-top-color:#272727} -.alert-danger .alert-link{color:#a00} -@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0} to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#3c3c3c;border-radius:0;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)} -.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#0f0;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease} -.progress-striped .progress-bar,.progress-bar-striped{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:40px 40px} -.progress.active .progress-bar,.progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite} -.progress-bar-success{background-color:#090}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} -.progress-bar-info{background-color:#36c}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} -.progress-bar-warning{background-color:#f4ff00}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} -.progress-bar-danger{background-color:#f00}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)} -.media{margin-top:15px}.media:first-child{margin-top:0} -.media,.media-body{zoom:1;overflow:hidden} -.media-body{width:10000px} -.media-object{display:block} -.media-right,.media>.pull-right{padding-left:10px} -.media-left,.media>.pull-left{padding-right:10px} -.media-left,.media-right,.media-body{display:table-cell;vertical-align:top} -.media-middle{vertical-align:middle} -.media-bottom{vertical-align:bottom} -.media-heading{margin-top:0;margin-bottom:5px} -.media-list{padding-left:0;list-style:none} -.list-group{margin-bottom:20px;padding-left:0} -.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#3c3c3c;border:1px solid #222}.list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0} -.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0} -a.list-group-item{color:#0f0}a.list-group-item .list-group-item-heading{color:#0f0} -a.list-group-item:hover,a.list-group-item:focus{text-decoration:none;color:#0f0;background-color:#151515} -.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{background-color:#030;color:#030;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit} -.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:#030} -.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#222;background-color:#0f0;border-color:#0f0}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit} -.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#222} -.list-group-item-success{color:#0d0;background-color:#3c3c3c}a.list-group-item-success{color:#0d0}a.list-group-item-success .list-group-item-heading{color:inherit} -a.list-group-item-success:hover,a.list-group-item-success:focus{color:#0d0;background-color:#2f2f2f} -a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus{color:#fff;background-color:#0d0;border-color:#0d0} -.list-group-item-info{color:#7d8cff;background-color:#3c3c3c}a.list-group-item-info{color:#7d8cff}a.list-group-item-info .list-group-item-heading{color:inherit} -a.list-group-item-info:hover,a.list-group-item-info:focus{color:#7d8cff;background-color:#2f2f2f} -a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus{color:#fff;background-color:#7d8cff;border-color:#7d8cff} -.list-group-item-warning{color:#f4ff00;background-color:#3c3c3c}a.list-group-item-warning{color:#f4ff00}a.list-group-item-warning .list-group-item-heading{color:inherit} -a.list-group-item-warning:hover,a.list-group-item-warning:focus{color:#f4ff00;background-color:#2f2f2f} -a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus{color:#fff;background-color:#f4ff00;border-color:#f4ff00} -.list-group-item-danger{color:#d00;background-color:#3c3c3c}a.list-group-item-danger{color:#d00}a.list-group-item-danger .list-group-item-heading{color:inherit} -a.list-group-item-danger:hover,a.list-group-item-danger:focus{color:#d00;background-color:#2f2f2f} -a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus{color:#fff;background-color:#d00;border-color:#d00} -.list-group-item-heading{margin-top:0;margin-bottom:5px} -.list-group-item-text{margin-bottom:0;line-height:1.3} -.panel{margin-bottom:20px;background-color:#222;border:1px solid transparent;border-radius:0;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)} -.panel-body{padding:15px} -.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:-1;border-top-left-radius:-1}.panel-heading>.dropdown .dropdown-toggle{color:inherit} -.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a,.panel-title>small,.panel-title>.small,.panel-title>small>a,.panel-title>.small>a{color:inherit} -.panel-footer{padding:10px 15px;background-color:#080808;border-top:1px solid #3c3c3c;border-bottom-right-radius:-1;border-bottom-left-radius:-1} -.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0} -.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:-1;border-top-left-radius:-1} -.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:-1;border-bottom-left-radius:-1} -.panel-heading+.list-group .list-group-item:first-child{border-top-width:0} -.list-group+.panel-footer{border-top-width:0} -.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table caption,.panel>.table-responsive>.table caption,.panel>.panel-collapse>.table caption{padding-left:15px;padding-right:15px} -.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:-1;border-top-left-radius:-1}.panel>.table:first-child>thead:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:-1;border-top-right-radius:-1}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:-1} -.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:-1} -.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:-1;border-bottom-left-radius:-1}.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:-1;border-bottom-right-radius:-1}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:-1} -.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:-1} -.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #444} -.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0} -.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0} -.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0} -.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0} -.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0} -.panel>.table-responsive{border:0;margin-bottom:0} -.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:0}.panel-group .panel+.panel{margin-top:5px} -.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body,.panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid #3c3c3c} -.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #3c3c3c} -.panel-default{border-color:#3c3c3c}.panel-default>.panel-heading{color:#222;background-color:#080808;border-color:#3c3c3c}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#3c3c3c} -.panel-default>.panel-heading .badge{color:#080808;background-color:#222} -.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#3c3c3c} -.panel-primary{border-color:#0f0}.panel-primary>.panel-heading{color:#222;background-color:#0f0;border-color:#0f0}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#0f0} -.panel-primary>.panel-heading .badge{color:#0f0;background-color:#222} -.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#0f0} -.panel-success{border-color:#2f2f2f}.panel-success>.panel-heading{color:#0d0;background-color:#3c3c3c;border-color:#2f2f2f}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#2f2f2f} -.panel-success>.panel-heading .badge{color:#3c3c3c;background-color:#0d0} -.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#2f2f2f} -.panel-info{border-color:#2a2a2a}.panel-info>.panel-heading{color:#7d8cff;background-color:#3c3c3c;border-color:#2a2a2a}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#2a2a2a} -.panel-info>.panel-heading .badge{color:#3c3c3c;background-color:#7d8cff} -.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#2a2a2a} -.panel-warning{border-color:#343434}.panel-warning>.panel-heading{color:#f4ff00;background-color:#3c3c3c;border-color:#343434}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#343434} -.panel-warning>.panel-heading .badge{color:#3c3c3c;background-color:#f4ff00} -.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#343434} -.panel-danger{border-color:#343434}.panel-danger>.panel-heading{color:#d00;background-color:#3c3c3c;border-color:#343434}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#343434} -.panel-danger>.panel-heading .badge{color:#3c3c3c;background-color:#d00} -.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#343434} -.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0} -.embed-responsive-16by9{padding-bottom:56.25%} -.embed-responsive-4by3{padding-bottom:75%} -.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#080808;border:1px solid #000;border-radius:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)} -.well-lg{padding:24px;border-radius:0} -.well-sm{padding:9px;border-radius:0} -.close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)} -button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none} -.modal-open{overflow:hidden} -.modal{display:none;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0, -25%);-ms-transform:translate(0, -25%);-o-transform:translate(0, -25%);transform:translate(0, -25%);-webkit-transition:-webkit-transform 0.3s ease-out;-moz-transition:-moz-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out} -.modal.in .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)} -.modal-open .modal{overflow-x:hidden;overflow-y:auto} -.modal-dialog{position:relative;width:auto;margin:10px} -.modal-content{position:relative;background-color:#3c3c3c;border:1px solid #999;border:1px solid transparent;border-radius:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box;outline:0} -.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#222}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)} -.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)} -.modal-header{padding:15px;border-bottom:1px solid #3c3c3c;min-height:16.428571429px} -.modal-header .close{margin-top:-2px} -.modal-title{margin:0;line-height:1.428571429} -.modal-body{position:relative;padding:15px} -.modal-footer{padding:15px;text-align:right;border-top:1px solid #3c3c3c}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0} -.modal-footer .btn-group .btn+.btn{margin-left:-1px} -.modal-footer .btn-block+.btn-block{margin-left:0} -.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll} -@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto} .modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)} .modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:Monospace;font-size:12px;font-weight:normal;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)} -.tooltip.top{margin-top:-3px;padding:5px 0} -.tooltip.right{margin-left:3px;padding:0 5px} -.tooltip.bottom{margin-top:3px;padding:5px 0} -.tooltip.left{margin-left:-3px;padding:0 5px} -.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:0} -.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid} -.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000} -.tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000} -.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000} -.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000} -.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000} -.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000} -.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000} -.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000} -.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:Monospace;font-size:14px;font-weight:normal;line-height:1.428571429;text-align:left;background-color:#3c3c3c;background-clip:padding-box;border:1px solid #333;border:1px solid rgba(0,0,0,0.2);border-radius:0;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);white-space:normal}.popover.top{margin-top:-10px} -.popover.right{margin-left:10px} -.popover.bottom{margin-top:10px} -.popover.left{margin-left:-10px} -.popover-title{margin:0;padding:8px 14px;font-size:14px;background-color:#343434;border-bottom:1px solid #272727;border-radius:-1 -1 0 0} -.popover-content{padding:9px 14px} -.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid} -.popover>.arrow{border-width:11px} -.popover>.arrow:after{border-width:10px;content:""} -.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#3c3c3c} -.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,0.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#3c3c3c} -.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#3c3c3c} -.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#3c3c3c;bottom:-10px} -.carousel{position:relative} -.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1} -@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform 0.6s ease-in-out;-moz-transition:-moz-transform 0.6s ease-in-out;-o-transition:-o-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000;-moz-perspective:1000;perspective:1000}.carousel-inner>.item.next,.carousel-inner>.item.active.right{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);left:0} .carousel-inner>.item.prev,.carousel-inner>.item.active.left{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);left:0} .carousel-inner>.item.next.left,.carousel-inner>.item.prev.right,.carousel-inner>.item.active{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);left:0}} -.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block} -.carousel-inner>.active{left:0} -.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%} -.carousel-inner>.next{left:100%} -.carousel-inner>.prev{left:-100%} -.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0} -.carousel-inner>.active.left{left:-100%} -.carousel-inner>.active.right{left:100%} -.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-control.left{background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)} -.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:linear-gradient(to right, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)} -.carousel-control:hover,.carousel-control:focus{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)} -.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block} -.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px} -.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px} -.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;line-height:1;font-family:serif} -.carousel-control .icon-prev:before{content:'\2039'} -.carousel-control .icon-next:before{content:'\203a'} -.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0)} -.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff} -.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none} -@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;font-size:30px} .carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-15px} .carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-15px} .carousel-caption{left:20%;right:20%;padding-bottom:30px} .carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-footer:before,.modal-footer:after{content:" ";display:table} -.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-footer:after{clear:both} -.center-block{display:block;margin-left:auto;margin-right:auto} -.pull-right{float:right !important} -.pull-left{float:left !important} -.hide{display:none !important} -.show{display:block !important} -.invisible{visibility:hidden} -.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0} -.hidden{display:none !important} -.affix{position:fixed} -@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important} -.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important} -@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table} tr.visible-xs{display:table-row !important} th.visible-xs,td.visible-xs{display:table-cell !important}} -@media (max-width:767px){.visible-xs-block{display:block !important}} -@media (max-width:767px){.visible-xs-inline{display:inline !important}} -@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}} -@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table} tr.visible-sm{display:table-row !important} th.visible-sm,td.visible-sm{display:table-cell !important}} -@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}} -@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}} -@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}} -@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table} tr.visible-md{display:table-row !important} th.visible-md,td.visible-md{display:table-cell !important}} -@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}} -@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}} -@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}} -@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table} tr.visible-lg{display:table-row !important} th.visible-lg,td.visible-lg{display:table-cell !important}} -@media (min-width:1200px){.visible-lg-block{display:block !important}} -@media (min-width:1200px){.visible-lg-inline{display:inline !important}} -@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}} -@media (max-width:767px){.hidden-xs{display:none !important}} -@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}} -@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}} -@media (min-width:1200px){.hidden-lg{display:none !important}} -.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table} tr.visible-print{display:table-row !important} th.visible-print,td.visible-print{display:table-cell !important}} -.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}} -.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}} -.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}} -@media print{.hidden-print{display:none !important}} +body { + margin: 0 +} + +article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { + display: block +} + +audio, canvas, progress, video { + display: inline-block; + vertical-align: baseline +} + +audio:not([controls]) { + display: none; + height: 0 +} + +[hidden], template { + display: none +} + +a { + background-color: transparent +} + +a:active, a:hover { + outline: 0 +} + +abbr[title] { + border-bottom: 1px dotted +} + +b, strong { + font-weight: bold +} + +dfn { + font-style: italic +} + +h1 { + font-size: 2em; + margin: .67em 0 +} + +mark { + background: #ff0; + color: #000 +} + +small { + font-size: 80% +} + +sub, sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline +} + +sup { + top: -0.5em +} + +sub { + bottom: -0.25em +} + +img { + border: 0 +} + +svg:not(:root) { + overflow: hidden +} + +figure { + margin: 1em 40px +} + +hr { + -moz-box-sizing: content-box; + box-sizing: content-box; + height: 0 +} + +pre { + overflow: auto +} + +code, kbd, pre, samp { + font-family: monospace, monospace; + font-size: 1em +} + +button, input, optgroup, select, textarea { + color: inherit; + font: inherit; + margin: 0 +} + +button { + overflow: visible +} + +button, select { + text-transform: none +} + +button, html input[type="button"], input[type="reset"], input[type="submit"] { + -webkit-appearance: button; + cursor: pointer +} + +button[disabled], html input[disabled] { + cursor: default +} + +button::-moz-focus-inner, input::-moz-focus-inner { + border: 0; + padding: 0 +} + +input { + line-height: normal +} + +input[type="checkbox"], input[type="radio"] { + box-sizing: border-box; + padding: 0 +} + +input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { + height: auto +} + +input[type="search"] { + -webkit-appearance: textfield; + -moz-box-sizing: content-box; + -webkit-box-sizing: content-box; + box-sizing: content-box +} + +input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { + -webkit-appearance: none +} + +fieldset { + border: 1px solid #c0c0c0; + margin: 0 2px; + padding: .35em .625em .75em +} + +legend { + border: 0; + padding: 0 +} + +textarea { + overflow: auto +} + +optgroup { + font-weight: bold +} + +table { + border-collapse: collapse; + border-spacing: 0 +} + +td, th { + padding: 0 +} + +@media print { + *, *:before, *:after { + background: transparent !important; + color: #000 !important; + box-shadow: none !important; + text-shadow: none !important + } + + a, a:visited { + text-decoration: underline + } + + a[href]:after { + content: " ("attr(href) ")" + } + + abbr[title]:after { + content: " ("attr(title) ")" + } + + a[href^="#"]:after, a[href^="javascript:"]:after { + content: "" + } + + pre, blockquote { + border: 1px solid #999; + page-break-inside: avoid + } + + thead { + display: table-header-group + } + + tr, img { + page-break-inside: avoid + } + + img { + max-width: 100% !important + } + + p, h2, h3 { + orphans: 3; + widows: 3 + } + + h2, h3 { + page-break-after: avoid + } + + select { + background: #fff !important + } + + .navbar { + display: none + } + + .btn>.caret, .dropup>.btn>.caret { + border-top-color: #000 !important + } + + .label { + border: 1px solid #000 + } + + .table { + border-collapse: collapse !important + } + + .table td, .table th { + background-color: #fff !important + } + + .table-bordered th, .table-bordered td { + border: 1px solid #ddd !important + } +} + +@font-face { + font-family: 'Glyphicons Halflings'; + src: url('../fonts/glyphicons-halflings-regular.eot'); + src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg') +} + +.glyphicon { + position: relative; + top: 1px; + display: inline-block; + font-family: 'Glyphicons Halflings'; + font-style: normal; + font-weight: normal; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale +} + +.glyphicon-asterisk:before { + content: "\2a" +} + +.glyphicon-plus:before { + content: "\2b" +} + +.glyphicon-euro:before, .glyphicon-eur:before { + content: "\20ac" +} + +.glyphicon-minus:before { + content: "\2212" +} + +.glyphicon-cloud:before { + content: "\2601" +} + +.glyphicon-envelope:before { + content: "\2709" +} + +.glyphicon-pencil:before { + content: "\270f" +} + +.glyphicon-glass:before { + content: "\e001" +} + +.glyphicon-music:before { + content: "\e002" +} + +.glyphicon-search:before { + content: "\e003" +} + +.glyphicon-heart:before { + content: "\e005" +} + +.glyphicon-star:before { + content: "\e006" +} + +.glyphicon-star-empty:before { + content: "\e007" +} + +.glyphicon-user:before { + content: "\e008" +} + +.glyphicon-film:before { + content: "\e009" +} + +.glyphicon-th-large:before { + content: "\e010" +} + +.glyphicon-th:before { + content: "\e011" +} + +.glyphicon-th-list:before { + content: "\e012" +} + +.glyphicon-ok:before { + content: "\e013" +} + +.glyphicon-remove:before { + content: "\e014" +} + +.glyphicon-zoom-in:before { + content: "\e015" +} + +.glyphicon-zoom-out:before { + content: "\e016" +} + +.glyphicon-off:before { + content: "\e017" +} + +.glyphicon-signal:before { + content: "\e018" +} + +.glyphicon-cog:before { + content: "\e019" +} + +.glyphicon-trash:before { + content: "\e020" +} + +.glyphicon-home:before { + content: "\e021" +} + +.glyphicon-file:before { + content: "\e022" +} + +.glyphicon-time:before { + content: "\e023" +} + +.glyphicon-road:before { + content: "\e024" +} + +.glyphicon-download-alt:before { + content: "\e025" +} + +.glyphicon-download:before { + content: "\e026" +} + +.glyphicon-upload:before { + content: "\e027" +} + +.glyphicon-inbox:before { + content: "\e028" +} + +.glyphicon-play-circle:before { + content: "\e029" +} + +.glyphicon-repeat:before { + content: "\e030" +} + +.glyphicon-refresh:before { + content: "\e031" +} + +.glyphicon-list-alt:before { + content: "\e032" +} + +.glyphicon-lock:before { + content: "\e033" +} + +.glyphicon-flag:before { + content: "\e034" +} + +.glyphicon-headphones:before { + content: "\e035" +} + +.glyphicon-volume-off:before { + content: "\e036" +} + +.glyphicon-volume-down:before { + content: "\e037" +} + +.glyphicon-volume-up:before { + content: "\e038" +} + +.glyphicon-qrcode:before { + content: "\e039" +} + +.glyphicon-barcode:before { + content: "\e040" +} + +.glyphicon-tag:before { + content: "\e041" +} + +.glyphicon-tags:before { + content: "\e042" +} + +.glyphicon-book:before { + content: "\e043" +} + +.glyphicon-bookmark:before { + content: "\e044" +} + +.glyphicon-print:before { + content: "\e045" +} + +.glyphicon-camera:before { + content: "\e046" +} + +.glyphicon-font:before { + content: "\e047" +} + +.glyphicon-bold:before { + content: "\e048" +} + +.glyphicon-italic:before { + content: "\e049" +} + +.glyphicon-text-height:before { + content: "\e050" +} + +.glyphicon-text-width:before { + content: "\e051" +} + +.glyphicon-align-left:before { + content: "\e052" +} + +.glyphicon-align-center:before { + content: "\e053" +} + +.glyphicon-align-right:before { + content: "\e054" +} + +.glyphicon-align-justify:before { + content: "\e055" +} + +.glyphicon-list:before { + content: "\e056" +} + +.glyphicon-indent-left:before { + content: "\e057" +} + +.glyphicon-indent-right:before { + content: "\e058" +} + +.glyphicon-facetime-video:before { + content: "\e059" +} + +.glyphicon-picture:before { + content: "\e060" +} + +.glyphicon-map-marker:before { + content: "\e062" +} + +.glyphicon-adjust:before { + content: "\e063" +} + +.glyphicon-tint:before { + content: "\e064" +} + +.glyphicon-edit:before { + content: "\e065" +} + +.glyphicon-share:before { + content: "\e066" +} + +.glyphicon-check:before { + content: "\e067" +} + +.glyphicon-move:before { + content: "\e068" +} + +.glyphicon-step-backward:before { + content: "\e069" +} + +.glyphicon-fast-backward:before { + content: "\e070" +} + +.glyphicon-backward:before { + content: "\e071" +} + +.glyphicon-play:before { + content: "\e072" +} + +.glyphicon-pause:before { + content: "\e073" +} + +.glyphicon-stop:before { + content: "\e074" +} + +.glyphicon-forward:before { + content: "\e075" +} + +.glyphicon-fast-forward:before { + content: "\e076" +} + +.glyphicon-step-forward:before { + content: "\e077" +} + +.glyphicon-eject:before { + content: "\e078" +} + +.glyphicon-chevron-left:before { + content: "\e079" +} + +.glyphicon-chevron-right:before { + content: "\e080" +} + +.glyphicon-plus-sign:before { + content: "\e081" +} + +.glyphicon-minus-sign:before { + content: "\e082" +} + +.glyphicon-remove-sign:before { + content: "\e083" +} + +.glyphicon-ok-sign:before { + content: "\e084" +} + +.glyphicon-question-sign:before { + content: "\e085" +} + +.glyphicon-info-sign:before { + content: "\e086" +} + +.glyphicon-screenshot:before { + content: "\e087" +} + +.glyphicon-remove-circle:before { + content: "\e088" +} + +.glyphicon-ok-circle:before { + content: "\e089" +} + +.glyphicon-ban-circle:before { + content: "\e090" +} + +.glyphicon-arrow-left:before { + content: "\e091" +} + +.glyphicon-arrow-right:before { + content: "\e092" +} + +.glyphicon-arrow-up:before { + content: "\e093" +} + +.glyphicon-arrow-down:before { + content: "\e094" +} + +.glyphicon-share-alt:before { + content: "\e095" +} + +.glyphicon-resize-full:before { + content: "\e096" +} + +.glyphicon-resize-small:before { + content: "\e097" +} + +.glyphicon-exclamation-sign:before { + content: "\e101" +} + +.glyphicon-gift:before { + content: "\e102" +} + +.glyphicon-leaf:before { + content: "\e103" +} + +.glyphicon-fire:before { + content: "\e104" +} + +.glyphicon-eye-open:before { + content: "\e105" +} + +.glyphicon-eye-close:before { + content: "\e106" +} + +.glyphicon-warning-sign:before { + content: "\e107" +} + +.glyphicon-plane:before { + content: "\e108" +} + +.glyphicon-calendar:before { + content: "\e109" +} + +.glyphicon-random:before { + content: "\e110" +} + +.glyphicon-comment:before { + content: "\e111" +} + +.glyphicon-magnet:before { + content: "\e112" +} + +.glyphicon-chevron-up:before { + content: "\e113" +} + +.glyphicon-chevron-down:before { + content: "\e114" +} + +.glyphicon-retweet:before { + content: "\e115" +} + +.glyphicon-shopping-cart:before { + content: "\e116" +} + +.glyphicon-folder-close:before { + content: "\e117" +} + +.glyphicon-folder-open:before { + content: "\e118" +} + +.glyphicon-resize-vertical:before { + content: "\e119" +} + +.glyphicon-resize-horizontal:before { + content: "\e120" +} + +.glyphicon-hdd:before { + content: "\e121" +} + +.glyphicon-bullhorn:before { + content: "\e122" +} + +.glyphicon-bell:before { + content: "\e123" +} + +.glyphicon-certificate:before { + content: "\e124" +} + +.glyphicon-thumbs-up:before { + content: "\e125" +} + +.glyphicon-thumbs-down:before { + content: "\e126" +} + +.glyphicon-hand-right:before { + content: "\e127" +} + +.glyphicon-hand-left:before { + content: "\e128" +} + +.glyphicon-hand-up:before { + content: "\e129" +} + +.glyphicon-hand-down:before { + content: "\e130" +} + +.glyphicon-circle-arrow-right:before { + content: "\e131" +} + +.glyphicon-circle-arrow-left:before { + content: "\e132" +} + +.glyphicon-circle-arrow-up:before { + content: "\e133" +} + +.glyphicon-circle-arrow-down:before { + content: "\e134" +} + +.glyphicon-globe:before { + content: "\e135" +} + +.glyphicon-wrench:before { + content: "\e136" +} + +.glyphicon-tasks:before { + content: "\e137" +} + +.glyphicon-filter:before { + content: "\e138" +} + +.glyphicon-briefcase:before { + content: "\e139" +} + +.glyphicon-fullscreen:before { + content: "\e140" +} + +.glyphicon-dashboard:before { + content: "\e141" +} + +.glyphicon-paperclip:before { + content: "\e142" +} + +.glyphicon-heart-empty:before { + content: "\e143" +} + +.glyphicon-link:before { + content: "\e144" +} + +.glyphicon-phone:before { + content: "\e145" +} + +.glyphicon-pushpin:before { + content: "\e146" +} + +.glyphicon-usd:before { + content: "\e148" +} + +.glyphicon-gbp:before { + content: "\e149" +} + +.glyphicon-sort:before { + content: "\e150" +} + +.glyphicon-sort-by-alphabet:before { + content: "\e151" +} + +.glyphicon-sort-by-alphabet-alt:before { + content: "\e152" +} + +.glyphicon-sort-by-order:before { + content: "\e153" +} + +.glyphicon-sort-by-order-alt:before { + content: "\e154" +} + +.glyphicon-sort-by-attributes:before { + content: "\e155" +} + +.glyphicon-sort-by-attributes-alt:before { + content: "\e156" +} + +.glyphicon-unchecked:before { + content: "\e157" +} + +.glyphicon-expand:before { + content: "\e158" +} + +.glyphicon-collapse-down:before { + content: "\e159" +} + +.glyphicon-collapse-up:before { + content: "\e160" +} + +.glyphicon-log-in:before { + content: "\e161" +} + +.glyphicon-flash:before { + content: "\e162" +} + +.glyphicon-log-out:before { + content: "\e163" +} + +.glyphicon-new-window:before { + content: "\e164" +} + +.glyphicon-record:before { + content: "\e165" +} + +.glyphicon-save:before { + content: "\e166" +} + +.glyphicon-open:before { + content: "\e167" +} + +.glyphicon-saved:before { + content: "\e168" +} + +.glyphicon-import:before { + content: "\e169" +} + +.glyphicon-export:before { + content: "\e170" +} + +.glyphicon-send:before { + content: "\e171" +} + +.glyphicon-floppy-disk:before { + content: "\e172" +} + +.glyphicon-floppy-saved:before { + content: "\e173" +} + +.glyphicon-floppy-remove:before { + content: "\e174" +} + +.glyphicon-floppy-save:before { + content: "\e175" +} + +.glyphicon-floppy-open:before { + content: "\e176" +} + +.glyphicon-credit-card:before { + content: "\e177" +} + +.glyphicon-transfer:before { + content: "\e178" +} + +.glyphicon-cutlery:before { + content: "\e179" +} + +.glyphicon-header:before { + content: "\e180" +} + +.glyphicon-compressed:before { + content: "\e181" +} + +.glyphicon-earphone:before { + content: "\e182" +} + +.glyphicon-phone-alt:before { + content: "\e183" +} + +.glyphicon-tower:before { + content: "\e184" +} + +.glyphicon-stats:before { + content: "\e185" +} + +.glyphicon-sd-video:before { + content: "\e186" +} + +.glyphicon-hd-video:before { + content: "\e187" +} + +.glyphicon-subtitles:before { + content: "\e188" +} + +.glyphicon-sound-stereo:before { + content: "\e189" +} + +.glyphicon-sound-dolby:before { + content: "\e190" +} + +.glyphicon-sound-5-1:before { + content: "\e191" +} + +.glyphicon-sound-6-1:before { + content: "\e192" +} + +.glyphicon-sound-7-1:before { + content: "\e193" +} + +.glyphicon-copyright-mark:before { + content: "\e194" +} + +.glyphicon-registration-mark:before { + content: "\e195" +} + +.glyphicon-cloud-download:before { + content: "\e197" +} + +.glyphicon-cloud-upload:before { + content: "\e198" +} + +.glyphicon-tree-conifer:before { + content: "\e199" +} + +.glyphicon-tree-deciduous:before { + content: "\e200" +} + +.glyphicon-cd:before { + content: "\e201" +} + +.glyphicon-save-file:before { + content: "\e202" +} + +.glyphicon-open-file:before { + content: "\e203" +} + +.glyphicon-level-up:before { + content: "\e204" +} + +.glyphicon-copy:before { + content: "\e205" +} + +.glyphicon-paste:before { + content: "\e206" +} + +.glyphicon-alert:before { + content: "\e209" +} + +.glyphicon-equalizer:before { + content: "\e210" +} + +.glyphicon-king:before { + content: "\e211" +} + +.glyphicon-queen:before { + content: "\e212" +} + +.glyphicon-pawn:before { + content: "\e213" +} + +.glyphicon-bishop:before { + content: "\e214" +} + +.glyphicon-knight:before { + content: "\e215" +} + +.glyphicon-baby-formula:before { + content: "\e216" +} + +.glyphicon-tent:before { + content: "\26fa" +} + +.glyphicon-blackboard:before { + content: "\e218" +} + +.glyphicon-bed:before { + content: "\e219" +} + +.glyphicon-apple:before { + content: "\f8ff" +} + +.glyphicon-erase:before { + content: "\e221" +} + +.glyphicon-hourglass:before { + content: "\231b" +} + +.glyphicon-lamp:before { + content: "\e223" +} + +.glyphicon-duplicate:before { + content: "\e224" +} + +.glyphicon-piggy-bank:before { + content: "\e225" +} + +.glyphicon-scissors:before { + content: "\e226" +} + +.glyphicon-bitcoin:before { + content: "\e227" +} + +.glyphicon-btc:before { + content: "\e227" +} + +.glyphicon-xbt:before { + content: "\e227" +} + +.glyphicon-yen:before { + content: "\00a5" +} + +.glyphicon-jpy:before { + content: "\00a5" +} + +.glyphicon-ruble:before { + content: "\20bd" +} + +.glyphicon-rub:before { + content: "\20bd" +} + +.glyphicon-scale:before { + content: "\e230" +} + +.glyphicon-ice-lolly:before { + content: "\e231" +} + +.glyphicon-ice-lolly-tasted:before { + content: "\e232" +} + +.glyphicon-education:before { + content: "\e233" +} + +.glyphicon-option-horizontal:before { + content: "\e234" +} + +.glyphicon-option-vertical:before { + content: "\e235" +} + +.glyphicon-menu-hamburger:before { + content: "\e236" +} + +.glyphicon-modal-window:before { + content: "\e237" +} + +.glyphicon-oil:before { + content: "\e238" +} + +.glyphicon-grain:before { + content: "\e239" +} + +.glyphicon-sunglasses:before { + content: "\e240" +} + +.glyphicon-text-size:before { + content: "\e241" +} + +.glyphicon-text-color:before { + content: "\e242" +} + +.glyphicon-text-background:before { + content: "\e243" +} + +.glyphicon-object-align-top:before { + content: "\e244" +} + +.glyphicon-object-align-bottom:before { + content: "\e245" +} + +.glyphicon-object-align-horizontal:before { + content: "\e246" +} + +.glyphicon-object-align-left:before { + content: "\e247" +} + +.glyphicon-object-align-vertical:before { + content: "\e248" +} + +.glyphicon-object-align-right:before { + content: "\e249" +} + +.glyphicon-triangle-right:before { + content: "\e250" +} + +.glyphicon-triangle-left:before { + content: "\e251" +} + +.glyphicon-triangle-bottom:before { + content: "\e252" +} + +.glyphicon-triangle-top:before { + content: "\e253" +} + +.glyphicon-console:before { + content: "\e254" +} + +.glyphicon-superscript:before { + content: "\e255" +} + +.glyphicon-subscript:before { + content: "\e256" +} + +.glyphicon-menu-left:before { + content: "\e257" +} + +.glyphicon-menu-right:before { + content: "\e258" +} + +.glyphicon-menu-down:before { + content: "\e259" +} + +.glyphicon-menu-up:before { + content: "\e260" +} + +* { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box +} + +*:before, *:after { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box +} + +html { + font-size: 10px; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0) +} + +body { + font-family: Monospace; + font-size: 14px; + line-height: 1.428571429; + color: #0c0; + background-color: #222 +} + +input, button, select, textarea { + font-family: inherit; + font-size: inherit; + line-height: inherit +} + +a { + color: #0f0; + text-decoration: none +} + +a:hover, a:focus { + color: #00b300; + text-decoration: underline +} + +a:focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px +} + +figure { + margin: 0 +} + +img { + vertical-align: middle +} + +.img-responsive, .thumbnail>img, .thumbnail a>img, .carousel-inner>.item>img, .carousel-inner>.item>a>img { + display: block; + max-width: 100%; + height: auto +} + +.img-rounded { + border-radius: 0 +} + +.img-thumbnail { + padding: 4px; + line-height: 1.428571429; + background-color: #222; + border: 1px solid #ddd; + border-radius: 0; + -webkit-transition: all .2s ease-in-out; + -o-transition: all .2s ease-in-out; + transition: all .2s ease-in-out; + display: inline-block; + max-width: 100%; + height: auto +} + +.img-circle { + border-radius: 50% +} + +hr { + margin-top: 20px; + margin-bottom: 20px; + border: 0; + border-top: 1px solid #3c3c3c +} + +.sr-only { + position: absolute; + width: 1px; + height: 1px; + margin: -1px; + padding: 0; + overflow: hidden; + clip: rect(0, 0, 0, 0); + border: 0 +} + +.sr-only-focusable:active, .sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + margin: 0; + overflow: visible; + clip: auto +} + +[role="button"] { + cursor: pointer +} + +h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { + font-family: Monospace; + font-weight: 500; + line-height: 1.1; + color: inherit +} + +h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small, h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small, .h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small { + font-weight: normal; + line-height: 1; + color: #030 +} + +h1, .h1, h2, .h2, h3, .h3 { + margin-top: 20px; + margin-bottom: 10px +} + +h1 small, .h1 small, h2 small, .h2 small, h3 small, .h3 small, h1 .small, .h1 .small, h2 .small, .h2 .small, h3 .small, .h3 .small { + font-size: 65% +} + +h4, .h4, h5, .h5, h6, .h6 { + margin-top: 10px; + margin-bottom: 10px +} + +h4 small, .h4 small, h5 small, .h5 small, h6 small, .h6 small, h4 .small, .h4 .small, h5 .small, .h5 .small, h6 .small, .h6 .small { + font-size: 75% +} + +h1, .h1 { + font-size: 36px +} + +h2, .h2 { + font-size: 30px +} + +h3, .h3 { + font-size: 23px +} + +h4, .h4 { + font-size: 17px +} + +h5, .h5 { + font-size: 14px +} + +h6, .h6 { + font-size: 11px +} + +p { + margin: 0 0 10px +} + +.lead { + margin-bottom: 20px; + font-size: 16px; + font-weight: 300; + line-height: 1.4 +} + +@media (min-width:768px) { + .lead { + font-size: 21px + } +} + +small, .small { + font-size: 85% +} + +mark, .mark { + background-color: #3c3c3c; + padding: .2em +} + +.text-left { + text-align: left +} + +.text-right { + text-align: right +} + +.text-center { + text-align: center +} + +.text-justify { + text-align: justify +} + +.text-nowrap { + white-space: nowrap +} + +.text-lowercase { + text-transform: lowercase +} + +.text-uppercase { + text-transform: uppercase +} + +.text-capitalize { + text-transform: capitalize +} + +.text-muted { + color: #030 +} + +.text-primary { + color: #0f0 +} + +a.text-primary:hover { + color: #0c0 +} + +.text-success { + color: #0d0 +} + +a.text-success:hover { + color: #0a0 +} + +.text-info { + color: #7d8cff +} + +a.text-info:hover { + color: #4a5fff +} + +.text-warning { + color: #f4ff00 +} + +a.text-warning:hover { + color: #c3cc00 +} + +.text-danger { + color: #d00 +} + +a.text-danger:hover { + color: #a00 +} + +.bg-primary { + color: #fff; + background-color: #0f0 +} + +a.bg-primary:hover { + background-color: #0c0 +} + +.bg-success { + background-color: #3c3c3c +} + +a.bg-success:hover { + background-color: #222 +} + +.bg-info { + background-color: #3c3c3c +} + +a.bg-info:hover { + background-color: #222 +} + +.bg-warning { + background-color: #3c3c3c +} + +a.bg-warning:hover { + background-color: #222 +} + +.bg-danger { + background-color: #3c3c3c +} + +a.bg-danger:hover { + background-color: #222 +} + +.page-header { + padding-bottom: 9px; + margin: 40px 0 20px; + border-bottom: 1px solid #030 +} + +ul, ol { + margin-top: 0; + margin-bottom: 10px +} + +ul ul, ol ul, ul ol, ol ol { + margin-bottom: 0 +} + +.list-unstyled { + padding-left: 0; + list-style: none +} + +.list-inline { + padding-left: 0; + list-style: none; + margin-left: -5px +} + +.list-inline>li { + display: inline-block; + padding-left: 5px; + padding-right: 5px +} + +dl { + margin-top: 0; + margin-bottom: 20px +} + +dt, dd { + line-height: 1.428571429 +} + +dt { + font-weight: bold +} + +dd { + margin-left: 0 +} + +@media (min-width:768px) { + .dl-horizontal dt { + float: left; + width: 160px; + clear: left; + text-align: right; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap + } + + .dl-horizontal dd { + margin-left: 180px + } +} + +abbr[title], abbr[data-original-title] { + cursor: help; + border-bottom: 1px dotted #030 +} + +.initialism { + font-size: 90%; + text-transform: uppercase +} + +blockquote { + padding: 10px 20px; + margin: 0 0 20px; + font-size: 17.5px; + border-left: 5px solid #030 +} + +blockquote p:last-child, blockquote ul:last-child, blockquote ol:last-child { + margin-bottom: 0 +} + +blockquote footer, blockquote small, blockquote .small { + display: block; + font-size: 80%; + line-height: 1.428571429; + color: #030 +} + +blockquote footer:before, blockquote small:before, blockquote .small:before { + content: '\2014 \00A0' +} + +.blockquote-reverse, blockquote.pull-right { + padding-right: 15px; + padding-left: 0; + border-right: 5px solid #030; + border-left: 0; + text-align: right +} + +.blockquote-reverse footer:before, blockquote.pull-right footer:before, .blockquote-reverse small:before, blockquote.pull-right small:before, .blockquote-reverse .small:before, blockquote.pull-right .small:before { + content: '' +} + +.blockquote-reverse footer:after, blockquote.pull-right footer:after, .blockquote-reverse small:after, blockquote.pull-right small:after, .blockquote-reverse .small:after, blockquote.pull-right .small:after { + content: '\00A0 \2014' +} + +address { + margin-bottom: 20px; + font-style: normal; + line-height: 1.428571429 +} + +code, kbd, pre, samp { + font-family: Monospace +} + +code { + padding: 2px 4px; + font-size: 90%; + color: #c7254e; + background-color: #f9f2f4; + border-radius: 0 +} + +kbd { + padding: 2px 4px; + font-size: 90%; + color: #fff; + background-color: #333; + border-radius: 0; + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25) +} + +kbd kbd { + padding: 0; + font-size: 100%; + font-weight: bold; + box-shadow: none +} + +pre { + display: block; + padding: 9.5px; + margin: 0 0 10px; + font-size: 13px; + line-height: 1.428571429; + word-break: break-all; + word-wrap: break-word; + color: #0c0; + background-color: #f5f5f5; + border: 1px solid #ccc; + border-radius: 0 +} + +pre code { + padding: 0; + font-size: inherit; + color: inherit; + white-space: pre-wrap; + background-color: transparent; + border-radius: 0 +} + +.pre-scrollable { + max-height: 340px; + overflow-y: scroll +} + +.container { + margin-right: auto; + margin-left: auto; + padding-left: 15px; + padding-right: 15px +} + +@media (min-width:768px) { + .container { + width: 750px + } +} + +@media (min-width:992px) { + .container { + width: 970px + } +} + +@media (min-width:1200px) { + .container { + width: 1170px + } +} + +.container-fluid { + margin-right: auto; + margin-left: auto; + padding-left: 15px; + padding-right: 15px +} + +.row { + margin-left: -15px; + margin-right: -15px +} + +.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { + position: relative; + min-height: 1px; + padding-left: 15px; + padding-right: 15px +} + +.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { + float: left +} + +.col-xs-12 { + width: 100% +} + +.col-xs-11 { + width: 91.66666666666666% +} + +.col-xs-10 { + width: 83.33333333333334% +} + +.col-xs-9 { + width: 75% +} + +.col-xs-8 { + width: 66.66666666666666% +} + +.col-xs-7 { + width: 58.333333333333336% +} + +.col-xs-6 { + width: 50% +} + +.col-xs-5 { + width: 41.66666666666667% +} + +.col-xs-4 { + width: 33.33333333333333% +} + +.col-xs-3 { + width: 25% +} + +.col-xs-2 { + width: 16.666666666666664% +} + +.col-xs-1 { + width: 8.333333333333332% +} + +.col-xs-pull-12 { + right: 100% +} + +.col-xs-pull-11 { + right: 91.66666666666666% +} + +.col-xs-pull-10 { + right: 83.33333333333334% +} + +.col-xs-pull-9 { + right: 75% +} + +.col-xs-pull-8 { + right: 66.66666666666666% +} + +.col-xs-pull-7 { + right: 58.333333333333336% +} + +.col-xs-pull-6 { + right: 50% +} + +.col-xs-pull-5 { + right: 41.66666666666667% +} + +.col-xs-pull-4 { + right: 33.33333333333333% +} + +.col-xs-pull-3 { + right: 25% +} + +.col-xs-pull-2 { + right: 16.666666666666664% +} + +.col-xs-pull-1 { + right: 8.333333333333332% +} + +.col-xs-pull-0 { + right: auto +} + +.col-xs-push-12 { + left: 100% +} + +.col-xs-push-11 { + left: 91.66666666666666% +} + +.col-xs-push-10 { + left: 83.33333333333334% +} + +.col-xs-push-9 { + left: 75% +} + +.col-xs-push-8 { + left: 66.66666666666666% +} + +.col-xs-push-7 { + left: 58.333333333333336% +} + +.col-xs-push-6 { + left: 50% +} + +.col-xs-push-5 { + left: 41.66666666666667% +} + +.col-xs-push-4 { + left: 33.33333333333333% +} + +.col-xs-push-3 { + left: 25% +} + +.col-xs-push-2 { + left: 16.666666666666664% +} + +.col-xs-push-1 { + left: 8.333333333333332% +} + +.col-xs-push-0 { + left: auto +} + +.col-xs-offset-12 { + margin-left: 100% +} + +.col-xs-offset-11 { + margin-left: 91.66666666666666% +} + +.col-xs-offset-10 { + margin-left: 83.33333333333334% +} + +.col-xs-offset-9 { + margin-left: 75% +} + +.col-xs-offset-8 { + margin-left: 66.66666666666666% +} + +.col-xs-offset-7 { + margin-left: 58.333333333333336% +} + +.col-xs-offset-6 { + margin-left: 50% +} + +.col-xs-offset-5 { + margin-left: 41.66666666666667% +} + +.col-xs-offset-4 { + margin-left: 33.33333333333333% +} + +.col-xs-offset-3 { + margin-left: 25% +} + +.col-xs-offset-2 { + margin-left: 16.666666666666664% +} + +.col-xs-offset-1 { + margin-left: 8.333333333333332% +} + +.col-xs-offset-0 { + margin-left: 0 +} + +@media (min-width:768px) { + .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { + float: left + } + + .col-sm-12 { + width: 100% + } + + .col-sm-11 { + width: 91.66666666666666% + } + + .col-sm-10 { + width: 83.33333333333334% + } + + .col-sm-9 { + width: 75% + } + + .col-sm-8 { + width: 66.66666666666666% + } + + .col-sm-7 { + width: 58.333333333333336% + } + + .col-sm-6 { + width: 50% + } + + .col-sm-5 { + width: 41.66666666666667% + } + + .col-sm-4 { + width: 33.33333333333333% + } + + .col-sm-3 { + width: 25% + } + + .col-sm-2 { + width: 16.666666666666664% + } + + .col-sm-1 { + width: 8.333333333333332% + } + + .col-sm-pull-12 { + right: 100% + } + + .col-sm-pull-11 { + right: 91.66666666666666% + } + + .col-sm-pull-10 { + right: 83.33333333333334% + } + + .col-sm-pull-9 { + right: 75% + } + + .col-sm-pull-8 { + right: 66.66666666666666% + } + + .col-sm-pull-7 { + right: 58.333333333333336% + } + + .col-sm-pull-6 { + right: 50% + } + + .col-sm-pull-5 { + right: 41.66666666666667% + } + + .col-sm-pull-4 { + right: 33.33333333333333% + } + + .col-sm-pull-3 { + right: 25% + } + + .col-sm-pull-2 { + right: 16.666666666666664% + } + + .col-sm-pull-1 { + right: 8.333333333333332% + } + + .col-sm-pull-0 { + right: auto + } + + .col-sm-push-12 { + left: 100% + } + + .col-sm-push-11 { + left: 91.66666666666666% + } + + .col-sm-push-10 { + left: 83.33333333333334% + } + + .col-sm-push-9 { + left: 75% + } + + .col-sm-push-8 { + left: 66.66666666666666% + } + + .col-sm-push-7 { + left: 58.333333333333336% + } + + .col-sm-push-6 { + left: 50% + } + + .col-sm-push-5 { + left: 41.66666666666667% + } + + .col-sm-push-4 { + left: 33.33333333333333% + } + + .col-sm-push-3 { + left: 25% + } + + .col-sm-push-2 { + left: 16.666666666666664% + } + + .col-sm-push-1 { + left: 8.333333333333332% + } + + .col-sm-push-0 { + left: auto + } + + .col-sm-offset-12 { + margin-left: 100% + } + + .col-sm-offset-11 { + margin-left: 91.66666666666666% + } + + .col-sm-offset-10 { + margin-left: 83.33333333333334% + } + + .col-sm-offset-9 { + margin-left: 75% + } + + .col-sm-offset-8 { + margin-left: 66.66666666666666% + } + + .col-sm-offset-7 { + margin-left: 58.333333333333336% + } + + .col-sm-offset-6 { + margin-left: 50% + } + + .col-sm-offset-5 { + margin-left: 41.66666666666667% + } + + .col-sm-offset-4 { + margin-left: 33.33333333333333% + } + + .col-sm-offset-3 { + margin-left: 25% + } + + .col-sm-offset-2 { + margin-left: 16.666666666666664% + } + + .col-sm-offset-1 { + margin-left: 8.333333333333332% + } + + .col-sm-offset-0 { + margin-left: 0 + } +} + +@media (min-width:992px) { + .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { + float: left + } + + .col-md-12 { + width: 100% + } + + .col-md-11 { + width: 91.66666666666666% + } + + .col-md-10 { + width: 83.33333333333334% + } + + .col-md-9 { + width: 75% + } + + .col-md-8 { + width: 66.66666666666666% + } + + .col-md-7 { + width: 58.333333333333336% + } + + .col-md-6 { + width: 50% + } + + .col-md-5 { + width: 41.66666666666667% + } + + .col-md-4 { + width: 33.33333333333333% + } + + .col-md-3 { + width: 25% + } + + .col-md-2 { + width: 16.666666666666664% + } + + .col-md-1 { + width: 8.333333333333332% + } + + .col-md-pull-12 { + right: 100% + } + + .col-md-pull-11 { + right: 91.66666666666666% + } + + .col-md-pull-10 { + right: 83.33333333333334% + } + + .col-md-pull-9 { + right: 75% + } + + .col-md-pull-8 { + right: 66.66666666666666% + } + + .col-md-pull-7 { + right: 58.333333333333336% + } + + .col-md-pull-6 { + right: 50% + } + + .col-md-pull-5 { + right: 41.66666666666667% + } + + .col-md-pull-4 { + right: 33.33333333333333% + } + + .col-md-pull-3 { + right: 25% + } + + .col-md-pull-2 { + right: 16.666666666666664% + } + + .col-md-pull-1 { + right: 8.333333333333332% + } + + .col-md-pull-0 { + right: auto + } + + .col-md-push-12 { + left: 100% + } + + .col-md-push-11 { + left: 91.66666666666666% + } + + .col-md-push-10 { + left: 83.33333333333334% + } + + .col-md-push-9 { + left: 75% + } + + .col-md-push-8 { + left: 66.66666666666666% + } + + .col-md-push-7 { + left: 58.333333333333336% + } + + .col-md-push-6 { + left: 50% + } + + .col-md-push-5 { + left: 41.66666666666667% + } + + .col-md-push-4 { + left: 33.33333333333333% + } + + .col-md-push-3 { + left: 25% + } + + .col-md-push-2 { + left: 16.666666666666664% + } + + .col-md-push-1 { + left: 8.333333333333332% + } + + .col-md-push-0 { + left: auto + } + + .col-md-offset-12 { + margin-left: 100% + } + + .col-md-offset-11 { + margin-left: 91.66666666666666% + } + + .col-md-offset-10 { + margin-left: 83.33333333333334% + } + + .col-md-offset-9 { + margin-left: 75% + } + + .col-md-offset-8 { + margin-left: 66.66666666666666% + } + + .col-md-offset-7 { + margin-left: 58.333333333333336% + } + + .col-md-offset-6 { + margin-left: 50% + } + + .col-md-offset-5 { + margin-left: 41.66666666666667% + } + + .col-md-offset-4 { + margin-left: 33.33333333333333% + } + + .col-md-offset-3 { + margin-left: 25% + } + + .col-md-offset-2 { + margin-left: 16.666666666666664% + } + + .col-md-offset-1 { + margin-left: 8.333333333333332% + } + + .col-md-offset-0 { + margin-left: 0 + } +} + +@media (min-width:1200px) { + .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { + float: left + } + + .col-lg-12 { + width: 100% + } + + .col-lg-11 { + width: 91.66666666666666% + } + + .col-lg-10 { + width: 83.33333333333334% + } + + .col-lg-9 { + width: 75% + } + + .col-lg-8 { + width: 66.66666666666666% + } + + .col-lg-7 { + width: 58.333333333333336% + } + + .col-lg-6 { + width: 50% + } + + .col-lg-5 { + width: 41.66666666666667% + } + + .col-lg-4 { + width: 33.33333333333333% + } + + .col-lg-3 { + width: 25% + } + + .col-lg-2 { + width: 16.666666666666664% + } + + .col-lg-1 { + width: 8.333333333333332% + } + + .col-lg-pull-12 { + right: 100% + } + + .col-lg-pull-11 { + right: 91.66666666666666% + } + + .col-lg-pull-10 { + right: 83.33333333333334% + } + + .col-lg-pull-9 { + right: 75% + } + + .col-lg-pull-8 { + right: 66.66666666666666% + } + + .col-lg-pull-7 { + right: 58.333333333333336% + } + + .col-lg-pull-6 { + right: 50% + } + + .col-lg-pull-5 { + right: 41.66666666666667% + } + + .col-lg-pull-4 { + right: 33.33333333333333% + } + + .col-lg-pull-3 { + right: 25% + } + + .col-lg-pull-2 { + right: 16.666666666666664% + } + + .col-lg-pull-1 { + right: 8.333333333333332% + } + + .col-lg-pull-0 { + right: auto + } + + .col-lg-push-12 { + left: 100% + } + + .col-lg-push-11 { + left: 91.66666666666666% + } + + .col-lg-push-10 { + left: 83.33333333333334% + } + + .col-lg-push-9 { + left: 75% + } + + .col-lg-push-8 { + left: 66.66666666666666% + } + + .col-lg-push-7 { + left: 58.333333333333336% + } + + .col-lg-push-6 { + left: 50% + } + + .col-lg-push-5 { + left: 41.66666666666667% + } + + .col-lg-push-4 { + left: 33.33333333333333% + } + + .col-lg-push-3 { + left: 25% + } + + .col-lg-push-2 { + left: 16.666666666666664% + } + + .col-lg-push-1 { + left: 8.333333333333332% + } + + .col-lg-push-0 { + left: auto + } + + .col-lg-offset-12 { + margin-left: 100% + } + + .col-lg-offset-11 { + margin-left: 91.66666666666666% + } + + .col-lg-offset-10 { + margin-left: 83.33333333333334% + } + + .col-lg-offset-9 { + margin-left: 75% + } + + .col-lg-offset-8 { + margin-left: 66.66666666666666% + } + + .col-lg-offset-7 { + margin-left: 58.333333333333336% + } + + .col-lg-offset-6 { + margin-left: 50% + } + + .col-lg-offset-5 { + margin-left: 41.66666666666667% + } + + .col-lg-offset-4 { + margin-left: 33.33333333333333% + } + + .col-lg-offset-3 { + margin-left: 25% + } + + .col-lg-offset-2 { + margin-left: 16.666666666666664% + } + + .col-lg-offset-1 { + margin-left: 8.333333333333332% + } + + .col-lg-offset-0 { + margin-left: 0 + } +} + +table { + background-color: transparent +} + +caption { + padding-top: 8px; + padding-bottom: 8px; + color: #030; + text-align: left +} + +th { + text-align: left +} + +.table { + width: 100%; + max-width: 100%; + margin-bottom: 20px +} + +.table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td { + padding: 8px; + line-height: 1.428571429; + vertical-align: top; + border-top: 1px solid #444 +} + +.table>thead>tr>th { + vertical-align: bottom; + border-bottom: 2px solid #444 +} + +.table>caption+thead>tr:first-child>th, .table>colgroup+thead>tr:first-child>th, .table>thead:first-child>tr:first-child>th, .table>caption+thead>tr:first-child>td, .table>colgroup+thead>tr:first-child>td, .table>thead:first-child>tr:first-child>td { + border-top: 0 +} + +.table>tbody+tbody { + border-top: 2px solid #444 +} + +.table .table { + background-color: #222 +} + +.table-condensed>thead>tr>th, .table-condensed>tbody>tr>th, .table-condensed>tfoot>tr>th, .table-condensed>thead>tr>td, .table-condensed>tbody>tr>td, .table-condensed>tfoot>tr>td { + padding: 5px +} + +.table-bordered { + border: 1px solid #444 +} + +.table-bordered>thead>tr>th, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>tbody>tr>td, .table-bordered>tfoot>tr>td { + border: 1px solid #444 +} + +.table-bordered>thead>tr>th, .table-bordered>thead>tr>td { + border-bottom-width: 2px +} + +.table-striped>tbody>tr:nth-of-type(odd) { + background-color: #080808 +} + +.table-hover>tbody>tr:hover { + background-color: #030 +} + +table col[class*="col-"] { + position: static; + float: none; + display: table-column +} + +table td[class*="col-"], table th[class*="col-"] { + position: static; + float: none; + display: table-cell +} + +.table>thead>tr>td.active, .table>tbody>tr>td.active, .table>tfoot>tr>td.active, .table>thead>tr>th.active, .table>tbody>tr>th.active, .table>tfoot>tr>th.active, .table>thead>tr.active>td, .table>tbody>tr.active>td, .table>tfoot>tr.active>td, .table>thead>tr.active>th, .table>tbody>tr.active>th, .table>tfoot>tr.active>th { + background-color: #030 +} + +.table-hover>tbody>tr>td.active:hover, .table-hover>tbody>tr>th.active:hover, .table-hover>tbody>tr.active:hover>td, .table-hover>tbody>tr:hover>.active, .table-hover>tbody>tr.active:hover>th { + background-color: #001900 +} + +.table>thead>tr>td.success, .table>tbody>tr>td.success, .table>tfoot>tr>td.success, .table>thead>tr>th.success, .table>tbody>tr>th.success, .table>tfoot>tr>th.success, .table>thead>tr.success>td, .table>tbody>tr.success>td, .table>tfoot>tr.success>td, .table>thead>tr.success>th, .table>tbody>tr.success>th, .table>tfoot>tr.success>th { + background-color: #3c3c3c +} + +.table-hover>tbody>tr>td.success:hover, .table-hover>tbody>tr>th.success:hover, .table-hover>tbody>tr.success:hover>td, .table-hover>tbody>tr:hover>.success, .table-hover>tbody>tr.success:hover>th { + background-color: #2f2f2f +} + +.table>thead>tr>td.info, .table>tbody>tr>td.info, .table>tfoot>tr>td.info, .table>thead>tr>th.info, .table>tbody>tr>th.info, .table>tfoot>tr>th.info, .table>thead>tr.info>td, .table>tbody>tr.info>td, .table>tfoot>tr.info>td, .table>thead>tr.info>th, .table>tbody>tr.info>th, .table>tfoot>tr.info>th { + background-color: #3c3c3c +} + +.table-hover>tbody>tr>td.info:hover, .table-hover>tbody>tr>th.info:hover, .table-hover>tbody>tr.info:hover>td, .table-hover>tbody>tr:hover>.info, .table-hover>tbody>tr.info:hover>th { + background-color: #2f2f2f +} + +.table>thead>tr>td.warning, .table>tbody>tr>td.warning, .table>tfoot>tr>td.warning, .table>thead>tr>th.warning, .table>tbody>tr>th.warning, .table>tfoot>tr>th.warning, .table>thead>tr.warning>td, .table>tbody>tr.warning>td, .table>tfoot>tr.warning>td, .table>thead>tr.warning>th, .table>tbody>tr.warning>th, .table>tfoot>tr.warning>th { + background-color: #3c3c3c +} + +.table-hover>tbody>tr>td.warning:hover, .table-hover>tbody>tr>th.warning:hover, .table-hover>tbody>tr.warning:hover>td, .table-hover>tbody>tr:hover>.warning, .table-hover>tbody>tr.warning:hover>th { + background-color: #2f2f2f +} + +.table>thead>tr>td.danger, .table>tbody>tr>td.danger, .table>tfoot>tr>td.danger, .table>thead>tr>th.danger, .table>tbody>tr>th.danger, .table>tfoot>tr>th.danger, .table>thead>tr.danger>td, .table>tbody>tr.danger>td, .table>tfoot>tr.danger>td, .table>thead>tr.danger>th, .table>tbody>tr.danger>th, .table>tfoot>tr.danger>th { + background-color: #3c3c3c +} + +.table-hover>tbody>tr>td.danger:hover, .table-hover>tbody>tr>th.danger:hover, .table-hover>tbody>tr.danger:hover>td, .table-hover>tbody>tr:hover>.danger, .table-hover>tbody>tr.danger:hover>th { + background-color: #2f2f2f +} + +.table-responsive { + overflow-x: auto; + min-height: .01% +} + +@media screen and (max-width:767px) { + .table-responsive { + width: 100%; + margin-bottom: 15px; + overflow-y: hidden; + -ms-overflow-style: -ms-autohiding-scrollbar; + border: 1px solid #444 + } + + .table-responsive>.table { + margin-bottom: 0 + } + + .table-responsive>.table>thead>tr>th, .table-responsive>.table>tbody>tr>th, .table-responsive>.table>tfoot>tr>th, .table-responsive>.table>thead>tr>td, .table-responsive>.table>tbody>tr>td, .table-responsive>.table>tfoot>tr>td { + white-space: nowrap + } + + .table-responsive>.table-bordered { + border: 0 + } + + .table-responsive>.table-bordered>thead>tr>th:first-child, .table-responsive>.table-bordered>tbody>tr>th:first-child, .table-responsive>.table-bordered>tfoot>tr>th:first-child, .table-responsive>.table-bordered>thead>tr>td:first-child, .table-responsive>.table-bordered>tbody>tr>td:first-child, .table-responsive>.table-bordered>tfoot>tr>td:first-child { + border-left: 0 + } + + .table-responsive>.table-bordered>thead>tr>th:last-child, .table-responsive>.table-bordered>tbody>tr>th:last-child, .table-responsive>.table-bordered>tfoot>tr>th:last-child, .table-responsive>.table-bordered>thead>tr>td:last-child, .table-responsive>.table-bordered>tbody>tr>td:last-child, .table-responsive>.table-bordered>tfoot>tr>td:last-child { + border-right: 0 + } + + .table-responsive>.table-bordered>tbody>tr:last-child>th, .table-responsive>.table-bordered>tfoot>tr:last-child>th, .table-responsive>.table-bordered>tbody>tr:last-child>td, .table-responsive>.table-bordered>tfoot>tr:last-child>td { + border-bottom: 0 + } +} + +fieldset { + padding: 0; + margin: 0; + border: 0; + min-width: 0 +} + +legend { + display: block; + width: 100%; + padding: 0; + margin-bottom: 20px; + font-size: 21px; + line-height: inherit; + color: #0c0; + border: 0; + border-bottom: 1px solid #e5e5e5 +} + +label { + display: inline-block; + max-width: 100%; + margin-bottom: 5px; + font-weight: bold +} + +input[type="search"] { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box +} + +input[type="radio"], input[type="checkbox"] { + margin: 4px 0 0; + margin-top: 1px \9; + line-height: normal +} + +input[type="file"] { + display: block +} + +input[type="range"] { + display: block; + width: 100% +} + +select[multiple], select[size] { + height: auto +} + +input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px +} + +output { + display: block; + padding-top: 7px; + font-size: 14px; + line-height: 1.428571429; + color: #090 +} + +.form-control { + display: block; + width: 100%; + height: 34px; + padding: 6px 12px; + font-size: 14px; + line-height: 1.428571429; + color: #090; + background-color: #000; + background-image: none; + border: 1px solid #444; + border-radius: 0; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; + -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; + transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s +} + +.form-control:focus { + border-color: #0f0; + outline: 0; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(0, 255, 0, 0.6); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(0, 255, 0, 0.6) +} + +.form-control::-moz-placeholder { + color: #060; + opacity: 1 +} + +.form-control:-ms-input-placeholder { + color: #060 +} + +.form-control::-webkit-input-placeholder { + color: #060 +} + +.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { + background-color: #030; + opacity: 1 +} + +.form-control[disabled], fieldset[disabled] .form-control { + cursor: not-allowed +} + +textarea.form-control { + height: auto +} + +input[type="search"] { + -webkit-appearance: none +} + +@media screen and (-webkit-min-device-pixel-ratio:0) { + input[type="date"], input[type="time"], input[type="datetime-local"], input[type="month"] { + line-height: 34px + } + + input[type="date"].input-sm, input[type="time"].input-sm, input[type="datetime-local"].input-sm, input[type="month"].input-sm, .input-group-sm input[type="date"], .input-group-sm input[type="time"], .input-group-sm input[type="datetime-local"], .input-group-sm input[type="month"] { + line-height: 30px + } + + input[type="date"].input-lg, input[type="time"].input-lg, input[type="datetime-local"].input-lg, input[type="month"].input-lg, .input-group-lg input[type="date"], .input-group-lg input[type="time"], .input-group-lg input[type="datetime-local"], .input-group-lg input[type="month"] { + line-height: 45px + } +} + +.form-group { + margin-bottom: 15px +} + +.radio, .checkbox { + position: relative; + display: block; + margin-top: 10px; + margin-bottom: 10px +} + +.radio label, .checkbox label { + min-height: 20px; + padding-left: 20px; + margin-bottom: 0; + font-weight: normal; + cursor: pointer +} + +.radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] { + position: absolute; + margin-left: -20px; + margin-top: 4px \9 +} + +.radio+.radio, .checkbox+.checkbox { + margin-top: -5px +} + +.radio-inline, .checkbox-inline { + position: relative; + display: inline-block; + padding-left: 20px; + margin-bottom: 0; + vertical-align: middle; + font-weight: normal; + cursor: pointer +} + +.radio-inline+.radio-inline, .checkbox-inline+.checkbox-inline { + margin-top: 0; + margin-left: 10px +} + +input[type="radio"][disabled], input[type="checkbox"][disabled], input[type="radio"].disabled, input[type="checkbox"].disabled, fieldset[disabled] input[type="radio"], fieldset[disabled] input[type="checkbox"] { + cursor: not-allowed +} + +.radio-inline.disabled, .checkbox-inline.disabled, fieldset[disabled] .radio-inline, fieldset[disabled] .checkbox-inline { + cursor: not-allowed +} + +.radio.disabled label, .checkbox.disabled label, fieldset[disabled] .radio label, fieldset[disabled] .checkbox label { + cursor: not-allowed +} + +.form-control-static { + padding-top: 7px; + padding-bottom: 7px; + margin-bottom: 0; + min-height: 34px +} + +.form-control-static.input-lg, .form-control-static.input-sm { + padding-left: 0; + padding-right: 0 +} + +.input-sm { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 0 +} + +select.input-sm { + height: 30px; + line-height: 30px +} + +textarea.input-sm, select[multiple].input-sm { + height: auto +} + +.form-group-sm .form-control { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 0 +} + +select.form-group-sm .form-control { + height: 30px; + line-height: 30px +} + +textarea.form-group-sm .form-control, select[multiple].form-group-sm .form-control { + height: auto +} + +.form-group-sm .form-control-static { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + min-height: 32px +} + +.input-lg { + height: 45px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.33; + border-radius: 0 +} + +select.input-lg { + height: 45px; + line-height: 45px +} + +textarea.input-lg, select[multiple].input-lg { + height: auto +} + +.form-group-lg .form-control { + height: 45px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.33; + border-radius: 0 +} + +select.form-group-lg .form-control { + height: 45px; + line-height: 45px +} + +textarea.form-group-lg .form-control, select[multiple].form-group-lg .form-control { + height: auto +} + +.form-group-lg .form-control-static { + height: 45px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.33; + min-height: 38px +} + +.has-feedback { + position: relative +} + +.has-feedback .form-control { + padding-right: 42.5px +} + +.form-control-feedback { + position: absolute; + top: 0; + right: 0; + z-index: 2; + display: block; + width: 34px; + height: 34px; + line-height: 34px; + text-align: center; + pointer-events: none +} + +.input-lg+.form-control-feedback { + width: 45px; + height: 45px; + line-height: 45px +} + +.input-sm+.form-control-feedback { + width: 30px; + height: 30px; + line-height: 30px +} + +.has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label { + color: #0d0 +} + +.has-success .form-control { + border-color: #0d0; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) +} + +.has-success .form-control:focus { + border-color: #0a0; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #4f4; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #4f4 +} + +.has-success .input-group-addon { + color: #0d0; + border-color: #0d0; + background-color: #3c3c3c +} + +.has-success .form-control-feedback { + color: #0d0 +} + +.has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label { + color: #f4ff00 +} + +.has-warning .form-control { + border-color: #f4ff00; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) +} + +.has-warning .form-control:focus { + border-color: #c3cc00; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f8ff66; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f8ff66 +} + +.has-warning .input-group-addon { + color: #f4ff00; + border-color: #f4ff00; + background-color: #3c3c3c +} + +.has-warning .form-control-feedback { + color: #f4ff00 +} + +.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label { + color: #d00 +} + +.has-error .form-control { + border-color: #d00; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) +} + +.has-error .form-control:focus { + border-color: #a00; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f44; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f44 +} + +.has-error .input-group-addon { + color: #d00; + border-color: #d00; + background-color: #3c3c3c +} + +.has-error .form-control-feedback { + color: #d00 +} + +.has-feedback label~.form-control-feedback { + top: 25px +} + +.has-feedback label.sr-only~.form-control-feedback { + top: 0 +} + +.help-block { + display: block; + margin-top: 5px; + margin-bottom: 10px; + color: #4dff4d +} + +@media (min-width:768px) { + .form-inline .form-group { + display: inline-block; + margin-bottom: 0; + vertical-align: middle + } + + .form-inline .form-control { + display: inline-block; + width: auto; + vertical-align: middle + } + + .form-inline .form-control-static { + display: inline-block + } + + .form-inline .input-group { + display: inline-table; + vertical-align: middle + } + + .form-inline .input-group .input-group-addon, .form-inline .input-group .input-group-btn, .form-inline .input-group .form-control { + width: auto + } + + .form-inline .input-group>.form-control { + width: 100% + } + + .form-inline .control-label { + margin-bottom: 0; + vertical-align: middle + } + + .form-inline .radio, .form-inline .checkbox { + display: inline-block; + margin-top: 0; + margin-bottom: 0; + vertical-align: middle + } + + .form-inline .radio label, .form-inline .checkbox label { + padding-left: 0 + } + + .form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] { + position: relative; + margin-left: 0 + } + + .form-inline .has-feedback .form-control-feedback { + top: 0 + } +} + +.form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline { + margin-top: 0; + margin-bottom: 0; + padding-top: 7px +} + +.form-horizontal .radio, .form-horizontal .checkbox { + min-height: 27px +} + +.form-horizontal .form-group { + margin-left: -15px; + margin-right: -15px +} + +@media (min-width:768px) { + .form-horizontal .control-label { + text-align: right; + margin-bottom: 0; + padding-top: 7px + } +} + +.form-horizontal .has-feedback .form-control-feedback { + right: 15px +} + +@media (min-width:768px) { + .form-horizontal .form-group-lg .control-label { + padding-top: 14.3px + } +} + +@media (min-width:768px) { + .form-horizontal .form-group-sm .control-label { + padding-top: 6px + } +} + +.btn { + display: inline-block; + margin-bottom: 0; + font-weight: normal; + text-align: center; + vertical-align: middle; + touch-action: manipulation; + cursor: pointer; + background-image: none; + border: 1px solid transparent; + white-space: nowrap; + padding: 6px 12px; + font-size: 14px; + line-height: 1.428571429; + border-radius: 0; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none +} + +.btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px +} + +.btn:hover, .btn:focus, .btn.focus { + color: #0f0; + text-decoration: none +} + +.btn:active, .btn.active { + outline: 0; + background-image: none; + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) +} + +.btn.disabled, .btn[disabled], fieldset[disabled] .btn { + cursor: not-allowed; + pointer-events: none; + opacity: .65; + filter: alpha(opacity=65); + -webkit-box-shadow: none; + box-shadow: none +} + +.btn-default { + color: #0f0; + background-color: #222; + border-color: #111 +} + +.btn-default:hover, .btn-default:focus, .btn-default.focus, .btn-default:active, .btn-default.active, .open>.dropdown-toggle.btn-default { + color: #0f0; + background-color: #080808; + border-color: #000 +} + +.btn-default:active, .btn-default.active, .open>.dropdown-toggle.btn-default { + background-image: none +} + +.btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled.focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default.focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active { + background-color: #222; + border-color: #111 +} + +.btn-default .badge { + color: #222; + background-color: #0f0 +} + +.btn-primary { + color: #222; + background-color: #0f0; + border-color: #111 +} + +.btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary:active, .btn-primary.active, .open>.dropdown-toggle.btn-primary { + color: #222; + background-color: #0c0; + border-color: #000 +} + +.btn-primary:active, .btn-primary.active, .open>.dropdown-toggle.btn-primary { + background-image: none +} + +.btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active { + background-color: #0f0; + border-color: #111 +} + +.btn-primary .badge { + color: #0f0; + background-color: #222 +} + +.btn-success { + color: #222; + background-color: #090; + border-color: #111 +} + +.btn-success:hover, .btn-success:focus, .btn-success.focus, .btn-success:active, .btn-success.active, .open>.dropdown-toggle.btn-success { + color: #222; + background-color: #060; + border-color: #000 +} + +.btn-success:active, .btn-success.active, .open>.dropdown-toggle.btn-success { + background-image: none +} + +.btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success, .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled.focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success.focus, .btn-success.disabled:active, .btn-success[disabled]:active, fieldset[disabled] .btn-success:active, .btn-success.disabled.active, .btn-success[disabled].active, fieldset[disabled] .btn-success.active { + background-color: #090; + border-color: #111 +} + +.btn-success .badge { + color: #090; + background-color: #222 +} + +.btn-info { + color: #222; + background-color: #36c; + border-color: #111 +} + +.btn-info:hover, .btn-info:focus, .btn-info.focus, .btn-info:active, .btn-info.active, .open>.dropdown-toggle.btn-info { + color: #222; + background-color: #2952a3; + border-color: #000 +} + +.btn-info:active, .btn-info.active, .open>.dropdown-toggle.btn-info { + background-image: none +} + +.btn-info.disabled, .btn-info[disabled], fieldset[disabled] .btn-info, .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled.focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info.focus, .btn-info.disabled:active, .btn-info[disabled]:active, fieldset[disabled] .btn-info:active, .btn-info.disabled.active, .btn-info[disabled].active, fieldset[disabled] .btn-info.active { + background-color: #36c; + border-color: #111 +} + +.btn-info .badge { + color: #36c; + background-color: #222 +} + +.btn-warning { + color: #222; + background-color: #f4ff00; + border-color: #111 +} + +.btn-warning:hover, .btn-warning:focus, .btn-warning.focus, .btn-warning:active, .btn-warning.active, .open>.dropdown-toggle.btn-warning { + color: #222; + background-color: #c3cc00; + border-color: #000 +} + +.btn-warning:active, .btn-warning.active, .open>.dropdown-toggle.btn-warning { + background-image: none +} + +.btn-warning.disabled, .btn-warning[disabled], fieldset[disabled] .btn-warning, .btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled.focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning.focus, .btn-warning.disabled:active, .btn-warning[disabled]:active, fieldset[disabled] .btn-warning:active, .btn-warning.disabled.active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning.active { + background-color: #f4ff00; + border-color: #111 +} + +.btn-warning .badge { + color: #f4ff00; + background-color: #222 +} + +.btn-danger { + color: #222; + background-color: #f00; + border-color: #111 +} + +.btn-danger:hover, .btn-danger:focus, .btn-danger.focus, .btn-danger:active, .btn-danger.active, .open>.dropdown-toggle.btn-danger { + color: #222; + background-color: #c00; + border-color: #000 +} + +.btn-danger:active, .btn-danger.active, .open>.dropdown-toggle.btn-danger { + background-image: none +} + +.btn-danger.disabled, .btn-danger[disabled], fieldset[disabled] .btn-danger, .btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled.focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger.focus, .btn-danger.disabled:active, .btn-danger[disabled]:active, fieldset[disabled] .btn-danger:active, .btn-danger.disabled.active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger.active { + background-color: #f00; + border-color: #111 +} + +.btn-danger .badge { + color: #f00; + background-color: #222 +} + +.btn-link { + color: #0f0; + font-weight: normal; + border-radius: 0 +} + +.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link { + background-color: transparent; + -webkit-box-shadow: none; + box-shadow: none +} + +.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { + border-color: transparent +} + +.btn-link:hover, .btn-link:focus { + color: #00b300; + text-decoration: underline; + background-color: transparent +} + +.btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:focus { + color: #030; + text-decoration: none +} + +.btn-lg, .btn-group-lg>.btn { + padding: 10px 16px; + font-size: 18px; + line-height: 1.33; + border-radius: 0 +} + +.btn-sm, .btn-group-sm>.btn { + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 0 +} + +.btn-xs, .btn-group-xs>.btn { + padding: 1px 5px; + font-size: 12px; + line-height: 1.5; + border-radius: 0 +} + +.btn-block { + display: block; + width: 100% +} + +.btn-block+.btn-block { + margin-top: 5px +} + +input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block { + width: 100% +} + +.fade { + opacity: 0; + -webkit-transition: opacity .15s linear; + -o-transition: opacity .15s linear; + transition: opacity .15s linear +} + +.fade.in { + opacity: 1 +} + +.collapse { + display: none +} + +.collapse.in { + display: block +} + +tr.collapse.in { + display: table-row +} + +tbody.collapse.in { + display: table-row-group +} + +.collapsing { + position: relative; + height: 0; + overflow: hidden; + -webkit-transition-property: height, visibility; + transition-property: height, visibility; + -webkit-transition-duration: .35s; + transition-duration: .35s; + -webkit-transition-timing-function: ease; + transition-timing-function: ease +} + +.caret { + display: inline-block; + width: 0; + height: 0; + margin-left: 2px; + vertical-align: middle; + border-top: 4px dashed; + border-right: 4px solid transparent; + border-left: 4px solid transparent +} + +.dropup, .dropdown { + position: relative +} + +.dropdown-toggle:focus { + outline: 0 +} + +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 160px; + padding: 5px 0; + margin: 2px 0 0; + list-style: none; + font-size: 14px; + text-align: left; + background-color: #3c3c3c; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, 0.15); + border-radius: 0; + -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); + box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); + background-clip: padding-box +} + +.dropdown-menu.pull-right { + right: 0; + left: auto +} + +.dropdown-menu .divider { + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #333 +} + +.dropdown-menu>li>a { + display: block; + padding: 3px 20px; + clear: both; + font-weight: normal; + line-height: 1.428571429; + color: #0c0; + white-space: nowrap +} + +.dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus { + text-decoration: none; + color: #222; + background-color: #0f0 +} + +.dropdown-menu>.active>a, .dropdown-menu>.active>a:hover, .dropdown-menu>.active>a:focus { + color: #222; + text-decoration: none; + outline: 0; + background-color: #0f0 +} + +.dropdown-menu>.disabled>a, .dropdown-menu>.disabled>a:hover, .dropdown-menu>.disabled>a:focus { + color: #030 +} + +.dropdown-menu>.disabled>a:hover, .dropdown-menu>.disabled>a:focus { + text-decoration: none; + background-color: transparent; + background-image: none; + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + cursor: not-allowed +} + +.open>.dropdown-menu { + display: block +} + +.open>a { + outline: 0 +} + +.dropdown-menu-right { + left: auto; + right: 0 +} + +.dropdown-menu-left { + left: 0; + right: auto +} + +.dropdown-header { + display: block; + padding: 3px 20px; + font-size: 12px; + line-height: 1.428571429; + color: #a2a2a2; + white-space: nowrap +} + +.dropdown-backdrop { + position: fixed; + left: 0; + right: 0; + bottom: 0; + top: 0; + z-index: 990 +} + +.pull-right>.dropdown-menu { + right: 0; + left: auto +} + +.dropup .caret, .navbar-fixed-bottom .dropdown .caret { + border-top: 0; + border-bottom: 4px solid; + content: "" +} + +.dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu { + top: auto; + bottom: 100%; + margin-bottom: 2px +} + +@media (min-width:768px) { + .navbar-right .dropdown-menu { + left: auto; + right: 0 + } + + .navbar-right .dropdown-menu-left { + left: 0; + right: auto + } +} + +.btn-group, .btn-group-vertical { + position: relative; + display: inline-block; + vertical-align: middle +} + +.btn-group>.btn, .btn-group-vertical>.btn { + position: relative; + float: left +} + +.btn-group>.btn:hover, .btn-group-vertical>.btn:hover, .btn-group>.btn:focus, .btn-group-vertical>.btn:focus, .btn-group>.btn:active, .btn-group-vertical>.btn:active, .btn-group>.btn.active, .btn-group-vertical>.btn.active { + z-index: 2 +} + +.btn-group .btn+.btn, .btn-group .btn+.btn-group, .btn-group .btn-group+.btn, .btn-group .btn-group+.btn-group { + margin-left: -1px +} + +.btn-toolbar { + margin-left: -5px +} + +.btn-toolbar .btn-group, .btn-toolbar .input-group { + float: left +} + +.btn-toolbar>.btn, .btn-toolbar>.btn-group, .btn-toolbar>.input-group { + margin-left: 5px +} + +.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { + border-radius: 0 +} + +.btn-group>.btn:first-child { + margin-left: 0 +} + +.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) { + border-bottom-right-radius: 0; + border-top-right-radius: 0 +} + +.btn-group>.btn:last-child:not(:first-child), .btn-group>.dropdown-toggle:not(:first-child) { + border-bottom-left-radius: 0; + border-top-left-radius: 0 +} + +.btn-group>.btn-group { + float: left +} + +.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn { + border-radius: 0 +} + +.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child, .btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle { + border-bottom-right-radius: 0; + border-top-right-radius: 0 +} + +.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child { + border-bottom-left-radius: 0; + border-top-left-radius: 0 +} + +.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle { + outline: 0 +} + +.btn-group>.btn+.dropdown-toggle { + padding-left: 8px; + padding-right: 8px +} + +.btn-group>.btn-lg+.dropdown-toggle { + padding-left: 12px; + padding-right: 12px +} + +.btn-group.open .dropdown-toggle { + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) +} + +.btn-group.open .dropdown-toggle.btn-link { + -webkit-box-shadow: none; + box-shadow: none +} + +.btn .caret { + margin-left: 0 +} + +.btn-lg .caret { + border-width: 5px 5px 0; + border-bottom-width: 0 +} + +.dropup .btn-lg .caret { + border-width: 0 5px 5px +} + +.btn-group-vertical>.btn, .btn-group-vertical>.btn-group, .btn-group-vertical>.btn-group>.btn { + display: block; + float: none; + width: 100%; + max-width: 100% +} + +.btn-group-vertical>.btn-group>.btn { + float: none +} + +.btn-group-vertical>.btn+.btn, .btn-group-vertical>.btn+.btn-group, .btn-group-vertical>.btn-group+.btn, .btn-group-vertical>.btn-group+.btn-group { + margin-top: -1px; + margin-left: 0 +} + +.btn-group-vertical>.btn:not(:first-child):not(:last-child) { + border-radius: 0 +} + +.btn-group-vertical>.btn:first-child:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0 +} + +.btn-group-vertical>.btn:last-child:not(:first-child) { + border-bottom-left-radius: 0; + border-top-right-radius: 0; + border-top-left-radius: 0 +} + +.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn { + border-radius: 0 +} + +.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child, .btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0 +} + +.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child { + border-top-right-radius: 0; + border-top-left-radius: 0 +} + +.btn-group-justified { + display: table; + width: 100%; + table-layout: fixed; + border-collapse: separate +} + +.btn-group-justified>.btn, .btn-group-justified>.btn-group { + float: none; + display: table-cell; + width: 1% +} + +.btn-group-justified>.btn-group .btn { + width: 100% +} + +.btn-group-justified>.btn-group .dropdown-menu { + left: auto +} + +[data-toggle="buttons"]>.btn input[type="radio"], [data-toggle="buttons"]>.btn-group>.btn input[type="radio"], [data-toggle="buttons"]>.btn input[type="checkbox"], [data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"] { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none +} + +.input-group { + position: relative; + display: table; + border-collapse: separate +} + +.input-group[class*="col-"] { + float: none; + padding-left: 0; + padding-right: 0 +} + +.input-group .form-control { + position: relative; + z-index: 2; + float: left; + width: 100%; + margin-bottom: 0 +} + +.input-group-lg>.form-control, .input-group-lg>.input-group-addon, .input-group-lg>.input-group-btn>.btn { + height: 45px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.33; + border-radius: 0 +} + +select.input-group-lg>.form-control, select.input-group-lg>.input-group-addon, select.input-group-lg>.input-group-btn>.btn { + height: 45px; + line-height: 45px +} + +textarea.input-group-lg>.form-control, textarea.input-group-lg>.input-group-addon, textarea.input-group-lg>.input-group-btn>.btn, select[multiple].input-group-lg>.form-control, select[multiple].input-group-lg>.input-group-addon, select[multiple].input-group-lg>.input-group-btn>.btn { + height: auto +} + +.input-group-sm>.form-control, .input-group-sm>.input-group-addon, .input-group-sm>.input-group-btn>.btn { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 0 +} + +select.input-group-sm>.form-control, select.input-group-sm>.input-group-addon, select.input-group-sm>.input-group-btn>.btn { + height: 30px; + line-height: 30px +} + +textarea.input-group-sm>.form-control, textarea.input-group-sm>.input-group-addon, textarea.input-group-sm>.input-group-btn>.btn, select[multiple].input-group-sm>.form-control, select[multiple].input-group-sm>.input-group-addon, select[multiple].input-group-sm>.input-group-btn>.btn { + height: auto +} + +.input-group-addon, .input-group-btn, .input-group .form-control { + display: table-cell +} + +.input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) { + border-radius: 0 +} + +.input-group-addon, .input-group-btn { + width: 1%; + white-space: nowrap; + vertical-align: middle +} + +.input-group-addon { + padding: 6px 12px; + font-size: 14px; + font-weight: normal; + line-height: 1; + color: #090; + text-align: center; + background-color: #222; + border: 1px solid #444; + border-radius: 0 +} + +.input-group-addon.input-sm { + padding: 5px 10px; + font-size: 12px; + border-radius: 0 +} + +.input-group-addon.input-lg { + padding: 10px 16px; + font-size: 18px; + border-radius: 0 +} + +.input-group-addon input[type="radio"], .input-group-addon input[type="checkbox"] { + margin-top: 0 +} + +.input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child>.btn, .input-group-btn:first-child>.btn-group>.btn, .input-group-btn:first-child>.dropdown-toggle, .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:last-child>.btn-group:not(:last-child)>.btn { + border-bottom-right-radius: 0; + border-top-right-radius: 0 +} + +.input-group-addon:first-child { + border-right: 0 +} + +.input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child>.btn, .input-group-btn:last-child>.btn-group>.btn, .input-group-btn:last-child>.dropdown-toggle, .input-group-btn:first-child>.btn:not(:first-child), .input-group-btn:first-child>.btn-group:not(:first-child)>.btn { + border-bottom-left-radius: 0; + border-top-left-radius: 0 +} + +.input-group-addon:last-child { + border-left: 0 +} + +.input-group-btn { + position: relative; + font-size: 0; + white-space: nowrap +} + +.input-group-btn>.btn { + position: relative +} + +.input-group-btn>.btn+.btn { + margin-left: -1px +} + +.input-group-btn>.btn:hover, .input-group-btn>.btn:focus, .input-group-btn>.btn:active { + z-index: 2 +} + +.input-group-btn:first-child>.btn, .input-group-btn:first-child>.btn-group { + margin-right: -1px +} + +.input-group-btn:last-child>.btn, .input-group-btn:last-child>.btn-group { + margin-left: -1px +} + +.nav { + margin-bottom: 0; + padding-left: 0; + list-style: none +} + +.nav>li { + position: relative; + display: block +} + +.nav>li>a { + position: relative; + display: block; + padding: 10px 15px +} + +.nav>li>a:hover, .nav>li>a:focus { + text-decoration: none; + background-color: #030 +} + +.nav>li.disabled>a { + color: #030 +} + +.nav>li.disabled>a:hover, .nav>li.disabled>a:focus { + color: #030; + text-decoration: none; + background-color: transparent; + cursor: not-allowed +} + +.nav .open>a, .nav .open>a:hover, .nav .open>a:focus { + background-color: #030; + border-color: #0f0 +} + +.nav .nav-divider { + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #e5e5e5 +} + +.nav>li>a>img { + max-width: none +} + +.nav-tabs { + border-bottom: 1px solid #444 +} + +.nav-tabs>li { + float: left; + margin-bottom: -1px +} + +.nav-tabs>li>a { + margin-right: 2px; + line-height: 1.428571429; + border: 1px solid transparent; + border-radius: 0 0 0 0 +} + +.nav-tabs>li>a:hover { + border-color: #444 #444 #444 +} + +.nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus { + color: #090; + background-color: #333; + border: 1px solid #222; + border-bottom-color: transparent; + cursor: default +} + +.nav-tabs.nav-justified { + width: 100%; + border-bottom: 0 +} + +.nav-tabs.nav-justified>li { + float: none +} + +.nav-tabs.nav-justified>li>a { + text-align: center; + margin-bottom: 5px +} + +.nav-tabs.nav-justified>.dropdown .dropdown-menu { + top: auto; + left: auto +} + +@media (min-width:768px) { + .nav-tabs.nav-justified>li { + display: table-cell; + width: 1% + } + + .nav-tabs.nav-justified>li>a { + margin-bottom: 0 + } +} + +.nav-tabs.nav-justified>li>a { + margin-right: 0; + border-radius: 0 +} + +.nav-tabs.nav-justified>.active>a, .nav-tabs.nav-justified>.active>a:hover, .nav-tabs.nav-justified>.active>a:focus { + border: 1px solid #ddd +} + +@media (min-width:768px) { + .nav-tabs.nav-justified>li>a { + border-bottom: 1px solid #ddd; + border-radius: 0 0 0 0 + } + + .nav-tabs.nav-justified>.active>a, .nav-tabs.nav-justified>.active>a:hover, .nav-tabs.nav-justified>.active>a:focus { + border-bottom-color: #222 + } +} + +.nav-pills>li { + float: left +} + +.nav-pills>li>a { + border-radius: 0 +} + +.nav-pills>li+li { + margin-left: 2px +} + +.nav-pills>li.active>a, .nav-pills>li.active>a:hover, .nav-pills>li.active>a:focus { + color: #fff; + background-color: #0f0 +} + +.nav-stacked>li { + float: none +} + +.nav-stacked>li+li { + margin-top: 2px; + margin-left: 0 +} + +.nav-justified { + width: 100% +} + +.nav-justified>li { + float: none +} + +.nav-justified>li>a { + text-align: center; + margin-bottom: 5px +} + +.nav-justified>.dropdown .dropdown-menu { + top: auto; + left: auto +} + +@media (min-width:768px) { + .nav-justified>li { + display: table-cell; + width: 1% + } + + .nav-justified>li>a { + margin-bottom: 0 + } +} + +.nav-tabs-justified { + border-bottom: 0 +} + +.nav-tabs-justified>li>a { + margin-right: 0; + border-radius: 0 +} + +.nav-tabs-justified>.active>a, .nav-tabs-justified>.active>a:hover, .nav-tabs-justified>.active>a:focus { + border: 1px solid #ddd +} + +@media (min-width:768px) { + .nav-tabs-justified>li>a { + border-bottom: 1px solid #ddd; + border-radius: 0 0 0 0 + } + + .nav-tabs-justified>.active>a, .nav-tabs-justified>.active>a:hover, .nav-tabs-justified>.active>a:focus { + border-bottom-color: #222 + } +} + +.tab-content>.tab-pane { + display: none +} + +.tab-content>.active { + display: block +} + +.nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-right-radius: 0; + border-top-left-radius: 0 +} + +.navbar { + position: relative; + min-height: 50px; + margin-bottom: 20px; + border: 1px solid transparent +} + +@media (min-width:768px) { + .navbar { + border-radius: 0 + } +} + +@media (min-width:768px) { + .navbar-header { + float: left + } +} + +.navbar-collapse { + overflow-x: visible; + padding-right: 15px; + padding-left: 15px; + border-top: 1px solid transparent; + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); + -webkit-overflow-scrolling: touch +} + +.navbar-collapse.in { + overflow-y: auto +} + +@media (min-width:768px) { + .navbar-collapse { + width: auto; + border-top: 0; + box-shadow: none + } + + .navbar-collapse.collapse { + display: block !important; + height: auto !important; + padding-bottom: 0; + overflow: visible !important + } + + .navbar-collapse.in { + overflow-y: visible + } + + .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { + padding-left: 0; + padding-right: 0 + } +} + +.navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { + max-height: 340px +} + +@media (max-device-width:480px) and (orientation:landscape) { + .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { + max-height: 200px + } +} + +.container>.navbar-header, .container-fluid>.navbar-header, .container>.navbar-collapse, .container-fluid>.navbar-collapse { + margin-right: -15px; + margin-left: -15px +} + +@media (min-width:768px) { + .container>.navbar-header, .container-fluid>.navbar-header, .container>.navbar-collapse, .container-fluid>.navbar-collapse { + margin-right: 0; + margin-left: 0 + } +} + +.navbar-static-top { + z-index: 1000; + border-width: 0 0 1px +} + +@media (min-width:768px) { + .navbar-static-top { + border-radius: 0 + } +} + +.navbar-fixed-top, .navbar-fixed-bottom { + position: fixed; + right: 0; + left: 0; + z-index: 1030 +} + +@media (min-width:768px) { + .navbar-fixed-top, .navbar-fixed-bottom { + border-radius: 0 + } +} + +.navbar-fixed-top { + top: 0; + border-width: 0 0 1px +} + +.navbar-fixed-bottom { + bottom: 0; + margin-bottom: 0; + border-width: 1px 0 0 +} + +.navbar-brand { + float: left; + padding: 15px 15px; + font-size: 18px; + line-height: 20px; + height: 50px +} + +.navbar-brand:hover, .navbar-brand:focus { + text-decoration: none +} + +.navbar-brand>img { + display: block +} + +@media (min-width:768px) { + .navbar>.container .navbar-brand, .navbar>.container-fluid .navbar-brand { + margin-left: -15px + } +} + +.navbar-toggle { + position: relative; + float: right; + margin-right: 15px; + padding: 9px 10px; + margin-top: 8px; + margin-bottom: 8px; + background-color: transparent; + background-image: none; + border: 1px solid transparent; + border-radius: 0 +} + +.navbar-toggle:focus { + outline: 0 +} + +.navbar-toggle .icon-bar { + display: block; + width: 22px; + height: 2px; + border-radius: 1px +} + +.navbar-toggle .icon-bar+.icon-bar { + margin-top: 4px +} + +@media (min-width:768px) { + .navbar-toggle { + display: none + } +} + +.navbar-nav { + margin: 7.5px -15px +} + +.navbar-nav>li>a { + padding-top: 10px; + padding-bottom: 10px; + line-height: 20px +} + +@media (max-width:767px) { + .navbar-nav .open .dropdown-menu { + position: static; + float: none; + width: auto; + margin-top: 0; + background-color: transparent; + border: 0; + box-shadow: none + } + + .navbar-nav .open .dropdown-menu>li>a, .navbar-nav .open .dropdown-menu .dropdown-header { + padding: 5px 15px 5px 25px + } + + .navbar-nav .open .dropdown-menu>li>a { + line-height: 20px + } + + .navbar-nav .open .dropdown-menu>li>a:hover, .navbar-nav .open .dropdown-menu>li>a:focus { + background-image: none + } +} + +@media (min-width:768px) { + .navbar-nav { + float: left; + margin: 0 + } + + .navbar-nav>li { + float: left + } + + .navbar-nav>li>a { + padding-top: 15px; + padding-bottom: 15px + } +} + +.navbar-form { + margin-left: -15px; + margin-right: -15px; + padding: 10px 15px; + border-top: 1px solid transparent; + border-bottom: 1px solid transparent; + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); + margin-top: 8px; + margin-bottom: 8px +} + +@media (min-width:768px) { + .navbar-form .form-group { + display: inline-block; + margin-bottom: 0; + vertical-align: middle + } + + .navbar-form .form-control { + display: inline-block; + width: auto; + vertical-align: middle + } + + .navbar-form .form-control-static { + display: inline-block + } + + .navbar-form .input-group { + display: inline-table; + vertical-align: middle + } + + .navbar-form .input-group .input-group-addon, .navbar-form .input-group .input-group-btn, .navbar-form .input-group .form-control { + width: auto + } + + .navbar-form .input-group>.form-control { + width: 100% + } + + .navbar-form .control-label { + margin-bottom: 0; + vertical-align: middle + } + + .navbar-form .radio, .navbar-form .checkbox { + display: inline-block; + margin-top: 0; + margin-bottom: 0; + vertical-align: middle + } + + .navbar-form .radio label, .navbar-form .checkbox label { + padding-left: 0 + } + + .navbar-form .radio input[type="radio"], .navbar-form .checkbox input[type="checkbox"] { + position: relative; + margin-left: 0 + } + + .navbar-form .has-feedback .form-control-feedback { + top: 0 + } +} + +@media (max-width:767px) { + .navbar-form .form-group { + margin-bottom: 5px + } + + .navbar-form .form-group:last-child { + margin-bottom: 0 + } +} + +@media (min-width:768px) { + .navbar-form { + width: auto; + border: 0; + margin-left: 0; + margin-right: 0; + padding-top: 0; + padding-bottom: 0; + -webkit-box-shadow: none; + box-shadow: none + } +} + +.navbar-nav>li>.dropdown-menu { + margin-top: 0; + border-top-right-radius: 0; + border-top-left-radius: 0 +} + +.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu { + margin-bottom: 0; + border-top-right-radius: 0; + border-top-left-radius: 0; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0 +} + +.navbar-btn { + margin-top: 8px; + margin-bottom: 8px +} + +.navbar-btn.btn-sm { + margin-top: 10px; + margin-bottom: 10px +} + +.navbar-btn.btn-xs { + margin-top: 14px; + margin-bottom: 14px +} + +.navbar-text { + margin-top: 15px; + margin-bottom: 15px +} + +@media (min-width:768px) { + .navbar-text { + float: left; + margin-left: 15px; + margin-right: 15px + } +} + +@media (min-width:768px) { + .navbar-left { + float: left !important + } + + .navbar-right { + float: right !important; + margin-right: -15px + } + + .navbar-right~.navbar-right { + margin-right: 0 + } +} + +.navbar-default { + background-color: #080808; + border-color: #000 +} + +.navbar-default .navbar-brand { + color: #0f0 +} + +.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { + color: #0c0; + background-color: transparent +} + +.navbar-default .navbar-text { + color: #0f0 +} + +.navbar-default .navbar-nav>li>a { + color: #0f0 +} + +.navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-nav>li>a:focus { + color: #090; + background-color: #222 +} + +.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus { + color: #999; + background-color: #000 +} + +.navbar-default .navbar-nav>.disabled>a, .navbar-default .navbar-nav>.disabled>a:hover, .navbar-default .navbar-nav>.disabled>a:focus { + color: #ccc; + background-color: transparent +} + +.navbar-default .navbar-toggle { + border-color: #ddd +} + +.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { + background-color: #ddd +} + +.navbar-default .navbar-toggle .icon-bar { + background-color: #888 +} + +.navbar-default .navbar-collapse, .navbar-default .navbar-form { + border-color: #000 +} + +.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:hover, .navbar-default .navbar-nav>.open>a:focus { + background-color: #000; + color: #999 +} + +@media (max-width:767px) { + .navbar-default .navbar-nav .open .dropdown-menu>li>a { + color: #0f0 + } + + .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover, .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus { + color: #090; + background-color: #222 + } + + .navbar-default .navbar-nav .open .dropdown-menu>.active>a, .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover, .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus { + color: #999; + background-color: #000 + } + + .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a, .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover, .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus { + color: #ccc; + background-color: transparent + } +} + +.navbar-default .navbar-link { + color: #0f0 +} + +.navbar-default .navbar-link:hover { + color: #090 +} + +.navbar-default .btn-link { + color: #0f0 +} + +.navbar-default .btn-link:hover, .navbar-default .btn-link:focus { + color: #090 +} + +.navbar-default .btn-link[disabled]:hover, fieldset[disabled] .navbar-default .btn-link:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:focus { + color: #ccc +} + +.navbar-inverse { + background-color: #222; + border-color: #080808 +} + +.navbar-inverse .navbar-brand { + color: #007f00 +} + +.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus { + color: #fff; + background-color: transparent +} + +.navbar-inverse .navbar-text { + color: #007f00 +} + +.navbar-inverse .navbar-nav>li>a { + color: #007f00 +} + +.navbar-inverse .navbar-nav>li>a:hover, .navbar-inverse .navbar-nav>li>a:focus { + color: #fff; + background-color: transparent +} + +.navbar-inverse .navbar-nav>.active>a, .navbar-inverse .navbar-nav>.active>a:hover, .navbar-inverse .navbar-nav>.active>a:focus { + color: #fff; + background-color: #080808 +} + +.navbar-inverse .navbar-nav>.disabled>a, .navbar-inverse .navbar-nav>.disabled>a:hover, .navbar-inverse .navbar-nav>.disabled>a:focus { + color: #444; + background-color: transparent +} + +.navbar-inverse .navbar-toggle { + border-color: #333 +} + +.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus { + background-color: #333 +} + +.navbar-inverse .navbar-toggle .icon-bar { + background-color: #fff +} + +.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form { + border-color: #101010 +} + +.navbar-inverse .navbar-nav>.open>a, .navbar-inverse .navbar-nav>.open>a:hover, .navbar-inverse .navbar-nav>.open>a:focus { + background-color: #080808; + color: #fff +} + +@media (max-width:767px) { + .navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header { + border-color: #080808 + } + + .navbar-inverse .navbar-nav .open .dropdown-menu .divider { + background-color: #080808 + } + + .navbar-inverse .navbar-nav .open .dropdown-menu>li>a { + color: #007f00 + } + + .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus { + color: #fff; + background-color: transparent + } + + .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a, .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus { + color: #fff; + background-color: #080808 + } + + .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a, .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus { + color: #444; + background-color: transparent + } +} + +.navbar-inverse .navbar-link { + color: #007f00 +} + +.navbar-inverse .navbar-link:hover { + color: #fff +} + +.navbar-inverse .btn-link { + color: #007f00 +} + +.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus { + color: #fff +} + +.navbar-inverse .btn-link[disabled]:hover, fieldset[disabled] .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:focus { + color: #444 +} + +.breadcrumb { + padding: 8px 15px; + margin-bottom: 20px; + list-style: none; + background-color: #3c3c3c; + border-radius: 0 +} + +.breadcrumb>li { + display: inline-block +} + +.breadcrumb>li+li:before { + content: "/\00a0"; + padding: 0 5px; + color: #0f0 +} + +.breadcrumb>.active { + color: #090 +} + +.pagination { + display: inline-block; + padding-left: 0; + margin: 20px 0; + border-radius: 0 +} + +.pagination>li { + display: inline +} + +.pagination>li>a, .pagination>li>span { + position: relative; + float: left; + padding: 6px 12px; + line-height: 1.428571429; + text-decoration: none; + color: #0f0; + background-color: #222; + border: 1px solid #444; + margin-left: -1px +} + +.pagination>li:first-child>a, .pagination>li:first-child>span { + margin-left: 0; + border-bottom-left-radius: 0; + border-top-left-radius: 0 +} + +.pagination>li:last-child>a, .pagination>li:last-child>span { + border-bottom-right-radius: 0; + border-top-right-radius: 0 +} + +.pagination>li>a:hover, .pagination>li>span:hover, .pagination>li>a:focus, .pagination>li>span:focus { + color: #00b300; + background-color: #030; + border-color: #555 +} + +.pagination>.active>a, .pagination>.active>span, .pagination>.active>a:hover, .pagination>.active>span:hover, .pagination>.active>a:focus, .pagination>.active>span:focus { + z-index: 2; + color: #222; + background-color: #0f0; + border-color: #0f0; + cursor: default +} + +.pagination>.disabled>span, .pagination>.disabled>span:hover, .pagination>.disabled>span:focus, .pagination>.disabled>a, .pagination>.disabled>a:hover, .pagination>.disabled>a:focus { + color: #3f3; + background-color: #3c3c3c; + border-color: #444; + cursor: not-allowed +} + +.pagination-lg>li>a, .pagination-lg>li>span { + padding: 10px 16px; + font-size: 18px +} + +.pagination-lg>li:first-child>a, .pagination-lg>li:first-child>span { + border-bottom-left-radius: 0; + border-top-left-radius: 0 +} + +.pagination-lg>li:last-child>a, .pagination-lg>li:last-child>span { + border-bottom-right-radius: 0; + border-top-right-radius: 0 +} + +.pagination-sm>li>a, .pagination-sm>li>span { + padding: 5px 10px; + font-size: 12px +} + +.pagination-sm>li:first-child>a, .pagination-sm>li:first-child>span { + border-bottom-left-radius: 0; + border-top-left-radius: 0 +} + +.pagination-sm>li:last-child>a, .pagination-sm>li:last-child>span { + border-bottom-right-radius: 0; + border-top-right-radius: 0 +} + +.pager { + padding-left: 0; + margin: 20px 0; + list-style: none; + text-align: center +} + +.pager li { + display: inline +} + +.pager li>a, .pager li>span { + display: inline-block; + padding: 5px 14px; + background-color: #222; + border: 1px solid #444; + border-radius: 0 +} + +.pager li>a:hover, .pager li>a:focus { + text-decoration: none; + background-color: #030 +} + +.pager .next>a, .pager .next>span { + float: right +} + +.pager .previous>a, .pager .previous>span { + float: left +} + +.pager .disabled>a, .pager .disabled>a:hover, .pager .disabled>a:focus, .pager .disabled>span { + color: #030; + background-color: #222; + cursor: not-allowed +} + +.label { + display: inline; + padding: .2em .6em .3em; + font-size: 75%; + font-weight: bold; + line-height: 1; + color: #222; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: .25em +} + +a.label:hover, a.label:focus { + color: #fff; + text-decoration: none; + cursor: pointer +} + +.label:empty { + display: none +} + +.btn .label { + position: relative; + top: -1px +} + +.label-default { + background-color: #030 +} + +.label-default[href]:hover, .label-default[href]:focus { + background-color: #000 +} + +.label-primary { + background-color: #0f0 +} + +.label-primary[href]:hover, .label-primary[href]:focus { + background-color: #0c0 +} + +.label-success { + background-color: #090 +} + +.label-success[href]:hover, .label-success[href]:focus { + background-color: #060 +} + +.label-info { + background-color: #36c +} + +.label-info[href]:hover, .label-info[href]:focus { + background-color: #2952a3 +} + +.label-warning { + background-color: #f4ff00 +} + +.label-warning[href]:hover, .label-warning[href]:focus { + background-color: #c3cc00 +} + +.label-danger { + background-color: #f00 +} + +.label-danger[href]:hover, .label-danger[href]:focus { + background-color: #c00 +} + +.badge { + display: inline-block; + min-width: 10px; + padding: 3px 7px; + font-size: 12px; + font-weight: bold; + color: #0f0; + line-height: 1; + vertical-align: baseline; + white-space: nowrap; + text-align: center; + background-color: #222; + border-radius: 10px +} + +.badge:empty { + display: none +} + +.btn .badge { + position: relative; + top: -1px +} + +.btn-xs .badge, .btn-group-xs>.btn .badge { + top: 0; + padding: 1px 5px +} + +a.badge:hover, a.badge:focus { + color: #fff; + text-decoration: none; + cursor: pointer +} + +.list-group-item.active>.badge, .nav-pills>.active>a>.badge { + color: #0f0; + background-color: #fff +} + +.list-group-item>.badge { + float: right +} + +.list-group-item>.badge+.badge { + margin-right: 5px +} + +.nav-pills>li>a>.badge { + margin-left: 3px +} + +.jumbotron { + padding: 30px 15px; + margin-bottom: 30px; + color: inherit; + background-color: #080808 +} + +.jumbotron h1, .jumbotron .h1 { + color: inherit +} + +.jumbotron p { + margin-bottom: 15px; + font-size: 21px; + font-weight: 200 +} + +.jumbotron>hr { + border-top-color: #000 +} + +.container .jumbotron, .container-fluid .jumbotron { + border-radius: 0 +} + +.jumbotron .container { + max-width: 100% +} + +@media screen and (min-width:768px) { + .jumbotron { + padding: 48px 0 + } + + .container .jumbotron, .container-fluid .jumbotron { + padding-left: 60px; + padding-right: 60px + } + + .jumbotron h1, .jumbotron .h1 { + font-size: 63px + } +} + +.thumbnail { + display: block; + padding: 4px; + margin-bottom: 20px; + line-height: 1.428571429; + background-color: #222; + border: 1px solid #ddd; + border-radius: 0; + -webkit-transition: border .2s ease-in-out; + -o-transition: border .2s ease-in-out; + transition: border .2s ease-in-out +} + +.thumbnail>img, .thumbnail a>img { + margin-left: auto; + margin-right: auto +} + +a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active { + border-color: #0f0 +} + +.thumbnail .caption { + padding: 9px; + color: #0c0 +} + +.alert { + padding: 15px; + margin-bottom: 20px; + border: 1px solid transparent; + border-radius: 0 +} + +.alert h4 { + margin-top: 0; + color: inherit +} + +.alert .alert-link { + font-weight: bold +} + +.alert>p, .alert>ul { + margin-bottom: 0 +} + +.alert>p+p { + margin-top: 5px +} + +.alert-dismissable, .alert-dismissible { + padding-right: 35px +} + +.alert-dismissable .close, .alert-dismissible .close { + position: relative; + top: -2px; + right: -21px; + color: inherit +} + +.alert-success { + background-color: #3c3c3c; + border-color: #2f2f2f; + color: #0d0 +} + +.alert-success hr { + border-top-color: #222 +} + +.alert-success .alert-link { + color: #0a0 +} + +.alert-info { + background-color: #3c3c3c; + border-color: #2a2a2a; + color: #7d8cff +} + +.alert-info hr { + border-top-color: #1d1d1d +} + +.alert-info .alert-link { + color: #4a5fff +} + +.alert-warning { + background-color: #3c3c3c; + border-color: #343434; + color: #f4ff00 +} + +.alert-warning hr { + border-top-color: #272727 +} + +.alert-warning .alert-link { + color: #c3cc00 +} + +.alert-danger { + background-color: #3c3c3c; + border-color: #343434; + color: #d00 +} + +.alert-danger hr { + border-top-color: #272727 +} + +.alert-danger .alert-link { + color: #a00 +} + +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 40px 0 + } + + to { + background-position: 0 0 + } +} + +@keyframes progress-bar-stripes { + from { + background-position: 40px 0 + } + + to { + background-position: 0 0 + } +} + +.progress { + overflow: hidden; + height: 20px; + margin-bottom: 20px; + background-color: #3c3c3c; + border-radius: 0; + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1) +} + +.progress-bar { + float: left; + width: 0; + height: 100%; + font-size: 12px; + line-height: 20px; + color: #fff; + text-align: center; + background-color: #0f0; + -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + -webkit-transition: width .6s ease; + -o-transition: width .6s ease; + transition: width .6s ease +} + +.progress-striped .progress-bar, .progress-bar-striped { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-size: 40px 40px +} + +.progress.active .progress-bar, .progress-bar.active { + -webkit-animation: progress-bar-stripes 2s linear infinite; + -o-animation: progress-bar-stripes 2s linear infinite; + animation: progress-bar-stripes 2s linear infinite +} + +.progress-bar-success { + background-color: #090 +} + +.progress-striped .progress-bar-success { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent) +} + +.progress-bar-info { + background-color: #36c +} + +.progress-striped .progress-bar-info { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent) +} + +.progress-bar-warning { + background-color: #f4ff00 +} + +.progress-striped .progress-bar-warning { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent) +} + +.progress-bar-danger { + background-color: #f00 +} + +.progress-striped .progress-bar-danger { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent) +} + +.media { + margin-top: 15px +} + +.media:first-child { + margin-top: 0 +} + +.media, .media-body { + zoom: 1; + overflow: hidden +} + +.media-body { + width: 10000px +} + +.media-object { + display: block +} + +.media-right, .media>.pull-right { + padding-left: 10px +} + +.media-left, .media>.pull-left { + padding-right: 10px +} + +.media-left, .media-right, .media-body { + display: table-cell; + vertical-align: top +} + +.media-middle { + vertical-align: middle +} + +.media-bottom { + vertical-align: bottom +} + +.media-heading { + margin-top: 0; + margin-bottom: 5px +} + +.media-list { + padding-left: 0; + list-style: none +} + +.list-group { + margin-bottom: 20px; + padding-left: 0 +} + +.list-group-item { + position: relative; + display: block; + padding: 10px 15px; + margin-bottom: -1px; + background-color: #3c3c3c; + border: 1px solid #222 +} + +.list-group-item:first-child { + border-top-right-radius: 0; + border-top-left-radius: 0 +} + +.list-group-item:last-child { + margin-bottom: 0; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0 +} + +a.list-group-item { + color: #0f0 +} + +a.list-group-item .list-group-item-heading { + color: #0f0 +} + +a.list-group-item:hover, a.list-group-item:focus { + text-decoration: none; + color: #0f0; + background-color: #151515 +} + +.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus { + background-color: #030; + color: #030; + cursor: not-allowed +} + +.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading { + color: inherit +} + +.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text { + color: #030 +} + +.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus { + z-index: 2; + color: #222; + background-color: #0f0; + border-color: #0f0 +} + +.list-group-item.active .list-group-item-heading, .list-group-item.active:hover .list-group-item-heading, .list-group-item.active:focus .list-group-item-heading, .list-group-item.active .list-group-item-heading>small, .list-group-item.active:hover .list-group-item-heading>small, .list-group-item.active:focus .list-group-item-heading>small, .list-group-item.active .list-group-item-heading>.small, .list-group-item.active:hover .list-group-item-heading>.small, .list-group-item.active:focus .list-group-item-heading>.small { + color: inherit +} + +.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text { + color: #222 +} + +.list-group-item-success { + color: #0d0; + background-color: #3c3c3c +} + +a.list-group-item-success { + color: #0d0 +} + +a.list-group-item-success .list-group-item-heading { + color: inherit +} + +a.list-group-item-success:hover, a.list-group-item-success:focus { + color: #0d0; + background-color: #2f2f2f +} + +a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus { + color: #fff; + background-color: #0d0; + border-color: #0d0 +} + +.list-group-item-info { + color: #7d8cff; + background-color: #3c3c3c +} + +a.list-group-item-info { + color: #7d8cff +} + +a.list-group-item-info .list-group-item-heading { + color: inherit +} + +a.list-group-item-info:hover, a.list-group-item-info:focus { + color: #7d8cff; + background-color: #2f2f2f +} + +a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus { + color: #fff; + background-color: #7d8cff; + border-color: #7d8cff +} + +.list-group-item-warning { + color: #f4ff00; + background-color: #3c3c3c +} + +a.list-group-item-warning { + color: #f4ff00 +} + +a.list-group-item-warning .list-group-item-heading { + color: inherit +} + +a.list-group-item-warning:hover, a.list-group-item-warning:focus { + color: #f4ff00; + background-color: #2f2f2f +} + +a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus { + color: #fff; + background-color: #f4ff00; + border-color: #f4ff00 +} + +.list-group-item-danger { + color: #d00; + background-color: #3c3c3c +} + +a.list-group-item-danger { + color: #d00 +} + +a.list-group-item-danger .list-group-item-heading { + color: inherit +} + +a.list-group-item-danger:hover, a.list-group-item-danger:focus { + color: #d00; + background-color: #2f2f2f +} + +a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus { + color: #fff; + background-color: #d00; + border-color: #d00 +} + +.list-group-item-heading { + margin-top: 0; + margin-bottom: 5px +} + +.list-group-item-text { + margin-bottom: 0; + line-height: 1.3 +} + +.panel { + margin-bottom: 20px; + background-color: #222; + border: 1px solid transparent; + border-radius: 0; + -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) +} + +.panel-body { + padding: 15px +} + +.panel-heading { + padding: 10px 15px; + border-bottom: 1px solid transparent; + border-top-right-radius: -1; + border-top-left-radius: -1 +} + +.panel-heading>.dropdown .dropdown-toggle { + color: inherit +} + +.panel-title { + margin-top: 0; + margin-bottom: 0; + font-size: 16px; + color: inherit +} + +.panel-title>a, .panel-title>small, .panel-title>.small, .panel-title>small>a, .panel-title>.small>a { + color: inherit +} + +.panel-footer { + padding: 10px 15px; + background-color: #080808; + border-top: 1px solid #3c3c3c; + border-bottom-right-radius: -1; + border-bottom-left-radius: -1 +} + +.panel>.list-group, .panel>.panel-collapse>.list-group { + margin-bottom: 0 +} + +.panel>.list-group .list-group-item, .panel>.panel-collapse>.list-group .list-group-item { + border-width: 1px 0; + border-radius: 0 +} + +.panel>.list-group:first-child .list-group-item:first-child, .panel>.panel-collapse>.list-group:first-child .list-group-item:first-child { + border-top: 0; + border-top-right-radius: -1; + border-top-left-radius: -1 +} + +.panel>.list-group:last-child .list-group-item:last-child, .panel>.panel-collapse>.list-group:last-child .list-group-item:last-child { + border-bottom: 0; + border-bottom-right-radius: -1; + border-bottom-left-radius: -1 +} + +.panel-heading+.list-group .list-group-item:first-child { + border-top-width: 0 +} + +.list-group+.panel-footer { + border-top-width: 0 +} + +.panel>.table, .panel>.table-responsive>.table, .panel>.panel-collapse>.table { + margin-bottom: 0 +} + +.panel>.table caption, .panel>.table-responsive>.table caption, .panel>.panel-collapse>.table caption { + padding-left: 15px; + padding-right: 15px +} + +.panel>.table:first-child, .panel>.table-responsive:first-child>.table:first-child { + border-top-right-radius: -1; + border-top-left-radius: -1 +} + +.panel>.table:first-child>thead:first-child>tr:first-child, .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child, .panel>.table:first-child>tbody:first-child>tr:first-child, .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child { + border-top-left-radius: -1; + border-top-right-radius: -1 +} + +.panel>.table:first-child>thead:first-child>tr:first-child td:first-child, .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child, .panel>.table:first-child>tbody:first-child>tr:first-child td:first-child, .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child, .panel>.table:first-child>thead:first-child>tr:first-child th:first-child, .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child, .panel>.table:first-child>tbody:first-child>tr:first-child th:first-child, .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child { + border-top-left-radius: -1 +} + +.panel>.table:first-child>thead:first-child>tr:first-child td:last-child, .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child, .panel>.table:first-child>tbody:first-child>tr:first-child td:last-child, .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child, .panel>.table:first-child>thead:first-child>tr:first-child th:last-child, .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child, .panel>.table:first-child>tbody:first-child>tr:first-child th:last-child, .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child { + border-top-right-radius: -1 +} + +.panel>.table:last-child, .panel>.table-responsive:last-child>.table:last-child { + border-bottom-right-radius: -1; + border-bottom-left-radius: -1 +} + +.panel>.table:last-child>tbody:last-child>tr:last-child, .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child, .panel>.table:last-child>tfoot:last-child>tr:last-child, .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child { + border-bottom-left-radius: -1; + border-bottom-right-radius: -1 +} + +.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child, .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child, .panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child, .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child, .panel>.table:last-child>tbody:last-child>tr:last-child th:first-child, .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child, .panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child, .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child { + border-bottom-left-radius: -1 +} + +.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child, .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child, .panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child, .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child, .panel>.table:last-child>tbody:last-child>tr:last-child th:last-child, .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child, .panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child, .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child { + border-bottom-right-radius: -1 +} + +.panel>.panel-body+.table, .panel>.panel-body+.table-responsive, .panel>.table+.panel-body, .panel>.table-responsive+.panel-body { + border-top: 1px solid #444 +} + +.panel>.table>tbody:first-child>tr:first-child th, .panel>.table>tbody:first-child>tr:first-child td { + border-top: 0 +} + +.panel>.table-bordered, .panel>.table-responsive>.table-bordered { + border: 0 +} + +.panel>.table-bordered>thead>tr>th:first-child, .panel>.table-responsive>.table-bordered>thead>tr>th:first-child, .panel>.table-bordered>tbody>tr>th:first-child, .panel>.table-responsive>.table-bordered>tbody>tr>th:first-child, .panel>.table-bordered>tfoot>tr>th:first-child, .panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child, .panel>.table-bordered>thead>tr>td:first-child, .panel>.table-responsive>.table-bordered>thead>tr>td:first-child, .panel>.table-bordered>tbody>tr>td:first-child, .panel>.table-responsive>.table-bordered>tbody>tr>td:first-child, .panel>.table-bordered>tfoot>tr>td:first-child, .panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child { + border-left: 0 +} + +.panel>.table-bordered>thead>tr>th:last-child, .panel>.table-responsive>.table-bordered>thead>tr>th:last-child, .panel>.table-bordered>tbody>tr>th:last-child, .panel>.table-responsive>.table-bordered>tbody>tr>th:last-child, .panel>.table-bordered>tfoot>tr>th:last-child, .panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child, .panel>.table-bordered>thead>tr>td:last-child, .panel>.table-responsive>.table-bordered>thead>tr>td:last-child, .panel>.table-bordered>tbody>tr>td:last-child, .panel>.table-responsive>.table-bordered>tbody>tr>td:last-child, .panel>.table-bordered>tfoot>tr>td:last-child, .panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child { + border-right: 0 +} + +.panel>.table-bordered>thead>tr:first-child>td, .panel>.table-responsive>.table-bordered>thead>tr:first-child>td, .panel>.table-bordered>tbody>tr:first-child>td, .panel>.table-responsive>.table-bordered>tbody>tr:first-child>td, .panel>.table-bordered>thead>tr:first-child>th, .panel>.table-responsive>.table-bordered>thead>tr:first-child>th, .panel>.table-bordered>tbody>tr:first-child>th, .panel>.table-responsive>.table-bordered>tbody>tr:first-child>th { + border-bottom: 0 +} + +.panel>.table-bordered>tbody>tr:last-child>td, .panel>.table-responsive>.table-bordered>tbody>tr:last-child>td, .panel>.table-bordered>tfoot>tr:last-child>td, .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td, .panel>.table-bordered>tbody>tr:last-child>th, .panel>.table-responsive>.table-bordered>tbody>tr:last-child>th, .panel>.table-bordered>tfoot>tr:last-child>th, .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th { + border-bottom: 0 +} + +.panel>.table-responsive { + border: 0; + margin-bottom: 0 +} + +.panel-group { + margin-bottom: 20px +} + +.panel-group .panel { + margin-bottom: 0; + border-radius: 0 +} + +.panel-group .panel+.panel { + margin-top: 5px +} + +.panel-group .panel-heading { + border-bottom: 0 +} + +.panel-group .panel-heading+.panel-collapse>.panel-body, .panel-group .panel-heading+.panel-collapse>.list-group { + border-top: 1px solid #3c3c3c +} + +.panel-group .panel-footer { + border-top: 0 +} + +.panel-group .panel-footer+.panel-collapse .panel-body { + border-bottom: 1px solid #3c3c3c +} + +.panel-default { + border-color: #3c3c3c +} + +.panel-default>.panel-heading { + color: #222; + background-color: #080808; + border-color: #3c3c3c +} + +.panel-default>.panel-heading+.panel-collapse>.panel-body { + border-top-color: #3c3c3c +} + +.panel-default>.panel-heading .badge { + color: #080808; + background-color: #222 +} + +.panel-default>.panel-footer+.panel-collapse>.panel-body { + border-bottom-color: #3c3c3c +} + +.panel-primary { + border-color: #0f0 +} + +.panel-primary>.panel-heading { + color: #222; + background-color: #0f0; + border-color: #0f0 +} + +.panel-primary>.panel-heading+.panel-collapse>.panel-body { + border-top-color: #0f0 +} + +.panel-primary>.panel-heading .badge { + color: #0f0; + background-color: #222 +} + +.panel-primary>.panel-footer+.panel-collapse>.panel-body { + border-bottom-color: #0f0 +} + +.panel-success { + border-color: #2f2f2f +} + +.panel-success>.panel-heading { + color: #0d0; + background-color: #3c3c3c; + border-color: #2f2f2f +} + +.panel-success>.panel-heading+.panel-collapse>.panel-body { + border-top-color: #2f2f2f +} + +.panel-success>.panel-heading .badge { + color: #3c3c3c; + background-color: #0d0 +} + +.panel-success>.panel-footer+.panel-collapse>.panel-body { + border-bottom-color: #2f2f2f +} + +.panel-info { + border-color: #2a2a2a +} + +.panel-info>.panel-heading { + color: #7d8cff; + background-color: #3c3c3c; + border-color: #2a2a2a +} + +.panel-info>.panel-heading+.panel-collapse>.panel-body { + border-top-color: #2a2a2a +} + +.panel-info>.panel-heading .badge { + color: #3c3c3c; + background-color: #7d8cff +} + +.panel-info>.panel-footer+.panel-collapse>.panel-body { + border-bottom-color: #2a2a2a +} + +.panel-warning { + border-color: #343434 +} + +.panel-warning>.panel-heading { + color: #f4ff00; + background-color: #3c3c3c; + border-color: #343434 +} + +.panel-warning>.panel-heading+.panel-collapse>.panel-body { + border-top-color: #343434 +} + +.panel-warning>.panel-heading .badge { + color: #3c3c3c; + background-color: #f4ff00 +} + +.panel-warning>.panel-footer+.panel-collapse>.panel-body { + border-bottom-color: #343434 +} + +.panel-danger { + border-color: #343434 +} + +.panel-danger>.panel-heading { + color: #d00; + background-color: #3c3c3c; + border-color: #343434 +} + +.panel-danger>.panel-heading+.panel-collapse>.panel-body { + border-top-color: #343434 +} + +.panel-danger>.panel-heading .badge { + color: #3c3c3c; + background-color: #d00 +} + +.panel-danger>.panel-footer+.panel-collapse>.panel-body { + border-bottom-color: #343434 +} + +.embed-responsive { + position: relative; + display: block; + height: 0; + padding: 0; + overflow: hidden +} + +.embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object, .embed-responsive video { + position: absolute; + top: 0; + left: 0; + bottom: 0; + height: 100%; + width: 100%; + border: 0 +} + +.embed-responsive-16by9 { + padding-bottom: 56.25% +} + +.embed-responsive-4by3 { + padding-bottom: 75% +} + +.well { + min-height: 20px; + padding: 19px; + margin-bottom: 20px; + background-color: #080808; + border: 1px solid #000; + border-radius: 0; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05) +} + +.well blockquote { + border-color: #ddd; + border-color: rgba(0, 0, 0, 0.15) +} + +.well-lg { + padding: 24px; + border-radius: 0 +} + +.well-sm { + padding: 9px; + border-radius: 0 +} + +.close { + float: right; + font-size: 21px; + font-weight: bold; + line-height: 1; + color: #000; + text-shadow: 0 1px 0 #fff; + opacity: .2; + filter: alpha(opacity=20) +} + +.close:hover, .close:focus { + color: #000; + text-decoration: none; + cursor: pointer; + opacity: .5; + filter: alpha(opacity=50) +} + +button.close { + padding: 0; + cursor: pointer; + background: transparent; + border: 0; + -webkit-appearance: none +} + +.modal-open { + overflow: hidden +} + +.modal { + display: none; + overflow: hidden; + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1050; + -webkit-overflow-scrolling: touch; + outline: 0 +} + +.modal.fade .modal-dialog { + -webkit-transform: translate(0, -25%); + -ms-transform: translate(0, -25%); + -o-transform: translate(0, -25%); + transform: translate(0, -25%); + -webkit-transition: -webkit-transform 0.3s ease-out; + -moz-transition: -moz-transform 0.3s ease-out; + -o-transition: -o-transform 0.3s ease-out; + transition: transform 0.3s ease-out +} + +.modal.in .modal-dialog { + -webkit-transform: translate(0, 0); + -ms-transform: translate(0, 0); + -o-transform: translate(0, 0); + transform: translate(0, 0) +} + +.modal-open .modal { + overflow-x: hidden; + overflow-y: auto +} + +.modal-dialog { + position: relative; + width: auto; + margin: 10px +} + +.modal-content { + position: relative; + background-color: #3c3c3c; + border: 1px solid #999; + border: 1px solid transparent; + border-radius: 0; + -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); + box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); + background-clip: padding-box; + outline: 0 +} + +.modal-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1040; + background-color: #222 +} + +.modal-backdrop.fade { + opacity: 0; + filter: alpha(opacity=0) +} + +.modal-backdrop.in { + opacity: .5; + filter: alpha(opacity=50) +} + +.modal-header { + padding: 15px; + border-bottom: 1px solid #3c3c3c; + min-height: 16.428571429px +} + +.modal-header .close { + margin-top: -2px +} + +.modal-title { + margin: 0; + line-height: 1.428571429 +} + +.modal-body { + position: relative; + padding: 15px +} + +.modal-footer { + padding: 15px; + text-align: right; + border-top: 1px solid #3c3c3c +} + +.modal-footer .btn+.btn { + margin-left: 5px; + margin-bottom: 0 +} + +.modal-footer .btn-group .btn+.btn { + margin-left: -1px +} + +.modal-footer .btn-block+.btn-block { + margin-left: 0 +} + +.modal-scrollbar-measure { + position: absolute; + top: -9999px; + width: 50px; + height: 50px; + overflow: scroll +} + +@media (min-width:768px) { + .modal-dialog { + width: 600px; + margin: 30px auto + } + + .modal-content { + -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); + box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5) + } + + .modal-sm { + width: 300px + } +} + +@media (min-width:992px) { + .modal-lg { + width: 900px + } +} + +.tooltip { + position: absolute; + z-index: 1070; + display: block; + font-family: Monospace; + font-size: 12px; + font-weight: normal; + line-height: 1.4; + opacity: 0; + filter: alpha(opacity=0) +} + +.tooltip.in { + opacity: .9; + filter: alpha(opacity=90) +} + +.tooltip.top { + margin-top: -3px; + padding: 5px 0 +} + +.tooltip.right { + margin-left: 3px; + padding: 0 5px +} + +.tooltip.bottom { + margin-top: 3px; + padding: 5px 0 +} + +.tooltip.left { + margin-left: -3px; + padding: 0 5px +} + +.tooltip-inner { + max-width: 200px; + padding: 3px 8px; + color: #fff; + text-align: center; + text-decoration: none; + background-color: #000; + border-radius: 0 +} + +.tooltip-arrow { + position: absolute; + width: 0; + height: 0; + border-color: transparent; + border-style: solid +} + +.tooltip.top .tooltip-arrow { + bottom: 0; + left: 50%; + margin-left: -5px; + border-width: 5px 5px 0; + border-top-color: #000 +} + +.tooltip.top-left .tooltip-arrow { + bottom: 0; + right: 5px; + margin-bottom: -5px; + border-width: 5px 5px 0; + border-top-color: #000 +} + +.tooltip.top-right .tooltip-arrow { + bottom: 0; + left: 5px; + margin-bottom: -5px; + border-width: 5px 5px 0; + border-top-color: #000 +} + +.tooltip.right .tooltip-arrow { + top: 50%; + left: 0; + margin-top: -5px; + border-width: 5px 5px 5px 0; + border-right-color: #000 +} + +.tooltip.left .tooltip-arrow { + top: 50%; + right: 0; + margin-top: -5px; + border-width: 5px 0 5px 5px; + border-left-color: #000 +} + +.tooltip.bottom .tooltip-arrow { + top: 0; + left: 50%; + margin-left: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000 +} + +.tooltip.bottom-left .tooltip-arrow { + top: 0; + right: 5px; + margin-top: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000 +} + +.tooltip.bottom-right .tooltip-arrow { + top: 0; + left: 5px; + margin-top: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000 +} + +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1060; + display: none; + max-width: 276px; + padding: 1px; + font-family: Monospace; + font-size: 14px; + font-weight: normal; + line-height: 1.428571429; + text-align: left; + background-color: #3c3c3c; + background-clip: padding-box; + border: 1px solid #333; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0; + -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + white-space: normal +} + +.popover.top { + margin-top: -10px +} + +.popover.right { + margin-left: 10px +} + +.popover.bottom { + margin-top: 10px +} + +.popover.left { + margin-left: -10px +} + +.popover-title { + margin: 0; + padding: 8px 14px; + font-size: 14px; + background-color: #343434; + border-bottom: 1px solid #272727; + border-radius: -1 -1 0 0 +} + +.popover-content { + padding: 9px 14px +} + +.popover>.arrow, .popover>.arrow:after { + position: absolute; + display: block; + width: 0; + height: 0; + border-color: transparent; + border-style: solid +} + +.popover>.arrow { + border-width: 11px +} + +.popover>.arrow:after { + border-width: 10px; + content: "" +} + +.popover.top>.arrow { + left: 50%; + margin-left: -11px; + border-bottom-width: 0; + border-top-color: #999; + border-top-color: rgba(0, 0, 0, 0.25); + bottom: -11px +} + +.popover.top>.arrow:after { + content: " "; + bottom: 1px; + margin-left: -10px; + border-bottom-width: 0; + border-top-color: #3c3c3c +} + +.popover.right>.arrow { + top: 50%; + left: -11px; + margin-top: -11px; + border-left-width: 0; + border-right-color: #999; + border-right-color: rgba(0, 0, 0, 0.25) +} + +.popover.right>.arrow:after { + content: " "; + left: 1px; + bottom: -10px; + border-left-width: 0; + border-right-color: #3c3c3c +} + +.popover.bottom>.arrow { + left: 50%; + margin-left: -11px; + border-top-width: 0; + border-bottom-color: #999; + border-bottom-color: rgba(0, 0, 0, 0.25); + top: -11px +} + +.popover.bottom>.arrow:after { + content: " "; + top: 1px; + margin-left: -10px; + border-top-width: 0; + border-bottom-color: #3c3c3c +} + +.popover.left>.arrow { + top: 50%; + right: -11px; + margin-top: -11px; + border-right-width: 0; + border-left-color: #999; + border-left-color: rgba(0, 0, 0, 0.25) +} + +.popover.left>.arrow:after { + content: " "; + right: 1px; + border-right-width: 0; + border-left-color: #3c3c3c; + bottom: -10px +} + +.carousel { + position: relative +} + +.carousel-inner { + position: relative; + overflow: hidden; + width: 100% +} + +.carousel-inner>.item { + display: none; + position: relative; + -webkit-transition: .6s ease-in-out left; + -o-transition: .6s ease-in-out left; + transition: .6s ease-in-out left +} + +.carousel-inner>.item>img, .carousel-inner>.item>a>img { + line-height: 1 +} + +@media all and (transform-3d), (-webkit-transform-3d) { + .carousel-inner>.item { + -webkit-transition: -webkit-transform 0.6s ease-in-out; + -moz-transition: -moz-transform 0.6s ease-in-out; + -o-transition: -o-transform 0.6s ease-in-out; + transition: transform 0.6s ease-in-out; + -webkit-backface-visibility: hidden; + -moz-backface-visibility: hidden; + backface-visibility: hidden; + -webkit-perspective: 1000; + -moz-perspective: 1000; + perspective: 1000 + } + + .carousel-inner>.item.next, .carousel-inner>.item.active.right { + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + left: 0 + } + + .carousel-inner>.item.prev, .carousel-inner>.item.active.left { + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + left: 0 + } + + .carousel-inner>.item.next.left, .carousel-inner>.item.prev.right, .carousel-inner>.item.active { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + left: 0 + } +} + +.carousel-inner>.active, .carousel-inner>.next, .carousel-inner>.prev { + display: block +} + +.carousel-inner>.active { + left: 0 +} + +.carousel-inner>.next, .carousel-inner>.prev { + position: absolute; + top: 0; + width: 100% +} + +.carousel-inner>.next { + left: 100% +} + +.carousel-inner>.prev { + left: -100% +} + +.carousel-inner>.next.left, .carousel-inner>.prev.right { + left: 0 +} + +.carousel-inner>.active.left { + left: -100% +} + +.carousel-inner>.active.right { + left: 100% +} + +.carousel-control { + position: absolute; + top: 0; + left: 0; + bottom: 0; + width: 15%; + opacity: .5; + filter: alpha(opacity=50); + font-size: 20px; + color: #fff; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6) +} + +.carousel-control.left { + background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%); + background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%); + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1) +} + +.carousel-control.right { + left: auto; + right: 0; + background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%); + background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%); + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1) +} + +.carousel-control:hover, .carousel-control:focus { + outline: 0; + color: #fff; + text-decoration: none; + opacity: .9; + filter: alpha(opacity=90) +} + +.carousel-control .icon-prev, .carousel-control .icon-next, .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right { + position: absolute; + top: 50%; + z-index: 5; + display: inline-block +} + +.carousel-control .icon-prev, .carousel-control .glyphicon-chevron-left { + left: 50%; + margin-left: -10px +} + +.carousel-control .icon-next, .carousel-control .glyphicon-chevron-right { + right: 50%; + margin-right: -10px +} + +.carousel-control .icon-prev, .carousel-control .icon-next { + width: 20px; + height: 20px; + margin-top: -10px; + line-height: 1; + font-family: serif +} + +.carousel-control .icon-prev:before { + content: '\2039' +} + +.carousel-control .icon-next:before { + content: '\203a' +} + +.carousel-indicators { + position: absolute; + bottom: 10px; + left: 50%; + z-index: 15; + width: 60%; + margin-left: -30%; + padding-left: 0; + list-style: none; + text-align: center +} + +.carousel-indicators li { + display: inline-block; + width: 10px; + height: 10px; + margin: 1px; + text-indent: -999px; + border: 1px solid #fff; + border-radius: 10px; + cursor: pointer; + background-color: #000 \9; + background-color: rgba(0, 0, 0, 0) +} + +.carousel-indicators .active { + margin: 0; + width: 12px; + height: 12px; + background-color: #fff +} + +.carousel-caption { + position: absolute; + left: 15%; + right: 15%; + bottom: 20px; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #fff; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6) +} + +.carousel-caption .btn { + text-shadow: none +} + +@media screen and (min-width:768px) { + .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next { + width: 30px; + height: 30px; + margin-top: -15px; + font-size: 30px + } + + .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev { + margin-left: -15px + } + + .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next { + margin-right: -15px + } + + .carousel-caption { + left: 20%; + right: 20%; + padding-bottom: 30px + } + + .carousel-indicators { + bottom: 20px + } +} + +.clearfix:before, .clearfix:after, .dl-horizontal dd:before, .dl-horizontal dd:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after, .form-horizontal .form-group:before, .form-horizontal .form-group:after, .btn-toolbar:before, .btn-toolbar:after, .btn-group-vertical>.btn-group:before, .btn-group-vertical>.btn-group:after, .nav:before, .nav:after, .navbar:before, .navbar:after, .navbar-header:before, .navbar-header:after, .navbar-collapse:before, .navbar-collapse:after, .pager:before, .pager:after, .panel-body:before, .panel-body:after, .modal-footer:before, .modal-footer:after { + content: " "; + display: table +} + +.clearfix:after, .dl-horizontal dd:after, .container:after, .container-fluid:after, .row:after, .form-horizontal .form-group:after, .btn-toolbar:after, .btn-group-vertical>.btn-group:after, .nav:after, .navbar:after, .navbar-header:after, .navbar-collapse:after, .pager:after, .panel-body:after, .modal-footer:after { + clear: both +} + +.center-block { + display: block; + margin-left: auto; + margin-right: auto +} + +.pull-right { + float: right !important +} + +.pull-left { + float: left !important +} + +.hide { + display: none !important +} + +.show { + display: block !important +} + +.invisible { + visibility: hidden +} + +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0 +} + +.hidden { + display: none !important +} + +.affix { + position: fixed +} + +@-ms-viewport { + width: device-width +} + +.visible-xs, .visible-sm, .visible-md, .visible-lg { + display: none !important +} + +.visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block { + display: none !important +} + +@media (max-width:767px) { + .visible-xs { + display: block !important + } + + table.visible-xs { + display: table + } + + tr.visible-xs { + display: table-row !important + } + + th.visible-xs, td.visible-xs { + display: table-cell !important + } +} + +@media (max-width:767px) { + .visible-xs-block { + display: block !important + } +} + +@media (max-width:767px) { + .visible-xs-inline { + display: inline !important + } +} + +@media (max-width:767px) { + .visible-xs-inline-block { + display: inline-block !important + } +} + +@media (min-width:768px) and (max-width:991px) { + .visible-sm { + display: block !important + } + + table.visible-sm { + display: table + } + + tr.visible-sm { + display: table-row !important + } + + th.visible-sm, td.visible-sm { + display: table-cell !important + } +} + +@media (min-width:768px) and (max-width:991px) { + .visible-sm-block { + display: block !important + } +} + +@media (min-width:768px) and (max-width:991px) { + .visible-sm-inline { + display: inline !important + } +} + +@media (min-width:768px) and (max-width:991px) { + .visible-sm-inline-block { + display: inline-block !important + } +} + +@media (min-width:992px) and (max-width:1199px) { + .visible-md { + display: block !important + } + + table.visible-md { + display: table + } + + tr.visible-md { + display: table-row !important + } + + th.visible-md, td.visible-md { + display: table-cell !important + } +} + +@media (min-width:992px) and (max-width:1199px) { + .visible-md-block { + display: block !important + } +} + +@media (min-width:992px) and (max-width:1199px) { + .visible-md-inline { + display: inline !important + } +} + +@media (min-width:992px) and (max-width:1199px) { + .visible-md-inline-block { + display: inline-block !important + } +} + +@media (min-width:1200px) { + .visible-lg { + display: block !important + } + + table.visible-lg { + display: table + } + + tr.visible-lg { + display: table-row !important + } + + th.visible-lg, td.visible-lg { + display: table-cell !important + } +} + +@media (min-width:1200px) { + .visible-lg-block { + display: block !important + } +} + +@media (min-width:1200px) { + .visible-lg-inline { + display: inline !important + } +} + +@media (min-width:1200px) { + .visible-lg-inline-block { + display: inline-block !important + } +} + +@media (max-width:767px) { + .hidden-xs { + display: none !important + } +} + +@media (min-width:768px) and (max-width:991px) { + .hidden-sm { + display: none !important + } +} + +@media (min-width:992px) and (max-width:1199px) { + .hidden-md { + display: none !important + } +} + +@media (min-width:1200px) { + .hidden-lg { + display: none !important + } +} + +.visible-print { + display: none !important +} + +@media print { + .visible-print { + display: block !important + } + + table.visible-print { + display: table + } + + tr.visible-print { + display: table-row !important + } + + th.visible-print, td.visible-print { + display: table-cell !important + } +} + +.visible-print-block { + display: none !important +} + +@media print { + .visible-print-block { + display: block !important + } +} + +.visible-print-inline { + display: none !important +} + +@media print { + .visible-print-inline { + display: inline !important + } +} + +.visible-print-inline-block { + display: none !important +} + +@media print { + .visible-print-inline-block { + display: inline-block !important + } +} + +@media print { + .hidden-print { + display: none !important + } +} diff --git a/themes/hipster-gray.css b/themes/hipster-gray.css index e3a32981..e3d14da0 100644 --- a/themes/hipster-gray.css +++ b/themes/hipster-gray.css @@ -1,201 +1,285 @@ @import url(https://fonts.googleapis.com/css?family=Merriweather:400,300); * { - margin: 0; - padding: 0; - -webkit-transition: all 0.2s ease-out; - -moz-transition: all 0.2s ease-out; - -o-transition: all 0.2s ease-out; - -ms-transition: all 0.2s ease-out; - transition: all 0.2s ease-out; + margin: 0; + padding: 0; + -webkit-transition: all 0.2s ease-out; + -moz-transition: all 0.2s ease-out; + -o-transition: all 0.2s ease-out; + -ms-transition: all 0.2s ease-out; + transition: all 0.2s ease-out; } + body { - background: #aaa; - font-family: Merriweather, "Palatino Linotype", Georgia, serif; - font-size: 21pt; - line-height: 170%; - text-rendering: optimizeLegibility; - -webkit-font-smoothing: antialiased; - font-smoothing: antialiased; - overflow-y: auto; - padding: 20pt; + background: #aaa; + font-family: Merriweather, "Palatino Linotype", Georgia, serif; + font-size: 21pt; + line-height: 170%; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + font-smoothing: antialiased; + overflow-y: auto; + padding: 20pt; } + a:link, a:visited { - color: #000; - text-decoration: none; - border-bottom: 1pt solid #aaa; + color: #000; + text-decoration: none; + border-bottom: 1pt solid #aaa; } + a:hover, a:focus, a:active { - background: #aaa; - text-decoration: none; + background: #aaa; + text-decoration: none; } + h1 { - font-size: 64pt; - font-weight: 400; - line-height: 100%; + font-size: 64pt; + font-weight: 400; + line-height: 100%; } + article, footer { - padding: 50pt 50pt 20pt 20%; - background: #ccc; + padding: 50pt 50pt 20pt 20%; + background: #ccc; } -article p { margin-top: 40pt; } + +article p { + margin-top: 40pt; +} + article p:first-of-type { - margin-top: 20pt; - font-size: 14pt; - line-height: 150%; + margin-top: 20pt; + font-size: 14pt; + line-height: 150%; } + article :nth-child(4), article :nth-child(4):before { - font-size: 18pt; - font-weight: 300; -} -article :nth-child(4):before { - content: "*"; - margin-left: -20pt; - float: left; -} -article p:last-child { - border: 20pt solid #c4c4c4; - font-size: 17pt; - line-height: 180%; - margin: 40pt; - color: #888; - padding: 20pt; -} -footer { - padding-top: 0; - font-size: 14pt; - line-height: 100%; - margin-top: -1pt; -} -footer p { - background: url("hipster-gray-octocat.png") 0 0 no-repeat; - margin-left: -20pt; - padding-left: 20pt; -} -footer a:link, footer a:visited { - border-bottom-color: #bbb; - color: #888; -} -footer a:hover, footer a:focus, footer a:active { - color: #000; + font-size: 18pt; + font-weight: 300; } +article :nth-child(4):before { + content: "*"; + margin-left: -20pt; + float: left; +} + +article p:last-child { + border: 20pt solid #c4c4c4; + font-size: 17pt; + line-height: 180%; + margin: 40pt; + color: #888; + padding: 20pt; +} + +footer { + padding-top: 0; + font-size: 14pt; + line-height: 100%; + margin-top: -1pt; +} + +footer p { + background: url("hipster-gray-octocat.png") 0 0 no-repeat; + margin-left: -20pt; + padding-left: 20pt; +} + +footer a:link, footer a:visited { + border-bottom-color: #bbb; + color: #888; +} + +footer a:hover, footer a:focus, footer a:active { + color: #000; +} @media only screen and (max-width: 1360px) { - article, footer { - padding-left: 50pt; - } -} -@media only screen and (max-width: 1140px) { - body { - font-size: 17pt; - padding: 15pt; - } - h1 { font-size: 40pt; } - article, footer { padding: 30pt; } - article p { margin-top: 17pt; } - article p:first-of-type { - font-size: 12pt; - line-height: 120%; - margin-top: 10pt; - } - article :nth-child(4), article :nth-child(4):before { font-size: 15pt; } - article :nth-child(4):before { margin-left: -15pt; } - article p:last-child { - border-width: 15pt; - font-size: 13pt; - margin: 15pt 0 0 0; - padding: 15pt; - } - footer { - padding-top: 0; - font-size: 11pt; - line-height: 120%; - } - footer p { - margin-left: -15pt; - padding-left: 15pt; - } -} -@media only screen and (max-width: 720px) { - body { - font-size: 12pt; - padding: 10pt; - } - h1 { font-size: 24pt; } - article, footer { padding: 20pt; } - article p { margin-top: 15pt; } - article p:first-of-type { - font-size: 9pt; - line-height: 120%; - margin-top: 10pt; - } - article :nth-child(4), article :nth-child(4):before { font-size: 10pt; } - article :nth-child(4):before { margin-left: -10pt; } - article p:last-child { - border-width: 10pt; - font-size: 10pt; - margin: 15pt 0 0 0; - padding: 10pt; - } - footer { - padding-top: 0; - font-size: 9pt; - line-height: 120%; - } - footer p { - background-position: 0 1px; - -webkit-background-size: 9px; - background-size: 11px; - margin-left: -10pt; - padding-left: 10pt; - } + article, footer { + padding-left: 50pt; + } } +@media only screen and (max-width: 1140px) { + body { + font-size: 17pt; + padding: 15pt; + } + + h1 { + font-size: 40pt; + } + + article, footer { + padding: 30pt; + } + + article p { + margin-top: 17pt; + } + + article p:first-of-type { + font-size: 12pt; + line-height: 120%; + margin-top: 10pt; + } + + article :nth-child(4), article :nth-child(4):before { + font-size: 15pt; + } + + article :nth-child(4):before { + margin-left: -15pt; + } + + article p:last-child { + border-width: 15pt; + font-size: 13pt; + margin: 15pt 0 0 0; + padding: 15pt; + } + + footer { + padding-top: 0; + font-size: 11pt; + line-height: 120%; + } + + footer p { + margin-left: -15pt; + padding-left: 15pt; + } +} + +@media only screen and (max-width: 720px) { + body { + font-size: 12pt; + padding: 10pt; + } + + h1 { + font-size: 24pt; + } + + article, footer { + padding: 20pt; + } + + article p { + margin-top: 15pt; + } + + article p:first-of-type { + font-size: 9pt; + line-height: 120%; + margin-top: 10pt; + } + + article :nth-child(4), article :nth-child(4):before { + font-size: 10pt; + } + + article :nth-child(4):before { + margin-left: -10pt; + } + + article p:last-child { + border-width: 10pt; + font-size: 10pt; + margin: 15pt 0 0 0; + padding: 10pt; + } + + footer { + padding-top: 0; + font-size: 9pt; + line-height: 120%; + } + + footer p { + background-position: 0 1px; + -webkit-background-size: 9px; + background-size: 11px; + margin-left: -10pt; + padding-left: 10pt; + } +} @media print { - @page { margin: .5cm; } - * { color: black !important; } - a[href^="http"]:after { content: " [" attr(href) "]" } - a:link, a[href]:after { border: none; } - body { - background: none; - font-size: 12pt; - padding: 0; - } - h1 { font-size: 28pt; } - article, footer { - background: none; - padding: 30pt; - } - article p { margin-top: 16pt; } - article p:first-of-type { - font-size: 10pt; - line-height: 120%; - margin-top: 10pt; - } - article :nth-child(4), article :nth-child(4):before { font-size: 12pt; } - article :nth-child(4):before { margin-left: -12pt; } - article p:last-child { - border-width: 11pt; - font-size: 11pt; - margin: 18pt 0 0 0; - padding: 11pt; - } - footer { - padding-top: 0; - font-size: 10pt; - line-height: 120%; - } - footer p { - background-position: 0 1px; - -webkit-background-size: 11px; - background-size: 11px; - margin-left: -12pt; - padding-left: 12pt; - } + @page { + margin: .5cm; + } + + * { + color: black !important; + } + + a[href^="http"]:after { + content: " ["attr(href) "]" + } + + a:link, a[href]:after { + border: none; + } + + body { + background: none; + font-size: 12pt; + padding: 0; + } + + h1 { + font-size: 28pt; + } + + article, footer { + background: none; + padding: 30pt; + } + + article p { + margin-top: 16pt; + } + + article p:first-of-type { + font-size: 10pt; + line-height: 120%; + margin-top: 10pt; + } + + article :nth-child(4), article :nth-child(4):before { + font-size: 12pt; + } + + article :nth-child(4):before { + margin-left: -12pt; + } + + article p:last-child { + border-width: 11pt; + font-size: 11pt; + margin: 18pt 0 0 0; + padding: 11pt; + } + + footer { + padding-top: 0; + font-size: 10pt; + line-height: 120%; + } + + footer p { + background-position: 0 1px; + -webkit-background-size: 11px; + background-size: 11px; + margin-left: -12pt; + padding-left: 12pt; + } } + #gravatar { position: relative; float: left; diff --git a/themes/hmt-blue.css b/themes/hmt-blue.css index d4bae46f..8b8c185b 100644 --- a/themes/hmt-blue.css +++ b/themes/hmt-blue.css @@ -1,8 +1,244 @@ /* normalize.min.css */ -progress,sub,sup{vertical-align:baseline}button,hr,input{overflow:visible}html{font-family:sans-serif;line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0} figcaption, menu,article,aside,details,figure,footer,header,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block}audio:not([controls]){display:none;height:0} [hidden],template{display:none}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}svg:not(:root){overflow:hidden}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}button,input,optgroup,select,textarea{font:inherit;margin:0}optgroup{font-weight:700}button,input{}button,select{text-transform:none}[type=submit], [type=reset],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-input-placeholder{color:inherit;opacity:.54}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit} +progress, sub, sup { + vertical-align: baseline +} + +button, hr, input { + overflow: visible +} + +html { + font-family: sans-serif; + line-height: 1.15; + -ms-text-size-adjust: 100%; + -webkit-text-size-adjust: 100% +} + +body { + margin: 0 +} + +figcaption, menu, article, aside, details, figure, footer, header, main, nav, section, summary { + display: block +} + +audio, canvas, progress, video { + display: inline-block +} + +audio:not([controls]) { + display: none; + height: 0 +} + +[hidden], template { + display: none +} + +a { + background-color: transparent; + -webkit-text-decoration-skip: objects +} + +a:active, a:hover { + outline-width: 0 +} + +abbr[title] { + border-bottom: none; + text-decoration: underline; + text-decoration: underline dotted +} + +b, strong { + font-weight: bolder +} + +dfn { + font-style: italic +} + +h1 { + font-size: 2em; + margin: .67em 0 +} + +mark { + background-color: #ff0; + color: #000 +} + +small { + font-size: 80% +} + +sub, sup { + font-size: 75%; + line-height: 0; + position: relative +} + +sub { + bottom: -.25em +} + +sup { + top: -.5em +} + +img { + border-style: none +} + +svg:not(:root) { + overflow: hidden +} + +code, kbd, pre, samp { + font-family: monospace, monospace; + font-size: 1em +} + +figure { + margin: 1em 40px +} + +hr { + box-sizing: content-box; + height: 0 +} + +button, input, optgroup, select, textarea { + font: inherit; + margin: 0 +} + +optgroup { + font-weight: 700 +} + +button, input {} + +button, select { + text-transform: none +} + +[type=submit], [type=reset], button, html [type=button] { + -webkit-appearance: button +} + +[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner { + border-style: none; + padding: 0 +} + +[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring { + outline: ButtonText dotted 1px +} + +fieldset { + border: 1px solid silver; + margin: 0 2px; + padding: .35em .625em .75em +} + +legend { + box-sizing: border-box; + color: inherit; + display: table; + max-width: 100%; + padding: 0; + white-space: normal +} + +textarea { + overflow: auto +} + +[type=checkbox], [type=radio] { + box-sizing: border-box; + padding: 0 +} + +[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button { + height: auto +} + +[type=search] { + -webkit-appearance: textfield; + outline-offset: -2px +} + +[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration { + -webkit-appearance: none +} + +::-webkit-input-placeholder { + color: inherit; + opacity: .54 +} + +::-webkit-file-upload-button { + -webkit-appearance: button; + font: inherit +} /* Roboto */ -@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local('Roboto'),local('Roboto-Regular'),url(https://fonts.gstatic.com/s/roboto/v15/ek4gzZ-GeXAPcSbHtCeQI_esZW2xOQ-xsNqO47m55DA.woff2) format('woff2');unicode-range:U+0460-052F,U+20B4,U+2DE0-2DFF,U+A640-A69F}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local('Roboto'),local('Roboto-Regular'),url(https://fonts.gstatic.com/s/roboto/v15/mErvLBYg_cXG3rLvUsKT_fesZW2xOQ-xsNqO47m55DA.woff2) format('woff2');unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local('Roboto'),local('Roboto-Regular'),url(https://fonts.gstatic.com/s/roboto/v15/-2n2p-_Y08sg57CNWQfKNvesZW2xOQ-xsNqO47m55DA.woff2) format('woff2');unicode-range:U+1F00-1FFF}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local('Roboto'),local('Roboto-Regular'),url(https://fonts.gstatic.com/s/roboto/v15/u0TOpm082MNkS5K0Q4rhqvesZW2xOQ-xsNqO47m55DA.woff2) format('woff2');unicode-range:U+0370-03FF}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local('Roboto'),local('Roboto-Regular'),url(https://fonts.gstatic.com/s/roboto/v15/NdF9MtnOpLzo-noMoG0miPesZW2xOQ-xsNqO47m55DA.woff2) format('woff2');unicode-range:U+0102-0103,U+1EA0-1EF9,U+20AB}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local('Roboto'),local('Roboto-Regular'),url(https://fonts.gstatic.com/s/roboto/v15/Fcx7Wwv8OzT71A3E1XOAjvesZW2xOQ-xsNqO47m55DA.woff2) format('woff2');unicode-range:U+0100-024F,U+1E00-1EFF,U+20A0-20AB,U+20AD-20CF,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:local('Roboto'),local('Roboto-Regular'),url(https://fonts.gstatic.com/s/roboto/v15/CWB0XYA8bzo0kSThX0UTuA.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2212,U+2215,U+E0FF,U+EFFD,U+F000} +@font-face { + font-family: Roboto; + font-style: normal; + font-weight: 400; + src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/ek4gzZ-GeXAPcSbHtCeQI_esZW2xOQ-xsNqO47m55DA.woff2) format('woff2'); + unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F +} + +@font-face { + font-family: Roboto; + font-style: normal; + font-weight: 400; + src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/mErvLBYg_cXG3rLvUsKT_fesZW2xOQ-xsNqO47m55DA.woff2) format('woff2'); + unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116 +} + +@font-face { + font-family: Roboto; + font-style: normal; + font-weight: 400; + src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/-2n2p-_Y08sg57CNWQfKNvesZW2xOQ-xsNqO47m55DA.woff2) format('woff2'); + unicode-range: U+1F00-1FFF +} + +@font-face { + font-family: Roboto; + font-style: normal; + font-weight: 400; + src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/u0TOpm082MNkS5K0Q4rhqvesZW2xOQ-xsNqO47m55DA.woff2) format('woff2'); + unicode-range: U+0370-03FF +} + +@font-face { + font-family: Roboto; + font-style: normal; + font-weight: 400; + src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/NdF9MtnOpLzo-noMoG0miPesZW2xOQ-xsNqO47m55DA.woff2) format('woff2'); + unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB +} + +@font-face { + font-family: Roboto; + font-style: normal; + font-weight: 400; + src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/Fcx7Wwv8OzT71A3E1XOAjvesZW2xOQ-xsNqO47m55DA.woff2) format('woff2'); + unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF +} + +@font-face { + font-family: Roboto; + font-style: normal; + font-weight: 400; + src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/CWB0XYA8bzo0kSThX0UTuA.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000 +} body { font-family: -apple-system, BlinkMacSystemFont, "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif; @@ -11,29 +247,36 @@ body { line-height: 1.4; background-color: #e9ebee; } + a:focus, a:hover { color: #23527c; } + a:active, a:hover { outline: 0; } + a { color: #337ab7; text-decoration: none; } + article, footer { width: 800px; margin: 0 auto; } + article p { text-align: justify; } + footer p { text-align: center; } + #gravatar { display: block; float: right; @@ -41,57 +284,56 @@ footer p { border: none; margin-top: 5px; } + article h1 { font-weight: bold; line-height: 1.3; text-shadow: 3px 2px 6px rgba(0, 0, 0, 0.2); } + footer { text-align: center; border-top: 1px solid #ccc; font-style: italic; } + /* Blockquote: https://codepen.io/maxds/pen/DcveB */ -article > p:last-child { +article>p:last-child { display: block; background: #fff; padding: 15px 20px 15px 45px; margin: 0 0 20px; position: relative; /*Font*/ - font-family: Georgia, serif; font-size: 16px; line-height: 1.4; color: #666; text-align: justify; /*Borders - (Optional)*/ - border-left: 15px solid #3392cd; border-right: 2px solid #3392cd; /*Box Shadow - (Optional)*/ - -moz-box-shadow: 2px 2px 15px #ccc; -webkit-box-shadow: 2px 2px 15px #ccc; box-shadow: 2px 2px 15px #ccc; } -article > p:last-child::before { + +article>p:last-child::before { content: "\201C"; /*Unicode for Left Double Quote*/ /*Font*/ - font-family: Georgia, serif; font-size: 60px; font-weight: bold; color: #999; /*Positioning*/ - position: absolute; left: 10px; top: 5px; } -article > p:last-child::after { + +article>p:last-child::after { /*Reset to make sure*/ - content: ""; } diff --git a/themes/magic-mint.css b/themes/magic-mint.css index 50f226da..07523d9b 100644 --- a/themes/magic-mint.css +++ b/themes/magic-mint.css @@ -1,102 +1,105 @@ @import url("https://fonts.googleapis.com/css?family=Lato:400,700,400italic"); -html{ - font-size: 62.5%; +html { + font-size: 62.5%; } + body { - font-family: Lato, Helvetica, sans-serif; - padding: 8px; - line-height: 1.6; - color: #3e3e3e; - background: #c7f1d7; + font-family: Lato, Helvetica, sans-serif; + padding: 8px; + line-height: 1.6; + color: #3e3e3e; + background: #c7f1d7; } article { - max-width: 660px; - margin: 10px auto 0; - text-align: center; - position: relative; + max-width: 660px; + margin: 10px auto 0; + text-align: center; + position: relative; } -#gravatar{ - position: absolute; - left: 0; - top: 22px; - width: 68px; - height: 68px; +#gravatar { + position: absolute; + left: 0; + top: 22px; + width: 68px; + height: 68px; } h1 { - font-weight: 700; - text-align: center; - font-size: 40px; - font-size: 4rem; - text-transform: uppercase; - text-shadow: 0 1px 0 #c7f1d7; - border-bottom: 6px solid #3e3e3e; - padding-bottom: 25px; - line-height: 1.1; - display: inline-block; - margin: 15px auto 5px auto; + font-weight: 700; + text-align: center; + font-size: 40px; + font-size: 4rem; + text-transform: uppercase; + text-shadow: 0 1px 0 #c7f1d7; + border-bottom: 6px solid #3e3e3e; + padding-bottom: 25px; + line-height: 1.1; + display: inline-block; + margin: 15px auto 5px auto; } article p:nth-of-type(1) { - margin: 0; - padding: 21px 0 0; - font-style: italic; - text-align: center; - font-size: 14px; - font-size: 1.4rem; + margin: 0; + padding: 21px 0 0; + font-style: italic; + text-align: center; + font-size: 14px; + font-size: 1.4rem; } article p:last-child { - padding-bottom: 1.3em; - margin-bottom: 0; - font-size: 18px; - font-size: 1.8rem; + padding-bottom: 1.3em; + margin-bottom: 0; + font-size: 18px; + font-size: 1.8rem; } -p{ - text-align: justify; - font-size: 18px; - font-size: 1.8rem; +p { + text-align: justify; + font-size: 18px; + font-size: 1.8rem; } + a { - padding: 0.1em; + padding: 0.1em; } a:link, a:visited { - text-decoration: none; - color: #3e3e3e; - border-bottom: 1px solid; + text-decoration: none; + color: #3e3e3e; + border-bottom: 1px solid; } a:hover { - background: #3e3e3e; - color: white; - border: none; + background: #3e3e3e; + color: white; + border: none; } a:active { - background: #2e2e2e; - position: relative; - top: 1px; + background: #2e2e2e; + position: relative; + top: 1px; } a[href^="mailto"] { - border-bottom: none; + border-bottom: none; } footer { - border-top: 8px solid #3e3e3e; - font-size: 1.8rem; - text-align: center; - max-width: 660px; - margin: 10px auto 0; - padding: 12px 0; - font-style: italic; + border-top: 8px solid #3e3e3e; + font-size: 1.8rem; + text-align: center; + max-width: 660px; + margin: 10px auto 0; + padding: 12px 0; + font-style: italic; } -footer p{ - text-align: center; + +footer p { + text-align: center; } diff --git a/themes/material-amber.css b/themes/material-amber.css index 02a7b06a..7d1cf571 100644 --- a/themes/material-amber.css +++ b/themes/material-amber.css @@ -1 +1,150 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#ffc107;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#fff8e1;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#ffecb3}article h1+p a:hover{color:#ff6f00}article p{padding:0 2em;text-align:justify}article p:last-child{color:#ffa000;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#ff6f00}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #ffc107; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #fff8e1; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #ffecb3 +} + +article h1+p a:hover { + color: #ff6f00 +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #ffa000; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #ff6f00 +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-blue.css b/themes/material-blue.css index 45de0ce5..84e5af23 100644 --- a/themes/material-blue.css +++ b/themes/material-blue.css @@ -1 +1,150 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#2196f3;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#e3f2fd;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#bbdefb}article h1+p a:hover{color:#0d47a1}article p{padding:0 2em;text-align:justify}article p:last-child{color:#1976d2;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#0d47a1}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #2196f3; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #e3f2fd; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #bbdefb +} + +article h1+p a:hover { + color: #0d47a1 +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #1976d2; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #0d47a1 +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-brown.css b/themes/material-brown.css index 42eb904f..0b7f04d1 100644 --- a/themes/material-brown.css +++ b/themes/material-brown.css @@ -1 +1,150 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#795548;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#efebe9;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#d7ccc8}article h1+p a:hover{color:#3e2723}article p{padding:0 2em;text-align:justify}article p:last-child{color:#5d4037;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#3e2723}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #795548; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #efebe9; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #d7ccc8 +} + +article h1+p a:hover { + color: #3e2723 +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #5d4037; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #3e2723 +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-cyan.css b/themes/material-cyan.css index 96ea1ad7..1118138a 100644 --- a/themes/material-cyan.css +++ b/themes/material-cyan.css @@ -1 +1,150 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#00bcd4;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#e0f7fa;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#b2ebf2}article h1+p a:hover{color:#006064}article p{padding:0 2em;text-align:justify}article p:last-child{color:#0097a7;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#006064}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #00bcd4; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #e0f7fa; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #b2ebf2 +} + +article h1+p a:hover { + color: #006064 +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #0097a7; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #006064 +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-deep-orange.css b/themes/material-deep-orange.css index 8f62aa7f..be5d8ab6 100644 --- a/themes/material-deep-orange.css +++ b/themes/material-deep-orange.css @@ -1 +1,150 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#ff5722;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#fbe9e7;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#ffccbc}article h1+p a:hover{color:#bf360c}article p{padding:0 2em;text-align:justify}article p:last-child{color:#e64a19;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#bf360c}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #ff5722; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #fbe9e7; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #ffccbc +} + +article h1+p a:hover { + color: #bf360c +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #e64a19; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #bf360c +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-deep-purple.css b/themes/material-deep-purple.css index 3d365118..ee3d92ba 100644 --- a/themes/material-deep-purple.css +++ b/themes/material-deep-purple.css @@ -1 +1,150 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#673ab7;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#ede7f6;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#d1c4e9}article h1+p a:hover{color:#311b92}article p{padding:0 2em;text-align:justify}article p:last-child{color:#512da8;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#311b92}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #673ab7; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #ede7f6; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #d1c4e9 +} + +article h1+p a:hover { + color: #311b92 +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #512da8; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #311b92 +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-green.css b/themes/material-green.css index 2b1c17bd..9c8f409c 100644 --- a/themes/material-green.css +++ b/themes/material-green.css @@ -1 +1,150 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#4caf50;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#e8f5e9;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#c8e6c9}article h1+p a:hover{color:#1b5e20}article p{padding:0 2em;text-align:justify}article p:last-child{color:#388e3c;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#1b5e20}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #4caf50; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #e8f5e9; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #c8e6c9 +} + +article h1+p a:hover { + color: #1b5e20 +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #388e3c; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #1b5e20 +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-grey.css b/themes/material-grey.css index d8fc722a..133e3d6a 100644 --- a/themes/material-grey.css +++ b/themes/material-grey.css @@ -1 +1,150 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#9e9e9e;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#fafafa;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#f5f5f5}article h1+p a:hover{color:#212121}article p{padding:0 2em;text-align:justify}article p:last-child{color:#616161;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#212121}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #9e9e9e; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #fafafa; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #f5f5f5 +} + +article h1+p a:hover { + color: #212121 +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #616161; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #212121 +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-indigo.css b/themes/material-indigo.css index ace7612d..1003de67 100644 --- a/themes/material-indigo.css +++ b/themes/material-indigo.css @@ -1 +1,150 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#3f51b5;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#e8eaf6;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#c5cae9}article h1+p a:hover{color:#1a237e}article p{padding:0 2em;text-align:justify}article p:last-child{color:#303f9f;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#1a237e}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #3f51b5; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #e8eaf6; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #c5cae9 +} + +article h1+p a:hover { + color: #1a237e +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #303f9f; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #1a237e +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-light-blue.css b/themes/material-light-blue.css index 7ebef4f0..e544e52d 100644 --- a/themes/material-light-blue.css +++ b/themes/material-light-blue.css @@ -1 +1,150 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#03a9f4;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#e1f5fe;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#b3e5fc}article h1+p a:hover{color:#01579b}article p{padding:0 2em;text-align:justify}article p:last-child{color:#0288d1;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#01579b}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #03a9f4; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #e1f5fe; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #b3e5fc +} + +article h1+p a:hover { + color: #01579b +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #0288d1; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #01579b +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-light-green.css b/themes/material-light-green.css index dddd455c..be930247 100644 --- a/themes/material-light-green.css +++ b/themes/material-light-green.css @@ -1 +1,150 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#8bc34a;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#f1f8e9;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#dcedc8}article h1+p a:hover{color:#33691e}article p{padding:0 2em;text-align:justify}article p:last-child{color:#689f38;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#33691e}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #8bc34a; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #f1f8e9; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #dcedc8 +} + +article h1+p a:hover { + color: #33691e +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #689f38; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #33691e +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-lime.css b/themes/material-lime.css index e0febd50..bf9a0f5a 100644 --- a/themes/material-lime.css +++ b/themes/material-lime.css @@ -1 +1,150 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#cddc39;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#f9fbe7;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#f0f4c3}article h1+p a:hover{color:#827717}article p{padding:0 2em;text-align:justify}article p:last-child{color:#afb42b;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#827717}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #cddc39; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #f9fbe7; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #f0f4c3 +} + +article h1+p a:hover { + color: #827717 +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #afb42b; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #827717 +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-orange.css b/themes/material-orange.css index 7eca46ac..dc7cff08 100644 --- a/themes/material-orange.css +++ b/themes/material-orange.css @@ -1 +1,150 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#ff9800;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#fff3e0;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#ffe0b2}article h1+p a:hover{color:#e65100}article p{padding:0 2em;text-align:justify}article p:last-child{color:#f57c00;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#e65100}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #ff9800; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #fff3e0; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #ffe0b2 +} + +article h1+p a:hover { + color: #e65100 +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #f57c00; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #e65100 +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-pink.css b/themes/material-pink.css index 3597ef3c..1040916c 100644 --- a/themes/material-pink.css +++ b/themes/material-pink.css @@ -1 +1,150 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#e91e63;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#fce4ec;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#f8bbd0}article h1+p a:hover{color:#880e4f}article p{padding:0 2em;text-align:justify}article p:last-child{color:#c2185b;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#880e4f}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #e91e63; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #fce4ec; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #f8bbd0 +} + +article h1+p a:hover { + color: #880e4f +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #c2185b; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #880e4f +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-purple.css b/themes/material-purple.css index bfdc7f69..7dd4df53 100644 --- a/themes/material-purple.css +++ b/themes/material-purple.css @@ -1 +1,150 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#9c27b0;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#f3e5f5;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#e1bee7}article h1+p a:hover{color:#4a148c}article p{padding:0 2em;text-align:justify}article p:last-child{color:#7b1fa2;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#4a148c}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #9c27b0; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #f3e5f5; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #e1bee7 +} + +article h1+p a:hover { + color: #4a148c +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #7b1fa2; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #4a148c +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-red.css b/themes/material-red.css index f6fefdd6..9cdd1345 100644 --- a/themes/material-red.css +++ b/themes/material-red.css @@ -1 +1,150 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#f44336;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#ffebee;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#ffcdd2}article h1+p a:hover{color:#b71c1c}article p{padding:0 2em;text-align:justify}article p:last-child{color:#d32f2f;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#b71c1c}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #f44336; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #ffebee; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #ffcdd2 +} + +article h1+p a:hover { + color: #b71c1c +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #d32f2f; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #b71c1c +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-teal.css b/themes/material-teal.css index 6013ddfe..d435f3e5 100644 --- a/themes/material-teal.css +++ b/themes/material-teal.css @@ -1 +1,150 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#009688;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#e0f2f1;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#b2dfdb}article h1+p a:hover{color:#004d40}article p{padding:0 2em;text-align:justify}article p:last-child{color:#00796b;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#004d40}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #009688; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #e0f2f1; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #b2dfdb +} + +article h1+p a:hover { + color: #004d40 +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #00796b; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #004d40 +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material-yellow.css b/themes/material-yellow.css index fd2dc56f..5ac59d8a 100644 --- a/themes/material-yellow.css +++ b/themes/material-yellow.css @@ -1 +1,150 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#ffeb3b;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#fffde7;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#fff9c4}article h1+p a:hover{color:#f57f17}article p{padding:0 2em;text-align:justify}article p:last-child{color:#fbc02d;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#f57f17}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #ffeb3b; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #fffde7; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #fff9c4 +} + +article h1+p a:hover { + color: #f57f17 +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #fbc02d; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #f57f17 +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/material.css b/themes/material.css index 53653c08..74bdabd9 100644 --- a/themes/material.css +++ b/themes/material.css @@ -1 +1,150 @@ -/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400);body{font-family:Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;padding:.4em;font-size:1.1em;background:#eee;color:#5c5c5c}a:link,a:visited{text-decoration:none}article{background:#fff;border-radius:2px;display:block;margin:1em;box-shadow:0 1px 2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out;position:relative;max-width:800px;margin:10px auto 0}article:hover{box-shadow:0 2px 3px rgba(0,0,0,.16),0 2px 3px rgba(0,0,0,.23)}article h1{color:#fff;border-top-left-radius:2px;border-top-right-radius:2px;height:4.5em;width:100%;margin:0 auto;padding-top:3.5em;padding-bottom:.7em;box-sizing:border-box;font-size:2em;font-weight:300}article h1,article h1+p{background:#607d8b;font-family:Roboto Condensed,Helvetica Neue,Helvetica,Arial,sans-serif;padding-left:6%}article h1+p{color:#eceff1;margin:0;text-align:left;box-shadow:0 2px 4px -1px rgba(0,0,0,.2);font-size:1em;padding-top:.6em;min-height:3.6em;font-weight:400;margin-top:0}article h1+p a:link,article h1+p a:visited{color:#cfd8dc}article h1+p a:hover{color:#263238}article p{padding:0 2em;text-align:justify}article p:last-child{color:#455a64;padding-bottom:1.8em;font-size:.9em}footer{margin:0 auto;font-size:.8em;text-align:center}footer a:link,footer a:visited{color:#5c5c5c}footer a:hover{color:#263238}#gravatar{display:block;float:right;border-radius:100%;box-shadow:0 3px 10px rgba(0,0,0,.23),0 3px 10px rgba(0,0,0,.16);-webkit-transition:box-shadow .2s ease-in-out;transition:box-shadow .2s ease-in-out}#gravatar:hover{box-shadow:0 5px 12px rgba(0,0,0,.23),0 5px 12px rgba(0,0,0,.16)}@media (min-width:750px){#gravatar{position:absolute;top:10.8em;right:3em}#gravatar+h1+p+p{padding-top:2em}h1+p{padding-right:6em}h1+p+p{padding-top:.8em}}@media (max-width:750px){#gravatar{position:fixed;bottom:1em;right:1em}article h1+p{font-size:.8em;padding-bottom:1em}article h1+p+p{padding-top:.8em}footer{padding-bottom:4em}} \ No newline at end of file +/*Material theme v1.0.1 by @ahaasler, https://github.com/ahaasler/mit-license-material-theme*/ +@import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); + +body { + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c +} + +a:link, a:visited { + text-decoration: none +} + +article { + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 +} + +article:hover { + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) +} + +article h1 { + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 +} + +article h1, article h1+p { + background: #607d8b; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% +} + +article h1+p { + color: #eceff1; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 +} + +article h1+p a:link, article h1+p a:visited { + color: #cfd8dc +} + +article h1+p a:hover { + color: #263238 +} + +article p { + padding: 0 2em; + text-align: justify +} + +article p:last-child { + color: #455a64; + padding-bottom: 1.8em; + font-size: .9em +} + +footer { + margin: 0 auto; + font-size: .8em; + text-align: center +} + +footer a:link, footer a:visited { + color: #5c5c5c +} + +footer a:hover { + color: #263238 +} + +#gravatar { + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + -webkit-transition: box-shadow .2s ease-in-out; + transition: box-shadow .2s ease-in-out +} + +#gravatar:hover { + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) +} + +@media (min-width:750px) { + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } + + #gravatar+h1+p+p { + padding-top: 2em + } + + h1+p { + padding-right: 6em + } + + h1+p+p { + padding-top: .8em + } +} + +@media (max-width:750px) { + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } + + article h1+p { + font-size: .8em; + padding-bottom: 1em + } + + article h1+p+p { + padding-top: .8em + } + + footer { + padding-bottom: 4em + } +} diff --git a/themes/mitserrat.css b/themes/mitserrat.css index a9cf1ff0..12f5c172 100644 --- a/themes/mitserrat.css +++ b/themes/mitserrat.css @@ -10,13 +10,64 @@ github: https://github.com/WouterJanson description: A simple theme based on the Montserrat font -----------------------------------------------------------------------------*/ - @import url(https://fonts.googleapis.com/css?family=Montserrat:400,700); -html{padding:0;margin:0;} -body{background-color:#F9F9F9;} -h1{color:#B93A32;font-family:Montserrat;font-size:72px;font-weight:600;line-height:72px;letter-spacing:-4px;margin-bottom:48px;text-transform:uppercase;text-align:center;} -p{color:#3E4147;font-family:Montserrat;font-size:22px;font-weight:500;line-height:32px;margin-bottom:48px;margin-left:auto;margin-right:auto;max-width:80%;} -a{color:#3E4147;border-bottom:3px solid #B93A32;font-weight:700;text-decoration:none;} -a:hover{color:#B93A32;} -p:first-of-type,footer{text-align:center;} -#gravatar{display:block;margin-left:auto;margin-right:auto;height:80px;width:80px;margin-top:72px;border-radius:40px;-webkit-border-radius:40px;-moz-border-radius:40px;} + +html { + padding: 0; + margin: 0; +} + +body { + background-color: #F9F9F9; +} + +h1 { + color: #B93A32; + font-family: Montserrat; + font-size: 72px; + font-weight: 600; + line-height: 72px; + letter-spacing: -4px; + margin-bottom: 48px; + text-transform: uppercase; + text-align: center; +} + +p { + color: #3E4147; + font-family: Montserrat; + font-size: 22px; + font-weight: 500; + line-height: 32px; + margin-bottom: 48px; + margin-left: auto; + margin-right: auto; + max-width: 80%; +} + +a { + color: #3E4147; + border-bottom: 3px solid #B93A32; + font-weight: 700; + text-decoration: none; +} + +a:hover { + color: #B93A32; +} + +p:first-of-type, footer { + text-align: center; +} + +#gravatar { + display: block; + margin-left: auto; + margin-right: auto; + height: 80px; + width: 80px; + margin-top: 72px; + border-radius: 40px; + -webkit-border-radius: 40px; + -moz-border-radius: 40px; +} diff --git a/themes/open-sans.css b/themes/open-sans.css index 39e0a816..23109802 100644 --- a/themes/open-sans.css +++ b/themes/open-sans.css @@ -1 +1,74 @@ -@font-face{font-family:'Open Sans Bold';font-style:normal;font-weight:700;src:local('Open Sans Bold'),local('OpenSans-Bold'),url(https://themes.googleusercontent.com/static/fonts/opensans/v6/k3k702ZOKiLJc3WVjuplzKRDOzjiPcYnFooOUGCOsRk.woff) format('woff')}html{background:#f2f2f8}body{margin:0;padding:100px;font-family:'Open Sans',sans-serif;font-size:1.2em;line-height:1.6}::selection{background:#ccc}::-moz-selection{background:#ccc}h1{text-align:center;font:36px 'Open Sans Bold'}p{margin:25px 0 0}p:first-of-type{text-align:center;margin:0 0 50px}a{color:#0a0a0b;text-decoration:none;border-bottom:3px solid rgba(10,10,11,1);-webkit-transition:.15s ease;-moz-transition:.15s ease;-ms-transition:.15s ease;-o-transition:.15s ease;transition:.15s ease}a:focus,a:hover{opacity:.5}article,footer{display:block;margin:0 auto!important;padding:25px;max-width:900px;width:100%}footer{text-align:center;font:75% 'Open Sans Bold'}#gravatar{display:block!important;border-radius:100%;margin:0 auto} +@font-face { + font-family: 'Open Sans Bold'; + font-style: normal; + font-weight: 700; + src: local('Open Sans Bold'), local('OpenSans-Bold'), url(https://themes.googleusercontent.com/static/fonts/opensans/v6/k3k702ZOKiLJc3WVjuplzKRDOzjiPcYnFooOUGCOsRk.woff) format('woff') +} + +html { + background: #f2f2f8 +} + +body { + margin: 0; + padding: 100px; + font-family: 'Open Sans', sans-serif; + font-size: 1.2em; + line-height: 1.6 +} + +::selection { + background: #ccc +} + +::-moz-selection { + background: #ccc +} + +h1 { + text-align: center; + font: 36px 'Open Sans Bold' +} + +p { + margin: 25px 0 0 +} + +p:first-of-type { + text-align: center; + margin: 0 0 50px +} + +a { + color: #0a0a0b; + text-decoration: none; + border-bottom: 3px solid rgba(10, 10, 11, 1); + -webkit-transition: .15s ease; + -moz-transition: .15s ease; + -ms-transition: .15s ease; + -o-transition: .15s ease; + transition: .15s ease +} + +a:focus, a:hover { + opacity: .5 +} + +article, footer { + display: block; + margin: 0 auto !important; + padding: 25px; + max-width: 900px; + width: 100% +} + +footer { + text-align: center; + font: 75% 'Open Sans Bold' +} + +#gravatar { + display: block !important; + border-radius: 100%; + margin: 0 auto +} diff --git a/themes/orange.css b/themes/orange.css index 525eeddd..a72e04fc 100644 --- a/themes/orange.css +++ b/themes/orange.css @@ -1,14 +1,91 @@ @import url(https://fonts.googleapis.com/css?family=PT+Sans|PT+Sans+Caption:700); -html,body{background:#663B14;font:13pt "PT Sans",sans-serif;text-align:center} -a:link,a:visited{color:#234234;text-decoration:none} -a:hover,a:active{color:#432321;text-decoration:underline} -article{background:#CC9900;text-align:left;width:85%;margin:80px auto;border-radius:10px;-moz-border-radius:10px;box-shadow:-1px 1px 20px rgba(30,30,30,0.5),2px 1px 15px rgba(80,80,80,0.4),inset 0 0 10px rgba(50,50,50,0.7);-webkit-box-shadow:-1px 1px 20px rgba(30,30,30,0.5),2px 1px 15px rgba(80,80,80,0.4),inset 0 0 10px rgba(50,50,50,0.7)} -article h1{background:#CC6600;text-align:center;font:bold 35pt "PT Sans Caption","PT Sans",sans-serif;margin:0;padding:19px;border-radius:10px;-moz-border-radius:10px;box-shadow:inset 0 0 10px rgba(70,70,70,0.2),inset 1px 0 10px rgba(50,50,50,0.3),inset -1px 0 10px rgba(50,50,50,0.3);-webkit-box-shadow:inset 0 0 10px rgba(70,70,70,0.2),inset 1px 0 10px rgba(50,50,50,0.3),inset -1px 0 10px rgba(50,50,50,0.3)} -article p{margin:0;padding:10px 15px} -footer{position:fixed;bottom:0;left:0;width:100%;border-top:1px solid #7A7A00;background:#333300;user-select:none;-moz-user-select:none;-webkit-user-select:none} -footer p,footer a{display:block;margin:0;text-shadow:0 0 10px #ccc;font-size:11.5pt} -footer a:link,footer a:visited{color:#aaa} -footer a:hover,footer a:active{color:#eee} -::selection{background:#663300;color:white} -::-moz-selection{background:#663300;color:white} -#gravatar { position: relative; float: right; top: 0.5em; z-index: 1; right: 0.7em; border-radius: 10px; } + +html, body { + background: #663B14; + font: 13pt "PT Sans", sans-serif; + text-align: center +} + +a:link, a:visited { + color: #234234; + text-decoration: none +} + +a:hover, a:active { + color: #432321; + text-decoration: underline +} + +article { + background: #CC9900; + text-align: left; + width: 85%; + margin: 80px auto; + border-radius: 10px; + -moz-border-radius: 10px; + box-shadow: -1px 1px 20px rgba(30, 30, 30, 0.5), 2px 1px 15px rgba(80, 80, 80, 0.4), inset 0 0 10px rgba(50, 50, 50, 0.7); + -webkit-box-shadow: -1px 1px 20px rgba(30, 30, 30, 0.5), 2px 1px 15px rgba(80, 80, 80, 0.4), inset 0 0 10px rgba(50, 50, 50, 0.7) +} + +article h1 { + background: #CC6600; + text-align: center; + font: bold 35pt "PT Sans Caption", "PT Sans", sans-serif; + margin: 0; + padding: 19px; + border-radius: 10px; + -moz-border-radius: 10px; + box-shadow: inset 0 0 10px rgba(70, 70, 70, 0.2), inset 1px 0 10px rgba(50, 50, 50, 0.3), inset -1px 0 10px rgba(50, 50, 50, 0.3); + -webkit-box-shadow: inset 0 0 10px rgba(70, 70, 70, 0.2), inset 1px 0 10px rgba(50, 50, 50, 0.3), inset -1px 0 10px rgba(50, 50, 50, 0.3) +} + +article p { + margin: 0; + padding: 10px 15px +} + +footer { + position: fixed; + bottom: 0; + left: 0; + width: 100%; + border-top: 1px solid #7A7A00; + background: #333300; + user-select: none; + -moz-user-select: none; + -webkit-user-select: none +} + +footer p, footer a { + display: block; + margin: 0; + text-shadow: 0 0 10px #ccc; + font-size: 11.5pt +} + +footer a:link, footer a:visited { + color: #aaa +} + +footer a:hover, footer a:active { + color: #eee +} + +::selection { + background: #663300; + color: white +} + +::-moz-selection { + background: #663300; + color: white +} + +#gravatar { + position: relative; + float: right; + top: 0.5em; + z-index: 1; + right: 0.7em; + border-radius: 10px; +} diff --git a/themes/page_gradient_linear.svg b/themes/page_gradient_linear.svg index 8e84cbf0..f09c4a87 100644 --- a/themes/page_gradient_linear.svg +++ b/themes/page_gradient_linear.svg @@ -1,9 +1,8 @@ - - - - - - + + + + + + diff --git a/themes/page_gradient_radial.svg b/themes/page_gradient_radial.svg index 5a18f6b9..e6c067a4 100644 --- a/themes/page_gradient_radial.svg +++ b/themes/page_gradient_radial.svg @@ -1,9 +1,8 @@ - - - - - - + + + + + + diff --git a/themes/plaintext.css b/themes/plaintext.css index 8d25f115..adef5b43 100644 --- a/themes/plaintext.css +++ b/themes/plaintext.css @@ -1,7 +1,9 @@ @import url(https://fonts.googleapis.com/css?family=Inconsolata); + body { - max-width: 625px; + max-width: 625px; } + body, h1, h2, h3, h4, h5, h6 { - font: normal 15px Inconsolata, Consolas, monospace; + font: normal 15px Inconsolata, Consolas, monospace; } diff --git a/themes/rokkitt.css b/themes/rokkitt.css index f51d5b20..f86def54 100644 --- a/themes/rokkitt.css +++ b/themes/rokkitt.css @@ -1,70 +1,79 @@ @import url(https://fonts.googleapis.com/css?family=Rokkitt:400,700); body { - margin: 0 auto; - font: normal x-large/1.3 Rokkitt, Helvetica, Arial; - line-height: 1.2em; - color: #666; - text-align: justify; + margin: 0 auto; + font: normal x-large/1.3 Rokkitt, Helvetica, Arial; + line-height: 1.2em; + color: #666; + text-align: justify; } article, footer { - display: block; - min-width: 360px; - max-width: 900px; - width: 80%; + display: block; + min-width: 360px; + max-width: 900px; + width: 80%; } article { - margin: 0 auto 0 auto; - border: 1px solid ; - border-color: #fff #fff #fff #fff; - padding: 2em; background: #fff; + margin: 0 auto 0 auto; + border: 1px solid; + border-color: #fff #fff #fff #fff; + padding: 2em; + background: #fff; } h1 { - margin: 0; + margin: 0; } article p:first-of-type { - margin-top: 1.6em; + margin-top: 1.6em; } article p:last-child { - margin-bottom: 0; + margin-bottom: 0; } footer { - margin: 0em auto 2em auto; - text-align: center; + margin: 0em auto 2em auto; + text-align: center; } footer a { - color: #abc8e2; - text-shadow: 0 1px 1px #fff; - text-decoration:none; - font-size:.8em; - padding: 1em; + color: #abc8e2; + text-shadow: 0 1px 1px #fff; + text-decoration: none; + font-size: .8em; + padding: 1em; } h1 { - font-weight:normal; - line-height: 36px; - font-size: 2em; - text-align: center + font-weight: normal; + line-height: 36px; + font-size: 2em; + text-align: center } a { - color: #abc8e2; - text-decoration:none; + color: #abc8e2; + text-decoration: none; } #gravatar { - position: relative; - float: right; - margin-bottom: 1em; - margin-left: 1em; - border: 1px solid #ddd; + position: relative; + float: right; + margin-bottom: 1em; + margin-left: 1em; + border: 1px solid #ddd; } -@media all and ( max-width: 500px) { article {padding:1em;} body {font-size:1em;} } +@media all and (max-width: 500px) { + article { + padding: 1em; + } + + body { + font-size: 1em; + } +} diff --git a/themes/silver-style.css b/themes/silver-style.css index dec1f123..bade0f5a 100644 --- a/themes/silver-style.css +++ b/themes/silver-style.css @@ -6,32 +6,81 @@ **https://in.linkedin.com/in/devdipesh/ */ body { - margin:0; padding: 50px; - font: normal 14px/20px "DroidSansRegular",Arial,Helvetica,sans-serif; - color: #444; - background: #FAFAFA; - background: url(/themes/page_gradient_radial.svg) 50% -300px no-repeat, url(/themes/page_gradient_linear.svg) 50% 0 repeat-x, #FAFAFA; - background-size: 1600px 600px, 100% 500px,auto; + margin: 0; + padding: 50px; + font: normal 14px/20px "DroidSansRegular", Arial, Helvetica, sans-serif; + color: #444; + background: #FAFAFA; + background: url(/themes/page_gradient_radial.svg) 50% -300px no-repeat, url(/themes/page_gradient_linear.svg) 50% 0 repeat-x, #FAFAFA; + background-size: 1600px 600px, 100% 500px, auto; } article { - border-right: 1.5px solid #9ab8ed; padding: 17px; - border-radius: 1%; - -webkit-box-shadow: 3px 0px 20px -2px #7ba5e4; - -moz-box-shadow: 3px 0px 20px -2px #7ba5e4; - box-shadow: 3px 0px 20px -2px #7ba5e4; - -background: -webkit-radial-gradient(50% 0%, 50% 15px, #EB8CF2 0%, white 100%); + border-right: 1.5px solid #9ab8ed; + padding: 17px; + border-radius: 1%; + -webkit-box-shadow: 3px 0px 20px -2px #7ba5e4; + -moz-box-shadow: 3px 0px 20px -2px #7ba5e4; + box-shadow: 3px 0px 20px -2px #7ba5e4; + background: -webkit-radial-gradient(50% 0%, 50% 15px, #EB8CF2 0%, white 100%); } -article, footer { display:block; max-width:720px; margin:0 auto; } - article { padding:28px;} -footer { padding:0 28px; text-align:center; } - h1 { margin:0; font-size: 24px; line-height: 32px;color:#008CCC; text-transform: uppercase;} -a, a:visited { color:#577446; padding:4px; text-decoration:none; } -a:active, a:hover { color:#5dd912; } -a img { position: absolute; top: 0; right: 0; border: 0; } -:-moz-any-link:focus {background:#bc4a46;} -::selection {background:#bc4a46;} -::-moz-selection {background:#bc4a46;} -#gravatar { position: relative; float: right; margin-bottom: 1em; margin-left: 1em; border: 1px solid #ddd; } \ No newline at end of file +article, footer { + display: block; + max-width: 720px; + margin: 0 auto; +} + +article { + padding: 28px; +} + +footer { + padding: 0 28px; + text-align: center; +} + +h1 { + margin: 0; + font-size: 24px; + line-height: 32px; + color: #008CCC; + text-transform: uppercase; +} + +a, a:visited { + color: #577446; + padding: 4px; + text-decoration: none; +} + +a:active, a:hover { + color: #5dd912; +} + +a img { + position: absolute; + top: 0; + right: 0; + border: 0; +} + +:-moz-any-link:focus { + background: #bc4a46; +} + +::selection { + background: #bc4a46; +} + +::-moz-selection { + background: #bc4a46; +} + +#gravatar { + position: relative; + float: right; + margin-bottom: 1em; + margin-left: 1em; + border: 1px solid #ddd; +} diff --git a/themes/solarized.css b/themes/solarized.css index 8990fb35..95208f5b 100644 --- a/themes/solarized.css +++ b/themes/solarized.css @@ -1,3 +1,93 @@ /*Solarized theme by Ethan Schoonover*/ /*Part of source code reused from the Open Sans Theme */ -@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:300|Source+Code+Pro:700);html{padding:0;font-size:1em;background-color:#eee8d5}body{font-family:'Source Sans Pro',sans-serif;font-size:1.5em;font-weight:300;text-align:center;margin:0;background:none repeat scroll 0 0 #eee8d5}article,footer{text-align:center;margin:auto;max-width:100%}article{margin-top:0;padding:1.75em;color:#dc322f;text-align:center;position:relative;background:none repeat scroll 0 0 #002b36}article p{text-align:left;color:#93a1a1}article p:first-of-type{text-align:center;color:#b58900}article p:last-of-type{color:#268bd2}#gravatar{width:50px;border:5px solid #FFF;border-radius:15px;display:block;margin:0 auto}h1{font-size:2em;font-weight:700;text-transform:uppercase;display:inline-block;padding-bottom:12px;border-bottom:2px dashed #dc322f;margin:0}a{font-family:'Source Sans Pro',sans-serif;font-size:1em;font-weight:700;color:#859900;text-decoration:none;word-wrap:break-word}a:active,a:focus,a:hover{color:#d33682}@media screen and (min-width:960px){#gravatar{display: none;position:absolute;top:2em;left:2em}h1{font-size:2.5em}}sour +@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:300|Source+Code+Pro:700); + +html { + padding: 0; + font-size: 1em; + background-color: #eee8d5 +} + +body { + font-family: 'Source Sans Pro', sans-serif; + font-size: 1.5em; + font-weight: 300; + text-align: center; + margin: 0; + background: none repeat scroll 0 0 #eee8d5 +} + +article, footer { + text-align: center; + margin: auto; + max-width: 100% +} + +article { + margin-top: 0; + padding: 1.75em; + color: #dc322f; + text-align: center; + position: relative; + background: none repeat scroll 0 0 #002b36 +} + +article p { + text-align: left; + color: #93a1a1 +} + +article p:first-of-type { + text-align: center; + color: #b58900 +} + +article p:last-of-type { + color: #268bd2 +} + +#gravatar { + width: 50px; + border: 5px solid #FFF; + border-radius: 15px; + display: block; + margin: 0 auto +} + +h1 { + font-size: 2em; + font-weight: 700; + text-transform: uppercase; + display: inline-block; + padding-bottom: 12px; + border-bottom: 2px dashed #dc322f; + margin: 0 +} + +a { + font-family: 'Source Sans Pro', sans-serif; + font-size: 1em; + font-weight: 700; + color: #859900; + text-decoration: none; + word-wrap: break-word +} + +a:active, a:focus, a:hover { + color: #d33682 +} + +@media screen and (min-width:960px) { + #gravatar { + display: none; + position: absolute; + top: 2em; + left: 2em + } + + h1 { + font-size: 2.5em + } +} + +sour diff --git a/themes/willpower.css b/themes/willpower.css index 04cebcc5..225a622f 100644 --- a/themes/willpower.css +++ b/themes/willpower.css @@ -1,14 +1,72 @@ @import url(https://fonts.googleapis.com/css?family=Roboto:400,700); -* { margin: 0; padding: 0; box-sizing: boder-box; } -img { border: 0; } -body { background: #fff; font: 16px/28px "Roboto", sans-serif; color: #888; } -article, footer { display: block; max-width: 720px; margin: 0 auto; } -article { padding: 20px; } -footer { padding: 0 20px; text-align: center; font-size: 12px; } -h1 { font-size: 24px; line-height: 32px; color: #399; } -a, a:visited { color: #369; padding:4px; text-decoration:none; } -a:active, a:hover { text-decoration: underline;} -a img { position: absolute; top: 0; right: 0; } -article p { margin: 10px 0; } -article p:last-child {border-left: 2px solid #399; padding-left: 10px; } -#gravatar { float:right; margin:1em; width:80px; height:80px; border-radius:40px; } \ No newline at end of file + +* { + margin: 0; + padding: 0; + box-sizing: boder-box; +} + +img { + border: 0; +} + +body { + background: #fff; + font: 16px/28px "Roboto", sans-serif; + color: #888; +} + +article, footer { + display: block; + max-width: 720px; + margin: 0 auto; +} + +article { + padding: 20px; +} + +footer { + padding: 0 20px; + text-align: center; + font-size: 12px; +} + +h1 { + font-size: 24px; + line-height: 32px; + color: #399; +} + +a, a:visited { + color: #369; + padding: 4px; + text-decoration: none; +} + +a:active, a:hover { + text-decoration: underline; +} + +a img { + position: absolute; + top: 0; + right: 0; +} + +article p { + margin: 10px 0; +} + +article p:last-child { + border-left: 2px solid #399; + padding-left: 10px; +} + +#gravatar { + float: right; + margin: 1em; + width: 80px; + height: 80px; + border-radius: 40px; +} diff --git a/themes/xtansia.css b/themes/xtansia.css index 8790fe1f..bd676fb0 100644 --- a/themes/xtansia.css +++ b/themes/xtansia.css @@ -1,69 +1,69 @@ @import url(https://fonts.googleapis.com/css?family=Rambla:400,400italic); body { - font-family: Rambla, serif; - padding: 32px; - font-size: 1.1em; - background: white; - color: gray; + font-family: Rambla, serif; + padding: 32px; + font-size: 1.1em; + background: white; + color: gray; } article { - max-width: 800px; - text-align: justify; - margin: 10px auto 0; + max-width: 800px; + text-align: justify; + margin: 10px auto 0; } article p:nth-of-type(1) { - text-align: center; - font-style: italic; - font-size: 1.15em; - border-top: 2px dashed DeepSkyBlue; - padding-top: 1.0em; + text-align: center; + font-style: italic; + font-size: 1.15em; + border-top: 2px dashed DeepSkyBlue; + padding-top: 1.0em; } article p:last-child { - border-bottom: 2px dashed DeepSkyBlue; - padding: 0.0em 2.0em 1.0em 2.0em; - font-size: 0.9em; - font-style: italic; + border-bottom: 2px dashed DeepSkyBlue; + padding: 0.0em 2.0em 1.0em 2.0em; + font-size: 0.9em; + font-style: italic; } article h1 { - max-width: 550px; - margin: 0 auto; - border-bottom: groove LightGray; - padding-top: 0.5em; - padding-bottom: 0.5em; - text-align: center; - font-variant: small-caps; - font-size: 1.6em; - font-weight: 450; - letter-spacing: 0.25em; + max-width: 550px; + margin: 0 auto; + border-bottom: groove LightGray; + padding-top: 0.5em; + padding-bottom: 0.5em; + text-align: center; + font-variant: small-caps; + font-size: 1.6em; + font-weight: 450; + letter-spacing: 0.25em; } footer { - max-width: 550px; - border-top: groove LightGray; - margin: 0 auto; - font-size: 0.8em; - font-style: italic; - text-align: center; + max-width: 550px; + border-top: groove LightGray; + margin: 0 auto; + font-size: 0.8em; + font-style: italic; + text-align: center; } a:link, a:visited { - text-decoration: none; - color: SlateGray; - border-bottom: 1px solid; + text-decoration: none; + color: SlateGray; + border-bottom: 1px solid; } a:hover { - color: DeepSkyBlue; - border: none; + color: DeepSkyBlue; + border: none; } a:active { - color: #007399; + color: #007399; } #gravatar { @@ -71,4 +71,4 @@ a:active { float: right; border: 2px solid gray; top: -1em; -} \ No newline at end of file +} diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 00000000..6e31d07d --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,12 @@ +{ + "compilerOptions": { + "target": "es5", + "lib": ["es2017"], + "moduleResolution": "node", + "esModuleInterop": true, + "declaration": true, + "outDir": "./dist", + "strict": true, + "sourceMap": true + } +} diff --git a/yarn.lock b/yarn.lock index 40b83784ce89f0f6b5db431f56726484e97d15e5..1b1df7fd4215ee1d9ee3740a7980a6bde246f08c 100644 GIT binary patch delta 32130 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 Ub#54~WY49ZzmVjDLNX!$10D!Y+yDRo literal 86267 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

6!H94`NP)45NEQn9bzrVT0vTj$ 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 Date: Wed, 29 May 2019 20:08:19 +1200 Subject: [PATCH 05/53] Allow Raw text as well as HTML and add other licenses --- .eslintrc.json | 3 +- .gitignore | 2 + licenses/0BSD.ejs | 26 ++++++ licenses/AFL-3-0.ejs | 184 +++++++++++++++++++++++++++++++++++++++++++ licenses/NCSA.ejs | 42 ++++++++++ licenses/OFL.ejs | 106 +++++++++++++++++++++++++ licenses/UPL.ejs | 47 +++++++++++ package.json | 7 +- server.js | 82 ++++++++++++++----- server.ts | 66 ++++++++++------ tsconfig.json | 1 - util.ts | 20 +++++ yarn.lock | Bin 74408 -> 74363 bytes 13 files changed, 536 insertions(+), 50 deletions(-) create mode 100644 licenses/0BSD.ejs create mode 100644 licenses/AFL-3-0.ejs create mode 100644 licenses/NCSA.ejs create mode 100644 licenses/OFL.ejs create mode 100644 licenses/UPL.ejs create mode 100644 util.ts diff --git a/.eslintrc.json b/.eslintrc.json index c300aaca..e034281e 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -19,6 +19,7 @@ "indent": ["error", 4], "semi": ["error", "never"], "brace-style": 0, - "max-len": 0 + "max-len": 0, + "require-jsdoc": "off" } } diff --git a/.gitignore b/.gitignore index 262e3b65..766b722f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ +server.js +util.js ./config.json # Created by https://www.gitignore.io/api/node,linux,macos,windows,intellij diff --git a/licenses/0BSD.ejs b/licenses/0BSD.ejs new file mode 100644 index 00000000..290691ac --- /dev/null +++ b/licenses/0BSD.ejs @@ -0,0 +1,26 @@ + + + +<% include components/header %> + + +

+ <%- gravatar %> +

BSD Zero Clause License (0BSD)

+

Copyright © <%= info %>

+ +

Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted.

+ +

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH + REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, + INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR + OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + PERFORMANCE OF THIS SOFTWARE.

+
+ <% include components/footer %> + + + diff --git a/licenses/AFL-3-0.ejs b/licenses/AFL-3-0.ejs new file mode 100644 index 00000000..d45d9b93 --- /dev/null +++ b/licenses/AFL-3-0.ejs @@ -0,0 +1,184 @@ + + + +<% include components/header %> + + +
+ <%- gravatar %> +

Academic Free License v3.0 (AFL-3.0)

+

Copyright © <%= info %>

+ +

This Academic Free License (the "License") applies to any original work of + authorship (the "Original Work") whose owner (the "Licensor") has placed the + following licensing notice adjacent to the copyright notice for the Original + Work:

+ +

Licensed under the Academic Free License version 3.0

+ +

1) Grant of Copyright License. Licensor grants You a worldwide, royalty-free, + non-exclusive, sublicensable license, for the duration of the copyright, to do + the following:

+ +

a) to reproduce the Original Work in copies, either alone or as part of a + collective work;

+ +

b) to translate, adapt, alter, transform, modify, or arrange the Original + Work, thereby creating derivative works ("Derivative Works") based upon + the Original Work;

+ +

c) to distribute or communicate copies of the Original Work and + Derivative Works to the public, under any license of your choice that + does not contradict the terms and conditions, including Licensor’s + reserved rights and remedies, in this Academic Free License; + d) to perform the Original Work publicly; and + e) to display the Original Work publicly.

+ +

2) Grant of Patent License. Licensor grants You a worldwide, royalty-free, + non-exclusive, sublicensable license, under patent claims owned or controlled + by the Licensor that are embodied in the Original Work as furnished by the + Licensor, for the duration of the patents, to make, use, sell, offer for sale, + have made, and import the Original Work and Derivative Works.

+ +

3) Grant of Source Code License. The term "Source Code" means the preferred + form of the Original Work for making modifications to it and all available + documentation describing how to modify the Original Work. Licensor agrees to + provide a machine-readable copy of the Source Code of the Original Work along + with each copy of the Original Work that Licensor distributes. Licensor + reserves the right to satisfy this obligation by placing a machine-readable + copy of the Source Code in an information repository reasonably calculated to + permit inexpensive and convenient access by You for as long as Licensor + continues to distribute the Original Work.

+ +

4) Exclusions From License Grant. Neither the names of Licensor, nor the names + of any contributors to the Original Work, nor any of their trademarks or + service marks, may be used to endorse or promote products derived from this + Original Work without express prior permission of the Licensor. Except as + expressly stated herein, nothing in this License grants any license to + Licensor’s trademarks, copyrights, patents, trade secrets or any other + intellectual property. No patent license is granted to make, use, sell, offer + for sale, have made, or import embodiments of any patent claims other than the + licensed claims defined in Section 2. No license is granted to the trademarks + of Licensor even if such marks are included in the Original Work. Nothing in + this License shall be interpreted to prohibit Licensor from licensing under + terms different from this License any Original Work that Licensor otherwise + would have a right to license.

+ +

5) External Deployment. The term "External Deployment" means the use, + distribution, or communication of the Original Work or Derivative Works in any + way such that the Original Work or Derivative Works may be used by anyone + other than You, whether those works are distributed or communicated to those + persons or made available as an application intended for use over a network. + As an express condition for the grants of license hereunder, You must treat + any External Deployment by You of the Original Work or a Derivative Work as a + distribution under section 1(c).

+ +

6) Attribution Rights. You must retain, in the Source Code of any Derivative + Works that You create, all copyright, patent, or trademark notices from the + Source Code of the Original Work, as well as any notices of licensing and any + descriptive text identified therein as an "Attribution Notice." You must cause + the Source Code for any Derivative Works that You create to carry a prominent + Attribution Notice reasonably calculated to inform recipients that You have + modified the Original Work.

+ +

7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that + the copyright in and to the Original Work and the patent rights granted herein + by Licensor are owned by the Licensor or are sublicensed to You under the + terms of this License with the permission of the contributor(s) of those + copyrights and patent rights. Except as expressly stated in the immediately + preceding sentence, the Original Work is provided under this License on an "AS + IS" BASIS and WITHOUT WARRANTY, either express or implied, including, without + limitation, the warranties of non-infringement, merchantability or fitness for + a particular purpose. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK + IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this + License. No license to the Original Work is granted by this License except + under this disclaimer.

+ +

8) Limitation of Liability. Under no circumstances and under no legal theory, + whether in tort (including negligence), contract, or otherwise, shall the + Licensor be liable to anyone for any indirect, special, incidental, or + consequential damages of any character arising as a result of this License or + the use of the Original Work including, without limitation, damages for loss + of goodwill, work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses. This limitation of liability shall not + apply to the extent applicable law prohibits such limitation.

+ +

9) Acceptance and Termination. If, at any time, You expressly assented to this + License, that assent indicates your clear and irrevocable acceptance of this + License and all of its terms and conditions. If You distribute or communicate + copies of the Original Work or a Derivative Work, You must make a reasonable + effort under the circumstances to obtain the express assent of recipients to + the terms of this License. This License conditions your rights to undertake + the activities listed in Section 1, including your right to create Derivative + Works based upon the Original Work, and doing so without honoring these terms + and conditions is prohibited by copyright law and international treaty. + Nothing in this License is intended to affect copyright exceptions and + limitations (including “fair use” or “fair dealing”). This License shall + terminate immediately and You may no longer exercise any of the rights granted + to You by this License upon your failure to honor the conditions in Section + 1(c).

+ +

10) Termination for Patent Action. This License shall terminate automatically + and You may no longer exercise any of the rights granted to You by this + License as of the date You commence an action, including a cross-claim or + counterclaim, against Licensor or any licensee alleging that the Original Work + infringes a patent. This termination provision shall not apply for an action + alleging patent infringement by combinations of the Original Work with other + software or hardware.

+ +

11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this + License may be brought only in the courts of a jurisdiction wherein the + Licensor resides or in which Licensor conducts its primary business, and under + the laws of that jurisdiction excluding its conflict-of-law provisions. The + application of the United Nations Convention on Contracts for the + International Sale of Goods is expressly excluded. Any use of the Original + Work outside the scope of this License or after its termination shall be + subject to the requirements and penalties of copyright or patent law in the + appropriate jurisdiction. This section shall survive the termination of this + License.

+ +

12) Attorneys’ Fees. In any action to enforce the terms of this License or + seeking damages relating thereto, the prevailing party shall be entitled to + recover its costs and expenses, including, without limitation, reasonable + attorneys' fees and costs incurred in connection with such action, including + any appeal of such action. This section shall survive the termination of this + License.

+ +

13) Miscellaneous. If any provision of this License is held to be + unenforceable, such provision shall be reformed only to the extent necessary + to make it enforceable.

+ +

14) Definition of "You" in This License. "You" throughout this License, + whether in upper or lower case, means an individual or a legal entity + exercising rights under, and complying with all of the terms of, this License. + For legal entities, "You" includes any entity that controls, is controlled by, + or is under common control with you. For purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the direction or + management of such entity, whether by contract or otherwise, or (ii) ownership + of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial + ownership of such entity.

+ +

15) Right to Use. You may use the Original Work in all ways not otherwise + restricted or conditioned by this License or by law, and Licensor promises not + to interfere with or be responsible for such uses by You.

+ +

16) Modification of This License. This License is Copyright © 2005 Lawrence + Rosen. Permission is granted to copy, distribute, or communicate this License + without modification. Nothing in this License permits You to modify this + License as applied to the Original Work or to Derivative Works. However, You + may modify the text of this License and copy, distribute or communicate your + modified version (the "Modified License") and apply it to other original works + of authorship subject to the following conditions: (i) You may not indicate in + any way that your Modified License is the "Academic Free License" or "AFL" and + you may not use those names in the name of your Modified License; (ii) You + must replace the notice specified in the first paragraph above with the notice + "Licensed under <insert your license name here>" or with a notice of your own + that is not confusingly similar to the notice in this License; and (iii) You + may not claim that your original works are open source software unless your + Modified License has been approved by Open Source Initiative (OSI) and You + comply with its license review and certification process.

+
+ <% include components/footer %> + + + diff --git a/licenses/NCSA.ejs b/licenses/NCSA.ejs new file mode 100644 index 00000000..76d97885 --- /dev/null +++ b/licenses/NCSA.ejs @@ -0,0 +1,42 @@ + + + +<% include components/header %> + + +
+ <%- gravatar %> +

NCSA Open Source License (NCSA)

+

Copyright © <%= info %>

+ +

Permission is hereby granted, free of charge, to any person + obtaining a copy of this software and associated documentation files + (the "Software"), to deal with the Software without restriction, + including without limitation the rights to use, copy, modify, merge, + publish, distribute, sublicense, and/or sell copies of the Software, + and to permit persons to whom the Software is furnished to do so, + subject to the following conditions:

+ +

* Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers.

+ +

* Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution.

+ +

* Neither the names of [fullname], [project] nor the names of its + contributors may be used to endorse or promote products derived from + this Software without specific prior written permission.

+ +

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH + THE SOFTWARE.

+
+ <% include components/footer %> + + + diff --git a/licenses/OFL.ejs b/licenses/OFL.ejs new file mode 100644 index 00000000..e355c318 --- /dev/null +++ b/licenses/OFL.ejs @@ -0,0 +1,106 @@ + + + +<% include components/header %> + + +
+ <%- gravatar %> +

The SIL Open Font License (OFL)

+

Copyright © <%= info %>

+ +

This Font Software is licensed under the SIL Open Font License, Version 1.1. + This license is copied below, and is also available with a FAQ at: + http://scripts.sil.org/OFL

+ +

-----------------------------------------------------------
+ SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
+ -----------------------------------------------------------

+ +

PREAMBLE + The goals of the Open Font License (OFL) are to stimulate worldwide + development of collaborative font projects, to support the font creation + efforts of academic and linguistic communities, and to provide a free and + open framework in which fonts may be shared and improved in partnership + with others.

+ +

The OFL allows the licensed fonts to be used, studied, modified and + redistributed freely as long as they are not sold by themselves. The + fonts, including any derivative works, can be bundled, embedded, + redistributed and/or sold with any software provided that any reserved + names are not used by derivative works. The fonts and derivatives, + however, cannot be released under any other type of license. The + requirement for fonts to remain under this license does not apply + to any document created using the fonts or their derivatives.

+ +

DEFINITIONS + "Font Software" refers to the set of files released by the Copyright + Holder(s) under this license and clearly marked as such. This may + include source files, build scripts and documentation.

+ +

"Reserved Font Name" refers to any names specified as such after the + copyright statement(s).

+ +

"Original Version" refers to the collection of Font Software components as + distributed by the Copyright Holder(s).

+ +

"Modified Version" refers to any derivative made by adding to, deleting, + or substituting -- in part or in whole -- any of the components of the + Original Version, by changing formats or by porting the Font Software to a + new environment.

+ +

"Author" refers to any designer, engineer, programmer, technical + writer or other person who contributed to the Font Software.

+ +

PERMISSION AND CONDITIONS + Permission is hereby granted, free of charge, to any person obtaining + a copy of the Font Software, to use, study, copy, merge, embed, modify, + redistribute, and sell modified and unmodified copies of the Font + Software, subject to the following conditions:

+ +

1) Neither the Font Software nor any of its individual components, + in Original or Modified Versions, may be sold by itself.

+ +

2) Original or Modified Versions of the Font Software may be bundled, + redistributed and/or sold with any software, provided that each copy + contains the above copyright notice and this license. These can be + included either as stand-alone text files, human-readable headers or + in the appropriate machine-readable metadata fields within text or + binary files as long as those fields can be easily viewed by the user.

+ +

3) No Modified Version of the Font Software may use the Reserved Font + Name(s) unless explicit written permission is granted by the corresponding + Copyright Holder. This restriction only applies to the primary font name as + presented to the users.

+ +

4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font + Software shall not be used to promote, endorse or advertise any + Modified Version, except to acknowledge the contribution(s) of the + Copyright Holder(s) and the Author(s) or with their explicit written + permission.

+ +

5) The Font Software, modified or unmodified, in part or in whole, + must be distributed entirely under this license, and must not be + distributed under any other license. The requirement for fonts to + remain under this license does not apply to any document created + using the Font Software.

+ +

TERMINATION + This license becomes null and void if any of the above conditions are + not met.

+ +

DISCLAIMER + THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT + OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE + COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL + DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM + OTHER DEALINGS IN THE FONT SOFTWARE.

+
+ <% include components/footer %> + + + diff --git a/licenses/UPL.ejs b/licenses/UPL.ejs new file mode 100644 index 00000000..01948e90 --- /dev/null +++ b/licenses/UPL.ejs @@ -0,0 +1,47 @@ + + + +<% include components/header %> + + +
+ <%- gravatar %> +

The Universal Permissive License (UPL)

+

Copyright © <%= info %>

+ +

Subject to the condition set forth below, permission is hereby granted to any + person obtaining a copy of this software, associated documentation and/or data + (collectively the "Software"), free of charge and under any and all copyright + rights in the Software, and any and all patent rights owned or freely + licensable by each licensor hereunder covering either (i) the unmodified + Software as contributed to or provided by such licensor, or (ii) the Larger + Works (as defined below), to deal in both

+ +

(a) the Software, and + (b) any piece of software and/or hardware listed in the lrgrwrks.txt file if + one is included with the Software (each a “Larger Work” to which the Software + is contributed by such licensors),

+ +

without restriction, including without limitation the rights to copy, create + derivative works of, display, perform, and distribute the Software and make, + use, sell, offer for sale, import, export, have made, and have sold the + Software and the Larger Work(s), and to sublicense the foregoing rights on + either these or other terms.

+ +

This license is subject to the following condition: + The above copyright notice and either this complete permission notice or at + a minimum a reference to the UPL must be included in all copies or + substantial portions of the Software.

+ +

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE.

+
+ <% include components/footer %> + + + diff --git a/package.json b/package.json index 150f800f..8b98d5f8 100644 --- a/package.json +++ b/package.json @@ -9,9 +9,9 @@ }, "scripts": { "start": "tsc server.ts && node server.js", - "dev": "ts-node-dev --respawn --transpileOnly server.ts", + "dev": "ts-node-dev --respawn --transpileOnly --no-notify server.ts", "test": "node test.js", - "lint": "eslint . --color --fix" + "lint": "eslint server.ts util.ts test.js --color --fix" }, "bugs": { "url": "https://github.com/remy/mit-license/issues" @@ -24,8 +24,8 @@ "express": "^4.17.1", "express-minify": "^1.0.0", "humanize-list": "^1.0.1", - "is-number": "^7.0.0", "md5": "^2.2.1", + "node-html-parser": "^1.1.15", "tmp": "^0.1.0", "typescript": "^3.4.5" }, @@ -33,7 +33,6 @@ "@types/compression": "^0.0.36", "@types/express": "^4.16.1", "@types/express-minify": "^0.1.34", - "@types/is-number": "^3.0.1", "@types/md5": "^2.1.33", "@types/tmp": "^0.1.0", "@typescript-eslint/eslint-plugin": "^1.9.0", diff --git a/server.js b/server.js index fc1bef22..59d74c21 100644 --- a/server.js +++ b/server.js @@ -1,12 +1,16 @@ -var express = require('express'); -var path = require('path'); -var fs = require('fs'); +"use strict"; +exports.__esModule = true; +var express = require("express"); +var path = require("path"); +var fs = require("fs"); var PORT = process.env.PORT || 80; -var compression = require('compression'); -var dayjs = require('dayjs'); -var md5 = require('md5'); -var humanizeList = require('humanize-list'); -var minify = require('express-minify'); +var compression = require("compression"); +var md5 = require("md5"); +var humanize_list_1 = require("humanize-list"); +var minify = require("express-minify"); +var ejs = require('ejs'); +var util_1 = require("./util"); +var HTML = require('node-html-parser'); // Prepare application var app = express(); app.use(compression()); @@ -18,10 +22,14 @@ app.set('view engine', 'ejs'); app.use('/themes', express.static('themes')); app.use('/users', express.static('users')); app.use('/favicon.ico', express.static(__dirname + '/favicon.ico')); -// Setup useful variables -var yearNow = dayjs().year(); +// Allow CORS +app.use(function (_req, res, next) { + res.header('Access-Control-Allow-Origin', '*'); + res.header('Access-Control-Allow-Headers', 'Origin, X-Requested-With, Content-Type, Accept'); + next(); +}); // HTTP POST API -app.post('/', function (req, res) { +app.post('/', function (_req, res) { res.end(); }); // Any other HTTP GET request @@ -31,37 +39,69 @@ app.get('*', function (req, res) { // Get params (example: 'rem.mit-license.org/@2019' -> ['@2019']) var params = req.path.split('/'); params.shift(); - // - var year = yearNow; // Load the user data (example: from 'rem.mit-license.org/@2019' -> 'users/rem.json') fs.readFile(path.join('users', id + ".json"), 'utf8', function (err, data) { - var info, theme, gravatar; + var name; + var theme; + var gravatar; + var user = JSON.parse(data || '{}'); // If error opening if (err) { if (err.code === 'ENOENT') { // File not found - info = year + " "; + name = ''; theme = 'default'; gravatar = ''; } else { // Other error res.status(500).end(); + return; } } else { // No error - var user = JSON.parse(data); - info = year + " " + (typeof user.copyright === 'string' ? user.copyright : humanizeList(user.copyright)); + name = typeof user.copyright === 'string' ? user.copyright : humanize_list_1["default"](user.copyright); theme = user.theme || 'default'; gravatar = user.gravatar ? "\"Profile" : ''; } - // Parse the options specified in the URL - res.render(path.join(__dirname, 'licenses', 'MIT.ejs'), { - info: info, + var year = (function () { + // rem.mit-license.org/@2019 + var customYear = params.find(function (val) { return val.startsWith('@'); }); + // rem.mit-license.org/2019 + var fromYear = params.find(function (val) { return !isNaN(parseInt(val.replace('-', ''))); }); + // If current year + if (customYear) + return customYear.replace(/[@-]/g, ''); + // If from year + if (fromYear) { + // If from year is same as current + if (parseInt(fromYear) === util_1.yearNow) + return util_1.yearNow; + return fromYear.replace('-', '') + "-" + util_1.yearNow.toString().replace('-', ''); + } + return util_1.yearNow; + })(); + var customLicense = params.find(function (val) { return val.startsWith('+'); }); + var license = customLicense ? customLicense.replace('+', '') : user.license || 'MIT'; + var format = params.find(function (val) { return val === 'license.html'; }) ? 'html' : params.find(function (val) { return val === 'license.txt'; }) ? 'txt' : user.format || 'html'; + var args = { + info: year + " " + name, theme: theme, gravatar: gravatar - }); + }; + if (format === 'html') + res.render(path.join(__dirname, 'licenses', license), args); + else { + ejs.renderFile(path.join(__dirname, 'licenses', license + ".ejs"), args, function (_err, str) { + return res + .set('Content-Type', 'text/plain; charset=UTF-8') + .send(util_1.trimArray(util_1.stripTags(HTML.parse(str).childNodes[0].childNodes[3].childNodes[1].toString()) + .split('\n') + .map(function (val) { return val.trim(); })) + .join('\n')); + }); + } }); }); // Start listening for HTTP requests diff --git a/server.ts b/server.ts index f6fd9cd6..ab707955 100644 --- a/server.ts +++ b/server.ts @@ -1,13 +1,14 @@ -import express from 'express' -import path from 'path' -import fs from 'fs' +import express = require('express'); +import * as path from 'path' +import * as fs from 'fs' const PORT = process.env.PORT || 80 -import compression from 'compression' -import dayjs from 'dayjs' -import md5 from 'md5' +import compression = require('compression'); +import md5 = require('md5'); import humanizeList from 'humanize-list' -import minify from 'express-minify' -import isNumber from 'is-number' +import minify = require('express-minify') +const ejs = require('ejs') +import {yearNow, stripTags, trimArray} from './util' +const HTML = require('node-html-parser') // Prepare application const app = express() @@ -22,8 +23,12 @@ app.use('/themes', express.static('themes')) app.use('/users', express.static('users')) app.use('/favicon.ico', express.static(__dirname + '/favicon.ico')) -// Setup useful variables -const yearNow = dayjs().year() +// Allow CORS +app.use((_req, res, next) => { + res.header('Access-Control-Allow-Origin', '*') + res.header('Access-Control-Allow-Headers', 'Origin, X-Requested-With, Content-Type, Accept') + next() +}) // HTTP POST API app.post('/', (_req, res) => { @@ -41,19 +46,19 @@ app.get('*', (req, res) => { // Load the user data (example: from 'rem.mit-license.org/@2019' -> 'users/rem.json') fs.readFile(path.join('users', `${id}.json`), 'utf8', (err, data: string) => { - let name: string, theme: string, gravatar: string - const user = JSON.parse(data || "{}") + let name: string; let theme: string; let gravatar: string + const user = JSON.parse(data || '{}') // If error opening if (err) { if (err.code === 'ENOENT') { // File not found - name = "" + name = '' theme = 'default' gravatar = '' } else { // Other error res.status(500).end() - return; + return } } else { // No error @@ -64,34 +69,49 @@ app.get('*', (req, res) => { const year = (() => { // rem.mit-license.org/@2019 - const customYear = params.find(val => val.startsWith("@")) + const customYear = params.find((val) => val.startsWith('@')) // rem.mit-license.org/2019 - const fromYear = params.find(val => !isNaN(parseInt(val.replace("-", "")))) + const fromYear = params.find((val) => !isNaN(parseInt(val.replace('-', '')))) // If current year - if (customYear) return customYear.replace(/[@-]/g, "") + if (customYear) return customYear.replace(/[@-]/g, '') // If from year if (fromYear) { // If from year is same as current if (parseInt(fromYear) === yearNow) return yearNow - return `${fromYear.replace("-", "")}-${yearNow.toString().replace("-", "")}` + return `${fromYear.replace('-', '')}-${yearNow.toString().replace('-', '')}` } return yearNow })() - const customLicense = params.find(val => val.startsWith("+")) - const license = customLicense ? customLicense.replace("+", "") : user.license || `${"MIT"}.ejs` + const customLicense = params.find((val) => val.startsWith('+')) + const license = customLicense ? customLicense.replace('+', '') : user.license || 'MIT' - // Parse the options specified in the URL - res.render(path.join(__dirname, 'licenses', license), { + const format = params.find((val) => val === 'license.html') ? 'html' : params.find((val) => val === 'license.txt') ? 'txt' : user.format || 'html' + + const args = { info: `${year} ${name}`, theme, gravatar, - }) + } + + if (format === 'html') res.render(path.join(__dirname, 'licenses', license), args) + else {ejs.renderFile(path.join(__dirname, 'licenses', `${license}.ejs`), args, (_err: any, str: string) => + res + .set('Content-Type', 'text/plain; charset=UTF-8') + .send( + trimArray( + stripTags(HTML.parse(str).childNodes[0].childNodes[3].childNodes[1].toString()) + .split('\n') + .map((val: string) => val.trim()) + ) + .join('\n') + ) + )} }) }) diff --git a/tsconfig.json b/tsconfig.json index 6e31d07d..8dd41b43 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,7 +5,6 @@ "moduleResolution": "node", "esModuleInterop": true, "declaration": true, - "outDir": "./dist", "strict": true, "sourceMap": true } diff --git a/util.ts b/util.ts new file mode 100644 index 00000000..28271234 --- /dev/null +++ b/util.ts @@ -0,0 +1,20 @@ +import dayjs = require('dayjs'); + +export const yearNow = dayjs().year() +export const stripTags = (val: any) => val.replace(/<(?:.|\n)*?>/gm, '') +export function trimArray(arr: any[]) { + // Example: trimArray(['', '', 'abc', '', 'abc', 'abc', '', '']) -> ["abc", "", "abc", "abc"] + const handleVal = (val: any) => { + if (val !== '') { + valPassed = true + return val + } + else if (!valPassed) return null + else return val + } + let valPassed = false + arr = arr.map(handleVal) + valPassed = false + arr = arr.reverse().map(handleVal) + return arr.reverse().filter((val) => val !== null) +} diff --git a/yarn.lock b/yarn.lock index 1b1df7fd4215ee1d9ee3740a7980a6bde246f08c..37b0fc0b1ef21712ec1529a5d5fb4ebd415e5465 100644 GIT binary patch delta 360 zcmZ2+l;!skmJLzdoAY>-Di~8I%V{`UWu)rs>Sv_t8tQ>yNqUvCrLl>jL0XEDVUmG? zrMa=Gp{Ze-g@u_#vQe6mxnY{IiII7#k#SneF^ z6&40w+MfEGyIYnDZZ?_DrKpxslAEJjkXTflTI3K1w#d|qOF^M5wWv5VKTkmkA~g9R zt9DpkeoCq?l6s)y(1jpQH3hphHO120G}$ECAlb}3Db>)}AkjF{%+kWl*eEG6$uu=J z&D7j1HQ8`-;4QJxa{KNoHZ_~iCT$f0Fv&uB5EdKz*U>7&X;P65NS0ASmm&qR`CAczD Np?*->Y`&u~3jjW&apwR4 delta 403 zcmZ|KJ5Rz;00rQM#DSQ|;OL-^yzcG2x3?Xd2vT`BKx;t;W8W!Myp&ohvwy%4cSlDO z7Jq>Hf1F)J64~5N&N<8X{hoULNUetHj6cgy?r%*eJiA5(P=F`Pn@C!&QhT-CQp^{3 zIlny>B5!djVw{6*EmABO~-kXJiEpHlEijQ#0sh`-}3t5&NMAM7=)q66z&LzOelU@=%zK6S2t{ z^yiYa?xb_cI`{aJ+5cnE4Ffze=^wy$-U28=1Yu$dB2N*vi7NmL+km$S5D6h1H6V5& zXZ`~E7@qs?*y9~Rdk9o!M;dcldV3nHWm#WnQB;fNUWH(A$d<8|h3H2ML6g@YIX From 53aa6eb6d438bbdb1e94519a3cd7673641ab52de Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Wed, 29 May 2019 20:14:16 +1200 Subject: [PATCH 06/53] Fix LF and untrack gitignored --- server.js | 108 ------------------------------------------------- users/s-a.json | 10 ++--- 2 files changed, 5 insertions(+), 113 deletions(-) delete mode 100644 server.js diff --git a/server.js b/server.js deleted file mode 100644 index 59d74c21..00000000 --- a/server.js +++ /dev/null @@ -1,108 +0,0 @@ -"use strict"; -exports.__esModule = true; -var express = require("express"); -var path = require("path"); -var fs = require("fs"); -var PORT = process.env.PORT || 80; -var compression = require("compression"); -var md5 = require("md5"); -var humanize_list_1 = require("humanize-list"); -var minify = require("express-minify"); -var ejs = require('ejs'); -var util_1 = require("./util"); -var HTML = require('node-html-parser'); -// Prepare application -var app = express(); -app.use(compression()); -app.use(minify({ - cache: require('tmp').dirSync().name -})); -app.set('view engine', 'ejs'); -// Setup static files -app.use('/themes', express.static('themes')); -app.use('/users', express.static('users')); -app.use('/favicon.ico', express.static(__dirname + '/favicon.ico')); -// Allow CORS -app.use(function (_req, res, next) { - res.header('Access-Control-Allow-Origin', '*'); - res.header('Access-Control-Allow-Headers', 'Origin, X-Requested-With, Content-Type, Accept'); - next(); -}); -// HTTP POST API -app.post('/', function (_req, res) { - res.end(); -}); -// Any other HTTP GET request -app.get('*', function (req, res) { - // Get user id (example: 'rem.mit-license.org/@2019' -> 'rem') - var id = req.hostname.split('.')[0]; - // Get params (example: 'rem.mit-license.org/@2019' -> ['@2019']) - var params = req.path.split('/'); - params.shift(); - // Load the user data (example: from 'rem.mit-license.org/@2019' -> 'users/rem.json') - fs.readFile(path.join('users', id + ".json"), 'utf8', function (err, data) { - var name; - var theme; - var gravatar; - var user = JSON.parse(data || '{}'); - // If error opening - if (err) { - if (err.code === 'ENOENT') { - // File not found - name = ''; - theme = 'default'; - gravatar = ''; - } - else { - // Other error - res.status(500).end(); - return; - } - } - else { - // No error - name = typeof user.copyright === 'string' ? user.copyright : humanize_list_1["default"](user.copyright); - theme = user.theme || 'default'; - gravatar = user.gravatar ? "\"Profile" : ''; - } - var year = (function () { - // rem.mit-license.org/@2019 - var customYear = params.find(function (val) { return val.startsWith('@'); }); - // rem.mit-license.org/2019 - var fromYear = params.find(function (val) { return !isNaN(parseInt(val.replace('-', ''))); }); - // If current year - if (customYear) - return customYear.replace(/[@-]/g, ''); - // If from year - if (fromYear) { - // If from year is same as current - if (parseInt(fromYear) === util_1.yearNow) - return util_1.yearNow; - return fromYear.replace('-', '') + "-" + util_1.yearNow.toString().replace('-', ''); - } - return util_1.yearNow; - })(); - var customLicense = params.find(function (val) { return val.startsWith('+'); }); - var license = customLicense ? customLicense.replace('+', '') : user.license || 'MIT'; - var format = params.find(function (val) { return val === 'license.html'; }) ? 'html' : params.find(function (val) { return val === 'license.txt'; }) ? 'txt' : user.format || 'html'; - var args = { - info: year + " " + name, - theme: theme, - gravatar: gravatar - }; - if (format === 'html') - res.render(path.join(__dirname, 'licenses', license), args); - else { - ejs.renderFile(path.join(__dirname, 'licenses', license + ".ejs"), args, function (_err, str) { - return res - .set('Content-Type', 'text/plain; charset=UTF-8') - .send(util_1.trimArray(util_1.stripTags(HTML.parse(str).childNodes[0].childNodes[3].childNodes[1].toString()) - .split('\n') - .map(function (val) { return val.trim(); })) - .join('\n')); - }); - } - }); -}); -// Start listening for HTTP requests -app.listen(PORT); diff --git a/users/s-a.json b/users/s-a.json index 281f605f..197b6faa 100644 --- a/users/s-a.json +++ b/users/s-a.json @@ -1,6 +1,6 @@ -{ - "copyright": "Stephan Ahlf", - "url": "https://github.com/s-a", - "email": "stephan.ahlf@gmail.com", - "format": "txt" +{ + "copyright": "Stephan Ahlf", + "url": "https://github.com/s-a", + "email": "stephan.ahlf@gmail.com", + "format": "txt" } \ No newline at end of file From 50427e2dede00287517b49a24561763261a38c9f Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Fri, 31 May 2019 16:39:01 +1200 Subject: [PATCH 07/53] Automatically prefix and polyfill CSS --- CONTRIBUTING.md | 4 +- Procfile | 2 +- README.md | 2 +- package.json | 6 +- server.ts | 41 +++-- themes/8bits-monochrome-amber.css | 4 - themes/8bits-monochrome-blue-white.css | 4 - themes/8bits-monochrome-green.css | 4 - themes/8bits-monochrome-white.css | 4 - themes/8bits-monochrome.css | 4 - themes/blackwood.css | 29 --- themes/cherry-white.css | 6 - themes/cherry.css | 6 - themes/dusk.css | 5 - themes/hacker.css | 234 +++++++------------------ themes/hipster-gray.css | 9 +- themes/hmt-blue.css | 13 +- themes/material-amber.css | 2 - themes/material-blue.css | 2 - themes/material-brown.css | 2 - themes/material-cyan.css | 2 - themes/material-deep-orange.css | 2 - themes/material-deep-purple.css | 2 - themes/material-green.css | 2 - themes/material-grey.css | 2 - themes/material-indigo.css | 2 - themes/material-light-blue.css | 2 - themes/material-light-green.css | 2 - themes/material-lime.css | 2 - themes/material-orange.css | 2 - themes/material-pink.css | 2 - themes/material-purple.css | 2 - themes/material-red.css | 2 - themes/material-teal.css | 2 - themes/material-yellow.css | 2 - themes/material.css | 2 - themes/mitserrat.css | 2 - themes/open-sans.css | 4 - themes/orange.css | 6 - themes/silver-style.css | 4 +- yarn.lock | Bin 74363 -> 135604 bytes 41 files changed, 105 insertions(+), 326 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 09004347..40558791 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,7 +1,5 @@ # Contributing -This project is PHP based but may one day move to node (as this is my preferred development language). - If you are a collaborator (with push permissions), you can merge any open PR with the following conditions: 1. It passes the JSON validity test (this is a github integration in travis) @@ -11,4 +9,4 @@ If you're unsure, cc @remy into the PR with a question and we can work out what The site is hosted on heroku and will automatically deploy merges into master, which means once a PR is merged, it'll be live shortly thereafter (so there's nothing to do 🎉). -Also, thank you, your help is appreciated 💙 \ No newline at end of file +Also, thank you, your help is appreciated 💙 diff --git a/Procfile b/Procfile index 2be5f808..56b33d13 100644 --- a/Procfile +++ b/Procfile @@ -1 +1 @@ -web: yarn start +web: yarn serve diff --git a/README.md b/README.md index f93ec6d6..5c461a15 100644 --- a/README.md +++ b/README.md @@ -141,7 +141,7 @@ Note that if no version is supplied, the latest copy of the LICENSE.html will be ### Themes -If you've got an eye for design (or like me: not): you can contribute a theme by adding a CSS file to the `themes` directory. The default theme is simple and clean, but you can add your own as you like. +If you've got an eye for design (or like me: not): you can contribute a theme by adding a CSS file to the `themes` directory. You can use the latest CSS technologies since they are automatically polyfilled. The default theme is simple and clean, but you can add your own as you like. To use a theme, add the `theme` property to your `user.json` file, for example: diff --git a/package.json b/package.json index 8b98d5f8..2db46261 100644 --- a/package.json +++ b/package.json @@ -8,8 +8,8 @@ "url": "git@github.com:remy/mit-license.git" }, "scripts": { - "start": "tsc server.ts && node server.js", - "dev": "ts-node-dev --respawn --transpileOnly --no-notify server.ts", + "start": "ts-node-dev --respawn --transpileOnly --no-notify server.ts", + "serve": "tsc server.ts && node server.js", "test": "node test.js", "lint": "eslint server.ts util.ts test.js --color --fix" }, @@ -26,6 +26,8 @@ "humanize-list": "^1.0.1", "md5": "^2.2.1", "node-html-parser": "^1.1.15", + "postcss-middleware": "^1.1.4", + "postcss-preset-env": "^6.6.0", "tmp": "^0.1.0", "typescript": "^3.4.5" }, diff --git a/server.ts b/server.ts index ab707955..fd7f2077 100644 --- a/server.ts +++ b/server.ts @@ -1,14 +1,15 @@ -import express = require('express'); +import express = require('express') import * as path from 'path' import * as fs from 'fs' const PORT = process.env.PORT || 80 -import compression = require('compression'); +import compression = require('compression') import md5 = require('md5'); import humanizeList from 'humanize-list' import minify = require('express-minify') -const ejs = require('ejs') -import {yearNow, stripTags, trimArray} from './util' -const HTML = require('node-html-parser') +import ejs = require('ejs') +import { yearNow, stripTags, trimArray } from './util' +import HTML = require('node-html-parser') +import postcssMiddleware = require('postcss-middleware') // Prepare application const app = express() @@ -19,8 +20,12 @@ app.use(minify({ app.set('view engine', 'ejs') // Setup static files -app.use('/themes', express.static('themes')) app.use('/users', express.static('users')) +app.use('/themes', postcssMiddleware({ + plugins: [require('postcss-preset-env')({ browsers: '>= 0%', stage: 0 })], + src: req => path.join(__dirname, 'themes', req.path) +})) +app.use('/themes', express.static('themes')) app.use('/favicon.ico', express.static(__dirname + '/favicon.ico')) // Allow CORS @@ -100,18 +105,20 @@ app.get('*', (req, res) => { } if (format === 'html') res.render(path.join(__dirname, 'licenses', license), args) - else {ejs.renderFile(path.join(__dirname, 'licenses', `${license}.ejs`), args, (_err: any, str: string) => - res - .set('Content-Type', 'text/plain; charset=UTF-8') - .send( - trimArray( - stripTags(HTML.parse(str).childNodes[0].childNodes[3].childNodes[1].toString()) - .split('\n') - .map((val: string) => val.trim()) + else { + ejs.renderFile(path.join(__dirname, 'licenses', `${license}.ejs`), args, (_err: any, str: string) => + res + .set('Content-Type', 'text/plain; charset=UTF-8') + .send( + trimArray( + stripTags(HTML.parse(str).childNodes[0].childNodes[3].childNodes[1].toString()) + .split('\n') + .map((val: string) => val.trim()) + ) + .join('\n') ) - .join('\n') - ) - )} + ) + } }) }) diff --git a/themes/8bits-monochrome-amber.css b/themes/8bits-monochrome-amber.css index 86968e61..4cec6017 100644 --- a/themes/8bits-monochrome-amber.css +++ b/themes/8bits-monochrome-amber.css @@ -114,9 +114,5 @@ footer { } img { - -webkit-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10); - -moz-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10); - -ms-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10); - -o-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10); filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10); } diff --git a/themes/8bits-monochrome-blue-white.css b/themes/8bits-monochrome-blue-white.css index 578dafc7..8c331374 100644 --- a/themes/8bits-monochrome-blue-white.css +++ b/themes/8bits-monochrome-blue-white.css @@ -114,9 +114,5 @@ footer { } img { - -webkit-filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%); - -moz-filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%); - -ms-filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%); - -o-filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%); filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%); } diff --git a/themes/8bits-monochrome-green.css b/themes/8bits-monochrome-green.css index 940dfd82..4dd57571 100644 --- a/themes/8bits-monochrome-green.css +++ b/themes/8bits-monochrome-green.css @@ -114,9 +114,5 @@ footer { } img { - -webkit-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10) hue-rotate(40deg); - -moz-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10) hue-rotate(40deg); - -ms-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10) hue-rotate(40deg); - -o-filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10) hue-rotate(40deg); filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10) hue-rotate(40deg); } diff --git a/themes/8bits-monochrome-white.css b/themes/8bits-monochrome-white.css index 1a4b1a70..3cef6a58 100644 --- a/themes/8bits-monochrome-white.css +++ b/themes/8bits-monochrome-white.css @@ -114,9 +114,5 @@ footer { } img { - -webkit-filter: contrast(700%) grayscale(100%) saturate(100); - -moz-filter: contrast(700%) grayscale(100%) saturate(100); - -ms-filter: contrast(700%) grayscale(100%) saturate(100); - -o-filter: contrast(700%) grayscale(100%) saturate(100); filter: contrast(700%) grayscale(100%) saturate(100); } diff --git a/themes/8bits-monochrome.css b/themes/8bits-monochrome.css index 09e35b79..91fc4cd0 100644 --- a/themes/8bits-monochrome.css +++ b/themes/8bits-monochrome.css @@ -114,9 +114,5 @@ footer { } img { - -webkit-filter: contrast(700%) grayscale(100%) saturate(100); - -moz-filter: contrast(700%) grayscale(100%) saturate(100); - -ms-filter: contrast(700%) grayscale(100%) saturate(100); - -o-filter: contrast(700%) grayscale(100%) saturate(100); filter: contrast(700%) grayscale(100%) saturate(100); } diff --git a/themes/blackwood.css b/themes/blackwood.css index 1c8600d0..6fa5dbc2 100644 --- a/themes/blackwood.css +++ b/themes/blackwood.css @@ -49,9 +49,6 @@ footer { footer p { zoom: 1; background-color: #FFFFFF; - -moz-box-shadow: 1px 1px 3px #989898; - -webkit-box-shadow: 1px 1px 3px #989898; - -moz-box-shadow: 1px 1px 3px #989898; box-shadow: 1px 1px 3px #989898; font-size: 0.9em; max-width: 318px; @@ -59,21 +56,11 @@ footer p { position: absolute; right: -106px; top: 0; - -webkit-transform: rotate(34.5deg); - /* Saf3.1+, Chrome */ - -moz-transform: rotate(34.5deg); - /* FF3.5+ */ - -o-transform: rotate(34.5deg); - /* Opera 10.5 */ - -ms-transform: rotate(40deg); - /* IE9 */ transform: rotate(34.5deg); } footer p:before { background-color: #999999; - -moz-box-shadow: 1px 1px 2px #000000; - -webkit-box-shadow: 1px 1px 2px #000000; box-shadow: 1px 1px 2px #000000; content: ""; display: block; @@ -83,14 +70,6 @@ footer p:before { position: absolute; top: -13px; width: 7px; - -webkit-transform: rotate(34.5deg); - /* Saf3.1+, Chrome */ - -moz-transform: rotate(34.5deg); - /* FF3.5+ */ - -o-transform: rotate(34.5deg); - /* Opera 10.5 */ - -ms-transform: rotate(34.5deg); - /* IE9 */ transform: rotate(34.5deg); zoom: 1; } @@ -104,14 +83,6 @@ footer p:after { position: absolute; right: 0; width: 7px; - -webkit-transform: rotate(34.5deg); - /* Saf3.1+, Chrome */ - -moz-transform: rotate(34.5deg); - /* FF3.5+ */ - -o-transform: rotate(34.5deg); - /* Opera 10.5 */ - -ms-transform: rotate(34.5deg); - /* IE9 */ transform: rotate(34.5deg); zoom: 1; } diff --git a/themes/cherry-white.css b/themes/cherry-white.css index 2211116b..f7755a6f 100644 --- a/themes/cherry-white.css +++ b/themes/cherry-white.css @@ -19,8 +19,6 @@ article { border-right: 3px solid #FF6666; padding: 45px 28px 28px; position: relative; - -webkit-border-radius: 0px 0 10px 10px; - -moz-border-radius: 0px 0 10px 10px; border-radius: 0px 0 10px 10px; margin-top: 28px; border-left: 1px solid #F7F7F7; @@ -37,8 +35,6 @@ h1 { top: -22px; width: 100%; display: block; - -moz-box-shadow: 2px 7px 0px -3px #CCCCCC; - -webkit-box-shadow: 2px 7px 0px -3px #CCCCCC; box-shadow: 2px 7px 0px -3px #CCCCCC; } @@ -61,8 +57,6 @@ h1:before { position: absolute; top: 52px; width: 11px; - -webkit-border-radius: 0 0 0 32px; - -moz-border-radius: 0 0 0 32px; border-radius: 0 0 0 32px; } diff --git a/themes/cherry.css b/themes/cherry.css index 6dc6f661..d6994824 100644 --- a/themes/cherry.css +++ b/themes/cherry.css @@ -20,8 +20,6 @@ article { border-right: 3px solid #FF6666; padding: 74px 28px 28px; position: relative; - -webkit-border-radius: 0px 0 10px 10px; - -moz-border-radius: 0px 0 10px 10px; border-radius: 0px 0 10px 10px; } @@ -36,8 +34,6 @@ h1 { top: 0; width: 100%; display: block; - -moz-box-shadow: 2px 7px 0px -3px #CCCCCC; - -webkit-box-shadow: 2px 7px 0px -3px #CCCCCC; box-shadow: 2px 7px 0px -3px #CCCCCC; } @@ -60,8 +56,6 @@ h1:before { position: absolute; top: 52px; width: 11px; - -webkit-border-radius: 0 0 0 32px; - -moz-border-radius: 0 0 0 32px; border-radius: 0 0 0 32px; } diff --git a/themes/dusk.css b/themes/dusk.css index c8dde6a1..d61be164 100644 --- a/themes/dusk.css +++ b/themes/dusk.css @@ -30,9 +30,7 @@ a:link, a:visited, a:hover { position: relative; text-decoration: none; color: #de5833; - -webkit-transition: color 0.3s ease-in-out; transition: color 0.3s ease-in-out; - -webkit-transform: scaleX(0); transform: scaleX(0); } @@ -49,15 +47,12 @@ a:before { left: 0; background-color: #de5833; visibility: hidden; - -webkit-transform: scaleX(0); transform: scaleX(0); - -webkit-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; } a:hover:before { visibility: visible; - -webkit-transform: scaleX(1); transform: scaleX(1); } diff --git a/themes/hacker.css b/themes/hacker.css index bbc5314b..1d8d10d2 100644 --- a/themes/hacker.css +++ b/themes/hacker.css @@ -1,7 +1,6 @@ html { font-family: sans-serif; - -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100% + text-size-adjust: 100%; } body { @@ -88,7 +87,6 @@ figure { } hr { - -moz-box-sizing: content-box; box-sizing: content-box; height: 0 } @@ -117,7 +115,7 @@ button, select { } button, html input[type="button"], input[type="reset"], input[type="submit"] { - -webkit-appearance: button; + appearance: button; cursor: pointer } @@ -144,14 +142,12 @@ input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-o } input[type="search"] { - -webkit-appearance: textfield; - -moz-box-sizing: content-box; - -webkit-box-sizing: content-box; + appearance: textfield; box-sizing: content-box } input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { - -webkit-appearance: none + appearance: none } fieldset { @@ -184,10 +180,10 @@ td, th { @media print { *, *:before, *:after { - background: transparent !important; - color: #000 !important; - box-shadow: none !important; - text-shadow: none !important + background: transparent; + color: #000; + box-shadow: none; + text-shadow: none } a, a:visited { @@ -220,7 +216,7 @@ td, th { } img { - max-width: 100% !important + max-width: 100% } p, h2, h3 { @@ -233,7 +229,7 @@ td, th { } select { - background: #fff !important + background: #fff } .navbar { @@ -241,7 +237,7 @@ td, th { } .btn>.caret, .dropup>.btn>.caret { - border-top-color: #000 !important + border-top-color: #000 } .label { @@ -249,15 +245,15 @@ td, th { } .table { - border-collapse: collapse !important + border-collapse: collapse } .table td, .table th { - background-color: #fff !important + background-color: #fff } .table-bordered th, .table-bordered td { - border: 1px solid #ddd !important + border: 1px solid #ddd } } @@ -1328,14 +1324,10 @@ td, th { } * { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; box-sizing: border-box } *:before, *:after { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; box-sizing: border-box } @@ -1398,8 +1390,6 @@ img { background-color: #222; border: 1px solid #ddd; border-radius: 0; - -webkit-transition: all .2s ease-in-out; - -o-transition: all .2s ease-in-out; transition: all .2s ease-in-out; display: inline-block; max-width: 100%; @@ -2883,8 +2873,6 @@ label { } input[type="search"] { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; box-sizing: border-box } @@ -2933,17 +2921,13 @@ output { background-image: none; border: 1px solid #444; border-radius: 0; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; - -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s } .form-control:focus { border-color: #0f0; outline: 0; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(0, 255, 0, 0.6); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(0, 255, 0, 0.6) } @@ -2974,7 +2958,7 @@ textarea.form-control { } input[type="search"] { - -webkit-appearance: none + appearance: none } @media screen and (-webkit-min-device-pixel-ratio:0) { @@ -3182,13 +3166,11 @@ textarea.form-group-lg .form-control, select[multiple].form-group-lg .form-contr .has-success .form-control { border-color: #0d0; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) } .has-success .form-control:focus { border-color: #0a0; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #4f4; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #4f4 } @@ -3208,13 +3190,11 @@ textarea.form-group-lg .form-control, select[multiple].form-group-lg .form-contr .has-warning .form-control { border-color: #f4ff00; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) } .has-warning .form-control:focus { border-color: #c3cc00; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f8ff66; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f8ff66 } @@ -3234,13 +3214,11 @@ textarea.form-group-lg .form-control, select[multiple].form-group-lg .form-contr .has-error .form-control { border-color: #d00; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) } .has-error .form-control:focus { border-color: #a00; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f44; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f44 } @@ -3379,9 +3357,6 @@ textarea.form-group-lg .form-control, select[multiple].form-group-lg .form-contr font-size: 14px; line-height: 1.428571429; border-radius: 0; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; user-select: none } @@ -3399,7 +3374,6 @@ textarea.form-group-lg .form-control, select[multiple].form-group-lg .form-contr .btn:active, .btn.active { outline: 0; background-image: none; - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) } @@ -3408,7 +3382,6 @@ textarea.form-group-lg .form-control, select[multiple].form-group-lg .form-contr pointer-events: none; opacity: .65; filter: alpha(opacity=65); - -webkit-box-shadow: none; box-shadow: none } @@ -3576,7 +3549,6 @@ textarea.form-group-lg .form-control, select[multiple].form-group-lg .form-contr .btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link { background-color: transparent; - -webkit-box-shadow: none; box-shadow: none } @@ -3631,8 +3603,6 @@ input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="butto .fade { opacity: 0; - -webkit-transition: opacity .15s linear; - -o-transition: opacity .15s linear; transition: opacity .15s linear } @@ -3660,11 +3630,8 @@ tbody.collapse.in { position: relative; height: 0; overflow: hidden; - -webkit-transition-property: height, visibility; transition-property: height, visibility; - -webkit-transition-duration: .35s; transition-duration: .35s; - -webkit-transition-timing-function: ease; transition-timing-function: ease } @@ -3704,7 +3671,6 @@ tbody.collapse.in { border: 1px solid #ccc; border: 1px solid rgba(0, 0, 0, 0.15); border-radius: 0; - -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); background-clip: padding-box } @@ -3903,12 +3869,10 @@ tbody.collapse.in { } .btn-group.open .dropdown-toggle { - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) } .btn-group.open .dropdown-toggle.btn-link { - -webkit-box-shadow: none; box-shadow: none } @@ -4398,10 +4362,10 @@ textarea.input-group-sm>.form-control, textarea.input-group-sm>.input-group-addo } .navbar-collapse.collapse { - display: block !important; - height: auto !important; + display: block; + height: auto; padding-bottom: 0; - overflow: visible !important + overflow: visible } .navbar-collapse.in { @@ -4583,7 +4547,6 @@ textarea.input-group-sm>.form-control, textarea.input-group-sm>.input-group-addo padding: 10px 15px; border-top: 1px solid transparent; border-bottom: 1px solid transparent; - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); margin-top: 8px; margin-bottom: 8px @@ -4663,7 +4626,6 @@ textarea.input-group-sm>.form-control, textarea.input-group-sm>.input-group-addo margin-right: 0; padding-top: 0; padding-bottom: 0; - -webkit-box-shadow: none; box-shadow: none } } @@ -4712,11 +4674,11 @@ textarea.input-group-sm>.form-control, textarea.input-group-sm>.input-group-addo @media (min-width:768px) { .navbar-left { - float: left !important + float: left } .navbar-right { - float: right !important; + float: right; margin-right: -15px } @@ -5256,8 +5218,6 @@ a.badge:hover, a.badge:focus { background-color: #222; border: 1px solid #ddd; border-radius: 0; - -webkit-transition: border .2s ease-in-out; - -o-transition: border .2s ease-in-out; transition: border .2s ease-in-out } @@ -5366,16 +5326,6 @@ a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active { color: #a00 } -@-webkit-keyframes progress-bar-stripes { - from { - background-position: 40px 0 - } - - to { - background-position: 0 0 - } -} - @keyframes progress-bar-stripes { from { background-position: 40px 0 @@ -5392,7 +5342,6 @@ a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active { margin-bottom: 20px; background-color: #3c3c3c; border-radius: 0; - -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1) } @@ -5405,23 +5354,16 @@ a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active { color: #fff; text-align: center; background-color: #0f0; - -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); - -webkit-transition: width .6s ease; - -o-transition: width .6s ease; transition: width .6s ease } .progress-striped .progress-bar, .progress-bar-striped { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-size: 40px 40px } .progress.active .progress-bar, .progress-bar.active { - -webkit-animation: progress-bar-stripes 2s linear infinite; - -o-animation: progress-bar-stripes 2s linear infinite; animation: progress-bar-stripes 2s linear infinite } @@ -5430,8 +5372,6 @@ a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active { } .progress-striped .progress-bar-success { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent) } @@ -5440,8 +5380,6 @@ a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active { } .progress-striped .progress-bar-info { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent) } @@ -5450,8 +5388,6 @@ a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active { } .progress-striped .progress-bar-warning { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent) } @@ -5460,8 +5396,6 @@ a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active { } .progress-striped .progress-bar-danger { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent) } @@ -5696,7 +5630,6 @@ a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-g background-color: #222; border: 1px solid transparent; border-radius: 0; - -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) } @@ -6041,7 +5974,6 @@ a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-g background-color: #080808; border: 1px solid #000; border-radius: 0; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05) } @@ -6084,7 +6016,7 @@ button.close { cursor: pointer; background: transparent; border: 0; - -webkit-appearance: none + appearance: none } .modal-open { @@ -6105,20 +6037,11 @@ button.close { } .modal.fade .modal-dialog { - -webkit-transform: translate(0, -25%); - -ms-transform: translate(0, -25%); - -o-transform: translate(0, -25%); transform: translate(0, -25%); - -webkit-transition: -webkit-transform 0.3s ease-out; - -moz-transition: -moz-transform 0.3s ease-out; - -o-transition: -o-transform 0.3s ease-out; transition: transform 0.3s ease-out } .modal.in .modal-dialog { - -webkit-transform: translate(0, 0); - -ms-transform: translate(0, 0); - -o-transform: translate(0, 0); transform: translate(0, 0) } @@ -6139,7 +6062,6 @@ button.close { border: 1px solid #999; border: 1px solid transparent; border-radius: 0; - -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); background-clip: padding-box; outline: 0 @@ -6219,7 +6141,6 @@ button.close { } .modal-content { - -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5) } @@ -6371,7 +6292,6 @@ button.close { border: 1px solid #333; border: 1px solid rgba(0, 0, 0, 0.2); border-radius: 0; - -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); white-space: normal } @@ -6504,8 +6424,6 @@ button.close { .carousel-inner>.item { display: none; position: relative; - -webkit-transition: .6s ease-in-out left; - -o-transition: .6s ease-in-out left; transition: .6s ease-in-out left } @@ -6515,32 +6433,22 @@ button.close { @media all and (transform-3d), (-webkit-transform-3d) { .carousel-inner>.item { - -webkit-transition: -webkit-transform 0.6s ease-in-out; - -moz-transition: -moz-transform 0.6s ease-in-out; - -o-transition: -o-transform 0.6s ease-in-out; transition: transform 0.6s ease-in-out; - -webkit-backface-visibility: hidden; - -moz-backface-visibility: hidden; backface-visibility: hidden; - -webkit-perspective: 1000; - -moz-perspective: 1000; perspective: 1000 } .carousel-inner>.item.next, .carousel-inner>.item.active.right { - -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); left: 0 } .carousel-inner>.item.prev, .carousel-inner>.item.active.left { - -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); left: 0 } .carousel-inner>.item.next.left, .carousel-inner>.item.prev.right, .carousel-inner>.item.active { - -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); left: 0 } @@ -6595,8 +6503,6 @@ button.close { } .carousel-control.left { - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%); background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1) @@ -6605,8 +6511,6 @@ button.close { .carousel-control.right { left: auto; right: 0; - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%); background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1) @@ -6745,19 +6649,19 @@ button.close { } .pull-right { - float: right !important + float: right } .pull-left { - float: left !important + float: left } .hide { - display: none !important + display: none } .show { - display: block !important + display: block } .invisible { @@ -6773,28 +6677,24 @@ button.close { } .hidden { - display: none !important + display: none } .affix { position: fixed } -@-ms-viewport { - width: device-width -} - .visible-xs, .visible-sm, .visible-md, .visible-lg { - display: none !important + display: none } .visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block { - display: none !important + display: none } @media (max-width:767px) { .visible-xs { - display: block !important + display: block } table.visible-xs { @@ -6802,35 +6702,35 @@ button.close { } tr.visible-xs { - display: table-row !important + display: table-row } th.visible-xs, td.visible-xs { - display: table-cell !important + display: table-cell } } @media (max-width:767px) { .visible-xs-block { - display: block !important + display: block } } @media (max-width:767px) { .visible-xs-inline { - display: inline !important + display: inline } } @media (max-width:767px) { .visible-xs-inline-block { - display: inline-block !important + display: inline-block } } @media (min-width:768px) and (max-width:991px) { .visible-sm { - display: block !important + display: block } table.visible-sm { @@ -6838,35 +6738,35 @@ button.close { } tr.visible-sm { - display: table-row !important + display: table-row } th.visible-sm, td.visible-sm { - display: table-cell !important + display: table-cell } } @media (min-width:768px) and (max-width:991px) { .visible-sm-block { - display: block !important + display: block } } @media (min-width:768px) and (max-width:991px) { .visible-sm-inline { - display: inline !important + display: inline } } @media (min-width:768px) and (max-width:991px) { .visible-sm-inline-block { - display: inline-block !important + display: inline-block } } @media (min-width:992px) and (max-width:1199px) { .visible-md { - display: block !important + display: block } table.visible-md { @@ -6874,35 +6774,35 @@ button.close { } tr.visible-md { - display: table-row !important + display: table-row } th.visible-md, td.visible-md { - display: table-cell !important + display: table-cell } } @media (min-width:992px) and (max-width:1199px) { .visible-md-block { - display: block !important + display: block } } @media (min-width:992px) and (max-width:1199px) { .visible-md-inline { - display: inline !important + display: inline } } @media (min-width:992px) and (max-width:1199px) { .visible-md-inline-block { - display: inline-block !important + display: inline-block } } @media (min-width:1200px) { .visible-lg { - display: block !important + display: block } table.visible-lg { @@ -6910,63 +6810,63 @@ button.close { } tr.visible-lg { - display: table-row !important + display: table-row } th.visible-lg, td.visible-lg { - display: table-cell !important + display: table-cell } } @media (min-width:1200px) { .visible-lg-block { - display: block !important + display: block } } @media (min-width:1200px) { .visible-lg-inline { - display: inline !important + display: inline } } @media (min-width:1200px) { .visible-lg-inline-block { - display: inline-block !important + display: inline-block } } @media (max-width:767px) { .hidden-xs { - display: none !important + display: none } } @media (min-width:768px) and (max-width:991px) { .hidden-sm { - display: none !important + display: none } } @media (min-width:992px) and (max-width:1199px) { .hidden-md { - display: none !important + display: none } } @media (min-width:1200px) { .hidden-lg { - display: none !important + display: none } } .visible-print { - display: none !important + display: none } @media print { .visible-print { - display: block !important + display: block } table.visible-print { @@ -6974,46 +6874,46 @@ button.close { } tr.visible-print { - display: table-row !important + display: table-row } th.visible-print, td.visible-print { - display: table-cell !important + display: table-cell } } .visible-print-block { - display: none !important + display: none } @media print { .visible-print-block { - display: block !important + display: block } } .visible-print-inline { - display: none !important + display: none } @media print { .visible-print-inline { - display: inline !important + display: inline } } .visible-print-inline-block { - display: none !important + display: none } @media print { .visible-print-inline-block { - display: inline-block !important + display: inline-block } } @media print { .hidden-print { - display: none !important + display: none } } diff --git a/themes/hipster-gray.css b/themes/hipster-gray.css index e3d14da0..65330431 100644 --- a/themes/hipster-gray.css +++ b/themes/hipster-gray.css @@ -3,10 +3,6 @@ * { margin: 0; padding: 0; - -webkit-transition: all 0.2s ease-out; - -moz-transition: all 0.2s ease-out; - -o-transition: all 0.2s ease-out; - -ms-transition: all 0.2s ease-out; transition: all 0.2s ease-out; } @@ -17,7 +13,6 @@ body { line-height: 170%; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; - font-smoothing: antialiased; overflow-y: auto; padding: 20pt; } @@ -201,7 +196,6 @@ footer a:hover, footer a:focus, footer a:active { footer p { background-position: 0 1px; - -webkit-background-size: 9px; background-size: 11px; margin-left: -10pt; padding-left: 10pt; @@ -214,7 +208,7 @@ footer a:hover, footer a:focus, footer a:active { } * { - color: black !important; + color: black; } a[href^="http"]:after { @@ -273,7 +267,6 @@ footer a:hover, footer a:focus, footer a:active { footer p { background-position: 0 1px; - -webkit-background-size: 11px; background-size: 11px; margin-left: -12pt; padding-left: 12pt; diff --git a/themes/hmt-blue.css b/themes/hmt-blue.css index 8b8c185b..bcff4b00 100644 --- a/themes/hmt-blue.css +++ b/themes/hmt-blue.css @@ -10,8 +10,7 @@ button, hr, input { html { font-family: sans-serif; line-height: 1.15; - -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100% + text-size-adjust: 100%; } body { @@ -124,7 +123,7 @@ button, select { } [type=submit], [type=reset], button, html [type=button] { - -webkit-appearance: button + appearance: button } [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner { @@ -165,12 +164,12 @@ textarea { } [type=search] { - -webkit-appearance: textfield; + appearance: textfield; outline-offset: -2px } [type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration { - -webkit-appearance: none + appearance: none } ::-webkit-input-placeholder { @@ -179,7 +178,7 @@ textarea { } ::-webkit-file-upload-button { - -webkit-appearance: button; + appearance: button; font: inherit } @@ -314,8 +313,6 @@ article>p:last-child { border-left: 15px solid #3392cd; border-right: 2px solid #3392cd; /*Box Shadow - (Optional)*/ - -moz-box-shadow: 2px 2px 15px #ccc; - -webkit-box-shadow: 2px 2px 15px #ccc; box-shadow: 2px 2px 15px #ccc; } diff --git a/themes/material-amber.css b/themes/material-amber.css index 7d1cf571..11bdc338 100644 --- a/themes/material-amber.css +++ b/themes/material-amber.css @@ -19,7 +19,6 @@ article { display: block; margin: 1em; box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out; position: relative; max-width: 800px; @@ -100,7 +99,6 @@ footer a:hover { float: right; border-radius: 100%; box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out } diff --git a/themes/material-blue.css b/themes/material-blue.css index 84e5af23..6b847a55 100644 --- a/themes/material-blue.css +++ b/themes/material-blue.css @@ -19,7 +19,6 @@ article { display: block; margin: 1em; box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out; position: relative; max-width: 800px; @@ -100,7 +99,6 @@ footer a:hover { float: right; border-radius: 100%; box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out } diff --git a/themes/material-brown.css b/themes/material-brown.css index 0b7f04d1..7e2f6729 100644 --- a/themes/material-brown.css +++ b/themes/material-brown.css @@ -19,7 +19,6 @@ article { display: block; margin: 1em; box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out; position: relative; max-width: 800px; @@ -100,7 +99,6 @@ footer a:hover { float: right; border-radius: 100%; box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out } diff --git a/themes/material-cyan.css b/themes/material-cyan.css index 1118138a..ac1bae7c 100644 --- a/themes/material-cyan.css +++ b/themes/material-cyan.css @@ -19,7 +19,6 @@ article { display: block; margin: 1em; box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out; position: relative; max-width: 800px; @@ -100,7 +99,6 @@ footer a:hover { float: right; border-radius: 100%; box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out } diff --git a/themes/material-deep-orange.css b/themes/material-deep-orange.css index be5d8ab6..d4bb1d6a 100644 --- a/themes/material-deep-orange.css +++ b/themes/material-deep-orange.css @@ -19,7 +19,6 @@ article { display: block; margin: 1em; box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out; position: relative; max-width: 800px; @@ -100,7 +99,6 @@ footer a:hover { float: right; border-radius: 100%; box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out } diff --git a/themes/material-deep-purple.css b/themes/material-deep-purple.css index ee3d92ba..8c92912b 100644 --- a/themes/material-deep-purple.css +++ b/themes/material-deep-purple.css @@ -19,7 +19,6 @@ article { display: block; margin: 1em; box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out; position: relative; max-width: 800px; @@ -100,7 +99,6 @@ footer a:hover { float: right; border-radius: 100%; box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out } diff --git a/themes/material-green.css b/themes/material-green.css index 9c8f409c..a4c041ed 100644 --- a/themes/material-green.css +++ b/themes/material-green.css @@ -19,7 +19,6 @@ article { display: block; margin: 1em; box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out; position: relative; max-width: 800px; @@ -100,7 +99,6 @@ footer a:hover { float: right; border-radius: 100%; box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out } diff --git a/themes/material-grey.css b/themes/material-grey.css index 133e3d6a..386214a0 100644 --- a/themes/material-grey.css +++ b/themes/material-grey.css @@ -19,7 +19,6 @@ article { display: block; margin: 1em; box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out; position: relative; max-width: 800px; @@ -100,7 +99,6 @@ footer a:hover { float: right; border-radius: 100%; box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out } diff --git a/themes/material-indigo.css b/themes/material-indigo.css index 1003de67..95e1121c 100644 --- a/themes/material-indigo.css +++ b/themes/material-indigo.css @@ -19,7 +19,6 @@ article { display: block; margin: 1em; box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out; position: relative; max-width: 800px; @@ -100,7 +99,6 @@ footer a:hover { float: right; border-radius: 100%; box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out } diff --git a/themes/material-light-blue.css b/themes/material-light-blue.css index e544e52d..2699530e 100644 --- a/themes/material-light-blue.css +++ b/themes/material-light-blue.css @@ -19,7 +19,6 @@ article { display: block; margin: 1em; box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out; position: relative; max-width: 800px; @@ -100,7 +99,6 @@ footer a:hover { float: right; border-radius: 100%; box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out } diff --git a/themes/material-light-green.css b/themes/material-light-green.css index be930247..ccdf3cda 100644 --- a/themes/material-light-green.css +++ b/themes/material-light-green.css @@ -19,7 +19,6 @@ article { display: block; margin: 1em; box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out; position: relative; max-width: 800px; @@ -100,7 +99,6 @@ footer a:hover { float: right; border-radius: 100%; box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out } diff --git a/themes/material-lime.css b/themes/material-lime.css index bf9a0f5a..e9d63673 100644 --- a/themes/material-lime.css +++ b/themes/material-lime.css @@ -19,7 +19,6 @@ article { display: block; margin: 1em; box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out; position: relative; max-width: 800px; @@ -100,7 +99,6 @@ footer a:hover { float: right; border-radius: 100%; box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out } diff --git a/themes/material-orange.css b/themes/material-orange.css index dc7cff08..75378182 100644 --- a/themes/material-orange.css +++ b/themes/material-orange.css @@ -19,7 +19,6 @@ article { display: block; margin: 1em; box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out; position: relative; max-width: 800px; @@ -100,7 +99,6 @@ footer a:hover { float: right; border-radius: 100%; box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out } diff --git a/themes/material-pink.css b/themes/material-pink.css index 1040916c..996d8dd6 100644 --- a/themes/material-pink.css +++ b/themes/material-pink.css @@ -19,7 +19,6 @@ article { display: block; margin: 1em; box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out; position: relative; max-width: 800px; @@ -100,7 +99,6 @@ footer a:hover { float: right; border-radius: 100%; box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out } diff --git a/themes/material-purple.css b/themes/material-purple.css index 7dd4df53..ff168e32 100644 --- a/themes/material-purple.css +++ b/themes/material-purple.css @@ -19,7 +19,6 @@ article { display: block; margin: 1em; box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out; position: relative; max-width: 800px; @@ -100,7 +99,6 @@ footer a:hover { float: right; border-radius: 100%; box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out } diff --git a/themes/material-red.css b/themes/material-red.css index 9cdd1345..2b7ebbf1 100644 --- a/themes/material-red.css +++ b/themes/material-red.css @@ -19,7 +19,6 @@ article { display: block; margin: 1em; box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out; position: relative; max-width: 800px; @@ -100,7 +99,6 @@ footer a:hover { float: right; border-radius: 100%; box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out } diff --git a/themes/material-teal.css b/themes/material-teal.css index d435f3e5..b2cde091 100644 --- a/themes/material-teal.css +++ b/themes/material-teal.css @@ -19,7 +19,6 @@ article { display: block; margin: 1em; box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out; position: relative; max-width: 800px; @@ -100,7 +99,6 @@ footer a:hover { float: right; border-radius: 100%; box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out } diff --git a/themes/material-yellow.css b/themes/material-yellow.css index 5ac59d8a..97143621 100644 --- a/themes/material-yellow.css +++ b/themes/material-yellow.css @@ -19,7 +19,6 @@ article { display: block; margin: 1em; box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out; position: relative; max-width: 800px; @@ -100,7 +99,6 @@ footer a:hover { float: right; border-radius: 100%; box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out } diff --git a/themes/material.css b/themes/material.css index 74bdabd9..db45dfd7 100644 --- a/themes/material.css +++ b/themes/material.css @@ -19,7 +19,6 @@ article { display: block; margin: 1em; box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out; position: relative; max-width: 800px; @@ -100,7 +99,6 @@ footer a:hover { float: right; border-radius: 100%; box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - -webkit-transition: box-shadow .2s ease-in-out; transition: box-shadow .2s ease-in-out } diff --git a/themes/mitserrat.css b/themes/mitserrat.css index 12f5c172..6ea80eba 100644 --- a/themes/mitserrat.css +++ b/themes/mitserrat.css @@ -68,6 +68,4 @@ p:first-of-type, footer { width: 80px; margin-top: 72px; border-radius: 40px; - -webkit-border-radius: 40px; - -moz-border-radius: 40px; } diff --git a/themes/open-sans.css b/themes/open-sans.css index 23109802..cc812e74 100644 --- a/themes/open-sans.css +++ b/themes/open-sans.css @@ -43,10 +43,6 @@ a { color: #0a0a0b; text-decoration: none; border-bottom: 3px solid rgba(10, 10, 11, 1); - -webkit-transition: .15s ease; - -moz-transition: .15s ease; - -ms-transition: .15s ease; - -o-transition: .15s ease; transition: .15s ease } diff --git a/themes/orange.css b/themes/orange.css index a72e04fc..4d14eead 100644 --- a/themes/orange.css +++ b/themes/orange.css @@ -22,9 +22,7 @@ article { width: 85%; margin: 80px auto; border-radius: 10px; - -moz-border-radius: 10px; box-shadow: -1px 1px 20px rgba(30, 30, 30, 0.5), 2px 1px 15px rgba(80, 80, 80, 0.4), inset 0 0 10px rgba(50, 50, 50, 0.7); - -webkit-box-shadow: -1px 1px 20px rgba(30, 30, 30, 0.5), 2px 1px 15px rgba(80, 80, 80, 0.4), inset 0 0 10px rgba(50, 50, 50, 0.7) } article h1 { @@ -34,9 +32,7 @@ article h1 { margin: 0; padding: 19px; border-radius: 10px; - -moz-border-radius: 10px; box-shadow: inset 0 0 10px rgba(70, 70, 70, 0.2), inset 1px 0 10px rgba(50, 50, 50, 0.3), inset -1px 0 10px rgba(50, 50, 50, 0.3); - -webkit-box-shadow: inset 0 0 10px rgba(70, 70, 70, 0.2), inset 1px 0 10px rgba(50, 50, 50, 0.3), inset -1px 0 10px rgba(50, 50, 50, 0.3) } article p { @@ -52,8 +48,6 @@ footer { border-top: 1px solid #7A7A00; background: #333300; user-select: none; - -moz-user-select: none; - -webkit-user-select: none } footer p, footer a { diff --git a/themes/silver-style.css b/themes/silver-style.css index bade0f5a..fed9f9ee 100644 --- a/themes/silver-style.css +++ b/themes/silver-style.css @@ -19,10 +19,8 @@ article { border-right: 1.5px solid #9ab8ed; padding: 17px; border-radius: 1%; - -webkit-box-shadow: 3px 0px 20px -2px #7ba5e4; - -moz-box-shadow: 3px 0px 20px -2px #7ba5e4; box-shadow: 3px 0px 20px -2px #7ba5e4; - background: -webkit-radial-gradient(50% 0%, 50% 15px, #EB8CF2 0%, white 100%); + background: radial-gradient(50% 0%, 50% 15px, #EB8CF2 0%, white 100%); } article, footer { diff --git a/yarn.lock b/yarn.lock index 37b0fc0b1ef21712ec1529a5d5fb4ebd415e5465..8bc948ac197e878c5c0860fe1baafe74b7d5f7bb 100644 GIT binary patch delta 44182 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 From 3d9f71cc1089a98670955ad9bbeeb6afd4d2ce1e Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Fri, 31 May 2019 16:41:10 +1200 Subject: [PATCH 08/53] Use HTTPS links --- CODE_OF_CONDUCT.md | 2 +- LICENSE | 2 +- licenses/components/header.ejs | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 01b8644f..550cb1d3 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -19,4 +19,4 @@ This code of conduct applies both within project spaces and in public spaces whe Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers. -This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.2.0, available at [http://contributor-covenant.org/version/1/2/0/](http://contributor-covenant.org/version/1/2/0/) +This Code of Conduct is adapted from the [Contributor Covenant](https://contributor-covenant.org), version 1.2.0, available at [http://contributor-covenant.org/version/1/2/0/](https://contributor-covenant.org/version/1/2/0/) diff --git a/LICENSE b/LICENSE index ff462117..597139e6 100644 --- a/LICENSE +++ b/LICENSE @@ -1 +1 @@ -SEE: http://rem.mit-license.org/ +SEE: https://rem.mit-license.org/ diff --git a/licenses/components/header.ejs b/licenses/components/header.ejs index ab5dbb4f..0b4f192d 100644 --- a/licenses/components/header.ejs +++ b/licenses/components/header.ejs @@ -14,9 +14,9 @@ By adding a new JSON file to the users directory, it will yield an MIT License on a CNAME, for example: - { "copyright": "Remy Sharp, http://remysharp.com" } + { "copyright": "Remy Sharp, https://remysharp.com" } - Means visiting http://rem.mit-license.org/ shows "Remy Sharp" as the + Means visiting https://rem.mit-license.org/ shows "Remy Sharp" as the copyright holder. Namespaces will be on a first come first serve basis, and I'm open to folk joining the GitHub project. From 5a3f90adc302f25fa28983b701483ae70ff86221 Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Fri, 31 May 2019 19:01:51 +1200 Subject: [PATCH 09/53] Start implementing API --- CONTRIBUTING.md | 4 ++-- package.json | 2 ++ server.ts | 36 ++++++++++++++++++++++++++++++++++-- test.js | 8 +++++--- users/localhost.json | 8 ++++++++ users/lucasmartins.json | 6 +++--- users/lucasmartins.json-old | 1 - users/richie-bendall.json | 14 +++++++------- users/richiebendall.json | 14 +++++++------- users/richienb.json | 12 ++++++------ yarn.lock | Bin 135604 -> 143980 bytes 11 files changed, 74 insertions(+), 31 deletions(-) create mode 100644 users/localhost.json delete mode 100644 users/lucasmartins.json-old diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 40558791..94eafd3b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,11 +2,11 @@ If you are a collaborator (with push permissions), you can merge any open PR with the following conditions: -1. It passes the JSON validity test (this is a github integration in travis) +1. It passes the JSON validity test (this is a GitHub integration in Travis CI) 2. Merge anything that adds or updates a `.json` file If you're unsure, cc @remy into the PR with a question and we can work out what to do. -The site is hosted on heroku and will automatically deploy merges into master, which means once a PR is merged, it'll be live shortly thereafter (so there's nothing to do 🎉). +The site is hosted on Heroku and will automatically deploy merges into master, which means once a PR is merged, it'll be live shortly thereafter (so there's nothing to do 🎉). Also, thank you, your help is appreciated 💙 diff --git a/package.json b/package.json index 2db46261..468c28dd 100644 --- a/package.json +++ b/package.json @@ -18,6 +18,8 @@ }, "license": "SEE LICENSE IN LICENSE", "dependencies": { + "@octokit/rest": "^16.27.3", + "btoa": "^1.2.1", "compression": "^1.7.4", "dayjs": "^1.8.14", "ejs": "^2.6.1", diff --git a/server.ts b/server.ts index fd7f2077..6084c5c1 100644 --- a/server.ts +++ b/server.ts @@ -10,6 +10,15 @@ import ejs = require('ejs') import { yearNow, stripTags, trimArray } from './util' import HTML = require('node-html-parser') import postcssMiddleware = require('postcss-middleware') +import btoa = require('btoa') + +const github = require("@octokit/rest")({ + // GitHub personal access token + auth: process.env.github_token, + + // User agent with version from package.json + userAgent: `mit-license v${require('./package.json').version}`, +}) // Prepare application const app = express() @@ -35,9 +44,32 @@ app.use((_req, res, next) => { next() }) +// Parse URL-encoded bodies (as sent by HTML forms) +// app.use(express.urlencoded({ extended: true })) +// +// Parse JSON bodies (as sent by API clients) +app.use(express.json()) + // HTTP POST API -app.post('/', (_req, res) => { - res.end() +app.post('/', (req, res) => { + // Get differnet parts of hostname (example: remy.mit-license.org -> ['remy', 'mit-license', 'org']) + const params = req.hostname.split(".") + + console.log(req.body) + + // If there isn't enough part of the hostname + if (params.length < 2) res.status(400).send("Please specify a subdomain in the URL.") + + res.json(req.body) + return + + github.repos.createFile({ + owner: "remy", + repo: "mit-license", + path: `users/${params[0]}.json`, + message: `Automated creation of user ${params[0]}.`, + content: btoa() + }) }) // Any other HTTP GET request diff --git a/test.js b/test.js index 7f9408fc..dcda76ae 100644 --- a/test.js +++ b/test.js @@ -1,13 +1,15 @@ #!/bin/env node +const path = require('path') const fs = require('fs') const users = fs.readdirSync('users') -users.forEach(function(user) { +users.forEach(async user => { try { - const content = fs.readFileSync('users/' + user).toString() + const content = fs.readFileSync(path.join('users', user), "utf8") JSON.parse(content) } catch (e) { - console.error('Invalid JSON in file: ' + user) + console.error(`Invalid JSON in file: ${user} (${e})`) process.exit(1) } }) +console.log("All JSON valid!") diff --git a/users/localhost.json b/users/localhost.json new file mode 100644 index 00000000..633f98f5 --- /dev/null +++ b/users/localhost.json @@ -0,0 +1,8 @@ +{ + "copyright": "Richie Bendall, https://www.richie-bendall.ml", + "url": "https://www.richie-bendall.ml", + "email": "richiebendall@gmail.com", + "format": "html", + "gravatar": true, + "theme": "material-indigo" +} diff --git a/users/lucasmartins.json b/users/lucasmartins.json index 577d2802..97c9b13c 100644 --- a/users/lucasmartins.json +++ b/users/lucasmartins.json @@ -1,5 +1,5 @@ { - "copyright": "Lucas N Martins", - "url": "http://www.linkedin.com/in/martinslucas", - "theme": "double-windsor" + "copyright": "Lucas N Martins", + "url": "https://www.linkedin.com/in/martinslucas", + "theme": "double-windsor" } diff --git a/users/lucasmartins.json-old b/users/lucasmartins.json-old deleted file mode 100644 index 02865a2b..00000000 --- a/users/lucasmartins.json-old +++ /dev/null @@ -1 +0,0 @@ -{"copyright":"Lucas N Martins","url":"http:\/\/www.linkedin.com\/in\/martinslucas","theme":"double-windsor"} \ No newline at end of file diff --git a/users/richie-bendall.json b/users/richie-bendall.json index 45005d0c..66dda92d 100644 --- a/users/richie-bendall.json +++ b/users/richie-bendall.json @@ -1,8 +1,8 @@ { - "copyright": "Richie Bendall, https://www.richie-bendall.ml", - "url": "https://www.richie-bendall.ml", - "email": "richiebendall@gmail.com", - "format": "html", - "gravatar": true, - "theme": "material-indigo" -} \ No newline at end of file + "copyright": "Richie Bendall, https://www.richie-bendall.ml", + "url": "https://www.richie-bendall.ml", + "email": "richiebendall@gmail.com", + "format": "html", + "gravatar": true, + "theme": "material-indigo" +} diff --git a/users/richiebendall.json b/users/richiebendall.json index 45005d0c..66dda92d 100644 --- a/users/richiebendall.json +++ b/users/richiebendall.json @@ -1,8 +1,8 @@ { - "copyright": "Richie Bendall, https://www.richie-bendall.ml", - "url": "https://www.richie-bendall.ml", - "email": "richiebendall@gmail.com", - "format": "html", - "gravatar": true, - "theme": "material-indigo" -} \ No newline at end of file + "copyright": "Richie Bendall, https://www.richie-bendall.ml", + "url": "https://www.richie-bendall.ml", + "email": "richiebendall@gmail.com", + "format": "html", + "gravatar": true, + "theme": "material-indigo" +} diff --git a/users/richienb.json b/users/richienb.json index 633f98f5..66dda92d 100644 --- a/users/richienb.json +++ b/users/richienb.json @@ -1,8 +1,8 @@ { - "copyright": "Richie Bendall, https://www.richie-bendall.ml", - "url": "https://www.richie-bendall.ml", - "email": "richiebendall@gmail.com", - "format": "html", - "gravatar": true, - "theme": "material-indigo" + "copyright": "Richie Bendall, https://www.richie-bendall.ml", + "url": "https://www.richie-bendall.ml", + "email": "richiebendall@gmail.com", + "format": "html", + "gravatar": true, + "theme": "material-indigo" } diff --git a/yarn.lock b/yarn.lock index 8bc948ac197e878c5c0860fe1baafe74b7d5f7bb..7f1e207a4f69aee2aa49c041b51b19d408f27cc9 100644 GIT binary patch delta 6101 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 yvj$eTTVH?kd2hD`y#$?TFJ1YakNq!v&3<$M delta 199 zcmV;&0672b~vrBS=6_e43x3iLp^a_`K zGXW2?tCfcuv*WQzBM5A7Vl84}b7hy0Sph_|q1L=Ix0wn7kOG%?zyUqCcntyf1-Eb% z0eTCUvmgQ0w^1SiDFe4gCIJNlw_7R!CL6biMgheKw?a<=z5};6Q~@6Xw_{cT4+WRF zTmi(lLS6y?2$!b?0Y0~oX92-Tw}Y_(%0#yl_W`vew=W$6q5`*|AOau^xA`psa|HM> BOI!c| From 85180853dce4504dc2d7831d8fdd2c60ab791534 Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Fri, 31 May 2019 19:04:59 +1200 Subject: [PATCH 10/53] Format all user files --- users/$abas.json | 14 +++++++------- users/1000ch.json | 6 +++++- users/10kb.json | 7 ++++++- users/135yshr.json | 12 ++++++------ users/15minuteslate.json | 8 +++++++- users/1natsu172.json | 10 +++++----- users/1up.json | 7 ++++++- users/2357gi.json | 8 ++++---- users/284km.json | 6 +++--- users/2nate.json | 7 ++++++- users/321maker.json | 7 ++++++- users/360slider.json | 7 ++++++- users/3846.json | 5 ++++- users/3846masa.json | 5 ++++- users/4soft.json | 4 +++- users/4thace.json | 7 ++++++- users/5310.json | 8 +++++++- users/5509.json | 6 +++--- users/59.json | 6 +++++- users/59naga.json | 5 ++++- users/623hs.json | 6 +++++- users/6n38.json | 8 ++++---- users/844196.json | 5 ++++- users/9joneg.json | 4 +++- users/ArvinH.json | 10 +++++----- users/BrentonCozby.json | 12 ++++++------ users/DanielArthurUK.json | 8 ++++---- users/SITZ.json | 2 +- users/a-tech.json | 4 +++- users/a.json | 7 ++++++- users/aaaaaa.json | 7 ++++++- users/aarjithn.json | 7 ++++++- users/aaron.json | 2 +- users/aaroncaito.json | 7 ++++++- users/aarontrostle.json | 10 +++++----- users/aashutoshrathi.json | 12 ++++++------ users/aayush.json | 8 ++++---- users/ab2d.json | 4 +++- users/abas.json | 14 +++++++------- users/abensur.json | 6 +++--- users/abhisekp.json | 8 ++++---- users/abhshkdz.json | 8 ++++---- users/abitgone.json | 8 +++++++- users/abnersajr.json | 7 ++++++- users/abovethewater.json | 7 ++++++- users/abrambleninja.json | 5 ++++- users/abs.json | 8 ++++---- users/abuasmaa.json | 4 +++- users/abulava.json | 7 ++++++- users/ac.json | 6 +++++- users/acaua.json | 6 +++++- users/acenode.json | 7 ++++++- users/achilles.json | 7 ++++++- users/achun.json | 4 +++- users/aclemen1.json | 7 ++++++- users/acolchado.json | 4 +++- users/acollington.json | 8 ++++---- users/adafruit.json | 4 +++- users/adam-lynch.json | 7 ++++++- users/adam.json | 10 +++++----- users/adamh.json | 5 ++++- users/adampritchard.json | 4 +++- users/adamreeve.json | 6 +++++- users/adamroberts.json | 4 +++- users/adi.json | 4 ++-- users/aditya.json | 7 ++++++- users/adjohnson916.json | 6 +++--- users/adopi.json | 6 +++++- users/adr1enbe4udou1n.json | 8 ++++---- users/adtaylor.json | 4 ++-- users/adthul.json | 7 ++++++- users/adultlink.json | 8 ++++---- users/ael.json | 5 ++++- users/aen.json | 4 +++- users/aendrew.json | 6 +++++- users/aereal.json | 6 +++--- users/aergonaut.json | 5 ++++- users/aetheris.json | 5 ++++- users/af.json | 10 +++++----- users/afein.json | 5 ++++- users/afghah.json | 4 +++- users/afiore.json | 4 +++- users/afonsof.json | 8 +++++++- users/agentmilindu.json | 8 +++++++- users/agnium.json | 10 +++++----- users/ago6e.json | 6 +++++- users/ahaasler.json | 12 ++++++------ users/aheissenberger.json | 4 +++- users/ahluntang.json | 7 ++++++- users/ahmet.json | 6 +++++- users/ahsanhabib.json | 4 +++- users/ai-create-team.json | 6 +++--- users/aike.json | 5 ++++- users/ailen0ada.json | 5 ++++- users/airtonix.json | 7 ++++++- users/aj9.json | 5 ++++- users/ajay.json | 4 +++- users/ajaykarwal.json | 8 ++++---- users/ajenjo.json | 10 +++++----- users/ajmal.json | 5 ++++- users/ajmichael.json | 5 ++++- users/ajsquared.json | 7 ++++++- users/ak.json | 4 +++- users/akash.json | 7 ++++++- users/akervern.json | 4 +++- users/akizor.json | 10 +++++----- users/akkartik.json | 4 +++- users/akky.json | 4 +++- users/aknosis.json | 5 ++++- users/akshay.json | 4 +++- users/akshaymhatre.json | 4 +++- users/alberto.json | 10 +++++----- users/albertofdzm.json | 8 +++++++- users/albertogasparin.json | 4 +++- users/alco.json | 4 +++- users/alcore.json | 9 ++++++++- users/aldenquimby.json | 7 ++++++- users/aldo.json | 8 ++++---- users/aldoborrero.json | 4 +++- users/ale.json | 7 ++++++- users/aleksi.json | 4 +++- users/alessioalex.json | 6 +++++- users/aleung.json | 6 +++++- users/alex.json | 4 +++- users/alexaaronfrancisco.json | 4 +++- users/alexander.json | 6 +++++- users/alexb.json | 6 +++++- users/alexgleason.json | 4 +++- users/alexh.json | 7 ++++++- users/alexluke.json | 6 +++++- users/alexowl.json | 12 ++++++------ users/ali-sdk.json | 7 ++++++- users/ali.json | 7 ++++++- users/alias.json | 7 ++++++- users/alibabatajine.json | 7 ++++++- users/aliel.json | 7 ++++++- users/alimd.json | 10 +++++----- users/alisch.json | 7 ++++++- users/alisdair.json | 4 +++- users/allthingssmitty.json | 8 ++++---- users/almad.json | 8 +++++++- users/alno.json | 6 +++++- users/alphawhy.json | 4 +++- users/altun.json | 7 ++++++- users/amaan.json | 4 +++- users/amarlearning.json | 10 +++++----- users/amiranda.json | 4 +++- users/amitmerchant1990.json | 8 ++++---- users/amjad.json | 10 +++++----- users/analogj.json | 4 +++- users/anant.json | 4 +++- users/ancy.json | 10 +++++----- users/and3k5.json | 4 +++- users/andersonaguiar.json | 6 +++++- users/andre.json | 4 +++- users/andreasonny.json | 8 +++++++- users/andreif.json | 6 +++++- users/andreisebastianc.json | 6 +++--- users/andrel.json | 8 +++++++- users/andreloureiro.json | 7 ++++++- users/andrew.json | 6 +++++- users/andreyknupp.json | 7 ++++++- users/andrezero.json | 7 ++++++- users/androidnix.json | 7 ++++++- users/andrsd.json | 10 +++++----- users/andxyz.json | 7 ++++++- users/andyedinborough.json | 4 +++- users/andystubbs.json | 4 +++- users/angrychimp.json | 8 +++++++- users/angus.json | 4 +++- users/angusm.json | 4 +++- users/anish.json | 7 ++++++- users/anishathalye.json | 7 ++++++- users/ankur.json | 8 +++++++- users/anmoljagetia.json | 7 ++++++- users/anon.json | 9 ++++++++- users/anovsiradj.json | 8 ++++---- users/anrodon.json | 8 ++++---- users/anshul.json | 5 ++++- users/anthkris.json | 12 ++++++------ users/anthony.json | 8 +++++++- users/antimatter15.json | 6 +++++- users/anton.json | 4 +++- users/antonhalim.json | 7 ++++++- users/antonholmgren.json | 7 ++++++- users/antonio.json | 6 +++--- users/antonybailey.json | 7 ++++++- users/anunay.json | 7 ++++++- users/anuraj.json | 8 ++++---- users/anwarjaved.json | 8 +++++++- users/anze.json | 7 ++++++- users/apnerve.json | 4 +++- users/apollojustice.json | 8 +++++++- users/aponxi.json | 8 +++++++- users/apopelo.json | 4 +++- users/appsattic.json | 6 +++--- users/apriendeau.json | 6 +++++- users/aps.json | 8 ++++---- users/ar.json | 4 +++- users/arashmilani.json | 10 +++++----- users/arizzol.json | 4 +++- users/arjun.json | 6 +++++- users/arlo.json | 4 ++-- users/armpit.json | 4 +++- users/armujahid.json | 2 +- users/arnavroy.json | 7 ++++++- users/arroxa.json | 5 ++++- users/artemave.json | 4 +++- users/arthurfigueiredo.json | 7 ++++++- users/arthurguy.json | 4 +++- users/artnc.json | 4 +++- users/aruhan.json | 4 +++- users/arulrajnet.json | 8 ++++---- users/arunoda.json | 4 +++- users/arvid.json | 5 ++++- users/asante.json | 4 +++- users/asbubam.json | 7 ++++++- users/aschn.json | 4 +++- users/asdbasjdbaskjd.json | 4 +++- users/asdbjasbdja.json | 4 +++- users/aseemk.json | 6 +++++- users/ashchan.json | 6 +++++- users/ashtonwar.json | 4 +++- users/ask11.json | 6 +++++- users/askesian.json | 6 +++++- users/asolkar.json | 6 +++--- users/ata.json | 6 +++--- users/atbox.json | 12 ++++++------ users/atelierbram.json | 6 +++--- users/atilafassina.json | 10 +++++----- users/atran.json | 5 ++++- users/ats.json | 4 +++- users/audreyr.json | 7 ++++++- users/aus3ris.json | 7 ++++++- users/aus3ys.json | 5 ++++- users/austegard.json | 6 +++--- users/austin.json | 7 ++++++- users/avdaredevil.json | 8 +++++++- users/avelino.json | 7 ++++++- users/average-studios.json | 4 +++- users/avidal.json | 7 ++++++- users/avidenie.json | 7 ++++++- users/avm99963.json | 8 +++++++- users/awles.json | 10 +++++----- users/axe312.json | 4 +++- users/axelav.json | 7 ++++++- users/axisthemes.json | 6 +++++- users/axot.json | 8 ++++---- users/axross.json | 10 +++++----- users/ayahya.json | 9 ++++++++- users/ayesh.json | 5 ++++- users/azamara.json | 5 ++++- users/azder.json | 6 +++++- users/azizur.json | 4 +++- users/azlab.json | 4 +++- users/azu.json | 5 ++++- users/b.json | 6 +++--- users/b4b4r07.json | 7 ++++++- users/baenziger-hug.json | 7 ++++++- users/bai.json | 4 ++-- users/balbeko.json | 8 ++++---- users/bamorim.json | 7 ++++++- users/bankfacil.json | 5 ++++- users/banyan.json | 8 ++++---- users/bardi.json | 7 ++++++- users/barnik.json | 6 +++--- users/bartaz.json | 4 +++- users/bat.json | 4 +++- users/batu.json | 8 ++++---- users/bauglir.json | 7 ++++++- users/bazilio.json | 8 +++++++- users/bbuecherl.json | 8 +++++++- users/bcse.json | 6 +++++- users/bdukes.json | 5 ++++- users/bear.json | 7 ++++++- users/becevka.json | 8 +++++++- users/bee.json | 6 +++++- users/beedaan.json | 7 ++++++- users/beingtomgreen.json | 7 ++++++- users/beintoo.json | 6 +++++- users/belldandu.json | 8 ++++---- users/beloi.json | 5 ++++- users/ben.json | 4 +++- users/benatkin.json | 4 +++- users/benbarber.json | 4 ++-- users/benizi.json | 5 ++++- users/benjie.json | 4 +++- users/benniemosher.json | 4 +++- users/bensarmiento.json | 10 +++++----- users/benspotatoes.json | 7 ++++++- users/berbaquero.json | 4 +++- users/berngfilho.json | 7 ++++++- users/bescott.json | 10 +++++----- users/beshr.json | 6 +++++- users/besson.json | 8 +++++++- users/bethanyr.json | 7 ++++++- users/betomuniz.json | 4 +++- users/beyondweb.json | 5 ++++- users/bezoerb.json | 5 ++++- users/bfoxwell.json | 4 +++- users/bh.json | 7 ++++++- users/bharath063.json | 4 +++- users/bigab.json | 4 +++- users/bih.json | 6 +++++- users/bilger.json | 7 ++++++- users/biomassives.json | 4 +++- users/bipbop.json | 7 ++++++- users/birdi.json | 8 +++++++- users/birkof.json | 12 ++++++------ users/bitbonsai.json | 9 ++++++++- users/bitmxittz.json | 10 +++++----- users/bjeanes.json | 7 ++++++- users/blacklite.json | 8 +++++++- users/blahah.json | 4 +++- users/blake.json | 7 ++++++- users/blaulan.json | 7 ++++++- users/blazeworx.json | 7 ++++++- users/blim.json | 4 +++- users/blitzkraft.json | 8 ++++---- users/blueberrystream.json | 10 +++++----- users/blueimp.json | 5 ++++- users/blunderboy.json | 7 ++++++- users/bmaeser.json | 4 ++-- users/bmelton.json | 4 +++- users/bmintz.json | 5 ++++- users/boardintelligence.json | 6 +++++- users/bobby-tables.json | 5 ++++- users/bobuk.json | 6 +++++- users/bobylito.json | 5 ++++- users/boj.json | 7 ++++++- users/boldoutlook.json | 7 ++++++- users/bookworm.json | 4 +++- users/boopathi.json | 7 ++++++- users/boska.json | 6 +++--- users/bottom.json | 8 ++++---- users/bowsersenior.json | 7 ++++++- users/bozd4g.json | 10 +++++----- users/bracke.json | 4 +++- users/brandon.json | 8 ++++---- users/brandonhimpfen.json | 7 ++++++- users/brandtleymcminn.json | 14 +++++++------- users/brasil-js.json | 8 +++++++- users/braziljs.json | 7 ++++++- users/bregor.json | 6 +++++- users/brendon.json | 7 ++++++- users/brenopolanski.json | 6 +++++- users/bretonics.json | 8 +++++++- users/brian.json | 5 ++++- users/briancarr.json | 6 +++++- users/brianmhunt.json | 6 +++++- users/briba.json | 7 ++++++- users/bricebou.json | 4 +++- users/briends.json | 4 +++- users/bripkens.json | 7 ++++++- users/bro.json | 6 +++--- users/brummelte.json | 8 +++++++- users/brunowego.json | 7 ++++++- users/brutalhonesty.json | 6 +++++- users/bryan.json | 8 ++++---- users/bsilivestru.json | 5 ++++- users/bubblecubestudios.json | 8 +++++++- users/bucho.json | 5 ++++- users/buell.json | 7 ++++++- users/bugsnag.json | 6 +++--- users/building-blocks.json | 4 +++- users/burriep.json | 6 +++--- users/buttsex.json | 4 +++- users/buzzdecafe.json | 4 +++- users/bwht.json | 4 +++- users/byjml.json | 7 ++++++- users/byscripts.json | 7 ++++++- users/c.json | 7 ++++++- users/c0nfus3d.json | 12 ++++++------ users/c3.json | 4 +++- users/c9s.json | 4 +++- users/cabforward.json | 4 +++- users/cactusjs.json | 6 +++++- users/caedes.json | 4 +++- users/caio-ribeiro-pereira.json | 6 +++++- users/caius.json | 7 ++++++- users/caleb.json | 7 ++++++- users/calvert.json | 4 ++-- users/camspiers.json | 4 ++-- users/cantino.json | 5 ++++- users/cap11235.json | 4 +++- users/caprinova.json | 6 +++++- users/caraya.json | 6 +++--- users/carlesm.json | 7 ++++++- users/carlton.json | 5 ++++- users/carvalho.json | 6 +++++- users/casdr.json | 6 +++++- users/casey.json | 4 +++- users/caseybecking.json | 7 ++++++- users/cassianomon.json | 6 +++++- users/cb.json | 7 ++++++- users/cboone.json | 6 +++++- users/cccheng.json | 7 ++++++- users/cdipietro.json | 10 +++++----- users/cedric-luthi.json | 5 ++++- users/cedx.json | 7 ++++++- users/ceej.json | 9 ++++++++- users/cel.json | 7 ++++++- users/cendaeg.json | 4 +++- users/centerified.json | 6 +++++- users/ceottaki.json | 6 +++--- users/cesardenis.json | 12 ++++++------ users/cfarajpour.json | 4 +++- users/cfddream.json | 7 ++++++- users/cgack.json | 4 +++- users/cgm.json | 7 ++++++- users/cgrinds.json | 5 ++++- users/cheeaun.json | 4 ++-- users/cheer.json | 5 ++++- users/chehsun.json | 4 +++- users/chehsunliu.json | 7 ++++++- users/chevron.json | 9 ++++++++- users/chezou.json | 4 +++- users/chh.json | 7 ++++++- users/chiastolite.json | 4 +++- users/chiayu.json | 7 ++++++- users/chibicode.json | 4 +++- users/chick307.json | 5 ++++- users/chilijung.json | 6 +++--- users/chilts.json | 8 ++++---- users/chintan.json | 4 +++- users/chocoby.json | 6 +++--- users/choly.json | 5 ++++- users/chris.json | 4 +++- users/chrisdasie.json | 4 +++- users/chrisdigital.json | 8 +++++++- users/chrismayer.json | 4 ++-- users/christianbundy.json | 7 ++++++- users/christianwenzel.json | 4 ++-- users/christopher.json | 4 +++- users/christophermanning.json | 5 ++++- users/christophersu.json | 4 +++- users/chromy.json | 7 ++++++- users/chuckcarpenter.json | 5 ++++- users/chute.json | 7 ++++++- users/chuyeow.json | 4 +++- users/ciarand.json | 8 +++++++- users/cicloid.json | 6 +++++- users/cipherdevelopment.json | 7 ++++++- users/cisneiros.json | 9 ++++++++- users/citrusui.json | 6 +++++- users/cjpatoilo.json | 7 ++++++- users/ck.json | 4 +++- users/ckaznocha.json | 8 ++++---- users/ckuijjer.json | 6 +++++- users/clarkeash.json | 9 ++++++++- users/claudiosanches.json | 6 +++++- users/claudiosmweb.json | 6 +++++- users/clayallsopp.json | 4 +++- users/claylo.json | 8 +++++++- users/cleargifltd.json | 4 +++- users/cleentfaar.json | 4 +++- users/clemenst.json | 4 +++- users/clemos.json | 4 +++- users/clinton.json | 8 +++++++- users/clkao.json | 4 +++- users/cloudgenius.json | 7 ++++++- users/clu.json | 4 +++- users/clvrobj.json | 6 +++++- users/cmtoomey.json | 6 +++++- users/cnord.json | 2 +- users/co-sche.json | 4 +++- users/co.json | 4 +++- users/cocoanaut.json | 16 ++++++++-------- users/codecafe.json | 4 +++- users/codeclarity-jquerytools.json | 7 ++++++- users/codeclarity.json | 7 ++++++- users/codeclaritytm.json | 7 ++++++- users/codeflyer.json | 6 +++++- users/codekoala.json | 7 ++++++- users/codemaster.json | 7 ++++++- users/codemaxx.json | 4 ++-- users/codeout.json | 5 ++++- users/coderarity.json | 6 +++++- users/codespaces.json | 6 +++++- users/codesquire.json | 9 ++++++++- users/cogsy.json | 6 +++++- users/colingourlay.json | 4 +++- users/colinmarshall.json | 7 ++++++- users/colinodell.json | 7 ++++++- users/colken.json | 4 +++- users/collin.json | 7 ++++++- users/colstrom.json | 7 ++++++- users/conradk.json | 7 ++++++- users/constellation.json | 8 ++++---- users/cookieo9.json | 4 ++-- users/coredumpcat.json | 4 ++-- users/cork-labs.json | 7 ++++++- users/corpix.json | 4 +++- users/cos.json | 8 +++++++- users/cotapreco.json | 4 +++- users/cotorusso.json | 7 ++++++- users/couac.json | 4 +++- users/couch.json | 7 ++++++- users/count0.json | 5 ++++- users/couto.json | 8 ++++---- users/coyotevz.json | 7 ++++++- users/cpage.json | 6 +++++- users/cptmashek.json | 8 +++++++- users/craveytrain.json | 4 ++-- users/creador.json | 6 +++--- users/creativepunch.json | 6 +++++- users/crossjs.json | 6 +++--- users/crosspop.json | 5 ++++- users/crunch.json | 4 +++- users/cruz.json | 6 +++--- users/cryptographics.json | 7 ++++++- users/cs.json | 4 +++- users/csmacnz.json | 8 +++++++- users/cssgalore.json | 7 ++++++- users/csu.json | 4 +++- users/ctchen.json | 6 +++++- users/ctiml.json | 5 ++++- users/cushon.json | 4 +++- users/cvan.json | 4 +++- users/cyril.json | 7 ++++++- users/cziemba.json | 6 +++++- users/d-ash.json | 6 +++++- users/d.json | 10 +++++----- users/d10.json | 4 ++-- users/d1p.json | 7 ++++++- users/d3fkon.json | 10 +++++----- users/d41d8cd98f00b204e9800998ecf8427e.json | 4 +++- users/dacbarbos.json | 12 ++++++------ users/daimatz.json | 4 +++- users/daishihmr.json | 6 +++++- users/damonoehlman.json | 6 +++++- users/dan.json | 10 +++++----- users/dan9186.json | 6 +++--- users/dana.json | 14 +++++++------- users/danherbert.json | 4 +++- users/danidemi.json | 8 +++++++- users/daniel.json | 6 +++--- users/danielfurze.json | 10 +++++----- users/danielgbullido.json | 8 +++++++- users/danielleining.json | 5 ++++- users/danielpataki.json | 6 +++++- users/danieltorres.json | 4 +++- users/daniguardiola.json | 8 +++++++- users/danijelj.json | 7 ++++++- users/danilobjr.json | 12 ++++++------ users/danilovaz.json | 7 ++++++- users/danjarvis.json | 4 +++- users/danreeves.json | 7 ++++++- users/danro.json | 8 ++++---- users/daramkun.json | 7 ++++++- users/darnley.json | 8 ++++---- users/darrennoble.json | 7 ++++++- users/darthsim.json | 5 ++++- users/dartokloning.json | 6 +++--- users/das.json | 6 +++++- users/datawraith.json | 4 +++- users/davejustice.json | 7 ++++++- users/daveross.json | 7 ++++++- users/davestern.json | 7 ++++++- users/david.json | 4 +++- users/davidcmoulton.json | 5 ++++- users/davidgovea.json | 7 ++++++- users/davidsonfellipe.json | 6 +++++- users/davidzitting.json | 10 +++++----- users/daviesgeek.json | 8 +++++++- users/davisonio.json | 7 ++++++- users/davoclavo.json | 4 +++- users/dawneraq.json | 8 ++++---- users/daxlab.json | 10 +++++----- users/dayflower.json | 5 ++++- users/dayvsonlima.json | 6 +++++- users/dbohdan.json | 4 +++- users/dcgauld.json | 4 +++- users/dch.json | 7 ++++++- users/dcronkite.json | 4 ++-- users/dcunited001.json | 12 ++++++------ users/dd.json | 4 +++- users/ddd.json | 8 ++++---- users/ddeaguiar.json | 4 ++-- users/ddl1st.json | 7 ++++++- users/ddproxy.json | 7 ++++++- users/deacalion.json | 8 +++++++- users/deanlandolt.json | 7 ++++++- users/decached.json | 4 +++- users/decklin.json | 4 +++- users/deecewan.json | 8 ++++---- users/deefour.json | 9 ++++++++- users/deepak.json | 8 ++++---- users/deeplysimple.json | 6 +++++- users/definedcode.json | 7 ++++++- users/degree9.json | 4 +++- users/dehnavi.json | 9 +++++++-- users/deif.json | 4 ++-- users/deirdre.json | 7 ++++++- users/dejal.json | 5 ++++- users/dejay.json | 6 +++++- users/delicatebits.json | 6 +++++- users/delorean.json | 7 ++++++- users/delphidabbler.json | 7 ++++++- users/denbuzze.json | 4 +++- users/denis.json | 4 +++- users/denji.json | 9 ++++++++- users/derek-palmer.json | 2 +- users/derekahmedzai.json | 6 +++++- users/desandro.json | 8 ++++---- users/designa.json | 7 ++++++- users/deuxhuithuit.json | 8 ++++---- users/dev-dipesh.json | 14 +++++++------- users/dev.json | 6 +++++- users/devan.json | 5 ++++- users/devgru.json | 6 +++--- users/devin.json | 6 +++--- users/devinus.json | 7 ++++++- users/devssay.json | 6 +++++- users/dexafree.json | 4 +++- users/dexterind.json | 10 +++++----- users/deyvisonrocha.json | 6 +++++- users/dgoodlad.json | 6 +++++- users/dgt.json | 7 ++++++- users/dh.json | 7 ++++++- users/dhainzl.json | 8 +++++++- users/dhaval.json | 12 ++++++------ users/dhavalkapil.json | 9 ++++++++- users/dhawal.json | 12 ++++++------ users/dhuyy.json | 10 +++++----- users/dhyegofernando.json | 8 +++++++- users/diadatp.json | 6 +++++- users/diessica.json | 8 +++++++- users/digipars.json | 8 +++++++- users/dimakovalevskyi.json | 8 +++++++- users/disposaboy.json | 7 ++++++- users/dissimile.json | 8 ++++---- users/diti.json | 9 ++++++++- users/divyanshu.json | 12 ++++++------ users/djakobik.json | 4 +++- users/djalmaaraujo.json | 7 ++++++- users/djdch.json | 6 +++++- users/djohnson.json | 9 ++++++++- users/dkiyatkin.json | 8 +++++++- users/dlambert.json | 6 +++++- users/dlukov.json | 7 ++++++- users/dmcclccam.json | 7 ++++++- users/dmg.json | 5 ++++- users/dmk.json | 4 +++- users/dmorrison42.json | 4 +++- users/dn.json | 8 ++++---- users/dobtco.json | 4 +++- users/dochang.json | 6 +++--- users/dog2puppy.json | 12 ++++++------ users/dogan.json | 4 +++- users/doiio.json | 4 +++- users/don.json | 4 +++- users/dongilbert.json | 7 ++++++- users/donortega.json | 5 ++++- users/donoskaro.json | 2 +- users/doossy.json | 7 ++++++- users/dopppler.json | 6 +++++- users/dorian.json | 4 +++- users/dotamir.json | 8 ++++---- users/dougborg.json | 8 ++++---- users/dougneiner.json | 6 +++--- users/dragonfly.json | 4 +++- users/dreams.json | 5 ++++- users/dreamysource.json | 12 ++++++------ users/druznek.json | 5 ++++- users/drzax.json | 7 ++++++- users/ds82.json | 7 ++++++- users/dsc.json | 4 +++- users/dsernst.json | 6 +++++- users/dshaw.json | 4 ++-- users/ducky.json | 10 +++++----- users/duncanmcdougall.json | 7 ++++++- users/dusong.json | 7 ++++++- users/dva.json | 7 ++++++- users/dvni.json | 6 +++++- users/dvrein.json | 10 +++++----- users/dwettstein.json | 10 +++++----- users/dwradcliffe.json | 4 ++-- users/dydx.json | 4 +++- users/dylanthomas.json | 10 +++++----- users/dym.json | 11 ++++++----- users/earaujoassis.json | 6 +++++- users/ebith.json | 4 +++- users/echo.json | 6 +++--- users/eddiemonge.json | 4 ++-- users/eddywashere.json | 7 ++++++- users/ederribeiro.json | 8 +++++++- users/ederssouza.json | 10 +++++----- users/edferras.json | 2 +- users/editorconfig.json | 6 +++++- users/edmondmajoriii.json | 10 +++++----- users/edsurge.json | 4 +++- users/eduan.json | 8 +++++++- users/eduardorabelo.json | 10 +++++----- users/eduardostuart.json | 8 +++++++- users/eduncan911.json | 10 +++++----- users/edvinas.json | 4 +++- users/eek.json | 7 ++++++- users/eeleater.json | 4 +++- users/ef-labs.json | 10 +++++----- users/efrainc.json | 10 +++++----- users/efrea2004k.json | 9 ++++++++- users/efreak.json | 9 ++++++++- users/efreak2004.json | 9 ++++++++- users/efries.json | 4 +++- users/egeriis.json | 7 ++++++- users/eggforsale.json | 7 ++++++- users/egoist.json | 9 ++++++++- users/ehealthafrica.json | 6 +++++- users/ehecatl.json | 4 +++- users/ehsan.json | 10 +++++----- users/eib.json | 5 ++++- users/einaru.json | 4 +++- users/ekamil.json | 4 +++- users/ekin.json | 4 +++- users/elegwance.json | 4 +++- users/elektronaut.json | 5 ++++- users/eleven.json | 8 ++++---- users/elgook.json | 4 +++- users/elifiner.json | 7 ++++++- users/elim.json | 5 ++++- users/elisaado.json | 8 ++++---- users/ellekasai.json | 4 +++- users/elliotec.json | 4 +++- users/ellis.json | 2 +- users/elmer.json | 8 +++++++- users/elsknerd.json | 8 ++++---- users/elsmore.json | 7 ++++++- users/emabrey.json | 6 +++++- users/emanuelpessoa.json | 6 +++++- users/emberads.json | 5 ++++- users/emd.json | 6 +++--- users/emir.json | 8 +++++++- users/emiw.json | 7 ++++++- users/emma.json | 4 +++- users/emmanuel.json | 4 +++- users/endel-test.json | 8 +++++++- users/endel.json | 7 ++++++- users/ender.json | 10 +++++----- users/endorama.json | 6 +++--- users/enfos.json | 9 ++++++++- users/englishtown.json | 7 ++++++- users/enigmaticflare.json | 4 +++- users/enov.json | 4 +++- users/entist.json | 4 +++- users/eoc-lover.json | 4 +++- users/eoin.json | 8 ++++---- users/erbesharat.json | 9 ++++++++- users/erbridge.json | 4 +++- users/ere.json | 7 ++++++- users/erfan.json | 9 ++++++++- users/ericcristhiano.json | 5 ++++- users/ericdouglas.json | 6 +++++- users/eriklindebratt.json | 6 +++++- users/erikvorhes.json | 8 ++++---- users/erkobridee.json | 6 +++++- users/errordeveloper.json | 7 ++++++- users/estupendo.json | 7 ++++++- users/ether.json | 6 +++++- users/ethercycle.json | 4 +++- users/evan.json | 4 +++- users/evansolomon.json | 4 +++- users/evenchange4.json | 8 +++++++- users/evenellie.json | 6 +++++- users/evertton.json | 10 +++++----- users/ew.json | 6 +++++- users/ewafford.json | 4 +++- users/ewerton-araujo.json | 6 +++++- users/expbytes.json | 4 +++- users/eyecatchup.json | 7 ++++++- users/f.json | 6 +++++- users/fabdouglas.json | 8 ++++---- users/fabian.json | 7 ++++++- users/fabianbeiner.json | 7 ++++++- users/fabianmoronzirfas.json | 9 ++++++++- users/fabianperez.json | 4 +++- users/fabiantheblind.json | 5 ++++- users/fabien.json | 4 +++- users/fabioluciano.json | 9 ++++++++- users/fabryz.json | 4 +++- users/facundofarias.json | 8 ++++---- users/faeliaso.json | 4 +++- users/fancyguy.json | 4 +++- users/fanestra.json | 6 +++++- users/fannheyward.json | 8 +++++++- users/fauzism.json | 7 ++++++- users/fd.json | 6 +++++- users/fdavidcl.json | 5 ++++- users/fefc.json | 4 +++- users/felipe.json | 5 ++++- users/felipefialho.json | 6 +++++- users/felix-schuetz.json | 8 ++++---- users/felix.json | 7 ++++++- users/felixsanz.json | 12 ++++++------ users/fendi.json | 8 +++++++- users/fengmk2.json | 7 ++++++- users/fenris-studios.json | 8 ++++---- users/feross.json | 6 +++++- users/ff.json | 4 +++- users/ffljjqbqvsywxqakpvdbwyqqyt.json | 4 +++- users/ffljjqbqvsywxqakpvdbwyqqytt.json | 4 +++- users/fgsdhkdfjghdksfgjsg.json | 4 +++- users/fh.json | 9 ++++++++- users/fiber-miniapp.json | 4 +++- users/fiber.json | 4 +++- users/fibo.json | 4 ++-- users/filepang.json | 4 +++- users/filipebarros.json | 5 ++++- users/filosottile.json | 12 +++++++----- users/fireball.json | 4 +++- users/firebase.json | 6 +++++- users/fireflies.json | 7 ++++++- users/firejune.json | 8 ++++---- users/fitjs.json | 7 ++++++- users/fixate.json | 6 +++--- users/fjellerup.json | 4 +++- users/fjorgemota.json | 5 ++++- users/fka.json | 4 +++- users/flat.json | 5 ++++- users/flattr.json | 6 +++++- users/fleeting.json | 6 +++++- users/flesch.json | 6 +++--- users/fletc3her.json | 7 ++++++- users/flexd.json | 7 ++++++- users/floppy.json | 7 ++++++- users/florian.json | 6 +++++- users/floydpink.json | 10 +++++----- users/flyjs.json | 4 +++- users/fm.json | 4 +++- users/foak.json | 7 ++++++- users/foat.json | 10 +++++----- users/foobar.json | 4 +++- users/ford.json | 5 ++++- users/forresty.json | 4 +++- users/forsvikgroup.json | 7 +++---- users/foss-haas.json | 7 ++++++- users/fov.json | 5 ++++- users/fp.json | 4 +++- users/fpcs.json | 7 ++++++- users/fr.json | 4 +++- users/francisbesset.json | 8 ++++---- users/frebro.json | 6 +++--- users/fredi.json | 4 +++- users/fredrik.json | 7 ++++++- users/fredwu.json | 7 ++++++- users/freewheel.json | 7 ++++++- users/freewizard.json | 7 ++++++- users/fremy.json | 10 +++++----- users/frendon.json | 4 +++- users/freshbox.json | 7 ++++++- users/freshmade.json | 6 +++--- users/frickreich.json | 4 +++- users/friedcell.json | 6 +++++- users/fristonio.json | 10 +++++----- users/frozenskys.json | 12 ++++++------ users/frozzare.json | 8 ++++---- users/frwrdnet.json | 12 ++++++------ users/fs.json | 7 ++++++- users/fuckthebitch.json | 6 +++++- users/fujieda.json | 4 +++- users/fujimoto.json | 8 ++++---- users/fullaf.json | 4 +++- users/functioncallback.json | 7 ++++++- users/fusco.json | 7 ++++++- users/futoase.json | 4 +++- users/fwolf.json | 5 ++++- users/fyhuang.json | 7 ++++++- users/g0nh1n.json | 9 ++++++++- users/g0v.json | 5 ++++- users/gableroux.json | 7 ++++++- users/gabriel.json | 6 +++++- users/gabrielecanepa.json | 6 +++++- users/gabrielgfa.json | 8 ++++---- users/gabrielgodoy.json | 8 ++++---- users/gabrielizaias.json | 10 +++++----- users/gabrieljmj.json | 12 ++++++------ users/gabrielrcouto.json | 7 ++++++- users/gabskoro.json | 7 ++++++- users/gae-tap.json | 4 +++- users/gamajo.json | 4 +++- users/gammasoft.json | 8 +++++++- users/gao.json | 5 ++++- users/gasolwu.json | 6 +++++- users/gauntlt.json | 4 ++-- users/gaurav.json | 7 ++++++- users/gautam.json | 6 +++++- users/gavin.json | 4 +++- users/gavinhungry.json | 6 +++++- users/gb.json | 2 +- users/gbleux.json | 5 ++++- users/gdqyn.json | 7 ++++++- users/geeky.json | 4 +++- users/genesislive.json | 9 ++++++++- users/georapbox.json | 12 ++++++------ users/georgerogers42.json | 4 +++- users/georgeyue.json | 6 +++++- users/geota.json | 4 +++- users/geovation.json | 2 +- users/gep13.json | 6 +++--- users/ger.json | 4 +++- users/gersonthiago.json | 7 ++++++- users/geta6.json | 5 ++++- users/getify.json | 10 +++++----- users/gfk.json | 4 +++- users/gggkiller.json | 9 ++++++++- users/ghedo.json | 4 +++- users/gherlein.json | 8 ++++---- users/ghozylab.json | 10 +++++----- users/giancarlovillena.json | 6 +++--- users/gianu.json | 9 ++++++++- users/gibsjose.json | 12 ++++++------ users/gigony.json | 4 ++-- users/gilmoreorless.json | 8 ++++---- users/gine.json | 4 ++-- users/ginger.json | 4 +++- users/girvo.json | 4 +++- users/girvo2.json | 5 ++++- users/github.json | 6 +++++- users/gkatsev.json | 7 ++++++- users/gkralik.json | 12 ++++++------ users/gld1982ltd.json | 12 ++++++------ users/glsee.json | 4 +++- users/glynford.json | 7 ++++++- users/gmanricks.json | 6 +++++- users/gmph.json | 7 ++++++- users/gogoout.json | 10 +++++----- users/goji.json | 8 +++++++- users/gojigeje.json | 8 +++++++- users/gokaygurcan.json | 10 +++++----- users/gokmen.json | 7 ++++++- users/goldsborough.json | 6 +++++- users/goodybag.json | 7 ++++++- users/googledrivewpmedia.json | 7 ++++++- users/gordondiggs.json | 7 ++++++- users/gossi.json | 5 ++++- users/gphofficial.json | 8 +++++++- users/gpl.json | 5 ++++- users/gplv2.json | 5 ++++- users/gplv3.json | 5 ++++- users/graham.json | 6 +++--- users/grapestack.json | 7 ++++++- users/grapevine.json | 7 ++++++- users/grawity.json | 8 ++++---- users/gre.json | 6 +++++- users/greatwizard.json | 12 ++++++------ users/green.json | 4 +++- users/greenify.json | 9 ++++++++- users/gregarmer.json | 8 +++++++- users/grekko.json | 9 ++++++++- users/greweb.json | 7 ++++++- users/greyhoundforty.json | 4 +++- users/greystate.json | 8 ++++---- users/groenewege.json | 5 ++++- users/grvcoelho.json | 5 ++++- users/gryftir.json | 7 ++++++- users/gsimard.json | 4 +++- users/gtierney.json | 7 ++++++- users/gtomitsuka.json | 4 +++- users/gtrrz-victor.json | 9 ++++++++- users/gugod.json | 4 +++- users/guicheffer.json | 8 +++++++- users/guidokessels.json | 5 ++++- users/guilhermemarconi.json | 8 +++++++- users/guilhermeprates.json | 4 +++- users/gunar.json | 8 +++++++- users/gus.json | 4 +++- users/gvv.json | 5 ++++- users/gyoshev.json | 6 +++--- users/h.json | 7 ++++++- users/hadb.json | 12 ++++++------ users/hail2u.json | 6 +++--- users/halil.json | 7 ++++++- users/halit.json | 7 ++++++- users/hallme.json | 7 ++++++- users/hamano.json | 4 +++- users/hamidshavarean.json | 7 ++++++- users/haoxiong.json | 10 +++++----- users/hardeep.json | 5 ++++- users/harold.json | 7 ++++++- users/harry.json | 16 ++++++++-------- users/harryd.json | 8 +++++++- users/harrydeluxe.json | 8 ++++---- users/harshjain.json | 10 +++++----- users/harshjv.json | 6 +++++- users/hashanp.json | 8 ++++---- users/hashnuke.json | 4 +++- users/hassankhan.json | 8 +++++++- users/hassox.json | 4 +++- users/hatena.json | 5 ++++- users/hbc.json | 7 ++++++- users/hd.json | 7 ++++++- users/he7d3r.json | 4 ++-- users/healthx.json | 4 +++- users/hecticjeff.json | 4 +++- users/hello.json | 7 ++++++- users/hemersonvianna.json | 6 +++++- users/henrikbjorn.json | 8 ++++---- users/henrikhodne.json | 5 ++++- users/henriquemoody.json | 6 +++++- users/henvic.json | 7 ++++++- users/heppler.json | 8 ++++---- users/herson.json | 7 ++++++- users/heyday.json | 6 +++--- users/hfm.json | 4 +++- users/hh.json | 4 +++- users/hika69.json | 5 ++++- users/hildor.json | 6 +++--- users/hinassan.json | 6 +++--- users/hippiehacker.json | 4 +++- users/hiremaga.json | 4 +++- users/hirokiky.json | 7 ++++++- users/hitode909.json | 4 +++- users/hlfcoding.json | 7 ++++++- users/hlomzik.json | 7 ++++++- users/hmkz.json | 5 ++++- users/hobogrammer.json | 4 +++- users/hokaccha.json | 4 +++- users/hokypoky.json | 5 ++++- users/honyovk.json | 6 +++++- users/hoop33.json | 9 ++++++++- users/hope.json | 7 ++++++- users/hor.json | 7 ++++++- users/horacioibrahim.json | 7 ++++++- users/horiuchi.json | 5 ++++- users/hotoo.json | 7 ++++++- users/hotplate.json | 4 +++- users/housetrip.json | 4 +++- users/hpg.json | 7 ++++++- users/hr.json | 7 ++++++- users/hss.json | 7 ++++++- users/hsyn.json | 4 +++- users/htdvisser.json | 7 ++++++- users/htjson.json | 7 ++++++- users/hug.json | 10 +++++----- users/husniadil.json | 11 +++++------ users/hwthorn.json | 6 +++++- users/i.json | 12 ++++++------ users/iadvize.json | 4 +++- users/iagodahlem.json | 8 ++++---- users/iamale.json | 6 +++++- users/iamgabeortiz.json | 7 ++++++- users/ian.json | 7 ++++++- users/ianaya89.json | 7 ++++++- users/ianfoo.json | 4 +++- users/ianhammondcooper.json | 7 ++++++- users/iantearle.json | 6 +++--- users/ianvaughan.json | 6 +++++- users/ianwang.json | 7 ++++++- users/ianwinter.json | 4 +++- users/ic.json | 6 +++++- users/ichizok.json | 6 +++--- users/icq4ever.json | 4 +++- users/idkazuma.json | 6 +++--- users/idlua.json | 7 ++++++- users/idomusha.json | 7 ++++++- users/iet-ou.json | 9 ++++++++- users/if.json | 6 +++++- users/ifdattic.json | 5 ++++- users/igliu.json | 4 +++- users/igneous.json | 4 +++- users/ignitelabs.json | 7 ++++++- users/igorcorradi.json | 5 ++++- users/igorprado.json | 4 +++- users/iknew.json | 6 +++++- users/ilee.json | 7 ++++++- users/imahmoodz.json | 8 ++++---- users/imalliaros.json | 8 ++++---- users/imjching.json | 7 ++++++- users/immae.json | 6 +++++- users/imryan.json | 4 +++- users/incertia.json | 4 +++- users/indutny.json | 4 +++- users/indy.json | 6 +++++- users/inetpeople.json | 4 +++- users/instaphp.json | 7 ++++++- users/intergrated.json | 7 ++++++- users/inviz.json | 8 +++++++- users/ionicabizau.json | 4 +++- users/ionut.json | 4 +++- users/irex.json | 7 ++++++- users/is-uz.json | 7 ++++++- users/isekaf.json | 5 ++++- users/isekivacenz.json | 4 +++- users/ishands.json | 7 ++++++- users/isle.json | 4 +++- users/ismay.json | 4 +++- users/isoden.json | 2 +- users/istanbulphp.json | 7 ++++++- users/it-ony.json | 7 ++++++- users/itacirgabral.json | 6 +++--- users/italoqueiroz.json | 8 +++++++- users/ithings4u.json | 4 +++- users/itscassa.json | 4 +++- users/ivangaravito.json | 8 +++++++- users/iwark.json | 4 +++- users/izumin.json | 6 +++++- users/j.json | 6 +++++- users/ja.json | 5 ++++- users/jaanek.json | 7 ++++++- users/jabbrwcky.json | 7 ++++++- users/jackfischer.json | 4 +++- users/jadn.json | 4 +++- users/jaeckel.json | 6 +++++- users/jaequery.json | 4 ++-- users/jafnee.json | 4 +++- users/jagregory.json | 4 +++- users/jaimeneves.json | 6 +++--- users/jais.json | 4 +++- users/jakebellacera.json | 4 +++- users/jakejohnson.json | 7 ++++++- users/jakemolnar.json | 4 +++- users/jakschu.json | 10 +++++----- users/jalanb.json | 7 ++++++- users/james.json | 6 +++++- users/jameschen.json | 7 ++++++- users/jamesclebio.json | 5 ++++- users/jameslawson.json | 8 ++++---- users/jameswyse.json | 8 ++++---- users/jamieh.json | 7 ++++++- users/jamiemason.json | 4 ++-- users/jamiesonroberts.json | 8 +++++++- users/jan.json | 6 +++++- users/jancbeck.json | 7 ++++++- users/janders223.json | 6 +++++- users/jaredverdi.json | 8 +++++++- users/jas0ncn.json | 12 ++++++------ users/jasl.json | 5 ++++- users/jasondavis.json | 8 ++++---- users/jasondemeuse.json | 4 +++- users/jasvir.json | 4 +++- users/jaswinder.json | 10 +++++----- users/jautero.json | 6 +++++- users/jay.json | 4 +++- users/jaydson.json | 7 ++++++- users/jaylynch.json | 6 +++++- users/jaymecd.json | 10 +++++----- users/jballard.json | 5 ++++- users/jbb.json | 4 +++- users/jbenet.json | 4 +++- users/jbonnier.json | 14 +++++++------- users/jbradach.json | 12 ++++++------ users/jbrodriguez.json | 6 +++++- users/jbrooksuk.json | 8 +++++++- users/jc.json | 4 +++- users/jcarouth.json | 6 +++++- users/jcart1666.json | 5 ++++- users/jcfausto.json | 10 +++++----- users/jcuri.json | 4 +++- users/jczimm.json | 8 +++++++- users/jdalton.json | 6 +++--- users/jdavis.json | 7 ++++++- users/jden.json | 7 ++++++- users/jdiamond.json | 4 +++- users/jdrd.json | 7 ++++++- users/jeanperez.json | 7 ++++++- users/jeanpimentel.json | 7 ++++++- users/jeff.json | 7 ++++++- users/jeffdecola.json | 10 +++++----- users/jeffmccoy.json | 7 ++++++- users/jeffreymeng.json | 14 +++++++------- users/jefsama.json | 12 ++++++------ users/jellekralt.json | 8 ++++---- users/jelmer.json | 4 ++-- users/jemos.json | 4 +++- users/jenish.json | 4 +++- users/jeremy.json | 8 ++++---- users/jeremykendall.json | 6 +++--- users/jericho.json | 4 +++- users/jermorin.json | 7 ++++++- users/jeroenvisser.json | 8 +++++++- users/jeroenvisser101.json | 8 +++++++- users/jesseflorig.json | 8 ++++---- users/jet.json | 7 ++++++- users/jetienne.json | 4 ++-- users/jfgodoy.json | 6 +++++- users/jfsiii.json | 5 ++++- users/jgrossi.json | 6 +++++- users/jhink.json | 10 +++++----- users/ji.json | 5 ++++- users/jimeh.json | 6 +++--- users/jimjum.json | 4 +++- users/jimmyking.json | 8 +++++++- users/jin.json | 4 +++- users/jinnovation.json | 4 +++- users/jitinl.json | 4 +++- users/jizoo.json | 6 +++++- users/jj1bdx.json | 7 ++++++- users/jkeyes.json | 6 +++++- users/jmazz.json | 7 ++++++- users/jmblog.json | 4 ++-- users/jmendeth.json | 7 ++++++- users/jmeosbn.json | 5 ++++- users/jmhodges.json | 7 ++++++- users/jmiller.json | 5 ++++- users/jmm.json | 4 +++- users/jmparsons.json | 4 +++- users/jnf.json | 4 +++- users/jnj.json | 8 +++++++- users/jnjosh.json | 6 +++++- users/jnw.json | 7 ++++++- users/joaos.json | 12 ++++++------ users/jobquest.json | 8 +++++++- users/jody.json | 5 ++++- users/joe.json | 6 +++++- users/joelambert.json | 2 +- users/joelbladt.json | 10 +++++----- users/joelpurra.json | 7 ++++++- users/joelself.json | 4 +++- users/joelwalters.json | 4 +++- users/joeyblake.json | 6 +++--- users/joeyespo.json | 7 ++++++- users/jogy.json | 4 ++-- users/johan.json | 6 +++--- users/johanekhager.json | 11 ++++++----- users/johanhalse.json | 7 ++++++- users/john.json | 4 +++- users/johnathanjenkins.json | 4 +++- users/johndyer.json | 4 +++- users/johnjensen.json | 4 +++- users/johnmcc.json | 2 +- users/johnmdonahue.json | 4 ++-- users/johnny.json | 4 ++-- users/johnschult.json | 8 ++++---- users/johnsullivan.json | 5 ++++- users/johntfoster.json | 7 ++++++- users/jonas.json | 7 ++++++- users/jonathanheaven.json | 7 ++++++- users/jonathanwiesel.json | 8 +++++++- users/jongretar.json | 7 ++++++- users/jonmcpherson.json | 6 +++++- users/jonnung-grp.json | 4 +++- users/jonscottclark.json | 6 +++++- users/jonstites.json | 2 +- users/joom.json | 7 ++++++- users/joostlawerman.json | 10 +++++----- users/jordimorillo.json | 6 +++--- users/joren.json | 6 +++++- users/jorge-matricali.json | 12 ++++++------ users/jorge.json | 4 +++- users/joseandro.json | 7 ++++++- users/josh.json | 6 +++--- users/joshboehm.json | 4 +++- users/joshbuhler.json | 4 +++- users/joshje.json | 4 +++- users/joshua.json | 6 +++--- users/joshuacanfield.json | 7 ++++++- users/joshuaptfan.json | 8 ++++---- users/joslyn.json | 4 +++- users/josue.json | 4 +++- users/josuer.json | 6 +++++- users/josuerodriguez.json | 6 +++++- users/jotschi.json | 7 ++++++- users/joyce.json | 7 ++++++- users/joyceschan.json | 7 ++++++- users/jp.json | 4 +++- users/jprice.json | 8 +++++++- users/jpsirois.json | 7 ++++++- users/jquery-client.json | 7 ++++++- users/jr.json | 4 ++-- users/jrattanpal.json | 6 +++++- users/jre.json | 4 +++- users/jrudenstam.json | 7 ++++++- users/jruhland.json | 8 +++++++- users/jryans.json | 7 ++++++- users/js.json | 8 +++++++- users/jsbin.json | 5 ++++- users/jseppi.json | 7 ++++++- users/jsumners.json | 8 +++++++- users/jtb.json | 4 +++- users/jtkendall.json | 8 ++++---- users/jtr.json | 4 +++- users/jtwalters.json | 6 +++++- users/jtyost2.json | 7 ++++++- users/juanitofatas.json | 7 ++++++- users/julesj.json | 7 ++++++- users/julien-breux.json | 4 +++- users/julienw.json | 6 +++++- users/justin.json | 6 +++--- users/justinian.json | 10 +++++----- users/justinm.json | 6 +++--- users/justinrainbow.json | 5 ++++- users/justmarkup.json | 7 ++++++- users/justmoon.json | 4 +++- users/jwark.json | 4 +++- users/jwathen.json | 5 ++++- users/jwehrman.json | 4 +++- users/jwngr.json | 4 +++- users/jxck.json | 6 +++++- users/jxson.json | 4 +++- users/jylhis.json | 5 ++++- users/k-yoshida.json | 7 ++++++- users/k2wanko.json | 5 ++++- users/k33nice.json | 10 +++++----- users/ka2n.json | 4 +++- users/kabuku-inc.json | 6 +++++- users/kabuku.json | 6 +++++- users/kafene.json | 4 +++- users/kagee.json | 5 ++++- users/kai.json | 7 ++++++- users/kaichop.json | 4 +++- users/kakehashi.json | 5 ++++- users/kale.json | 5 ++++- users/kanade.json | 4 +++- users/kandoi.json | 7 ++++++- users/kaneel.json | 6 +++++- users/kaneshin.json | 8 +++++++- users/kaos.json | 6 +++++- users/karami.json | 9 ++++++++- users/karbassi.json | 6 +++--- users/karimsa.json | 9 ++++++++- users/karl-sjogren.json | 7 ++++++- users/karl.json | 7 ++++++- users/karlc.json | 6 +++++- users/karlcoelho.json | 7 ++++++- users/karteek.json | 7 ++++++- users/karupanerura.json | 7 ++++++- users/kataring.json | 4 +++- users/katsuma.json | 4 +++- users/katsyoshi.json | 4 +++- users/kaukeb.json | 5 ++++- users/kawakawaritsuki.json | 10 +++++----- users/kawanet.json | 5 ++++- users/kawaz.json | 8 ++++---- users/kaxla.json | 4 +++- users/kayframework.json | 7 ++++++- users/kb.json | 8 +++++++- users/kbond.json | 6 +++++- users/kcak11.json | 10 +++++----- users/kcj.json | 6 +++--- users/kclarke.json | 6 +++--- users/kdy.json | 8 +++++++- users/ke.json | 8 +++++++- users/keegoid.json | 8 +++++++- users/keifukuda.json | 5 ++++- users/keita.json | 4 +++- users/keithamus.json | 4 ++-- users/keithcirkel.json | 4 ++-- users/kenjiyamamoto.json | 7 ++++++- users/kenta.json | 7 ++++++- users/kentaro.json | 6 +++++- users/kerem.json | 6 +++--- users/ketchum.json | 4 +++- users/kevin.json | 7 ++++++- users/kevinaloys.json | 8 +++++++- users/kevinfling.json | 4 +++- users/kevinmmarlow.json | 4 +++- users/key.json | 9 ++++++++- users/keyup.json | 6 +++++- users/kezho.json | 5 ++++- users/kgarg.json | 8 ++++---- users/kgisl.json | 6 +++--- users/khanio.json | 7 ++++++- users/khushraj.json | 6 +++--- users/khuxkm.json | 10 +++++----- users/kieranties.json | 10 +++++----- users/kilian.json | 7 ++++++- users/kilokahn.json | 7 ++++++- users/kimiamania.json | 8 +++++++- users/kindy.json | 6 +++++- users/kinetik.json | 12 ++++++------ users/kishorm23.json | 4 +++- users/kit.json | 8 ++++---- users/kitak.json | 5 ++++- users/kiwigrid.json | 4 +++- users/kjirou.json | 5 ++++- users/kjohnston.json | 4 +++- users/kkung.json | 7 ++++++- users/kloptops.json | 6 +++++- users/kma.json | 6 +++++- users/kmix.json | 4 ++-- users/kmonsoor.json | 8 +++++++- users/knagano.json | 4 +++- users/knakayama.json | 10 +++++----- users/knimon-software.json | 4 +++- users/knockout-components.json | 6 +++++- users/knutwalker.json | 7 ++++++- users/koba789.json | 5 ++++- users/koeberle.json | 4 +++- users/kohenkatz.json | 8 +++++++- users/kojiwakayama.json | 7 ++++++- users/konsumer.json | 7 ++++++- users/kopplin.json | 4 +++- users/koshigoe.json | 4 +++- users/kossnocorp.json | 4 +++- users/kothawale.json | 6 +++++- users/koustuvs.json | 6 +++--- users/kozakky.json | 4 +++- users/kpeatt.json | 8 +++++++- users/kraga.json | 12 ++++++------ users/krinkle.json | 8 ++++---- users/kris.json | 6 +++++- users/kristoffer.json | 4 +++- users/kristopher.json | 8 +++++++- users/kriwil.json | 4 +++- users/kroisse.json | 6 +++++- users/krolow.json | 7 ++++++- users/krrrr38.json | 4 +++- users/ksomemo.json | 4 +++- users/kswedberg.json | 6 +++++- users/kt3k.json | 4 +++- users/ktat.json | 8 ++++---- users/ktravis.json | 4 +++- users/ktrysmt.json | 10 +++++----- users/kucoe.json | 6 +++++- users/kuenishi.json | 5 ++++- users/kujohnln.json | 9 ++++++++- users/kumatch.json | 5 ++++- users/kuni-uec-takada-lab.json | 6 +++++- users/kuniwak.json | 4 +++- users/kurmis.json | 7 ++++++- users/kuronekomichael.json | 5 ++++- users/kvz.json | 4 +++- users/kvz2.json | 7 ++++++- users/kyanny.json | 4 +++- users/kyle.json | 7 ++++++- users/kylebaker.json | 6 +++++- users/kylebshr.json | 6 +++++- users/kylestev.json | 7 ++++++- users/kylewelsby.json | 10 +++++----- users/kyrias.json | 6 +++++- users/kyungw00k.json | 12 ++++++------ users/l04m33.json | 7 ++++++- users/laka.json | 6 +++++- users/lalit.json | 7 ++++++- users/laradic.json | 7 ++++++- users/lareg.json | 4 +++- users/larrybotha.json | 8 ++++---- users/lars.json | 7 ++++++- users/larste.json | 4 +++- users/lavoie-sl.json | 8 +++++++- users/layer7tech.json | 7 ++++++- users/lbesson.json | 8 +++++++- users/lbuell.json | 7 ++++++- users/leandromatos.json | 7 ++++++- users/leanix.json | 7 ++++++- users/ledsun.json | 5 ++++- users/leeym.json | 4 +++- users/leftlogic.json | 4 ++-- users/legato.json | 8 ++++---- users/legraphista.json | 9 ++++++++- users/lehmannro.json | 6 +++++- users/lemieux.json | 10 +++++----- users/lemolsoft.json | 8 ++++---- users/lemurs.json | 6 +++++- users/len.json | 5 ++++- users/lenet.json | 5 ++++- users/leniglo.json | 12 ++++++------ users/lenilson.json | 7 ++++++- users/leonardomerlin.json | 6 +++++- users/leonardorifeli.json | 6 +++++- users/leonardosoares.json | 8 +++++++- users/lepture.json | 7 ++++++- users/lequioscreative.json | 4 +++- users/levelup.json | 2 +- users/lgalfaso.json | 4 +++- users/lgn21st.json | 6 +++++- users/lh.json | 7 ++++++- users/lhl.json | 4 +++- users/li.json | 10 +++++----- users/liam-kerr.json | 4 +++- users/lidonghua.json | 5 ++++- users/likerrr.json | 8 +++++++- users/lindsayevans.json | 4 ++-- users/lionel-m.json | 4 ++-- users/lira.json | 10 +++++----- users/lishiyu.json | 5 ++++- users/litenjacob.json | 4 +++- users/liuderchi.json | 8 +++++++- users/livebreathedigital.json | 7 ++++++- users/liz.json | 7 ++++++- users/lizzie.json | 7 ++++++- users/ljos.json | 7 ++++++- users/llaraujo.json | 6 +++++- users/llun.json | 5 ++++- users/lmarburger.json | 7 ++++++- users/lmullen.json | 7 ++++++- users/lng.json | 4 +++- users/lnmunhoz.json | 6 +++++- users/lo.json | 4 +++- users/localhost.json | 12 ++++++------ users/localpcguy.json | 6 +++--- users/lolcat.json | 4 +++- users/longsl.json | 7 ++++++- users/loopj.json | 6 +++--- users/lorenz-lo-sauer.json | 12 ++++++------ users/louisremi.json | 5 ++++- users/louist.json | 12 ++++++------ users/lp.json | 6 +++++- users/lpa.json | 6 +++--- users/lpg.json | 6 +++--- users/lpghatguy.json | 7 ++++++- users/lqez.json | 4 +++- users/lqian.json | 7 ++++++- users/lrenhrda.json | 4 +++- users/lsauer.json | 12 ++++++------ users/lsh.json | 8 +++++++- users/lsong.json | 6 +++++- users/ltej.json | 4 +++- users/luanmuniz.json | 8 ++++---- users/lucasgreen.json | 4 +++- users/luis.json | 4 +++- users/luisdalmolin.json | 4 +++- users/luizbills.json | 7 ++++++- users/luizpicolo.json | 12 ++++++------ users/luke.json | 8 ++++---- users/lukeed.json | 7 ++++++- users/lukew.json | 8 ++++---- users/lukmdo.json | 7 ++++++- users/lulalachen.json | 10 +++++----- users/lussier.json | 4 +++- users/luwes.json | 5 ++++- users/lvillani.json | 4 +++- users/lynn.json | 6 +++++- users/lynnwallenstein.json | 4 +++- users/m.json | 7 ++++++- users/m0s.json | 8 ++++---- users/m42e.json | 6 +++++- users/m4i.json | 4 ++-- users/ma.json | 4 +++- users/mach3.json | 4 +++- users/maciejczyzewski.json | 6 +++++- users/macobo.json | 5 ++++- users/mactkg.json | 7 ++++++- users/maddes.json | 7 ++++++- users/madethemes.json | 7 ++++++- users/madrona-labs.json | 4 +++- users/magarcia-mail.json | 4 +++- users/magarcia.json | 4 +++- users/magicdawn.json | 8 +++++++- users/magno.json | 8 ++++---- users/magnus.json | 4 +++- users/mahdaen.json | 7 ++++++- users/majd.json | 10 +++++----- users/majodev.json | 6 +++++- users/makenowjust.json | 8 +++++++- users/makimoto.json | 4 +++- users/malayaleecoder.json | 4 +++- users/mallim.json | 8 +++++++- users/mamund.json | 7 ++++++- users/managenet.json | 6 +++--- users/mandre.json | 4 +++- users/manish.json | 4 +++- users/manparvesh.json | 10 +++++----- users/manual.json | 5 ++++- users/manuel.json | 7 ++++++- users/manuglez.json | 14 +++++++------- users/maoo.json | 7 ++++++- users/mapjam.json | 6 +++++- users/mapjam1.json | 5 ++++- users/mapjam2.json | 6 +++++- users/maqina.json | 6 +++++- users/marc.json | 4 ++-- users/marcastel.json | 4 +++- users/marceloboeira.json | 7 ++++++- users/marcelobrito.json | 8 ++++---- users/marco-loche.json | 7 ++++++- users/marco.json | 4 ++-- users/marcoagner.json | 7 ++++++- users/marcocanc.json | 7 ++++++- users/marconi.json | 7 ++++++- users/marcqualie.json | 2 +- users/marcroberts.json | 4 ++-- users/marcusw.json | 10 +++++----- users/marebucks.json | 7 ++++++- users/marek-saji.json | 8 ++++---- users/marek.json | 7 ++++++- users/marge.json | 7 ++++++- users/mario-chavez.json | 4 +++- users/mark.json | 7 ++++++- users/markdalgleish.json | 4 ++-- users/marksteve.json | 4 ++-- users/marnulombard.json | 7 ++++++- users/marshall.json | 6 +++++- users/martinblech.json | 7 ++++++- users/marucc.json | 5 ++++- users/marvinede.json | 6 +++--- users/masch.json | 7 ++++++- users/mashihua.json | 6 +++++- users/mast.json | 4 +++- users/masutaka.json | 6 +++--- users/mateusortiz.json | 4 +++- users/matheus.json | 7 ++++++- users/mathias.json | 4 ++-- users/mathieu.json | 10 +++++----- users/matin.json | 4 +++- users/matsukaz.json | 4 +++- users/matt-deacalion.json | 6 +++++- users/matt.json | 6 +++--- users/mattaimonetti.json | 7 ++++++- users/mattcg.json | 6 +++--- users/mattclements.json | 6 +++--- users/mattetti.json | 7 ++++++- users/mattgauf.json | 5 ++++- users/mattgoucher.json | 7 ++++++- users/mattgross.json | 2 +- users/matth.json | 7 ++++++- users/matthew-campbell.json | 5 ++++- users/matthew.json | 10 +++++----- users/matthewdavies.json | 10 +++++----- users/matthewmcvickar.json | 7 ++++++- users/matthieuaussaguel.json | 10 +++++----- users/mattn.json | 8 ++++---- users/mattstevens.json | 4 +++- users/mavidser.json | 7 ++++++- users/max.json | 4 +++- users/maximz.json | 8 ++++---- users/maxmanders.json | 4 +++- users/maxroecker.json | 6 +++--- users/maxwell.json | 4 +++- users/maxx.json | 7 ++++++- users/mayankjha.json | 8 ++++---- users/mb.json | 4 +++- users/mbasanta.json | 6 +++--- users/mbilbillee.json | 4 +++- users/mbo.json | 4 +++- users/mbs.json | 4 +++- users/mc2.json | 8 ++++---- users/mckamey.json | 4 +++- users/mckay.json | 6 +++++- users/mckelvaney.json | 6 +++++- users/mckomo.json | 7 ++++++- users/mdag.json | 14 +++++++------- users/mdd.json | 4 +++- users/mdhheydari.json | 8 +++++++- users/mdibaiee.json | 7 ++++++- users/mdt.json | 12 ++++++------ users/meetparikh7.json | 6 +++--- users/meghprkh.json | 6 +++--- users/memega.json | 4 +++- users/memph1s.json | 7 ++++++- users/mestes.json | 12 ++++++------ users/mestrada.json | 8 ++++---- users/mf.json | 12 ++++++------ users/mfah.json | 8 ++++---- users/mfmer.json | 4 +++- users/mgonto.json | 5 ++++- users/mhaidarh.json | 10 +++++----- users/mheap.json | 6 +++--- users/mhenry.json | 6 +++++- users/mhm5000.json | 9 ++++++++- users/mhweiner.json | 7 ++++++- users/mi-roh.json | 4 ++-- users/micaelbergeron.json | 4 +++- users/micalevisk.json | 12 ++++++------ users/michael.json | 4 +++- users/michaeldanilov.json | 7 ++++++- users/michaelhsu.json | 8 +++++++- users/michaelhsutw.json | 8 +++++++- users/michaelobi.json | 4 +++- users/michaelstanden.json | 10 +++++----- users/michaeltaranto.json | 6 +++++- users/micromvc.json | 4 +++- users/microsoft.json | 5 ++++- users/micxer.json | 10 +++++----- users/midupuis.json | 6 +++++- users/mignev.json | 7 ++++++- users/miguelfrde.json | 7 ++++++- users/miguelmota.json | 9 ++++----- users/mikael.json | 4 +++- users/mikaeljorhult.json | 6 +++--- users/mike.json | 4 +++- users/mike2duo.json | 4 +++- users/mikeanthony.json | 5 ++++- users/mikejolley.json | 6 +++++- users/mikejolly.json | 6 +++++- users/mikelyons.json | 4 +++- users/mikl.json | 4 ++-- users/mikuiro.json | 6 +++--- users/milosgavrilovic.json | 7 ++++++- users/minhee.json | 6 +++++- users/minidfx.json | 12 ++++++------ users/miro.json | 10 +++++----- users/mislav.json | 4 +++- users/miszo.json | 5 ++++- users/mizzy.json | 4 +++- users/mjf.json | 4 +++- users/mk.json | 5 ++++- users/mk23.json | 6 +++++- users/mkhl.json | 6 +++--- users/mlxy.json | 10 +++++----- users/mm.json | 4 +++- users/mnicnc404.json | 4 +++- users/moacirosa.json | 9 ++++++++- users/mohan.json | 4 +++- users/mohayonao.json | 5 ++++- users/mohebifar.json | 8 +++++++- users/mohnish.json | 4 +++- users/mohsend.json | 7 ++++++- users/mokemokechicken.json | 4 +++- users/mollifier.json | 4 +++- users/mongorito.json | 7 ++++++- users/monkey.json | 7 ++++++- users/monks.json | 6 +++++- users/monmon.json | 5 ++++- users/moongift.json | 5 ++++- users/moore.json | 4 +++- users/mootoh.json | 4 +++- users/moox.json | 4 +++- users/mooyoul.json | 7 ++++++- users/moqada.json | 6 +++++- users/moroshko.json | 4 +++- users/mortdeus.json | 12 ++++++------ users/morteza.json | 9 ++++++++- users/mostly-magic.json | 6 +++--- users/motemen.json | 4 +++- users/motss.json | 6 +++++- users/moyashiki.json | 2 +- users/mp.json | 6 +++--- users/mpd.json | 4 +++- users/mpdreamz.json | 6 +++++- users/mpogoda.json | 4 +++- users/mressex.json | 10 +++++----- users/mrgnrdrck.json | 6 +++--- users/mrinaljain17.json | 8 ++++---- users/mrkn.json | 4 +++- users/mrmarbles.json | 5 ++++- users/mrsiir.json | 4 +++- users/mschaer.json | 5 ++++- users/mseri.json | 6 +++++- users/mshertzberg.json | 4 +++- users/msmosso.json | 6 +++--- users/msmprojects.json | 7 ++++++- users/mstade.json | 4 +++- users/mstum.json | 8 ++++---- users/msudgh.json | 8 +++++++- users/mteckert.json | 4 +++- users/mtsagias.json | 7 ++++++- users/mtsmfm.json | 7 ++++++- users/mturcotte.json | 4 ++-- users/muet.json | 7 ++++++- users/mullen.json | 7 ++++++- users/muratk.json | 4 +++- users/murphy.json | 6 +++++- users/musicgig.json | 6 +++++- users/mustafa.json | 6 +++--- users/mutedsolutions.json | 6 +++++- users/mutlicorp.json | 7 ++++++- users/mutoso.json | 8 +++++++- users/muyuu.json | 5 ++++- users/mvdnes.json | 4 +++- users/mvr.json | 6 +++++- users/mw.json | 4 +++- users/mway.json | 7 ++++++- users/mwm.json | 7 ++++++- users/mwmeyer.json | 6 +++++- users/mwmnj.json | 6 +++++- users/myles.json | 7 ++++++- users/mynetx.json | 6 +++++- users/mysticatea.json | 5 ++++- users/n.json | 5 ++++- users/n0nick.json | 4 +++- users/nacyot.json | 7 ++++++- users/nadeemkhan.json | 8 ++++---- users/nadi.json | 7 ++++++- users/naereen.json | 8 +++++++- users/nak2k.json | 5 ++++- users/nanahositento.json | 6 +++--- users/nanha.json | 5 ++++- users/nanotaboada.json | 8 ++++---- users/naota.json | 4 +++- users/nat.json | 4 +++- users/nate.json | 5 ++++- users/natevw.json | 5 ++++- users/nathan.json | 6 +++++- users/nathan7.json | 4 +++- users/nathanallen.json | 6 +++++- users/natzim.json | 4 +++- users/naufraghi.json | 4 +++- users/navarr.json | 4 ++-- users/nblackburn.json | 9 ++++++++- users/ncb000gt.json | 6 +++++- users/nctg.json | 4 ++-- users/ndw.json | 6 +++--- users/nectktar.json | 5 ++++- users/neil.json | 4 +++- users/nemo.json | 10 +++++----- users/neo.json | 7 ++++++- users/neodevelop.json | 8 +++++++- users/neos21.json | 10 +++++----- users/nerdfiles.json | 4 +++- users/nerdsec.json | 7 ++++++- users/nergal.json | 7 ++++++- users/nethru.json | 7 ++++++- users/neutroncreations.json | 4 ++-- users/nevir.json | 4 +++- users/newleaders.json | 8 +++++++- users/nex.json | 5 ++++- users/nexzhu.json | 5 ++++- users/nfreear.json | 6 +++++- users/ngenerio.json | 6 +++++- users/ngoldman.json | 4 +++- users/ngtk.json | 4 +++- users/ngyuki.json | 5 ++++- users/nhan.json | 10 +++++----- users/nhanderu.json | 6 +++--- users/nhayato.json | 4 +++- users/nhoizey.json | 5 ++++- users/nichom.json | 10 +++++----- users/nickmanos.json | 5 ++++- users/nicksp.json | 12 ++++++------ users/nico.json | 4 ++-- users/niftylettuce.json | 7 ++++++- users/nightw.json | 6 +++++- users/nik.json | 4 +++- users/nikbobo.json | 8 ++++---- users/nikhilgohil11.json | 4 +++- users/nikolay.json | 12 ++++++------ users/nil.json | 7 ++++++- users/nilesh.json | 7 ++++++- users/nilkesede.json | 7 ++++++- users/nilswloka.json | 4 +++- users/niltoncms.json | 8 +++++++- users/nima.json | 8 +++++++- users/nimbu.json | 7 ++++++- users/nisargrthakkar.json | 12 ++++++------ users/nishanths.json | 4 +++- users/nitori.json | 4 +++- users/nitriques.json | 8 ++++---- users/njordon.json | 10 +++++----- users/nk.json | 7 ++++++- users/nks.json | 8 ++++---- users/nlr.json | 12 ++++++------ users/nm.json | 4 +++- users/nmanos.json | 6 +++++- users/nnexus.json | 4 +++- users/nntoan.json | 8 ++++---- users/no.json | 7 ++++++- users/nodaguti.json | 5 ++++- users/nodejsbrasil.json | 10 +++++----- users/noeldavies.json | 4 +++- users/nojb.json | 4 +++- users/nooblad.json | 4 +++- users/noodlehaus.json | 6 +++++- users/norcross.json | 7 ++++++- users/noriaki.json | 10 +++++----- users/noromanba.json | 6 +++++- users/norris.json | 6 +++++- users/noty.json | 4 +++- users/novalagung.json | 10 +++++----- users/nqngo.json | 6 +++--- users/nrakochy.json | 6 +++++- users/nrm.json | 5 ++++- users/ns.json | 7 ++++++- users/nsisodiya.json | 7 ++++++- users/numediaweb.json | 7 ++++++- users/nuri.json | 4 +++- users/nv.json | 7 ++++++- users/nvcnvn.json | 4 +++- users/nyarla.json | 8 +++++++- users/o.json | 7 ++++++- users/oaeide.json | 4 +++- users/obihann.json | 6 +++++- users/object505.json | 6 +++++- users/oc.json | 6 +++++- users/octavioturra.json | 7 ++++++- users/odsod.json | 4 +++- users/ofer-shaham.json | 7 ++++++- users/ofer.json | 4 +++- users/oguching.json | 6 +++--- users/ohtomi.json | 5 ++++- users/oidong1.json | 4 +++- users/ojoaofernandes.json | 4 +++- users/ok.json | 5 ++++- users/okeyaki.json | 4 +++- users/ol.json | 7 ++++++- users/olalonde.json | 6 +++++- users/olav.json | 7 ++++++- users/olgabot.json | 4 +++- users/oliciv.json | 6 +++++- users/olivere.json | 4 +++- users/olivernn.json | 4 +++- users/olivier.json | 7 ++++++- users/ollej.json | 8 +++++++- users/olly.json | 4 +++- users/olmokramer.json | 4 +++- users/omarithawi.json | 4 +++- users/omg.json | 14 +++++++------- users/omi.json | 7 ++++++- users/omidgharib.json | 14 +++++++------- users/omtinez.json | 4 +++- users/onarray.json | 5 ++++- users/onecmf.json | 7 ++++++- users/onedge.json | 4 +++- users/onenorth.json | 6 +++++- users/oojs.json | 8 ++++---- users/openjtalkgolang.json | 6 +++++- users/oppara.json | 6 +++--- users/opsworks-ruby.json | 5 ++++- users/orgachem.json | 5 ++++- users/origami-tower.json | 8 +++++++- users/origamitower.json | 8 +++++++- users/originalmachine.json | 7 ++++++- users/orlin.json | 12 ++++++------ users/orzfly.json | 8 +++++++- users/os0x.json | 6 +++--- users/oshida.json | 5 ++++- users/oswaldoacauan.json | 6 +++++- users/othree.json | 6 +++--- users/outline.json | 4 ++-- users/outsider.json | 7 ++++++- users/owebboy.json | 4 +++- users/owm.json | 8 ++++---- users/oxguy3.json | 7 ++++++- users/oxy.json | 5 ++++- users/ozh.json | 7 ++++++- users/ozzyr.json | 7 ++++++- users/pablodv.json | 4 +++- users/pablojim.json | 4 +++- users/pacbard.json | 5 ++++- users/padde.json | 4 +++- users/pagoda.json | 4 +++- users/pagodabox.json | 7 ++++++- users/pahnin.json | 7 ++++++- users/palleas.json | 8 ++++---- users/panjiesw.json | 10 +++++----- users/pankaj.json | 7 ++++++- users/parker.json | 7 ++++++- users/parkere.json | 4 +++- users/parryc.json | 7 ++++++- users/partkyle.json | 4 +++- users/passcod.json | 4 ++-- users/passelin.json | 5 ++++- users/patrick.json | 4 +++- users/patricmutwiri.json | 10 +++++----- users/paul-vollmer.json | 10 +++++----- users/paul.json | 5 ++++- users/paulcuth.json | 4 ++-- users/paulf.json | 7 ++++++- users/paulmillr.json | 5 ++++- users/paulmoore.json | 7 ++++++- users/paulredmond.json | 4 +++- users/paulrobertlloyd.json | 5 ++++- users/payliu.json | 8 +++++++- users/pb.json | 12 ++++++------ users/pci.json | 4 +++- users/pcole.json | 7 ++++++- users/pdfrod.json | 4 +++- users/pdostal.json | 12 ++++++------ users/peatio.json | 6 +++++- users/peccu.json | 5 ++++- users/pedrolamas.json | 6 +++++- users/pelletier.json | 4 +++- users/pemrouz.json | 4 +++- users/penguin4games.json | 8 ++++---- users/per.json | 6 +++++- users/petamoriken.json | 5 ++++- users/pete.json | 9 ++++++++- users/peter.json | 7 ++++++- users/peterc.json | 5 ++++- users/petite.json | 4 +++- users/petitviolet.json | 10 +++++----- users/pf.json | 8 +++++++- users/pfiled.json | 4 +++- users/pg.json | 5 ++++- users/pgrenaud.json | 6 +++++- users/phakin.json | 6 +++--- users/phanimahesh.json | 7 ++++++- users/phaserstudio.json | 7 ++++++- users/phawk.json | 6 +++++- users/phgarcia.json | 8 ++++---- users/phiber.json | 8 +++++++- users/phibermit.json | 2 +- users/philippbosch.json | 4 ++-- users/philippwiddra.json | 6 +++++- users/philtr.json | 6 +++++- users/philworthington.json | 7 ++++++- users/phlipper.json | 8 +++++++- users/phlux.json | 8 +++++++- users/phm.json | 7 ++++++- users/phucnm.json | 4 +++- users/phuu.json | 7 ++++++- users/pid.json | 8 +++++++- users/piecioshka.json | 4 +++- users/pierre.json | 4 ++-- users/pietervanderwerff.json | 4 ++-- users/pigmon.json | 4 +++- users/pikesley.json | 8 ++++---- users/piksel.json | 12 ++++++------ users/pine.json | 5 ++++- users/pinjasaur.json | 12 ++++++------ users/pipwerks.json | 4 +++- users/pirosikick.json | 5 ++++- users/pitomba.json | 6 +++++- users/piyush.json | 8 +++++++- users/piyushvarshney.json | 7 ++++++- users/pjbgf.json | 6 +++++- users/pjhampton.json | 4 +++- users/plasticpanda.json | 4 +++- users/pluma.json | 5 ++++- users/pluschnikow.json | 6 +++++- users/pm.json | 5 ++++- users/pm5.json | 5 +++-- users/pmac.json | 6 +++++- users/pmk.json | 6 +++++- users/pmowrer.json | 5 ++++- users/pmuellr.json | 4 ++-- users/poapfel.json | 4 +++- users/polem.json | 4 +++- users/polossk.json | 10 +++++----- users/ponko2.json | 5 ++++- users/popomore.json | 8 ++++---- users/popoway.json | 12 ++++++------ users/porada.json | 5 ++++- users/porras.json | 4 +++- users/posa88.json | 14 +++++++------- users/pothibo.json | 4 +++- users/pouya.json | 12 ++++++------ users/poying.json | 6 +++++- users/poyu.json | 6 +++++- users/pragai.json | 7 ++++++- users/pragmaticivan.json | 4 +++- users/prajankya.json | 10 +++++----- users/pranavrajs.json | 4 +++- users/pranay.json | 7 ++++++- users/pranayt.json | 7 ++++++- users/prashant0598.json | 10 +++++----- users/prashcr.json | 8 ++++---- users/pratyk.json | 7 ++++++- users/praveen.json | 6 +++--- users/pravj.json | 5 ++++- users/preco.json | 7 ++++++- users/prescott.json | 7 ++++++- users/preston.json | 4 +++- users/probablywrong.json | 7 ++++++- users/prodicus.json | 4 +++- users/proudlygeek.json | 5 ++++- users/prsly.json | 4 ++-- users/pschlosser.json | 6 +++--- users/psykzz.json | 9 ++++++++- users/psyrendust.json | 6 +++++- users/pt.json | 7 ++++++- users/pthangeda.json | 7 ++++++- users/pti.json | 6 +++--- users/punkish.json | 7 ++++++- users/purdy.json | 9 ++++++++- users/pushandplay.json | 12 ++++++------ users/pwmckenna.json | 4 +++- users/pwn.json | 7 ++++++- users/pwnall.json | 6 +++++- users/px.json | 8 +++++++- users/pxc.json | 6 +++++- users/pxgamer.json | 9 ++++++++- users/pyyoshi.json | 4 +++- users/qfox.json | 7 ++++++- users/qing.json | 4 +++- users/qix1986.json | 8 +++++++- users/qorbani.json | 9 ++++++++- users/qrawl.json | 7 ++++++- users/quantumgraph.json | 4 +++- users/queryli.json | 8 +++++++- users/questbeat.json | 4 +++- users/qwertypants.json | 4 +++- users/r15ch13.json | 12 ++++++------ users/raananw.json | 7 ++++++- users/racklin.json | 5 ++++- users/radic.json | 9 ++++++++- users/radio-t.json | 6 +++++- users/raegen.json | 11 +++++------ users/raf.json | 7 ++++++- users/rafamello.json | 9 +++++++-- users/raindrop.json | 6 +++++- users/raja.json | 6 +++--- users/rajarshi.json | 8 ++++---- users/rajeevkannav.json | 9 ++++++++- users/rajinwonderland.json | 12 ++++++------ users/ramanan.json | 10 +++++----- users/ramin.json | 7 ++++++- users/ramirio.json | 5 ++++- users/ramonpage.json | 7 ++++++- users/ramsey.json | 10 +++++----- users/random-rem.json | 4 +++- users/randsonjs.json | 10 +++++----- users/raphael.json | 4 ++-- users/raphaelbronsveld.json | 4 +++- users/raphaelfabeni.json | 8 ++++---- users/rappa.json | 8 +++++++- users/rappasoft.json | 8 +++++++- users/rapson.json | 4 +++- users/rares.json | 7 ++++++- users/rasch.json | 7 ++++++- users/ravigehlot.json | 4 +++- users/raw-engineering.json | 6 +++++- users/raweng.json | 5 ++++- users/rawengineering.json | 5 ++++- users/raypatterson.json | 8 ++++---- users/rbardini.json | 8 +++++++- users/rcpeters.json | 6 +++--- users/rcta.json | 7 ++++++- users/readytalk.json | 4 +++- users/recoye.json | 7 ++++++- users/redpumpkin.json | 7 ++++++- users/reedia.json | 4 +++- users/reefaq.json | 5 ++++- users/rei.json | 6 +++++- users/rejack.json | 8 +++++++- users/relequestual.json | 4 +++- users/relu.json | 4 +++- users/rem-test.json | 7 ++++++- users/rem-test2.json | 7 ++++++- users/rem.json | 10 +++++----- users/rem123.json | 7 ++++++- users/rematin.json | 4 +++- users/reminisceme.json | 6 +++++- users/remybach.json | 6 +++++- users/remyg.json | 7 ++++++- users/remz.json | 4 +++- users/renatoargh.json | 6 +++++- users/rene.json | 7 ++++++- users/ress.json | 8 ++++---- users/return1.json | 5 ++++- users/revathskumar.json | 4 +++- users/revi.json | 8 ++++---- users/revolunet.json | 6 +++--- users/reza.json | 8 +++++++- users/rflpazini.json | 2 +- users/rg.json | 6 +++--- users/rgoyard.json | 4 +++- users/rhardih.json | 4 +++- users/rhiokim.json | 4 +++- users/rhlnair.json | 4 +++- users/rhnvrm.json | 7 ++++++- users/rhynl.json | 10 +++++----- users/ri7nz.json | 10 +++++----- users/riadloukili.json | 8 +++++++- users/ribeiroevandro.json | 10 +++++----- users/ricardo.json | 10 +++++----- users/ricardogouveia3.json | 10 +++++----- users/richardcooper.json | 12 ++++++------ users/richo.json | 8 ++++---- users/richsage.json | 4 +++- users/rickary.json | 5 ++++- users/rictorres.json | 6 +++++- users/rigging.json | 4 +++- users/riju.json | 10 +++++----- users/rinaldi.json | 5 ++++- users/ringe.json | 7 ++++++- users/rip.json | 4 ++-- users/river24.json | 7 ++++++- users/rixius.json | 6 +++++- users/rizky.json | 5 ++++- users/rjw57.json | 6 +++++- users/rkh.json | 4 +++- users/rkjun.json | 4 ++-- users/rl.json | 8 +++++++- users/rloopteam.json | 6 +++++- users/rm.json | 4 +++- users/rmartin.json | 6 +++--- users/rmf.json | 10 +++++----- users/rmlewisuk.json | 7 ++++++- users/rmm5t.json | 10 +++++----- users/rmsubekti.json | 6 +++--- users/rmunn.json | 5 ++++- users/rnelson.json | 8 +++++++- users/rob.json | 7 ++++++- users/robario.json | 5 ++++- users/robdodson.json | 7 ++++++- users/roberthernandez.json | 8 +++++++- users/robertlucian.json | 10 +++++----- users/robin.json | 12 ++++++------ users/robotblake.json | 7 ++++++- users/robxu9.json | 7 ++++++- users/rock.json | 6 +++++- users/rodchyn.json | 6 +++++- users/rogeriopradoj.json | 6 +++++- users/rogeriorc.json | 12 ++++++------ users/rohanc.json | 9 ++++----- users/rohithasrk.json | 10 +++++----- users/rok.json | 9 ++++++++- users/romac.json | 6 +++++- users/romain.json | 4 +++- users/roman-boiko.json | 7 ++++++- users/romanboiko.json | 7 ++++++- users/romkey.json | 8 ++++---- users/ron975test.json | 4 +++- users/ronnchyran.json | 8 +++++++- users/rootulp.json | 4 +++- users/rosarior.json | 7 ++++++- users/rosebudandmoon.json | 4 +++- users/ross.json | 4 +++- users/rossjones.json | 4 +++- users/roy.json | 4 +++- users/rpavlik.json | 6 +++++- users/rpetz.json | 7 ++++++- users/rpetz1.json | 7 ++++++- users/rpowis.json | 4 +++- users/rubensfernandes.json | 6 +++++- users/rud.json | 8 +++++++- users/ruedap.json | 6 +++++- users/ruhland.json | 8 +++++++- users/rumpl.json | 4 ++-- users/runphp.json | 10 +++++----- users/rur.json | 7 ++++++- users/ruucm.json | 7 ++++++- users/rverrips.json | 8 ++++---- users/rx14.json | 4 +++- users/ryan.json | 4 +++- users/ryanjacobs.json | 6 +++--- users/ryanleland.json | 4 +++- users/ryanmjacobs.json | 7 ++++++- users/ryanscott.json | 6 +++++- users/ryanseddon.json | 5 ++++- users/ryanwu.json | 8 +++++++- users/ryck.json | 4 +++- users/ryepdx.json | 7 ++++++- users/ryf.json | 4 +++- users/rylee.json | 6 +++++- users/ryotahirano.json | 4 +++- users/s-a.json | 10 +++++----- users/s.json | 6 +++++- users/saas-ninja.json | 8 +++++++- users/sachinjain.json | 7 ++++++- users/sadko.json | 5 ++++- users/saeid.json | 7 ++++++- users/sails-spinnaker.json | 7 ++++++- users/sails.json | 4 +++- users/sailxjx.json | 2 +- users/sallar.json | 8 +++++++- users/sam.json | 5 ++++- users/sambhav2612.json | 8 ++++---- users/samirtalwar.json | 7 ++++++- users/sammyt.json | 4 +++- users/samsoffes.json | 4 +++- users/samuel.json | 7 ++++++- users/samuelstiles.json | 4 +++- users/san.json | 12 ++++++------ users/sand.json | 7 ++++++- users/sandeep.json | 7 ++++++- users/sandropadin.json | 4 +++- users/sanfyin.json | 8 +++++++- users/sangliere.json | 4 +++- users/santtu.json | 7 ++++++- users/saravanan.json | 2 +- users/sarith.json | 7 ++++++- users/sarkasper.json | 4 +++- users/sascha.json | 4 +++- users/saschame.json | 4 +++- users/saschamzh.json | 10 +++++----- users/sasha.json | 4 +++- users/sashko.json | 2 +- users/sauerlo.json | 12 ++++++------ users/saulhardman.json | 7 ++++++- users/sauravtom.json | 7 ++++++- users/sbuzonas.json | 8 +++++++- users/scarf.json | 7 ++++++- users/schiff.json | 7 ++++++- users/schjetne.json | 4 +++- users/schlaus.json | 8 +++++++- users/schoolapply.json | 8 ++++---- users/scio.json | 8 +++++++- users/scottrobertson.json | 8 ++++---- users/scottsauyet.json | 10 +++++----- users/scoundrels.json | 8 +++++++- users/scr.json | 7 ++++++- users/scribe.json | 8 +++++++- users/scritt.json | 8 +++++++- users/scrittit.json | 8 +++++++- users/sdailey.json | 5 ++++- users/sdqali.json | 4 +++- users/sean-vieira.json | 5 ++++- users/seanecoffey.json | 6 +++--- users/seanirby.json | 4 +++- users/seb.json | 4 +++- users/sebacruz.json | 6 +++--- users/sebelga.json | 4 +++- users/secretery.json | 7 ++++++- users/seikichi.json | 5 ++++- users/seiran.json | 5 ++++- users/selwin.json | 7 ++++++- users/sendcloud.json | 4 +++- users/senura.json | 4 +++- users/senuraa.json | 6 +++++- users/serdar.json | 4 +++- users/sergeibelov.json | 4 +++- users/sergey.json | 8 ++++---- users/serverside-boilerplate.json | 7 ++++++- users/serversidetools.json | 7 ++++++- users/sesser.json | 7 ++++++- users/sevagf.json | 4 +++- users/sevos.json | 4 +++- users/sexyfishhorse.json | 8 ++++---- users/sg.json | 4 +++- users/sgehlich.json | 7 ++++++- users/sgerrand.json | 4 +++- users/sguidetti.json | 8 ++++---- users/sha2nk.json | 7 ++++++- users/shad0wcore.json | 13 ++++++------- users/shagen.json | 12 ++++++------ users/shagun.json | 10 +++++----- users/shaieilat.json | 4 +++- users/shaun.json | 6 +++--- users/shawnsi.json | 7 ++++++- users/sheedy.json | 4 ++-- users/sheknows.json | 5 ++++- users/sheldonrupp.json | 7 ++++++- users/shepjeng.json | 7 ++++++- users/shibu.json | 5 ++++- users/shidhincr.json | 4 +++- users/shiftkey.json | 7 ++++++- users/shimizukawa.json | 4 +++- users/shionryuu.json | 9 ++++++++- users/shivapoudel.json | 6 +++++- users/shldrs.json | 7 ++++++- users/shps.json | 6 +++++- users/shreyas.json | 8 ++++---- users/shumate.json | 7 ++++++- users/shy.json | 5 ++++- users/siamak.json | 6 +++++- users/sid.json | 8 +++++++- users/sidak.json | 4 +++- users/sienikasvusto.json | 7 ++++++- users/sigfried.json | 4 +++- users/signicode.json | 7 ++++++- users/sija.json | 8 ++++---- users/sil.json | 4 +++- users/sillysina.json | 9 ++++++++- users/silvers.json | 7 ++++++- users/sim.json | 6 +++++- users/simbo.json | 7 ++++++- users/simgeker.json | 8 +++++++- users/simon.json | 2 +- users/simonkberg.json | 10 +++++----- users/simonwalsh.json | 7 ++++++- users/singh.json | 5 ++++- users/singingwolfboy.json | 6 +++++- users/siteware.json | 6 +++++- users/siutsin.json | 9 ++++++++- users/sivasankarnc.json | 12 ++++++------ users/siwatpru.json | 8 ++++---- users/sjs.json | 6 +++--- users/sjwilliams.json | 6 +++++- users/skeletonframework.json | 4 +++- users/sketchmore.json | 6 +++++- users/skidding.json | 5 ++++- users/skinofstars.json | 7 ++++++- users/skip.json | 6 +++--- users/skwasha.json | 4 +++- users/skymaiden.json | 5 ++++- users/slackit.json | 5 ++++- users/slashsbin.json | 8 +++++++- users/sliceofcode.json | 4 +++- users/slikts.json | 7 ++++++- users/sloria.json | 4 +++- users/sm.json | 7 ++++++- users/smg.json | 4 +++- users/smirking-ninja.json | 7 ++++++- users/smly.json | 4 +++- users/smt.json | 6 +++--- users/sndnvaps.json | 12 ++++++------ users/snhack.json | 7 ++++++- users/snhackspace.json | 5 ++++- users/snig.json | 7 ++++++- users/snwflake.json | 8 ++++---- users/softcreatr.json | 10 +++++----- users/softnayr.json | 8 ++++---- users/softwave.json | 8 ++++---- users/sohalt.json | 7 ++++++- users/solid-constructs.json | 4 +++- users/solidworx.json | 6 +++--- users/somya.json | 4 +++- users/sonalraj.json | 7 ++++++- users/songdu.json | 7 ++++++- users/songmu.json | 4 +++- users/sonnywebdesign.json | 6 +++++- users/soong.json | 8 ++++---- users/sorairo.json | 6 +++--- users/soralv9.json | 6 +++++- users/soren121.json | 5 ++++- users/sotayamashita.json | 8 ++++---- users/souri.json | 6 +++++- users/specimen.json | 4 +++- users/sphw.json | 4 +++- users/spier.json | 5 ++++- users/spirited.json | 4 +++- users/spockz.json | 4 +++- users/spooky.json | 4 +++- users/sputnik27.json | 7 ++++++- users/sqneffect.json | 4 +++- users/src-run.json | 10 +++++----- users/srezic.json | 4 +++- users/srivathsa.json | 10 ++++------ users/srmor.json | 8 +++++++- users/ss.json | 4 +++- users/ssiefkas.json | 7 ++++++- users/stacey.json | 5 ++++- users/stack72.json | 4 +++- users/stakats.json | 6 +++++- users/stanzheng.json | 4 +++- users/stefan.json | 10 +++++----- users/stephdatu.json | 7 ++++++- users/stephendavis89.json | 6 +++--- users/stephenhay.json | 4 +++- users/steve.json | 8 +++++++- users/stevegraham.json | 4 +++- users/stevegrunwell.json | 7 ++++++- users/stever.json | 6 +++++- users/stewart.json | 4 +++- users/stoshiya.json | 5 ++++- users/strainno.json | 8 ++++---- users/straub.json | 7 ++++++- users/strawson.json | 4 +++- users/streethub.json | 7 ++++++- users/struktur.json | 7 ++++++- users/stuart.json | 4 +++- users/studer.json | 4 +++- users/styleshare.json | 6 +++++- users/suaoc.json | 4 +++- users/sublee.json | 7 ++++++- users/subtub.json | 12 ++++++------ users/succhiello.json | 5 ++++- users/sudhq.json | 7 ++++++- users/sue445.json | 4 +++- users/sugarshin.json | 4 +++- users/sun.json | 5 ++++- users/sungchi.json | 4 +++- users/sunny.json | 6 +++++- users/sunoru.json | 8 +++++++- users/superbil.json | 2 +- users/superdev.json | 4 +++- users/surender.json | 6 +++--- users/suriyaakudo.json | 12 ++++++------ users/susheel.json | 4 +++- users/swarnava.json | 12 ++++++------ users/swarnavabhattacharya.json | 12 ++++++------ users/swinton.json | 4 +++- users/symphonycms.json | 9 ++++----- users/synack.json | 6 +++--- users/synvox.json | 7 ++++++- users/szelcsanyi.json | 7 ++++++- users/szgal.json | 4 +++- users/t-ashula.json | 7 ++++++- users/t.json | 7 ++++++- users/tad.json | 9 ++++++++- users/tadejm.json | 7 ++++++- users/tadeo.json | 7 ++++++- users/takano32.json | 8 ++++---- users/takanopontaro.json | 5 ++++- users/takashi.json | 4 +++- users/takashisite.json | 9 ++++++++- users/takuro.json | 4 +++- users/talkative.json | 4 +++- users/tam.json | 7 ++++++- users/tamberg.json | 4 +++- users/tameraydin.json | 4 ++-- users/tanel.json | 4 +++- users/tangocoder.json | 9 ++++++++- users/tanja.json | 6 +++++- users/tantalor.json | 6 +++++- users/tap5.json | 4 +++- users/tarcisio.json | 5 ++++- users/taschetto.json | 9 ++++++++- users/tastapod.json | 7 ++++++- users/taye.json | 7 ++++++- users/taylor.json | 4 +++- users/taylorcc.json | 4 +++- users/tbaltrushaitis.json | 7 ++++++- users/tbekolay.json | 8 ++++---- users/tbr.json | 10 +++++----- users/tbrennan.json | 4 +++- users/tc.json | 7 ++++++- users/tchel.json | 8 +++++++- users/tclh123.json | 7 ++++++- users/tdsh.json | 5 ++++- users/tdue21.json | 6 +++--- users/teambition.json | 8 ++++---- users/teamosc.json | 7 ++++++- users/tec.json | 7 ++++++- users/teenst.json | 4 +++- users/tellnes.json | 4 +++- users/tenacioushusky.json | 10 +++++----- users/teppeis.json | 7 ++++++- users/terkel.json | 5 ++++- users/test.json | 4 +++- users/test12.json | 7 ++++++- users/testdouble.json | 8 ++++---- users/testermotherfucker.json | 4 +++- users/tetwis.json | 7 ++++++- users/texty.json | 7 ++++++- users/texty1.json | 6 +++++- users/texty2.json | 6 +++++- users/tf.json | 4 ++-- users/th.json | 6 +++--- users/thangeda.json | 7 ++++++- users/thasmo.json | 8 +++++++- users/the-zumata-team.json | 8 ++++---- users/theboshy.json | 8 +++++++- users/thedersen.json | 5 ++++- users/theflow0360.json | 10 +++++----- users/thehippo.json | 4 +++- users/thehodge.json | 5 ++++- users/thekhenzie.json | 8 ++++---- users/thelonelyghost.json | 10 +++++----- users/theodi.json | 8 ++++---- users/therebelrobot.json | 12 ++++++------ users/thescoundrels.json | 7 ++++++- users/theuves.json | 4 +++- users/thewebguy.json | 7 ++++++- users/theyranos.json | 4 +++- users/thi.json | 4 +++- users/thiagohagy.json | 6 +++++- users/thibautd.json | 5 ++++- users/thingsinjars.json | 7 ++++++- users/thj.json | 5 ++++- users/tholu.json | 4 +++- users/thomas.json | 7 ++++++- users/thomd.json | 4 +++- users/thompsonemerson.json | 4 +++- users/throger.json | 4 +++- users/thulioph.json | 7 ++++++- users/thypon.json | 6 +++++- users/tiaan.json | 8 ++++---- users/tian.json | 7 ++++++- users/ticking.json | 7 ++++++- users/tigra.json | 4 +++- users/tih.json | 7 ++++++- users/tilgovi.json | 6 +++++- users/tim.json | 4 +++- users/timjb.json | 2 +- users/timmolendijk.json | 4 ++-- users/timon-josh.json | 4 +++- users/timothy.json | 4 +++- users/timothyandrew.json | 4 +++- users/timtjtim.json | 9 ++++++++- users/timuruski.json | 4 +++- users/timzenner.json | 7 ++++++- users/tkahn.json | 8 ++++---- users/tleb.json | 2 +- users/tloep.json | 6 +++++- users/tlvince.json | 5 ++++- users/tmn.json | 10 +++++----- users/tmpvar.json | 7 ++++++- users/tmw.json | 5 ++++- users/tnoda.json | 4 +++- users/tnviking.json | 9 ++++++++- users/to4iki.json | 5 ++++- users/toblea.json | 4 +++- users/tocttou.json | 7 ++++++- users/todor.json | 4 ++-- users/toedter.json | 6 +++++- users/tokuhirom.json | 8 ++++---- users/tolu.json | 10 +++++----- users/tom.json | 11 +++++------ users/tomalec.json | 5 ++++- users/tomasmcguinness.json | 6 +++--- users/tomass1996.json | 10 +++++----- users/tombuildsstuff.json | 4 +++- users/tomchentw.json | 7 ++++++- users/tomdavies.json | 7 ++++++- users/tommarshall.json | 4 +++- users/tommy.json | 8 +++++++- users/tomohiro.json | 6 +++--- users/tomoya.json | 6 +++--- users/tomraithel.json | 12 ++++++------ users/toneden.json | 4 +++- users/tonekk.json | 5 ++++- users/tonivdv.json | 7 ++++++- users/tony.json | 8 +++++++- users/tonyb.json | 4 +++- users/tonyb486.json | 4 +++- users/tonypelletier.json | 4 +++- users/tonyphelps.json | 6 +++++- users/tonyskn.json | 4 ++-- users/toolbear.json | 8 ++++---- users/toomore.json | 10 +++++----- users/toonketels.json | 5 ++++- users/torjue.json | 6 +++++- users/tornqvist.json | 6 +++--- users/towry.json | 8 ++++---- users/tpojka.json | 12 ++++++------ users/tracking.json | 8 +++++++- users/transrate.json | 6 +++++- users/tregusti.json | 4 ++-- users/trev.json | 6 +++++- users/trevorburnham.json | 4 +++- users/trey.json | 4 ++-- users/trialtrialtrial.json | 8 +++++++- users/triplein.json | 2 +- users/trisk.json | 5 ++++- users/troopjs.json | 5 ++++- users/troutowicz.json | 4 +++- users/troy.json | 4 +++- users/true.json | 4 +++- users/trueserver.json | 4 +++- users/trykickoff.json | 6 +++++- users/tschaub.json | 4 ++-- users/tscm.json | 5 ++++- users/tulos.json | 6 +++++- users/turnbullm.json | 6 +++++- users/tvsloot.json | 6 +++++- users/twada.json | 5 ++++- users/twotoasters.json | 6 +++++- users/tyabe.json | 5 ++++- users/tzi.json | 5 ++++- users/tzmartin.json | 9 ++++++++- users/uda.json | 10 +++++----- users/udondokodoon.json | 6 +++++- users/udzura.json | 4 +++- users/uec-azlab.json | 5 ++++- users/uersi.json | 4 ++-- users/uglybugger.json | 7 ++++++- users/ugurceylan.json | 7 ++++++- users/uiwwnw.json | 6 +++++- users/ulysse.json | 4 ++-- users/umaar.json | 4 +++- users/umputun.json | 7 ++++++- users/undozen.json | 8 +++++++- users/unicodejs.json | 8 ++++---- users/unisharp.json | 12 ++++++------ users/unmoremaster.json | 7 ++++++- users/uservoice.json | 7 ++++++- users/usuck.json | 4 +++- users/utkarsh.json | 4 +++- users/uu59.json | 6 +++++- users/uv.json | 7 ++++++- users/uvd.json | 4 +++- users/v.json | 7 ++++++- users/vagnersantana.json | 7 ++++++- users/vagnervjs.json | 7 ++++++- users/vaibhavsingh97.json | 10 +++++----- users/vakiliy.json | 5 ++++- users/vardy.json | 8 +++++++- users/varundey.json | 8 +++++++- users/varunkumar.json | 7 ++++++- users/varzea.json | 4 ++-- users/vbalien.json | 7 ++++++- users/ve.json | 7 ++++++- users/venomvendor.json | 7 ++++++- users/vevix.json | 6 +++++- users/vi3okryulfqjthl6.json | 4 +++- users/via.json | 4 +++- users/vicnicius.json | 7 ++++++- users/victor.json | 7 ++++++- users/victordavydov.json | 4 +++- users/victordieggo.json | 6 +++++- users/viditor.json | 7 ++++++- users/vieiralucas.json | 6 +++++- users/vijayendra.json | 10 +++++----- users/viktorbergehall.json | 4 +++- users/viktort.json | 4 +++- users/vineetdhanawat.json | 6 +++--- users/vinipalma.json | 12 ++++++------ users/vinnyguitar.json | 6 +++++- users/vinwz.json | 4 +++- users/visav.json | 4 +++- users/vishal.json | 6 +++--- users/visionmedia.json | 4 +++- users/vitalk.json | 5 ++++- users/vito.json | 7 ++++++- users/vitor.json | 9 ++++++++- users/vitorbal.json | 6 +++++- users/vitorbritto.json | 6 +++++- users/vitornogueira.json | 4 +++- users/vjpr.json | 4 +++- users/vko-online.json | 4 +++- users/vmanot.json | 4 +++- users/vnk.json | 7 ++++++- users/vocksel.json | 6 +++--- users/voltdb.json | 8 ++++---- users/voodootikigod.json | 4 +++- users/voxpelli.json | 7 ++++++- users/vsisk.json | 6 +++--- users/vsouza.json | 9 ++++++++- users/vsr.json | 4 ++-- users/vt47.json | 10 +++++----- users/vtalbot.json | 6 +++++- users/vtence.json | 4 +++- users/vulk.json | 5 ++++- users/vuquochuy.json | 7 ++++++- users/vvakame.json | 5 ++++- users/vzool.json | 5 ++++- users/w.json | 14 +++++++------- users/wangbin.json | 6 +++++- users/wangchi.json | 10 +++++----- users/wangeleile.json | 7 +++---- users/wanja.json | 4 +++- users/warwick.json | 5 ++++- users/warwickmasson.json | 4 +++- users/watchout.json | 7 ++++++- users/wavell.json | 5 ++++- users/waynesan.json | 12 ++++++------ users/wbinnssmith.json | 5 ++++- users/wd.json | 6 +++++- users/web-xaser.json | 8 ++++---- users/web.json | 10 +++++----- users/webbson.json | 8 +++++++- users/webcomponentsorg.json | 6 +++++- users/webdevrich.json | 10 +++++----- users/webpro.json | 10 +++++----- users/weejames.json | 7 ++++++- users/wei.json | 10 +++++----- users/weijunji.json | 12 ++++++------ users/werle.json | 6 +++--- users/wesbos.json | 4 ++-- users/wesley.json | 7 ++++++- users/wesleydesouza.json | 8 +++++++- users/weslly.json | 6 +++++- users/wfxr.json | 8 ++++---- users/wglab.json | 4 +++- users/whatsim.json | 4 +++- users/whittle.json | 4 +++- users/whizark.json | 5 ++++- users/whostolemyhat.json | 5 ++++- users/whym.json | 10 +++++----- users/wickett.json | 4 ++-- users/widged.json | 6 +++++- users/widnyana.json | 8 +++++++- users/wiesner.json | 6 +++++- users/wilddog.json | 6 +++++- users/will.json | 6 +++--- users/will3942.json | 7 ++++++- users/william17.json | 5 ++++- users/willianduarte.json | 8 ++++---- users/willin.json | 9 ++++++++- users/willpower.json | 12 ++++++------ users/wind4869.json | 7 ++++++- users/witchard.json | 5 ++++- users/wjr3.json | 2 +- users/wmwragg.json | 4 +++- users/wolfiezero.json | 7 ++++++- users/wolflee.json | 4 +++- users/wong2.json | 5 ++++- users/wordpresspokhara.json | 6 +++++- users/wozozo.json | 6 +++--- users/wp-blank-canvas-framework.json | 7 ++++++- users/wp-freelancer-client-panel.json | 7 ++++++- users/wp-uptimerobot-dashboard-widget.json | 7 ++++++- users/wph.json | 9 ++++++++- users/wpk.json | 5 ++++- users/wpsitecare.json | 7 ++++++- users/wraithan.json | 8 +++++++- users/wrl.json | 6 +++++- users/wrong-entertainment.json | 10 +++++----- users/wsmoak.json | 7 ++++++- users/wtigert.json | 4 +++- users/wttw.json | 7 ++++++- users/wty.json | 4 +++- users/wty21cn.json | 4 +++- users/wuan.json | 4 +++- users/wuthefwasthat.json | 4 +++- users/ww24.json | 5 ++++- users/wwalker.json | 5 ++++- users/wwbrannon.json | 10 +++++----- users/wy.json | 6 +++++- users/wychoe.json | 4 +++- users/wytrivail.json | 4 +++- users/xcuze.json | 7 ++++++- users/xerula.json | 7 ++++++- users/xffljjqbqvsywxqakpvdbwyqqyt.json | 4 +++- users/xhh.json | 7 ++++++- users/xiaods.json | 7 ++++++- users/xight.json | 6 +++--- users/ximi.json | 7 ++++++- users/xinuc.json | 4 +++- users/xkerman.json | 5 ++++- users/xlab.json | 7 ++++++- users/xlune.json | 8 ++++---- users/xoebus.json | 7 ++++++- users/xsc.json | 7 ++++++- users/xtansia.json | 8 +++++++- users/xuhong.json | 6 +++++- users/xuncheng.json | 6 +++--- users/xyc.json | 4 +++- users/y3sh.json | 7 ++++++- users/y6nH.json | 4 ++-- users/ya-ota.json | 7 ++++++- users/yadavjpr.json | 8 ++++---- users/yaler.json | 4 +++- users/yantene.json | 5 ++++- users/yanyiwu.json | 7 ++++++- users/yappo.json | 8 ++++---- users/yarmomackenbach.json | 7 ++++++- users/yaro.json | 8 +++++++- users/yashar.json | 7 ++++++- users/yasyf.json | 7 ++++++- users/yatil.json | 4 ++-- users/yeltsin.json | 4 +++- users/yhnavein.json | 4 +++- users/yimengtianya.json | 4 +++- users/yimengtianya1.json | 7 ++++++- users/yimengtianya444.json | 7 ++++++- users/yiramang.json | 4 +++- users/ylrxeidx.json | 6 +++--- users/yoelp.json | 4 +++- users/yogesh.json | 6 +++--- users/yoggy.json | 5 ++++- users/yoginth.json | 8 ++++---- users/yoloconfessions.json | 4 +++- users/yoruaki.json | 6 +++--- users/yoshuki.json | 5 ++++- users/yosida95.json | 8 +++++++- users/yosugi.json | 4 +++- users/yotpo.json | 7 ++++++- users/youhide.json | 4 +++- users/yousuf.json | 7 ++++++- users/yousuf2.json | 8 +++++++- users/yousuf3.json | 7 ++++++- users/yrosen.json | 5 ++++- users/ysarbabi.json | 8 +++++++- users/yshrsmz.json | 6 +++++- users/ysong.json | 7 ++++++- users/ytaler.json | 8 +++++++- users/yu-cheng-chuang.json | 6 +++++- users/yuanyan.json | 8 ++++---- users/yuchi.json | 4 +++- users/yudoufu.json | 6 +++--- users/yudppp.json | 4 +++- users/yuhki50.json | 5 ++++- users/yulun.json | 10 +++++----- users/yungsang.json | 8 +++++++- users/yuriel.json | 6 +++--- users/yuriy.json | 4 +++- users/yurrriq.json | 7 ++++++- users/yusuke.json | 5 ++++- users/yzlow.json | 4 +++- users/z.json | 6 +++++- users/zachary.json | 6 +++++- users/zaki-yama.json | 6 +++--- users/zander.json | 5 ++++- users/zaploink.json | 7 ++++++- users/zaurus.json | 4 +++- users/zaz600.json | 6 +++++- users/zdwolfe.json | 8 +++++++- users/zebmccorkle.json | 12 ++++++------ users/zellio.json | 6 +++++- users/zen.json | 7 ++++++- users/zenjoy.json | 7 ++++++- users/zenorocha.json | 6 +++++- users/zenry.json | 8 +++++++- users/zhengyi.json | 2 +- users/zhiyuan.json | 4 +++- users/zhiyuanshi.json | 4 +++- users/ziloi.json | 7 ++++++- users/zimozito.json | 5 ++++- users/zimp.json | 6 +++++- users/zinc.json | 6 +++++- users/znck.json | 4 +++- users/zonble.json | 4 +++- users/zzeris.json | 5 ++++- users/zzimbler.json | 4 +++- users/zzzzbov.json | 2 +- 2839 files changed, 13021 insertions(+), 4866 deletions(-) diff --git a/users/$abas.json b/users/$abas.json index 92ad1835..37e7d902 100644 --- a/users/$abas.json +++ b/users/$abas.json @@ -1,8 +1,8 @@ { - "copyright": "Omid Gharib, https://github.com/omidgharib", - "url": "http://omidgharib.ir", - "format": "txt", - "email": "omidgharib@yahoo.com", - "gravatar": true, - "theme" : "default" -} \ No newline at end of file + "copyright": "Omid Gharib, https://github.com/omidgharib", + "url": "http://omidgharib.ir", + "format": "txt", + "email": "omidgharib@yahoo.com", + "gravatar": true, + "theme": "default" +} diff --git a/users/1000ch.json b/users/1000ch.json index 62ddc0ef..049df542 100644 --- a/users/1000ch.json +++ b/users/1000ch.json @@ -1 +1,5 @@ -{"copyright":"Shogo Sensui","url":"http:\/\/1000ch.net","email":"shogo.sensui@gmail.com"} \ No newline at end of file +{ + "copyright": "Shogo Sensui", + "url": "http://1000ch.net", + "email": "shogo.sensui@gmail.com" +} diff --git a/users/10kb.json b/users/10kb.json index 8fb4055d..57bf6b0a 100644 --- a/users/10kb.json +++ b/users/10kb.json @@ -1 +1,6 @@ -{"copyright":"10KB","url":"http:\/\/10kb.nl","email":"info@10kb.nl","gravatar":true} \ No newline at end of file +{ + "copyright": "10KB", + "url": "http://10kb.nl", + "email": "info@10kb.nl", + "gravatar": true +} diff --git a/users/135yshr.json b/users/135yshr.json index ccbbc566..114a5ea7 100644 --- a/users/135yshr.json +++ b/users/135yshr.json @@ -1,8 +1,8 @@ { - "copyright": "Yoshihiro Isago, https://twitter.com/135yshr", - "url": "https://twitter.com/135yshr", - "email": "isago@praisefirst.jp", - "format": "html", - "theme": "double-windsor", - "gravatar": true + "copyright": "Yoshihiro Isago, https://twitter.com/135yshr", + "url": "https://twitter.com/135yshr", + "email": "isago@praisefirst.jp", + "format": "html", + "theme": "double-windsor", + "gravatar": true } diff --git a/users/15minuteslate.json b/users/15minuteslate.json index f45a5180..88d1e4c6 100644 --- a/users/15minuteslate.json +++ b/users/15minuteslate.json @@ -1 +1,7 @@ -{"copyright":"15minuteslate","url":"http:\/\/15minuteslate.net","email":"hi@15minuteslate.net","format":"html","theme":"afterdark"} \ No newline at end of file +{ + "copyright": "15minuteslate", + "url": "http://15minuteslate.net", + "email": "hi@15minuteslate.net", + "format": "html", + "theme": "afterdark" +} diff --git a/users/1natsu172.json b/users/1natsu172.json index 59cbd0bb..da257408 100644 --- a/users/1natsu172.json +++ b/users/1natsu172.json @@ -1,7 +1,7 @@ { - "copyright": "1natsu, http://1natsu.net", - "url": "http://1natsu.net", - "email": "1natsummer+mitlicenseorg@gmail.com", - "theme": "material-grey", - "gravatar": true + "copyright": "1natsu, http://1natsu.net", + "url": "http://1natsu.net", + "email": "1natsummer+mitlicenseorg@gmail.com", + "theme": "material-grey", + "gravatar": true } diff --git a/users/1up.json b/users/1up.json index 4304d665..4d25e1ce 100644 --- a/users/1up.json +++ b/users/1up.json @@ -1 +1,6 @@ -{"copyright":"1UP, http:\/\/1upnote.com","url":"http:\/\/1upnote.com","email":"1up@1upz.com","format":"html"} \ No newline at end of file +{ + "copyright": "1UP, http://1upnote.com", + "url": "http://1upnote.com", + "email": "1up@1upz.com", + "format": "html" +} diff --git a/users/2357gi.json b/users/2357gi.json index 0dd555c6..cef06c8c 100644 --- a/users/2357gi.json +++ b/users/2357gi.json @@ -1,6 +1,6 @@ { - "copyright": "Kento Ohgi, https://github.com/2357gi", - "url": "https://2357gi.com/", - "format": "txt", - "email": "2357.gi@gmail.com" + "copyright": "Kento Ohgi, https://github.com/2357gi", + "url": "https://2357gi.com/", + "format": "txt", + "email": "2357.gi@gmail.com" } diff --git a/users/284km.json b/users/284km.json index 4e661d15..9e2ce0e8 100644 --- a/users/284km.json +++ b/users/284km.json @@ -1,5 +1,5 @@ { - "copyright": "284km", - "email": "k.furuhashi10@gmail.com", - "theme": "double-windsor" + "copyright": "284km", + "email": "k.furuhashi10@gmail.com", + "theme": "double-windsor" } diff --git a/users/2nate.json b/users/2nate.json index 3c1165d2..10ecfe86 100644 --- a/users/2nate.json +++ b/users/2nate.json @@ -1 +1,6 @@ -{"copyright":"2nate","url":"http:\/\/2nate.com","email":"post@2nate.com","format":"html"} \ No newline at end of file +{ + "copyright": "2nate", + "url": "http://2nate.com", + "email": "post@2nate.com", + "format": "html" +} diff --git a/users/321maker.json b/users/321maker.json index ec486310..8c20b640 100644 --- a/users/321maker.json +++ b/users/321maker.json @@ -1 +1,6 @@ -{"copyright":"321Maker","url":"http:\/\/321maker.com","email":"maker@321maker.com","format":"html"} \ No newline at end of file +{ + "copyright": "321Maker", + "url": "http://321maker.com", + "email": "maker@321maker.com", + "format": "html" +} diff --git a/users/360slider.json b/users/360slider.json index 40918f59..c2a0e7bb 100644 --- a/users/360slider.json +++ b/users/360slider.json @@ -1 +1,6 @@ -{"copyright":"360 Slider","url":"http:\/\/360slider.com","email":"gaurav@jassal.me","format":"txt"} \ No newline at end of file +{ + "copyright": "360 Slider", + "url": "http://360slider.com", + "email": "gaurav@jassal.me", + "format": "txt" +} diff --git a/users/3846.json b/users/3846.json index 356e4f6b..67deaf25 100644 --- a/users/3846.json +++ b/users/3846.json @@ -1 +1,4 @@ -{"copyright":"3846masa","url":"https:\/\/github.com\/3846masa"} \ No newline at end of file +{ + "copyright": "3846masa", + "url": "https://github.com/3846masa" +} diff --git a/users/3846masa.json b/users/3846masa.json index 356e4f6b..67deaf25 100644 --- a/users/3846masa.json +++ b/users/3846masa.json @@ -1 +1,4 @@ -{"copyright":"3846masa","url":"https:\/\/github.com\/3846masa"} \ No newline at end of file +{ + "copyright": "3846masa", + "url": "https://github.com/3846masa" +} diff --git a/users/4soft.json b/users/4soft.json index 83b1f9d8..8ae2e556 100644 --- a/users/4soft.json +++ b/users/4soft.json @@ -1 +1,3 @@ -{"copyright":"4Soft"} \ No newline at end of file +{ + "copyright": "4Soft" +} diff --git a/users/4thace.json b/users/4thace.json index 03ee5833..bd265527 100644 --- a/users/4thace.json +++ b/users/4thace.json @@ -1 +1,6 @@ -{"copyright":"Richard Magahiz","url":"https:\/\/magahiz.com","email":"frabdango@magahiz.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Richard Magahiz", + "url": "https://magahiz.com", + "email": "frabdango@magahiz.com", + "format": "txt" +} diff --git a/users/5310.json b/users/5310.json index 786189ff..2e396016 100644 --- a/users/5310.json +++ b/users/5310.json @@ -1 +1,7 @@ -{"copyright":"Sayantan Chaudhuri","url":"https:\/\/google.com\/+SayantanChaudhuri\/about","email":"sayantan.chaudhuri@gmail.com","theme":"plaintext","gravatar":true} \ No newline at end of file +{ + "copyright": "Sayantan Chaudhuri", + "url": "https://google.com/+SayantanChaudhuri/about", + "email": "sayantan.chaudhuri@gmail.com", + "theme": "plaintext", + "gravatar": true +} diff --git a/users/5509.json b/users/5509.json index 5202c363..7a05cc76 100644 --- a/users/5509.json +++ b/users/5509.json @@ -1,5 +1,5 @@ { - "copyright": "Kazunori Tokuda, http://5509.me", - "url": "http://5509.me", - "theme": "double-windsor" + "copyright": "Kazunori Tokuda, http://5509.me", + "url": "http://5509.me", + "theme": "double-windsor" } diff --git a/users/59.json b/users/59.json index 17d0635b..53c3be9f 100644 --- a/users/59.json +++ b/users/59.json @@ -1 +1,5 @@ -{"copyright":"59","url":"http:\/\/berabou.me","theme":"afterdark"} \ No newline at end of file +{ + "copyright": "59", + "url": "http://berabou.me", + "theme": "afterdark" +} diff --git a/users/59naga.json b/users/59naga.json index 4d83907b..a3540bb6 100644 --- a/users/59naga.json +++ b/users/59naga.json @@ -1 +1,4 @@ -{"copyright":"59naga","url":"http:\/\/berabou.me"} \ No newline at end of file +{ + "copyright": "59naga", + "url": "http://berabou.me" +} diff --git a/users/623hs.json b/users/623hs.json index 6251b5bd..d09152ad 100644 --- a/users/623hs.json +++ b/users/623hs.json @@ -1 +1,5 @@ -{"copyright":"623HS","email":"z.tar.gz@gmail.com","theme":"afterdark"} \ No newline at end of file +{ + "copyright": "623HS", + "email": "z.tar.gz@gmail.com", + "theme": "afterdark" +} diff --git a/users/6n38.json b/users/6n38.json index cd40d64e..519cc513 100644 --- a/users/6n38.json +++ b/users/6n38.json @@ -1,6 +1,6 @@ { - "copyright": "Elena", - "URL": "http://6n38.jp", - "format": "html", - "theme": "material-light-blue" + "copyright": "Elena", + "URL": "http://6n38.jp", + "format": "html", + "theme": "material-light-blue" } diff --git a/users/844196.json b/users/844196.json index cf672c79..4379c2b6 100644 --- a/users/844196.json +++ b/users/844196.json @@ -1 +1,4 @@ -{"copyright":"Masaya Tk","url":"http:\/\/104.844196.com\/"} \ No newline at end of file +{ + "copyright": "Masaya Tk", + "url": "http://104.844196.com/" +} diff --git a/users/9joneg.json b/users/9joneg.json index c7443037..231264b0 100644 --- a/users/9joneg.json +++ b/users/9joneg.json @@ -1 +1,3 @@ -{"copyright":"9joneg"} \ No newline at end of file +{ + "copyright": "9joneg" +} diff --git a/users/ArvinH.json b/users/ArvinH.json index ef35a4a4..2a72e898 100644 --- a/users/ArvinH.json +++ b/users/ArvinH.json @@ -1,7 +1,7 @@ { - "copyright": "Arvin Huang, https://blog.arvinh.info", - "url": "https://blog.arvinh.info", - "email": "arvin0731@gmail.com", - "gravatar": true, - "theme": "dusk" + "copyright": "Arvin Huang, https://blog.arvinh.info", + "url": "https://blog.arvinh.info", + "email": "arvin0731@gmail.com", + "gravatar": true, + "theme": "dusk" } diff --git a/users/BrentonCozby.json b/users/BrentonCozby.json index e35f5e1a..447ba20f 100644 --- a/users/BrentonCozby.json +++ b/users/BrentonCozby.json @@ -1,8 +1,8 @@ { - "copyright": "Brenton Cozby, https://brentoncozby.com", - "url": "https://brentoncozby.com", - "format": "html", - "email": "brenton.cozby@gmail.com", - "gravatar": true, - "theme": "default" + "copyright": "Brenton Cozby, https://brentoncozby.com", + "url": "https://brentoncozby.com", + "format": "html", + "email": "brenton.cozby@gmail.com", + "gravatar": true, + "theme": "default" } diff --git a/users/DanielArthurUK.json b/users/DanielArthurUK.json index f4fdb7d9..cc0f5239 100644 --- a/users/DanielArthurUK.json +++ b/users/DanielArthurUK.json @@ -1,6 +1,6 @@ { - "copyright":"Daniel Arthur, https://danielarthur.uk", - "url":"https://danielarthur.uk", - "email": "me@danielarthur.uk", - "gravatar": "true" + "copyright": "Daniel Arthur, https://danielarthur.uk", + "url": "https://danielarthur.uk", + "email": "me@danielarthur.uk", + "gravatar": "true" } diff --git a/users/SITZ.json b/users/SITZ.json index bdec8461..7c9c76bf 100644 --- a/users/SITZ.json +++ b/users/SITZ.json @@ -5,4 +5,4 @@ "format": "html", "theme": "default", "gravatar": true -} \ No newline at end of file +} diff --git a/users/a-tech.json b/users/a-tech.json index de203487..660cb426 100644 --- a/users/a-tech.json +++ b/users/a-tech.json @@ -1 +1,3 @@ -{"copyright":"Alplax Technologies"} \ No newline at end of file +{ + "copyright": "Alplax Technologies" +} diff --git a/users/a.json b/users/a.json index 7a76b929..c66e1db6 100644 --- a/users/a.json +++ b/users/a.json @@ -1 +1,6 @@ -{"copyright":"Austin Pray","url":"http:\/\/austinpray.com.com","email":"austin@austinpray.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Austin Pray", + "url": "http://austinpray.com.com", + "email": "austin@austinpray.com", + "format": "txt" +} diff --git a/users/aaaaaa.json b/users/aaaaaa.json index dbd965d1..565474ef 100644 --- a/users/aaaaaa.json +++ b/users/aaaaaa.json @@ -1 +1,6 @@ -{"copyright":"Aa Aa","url":"http:\/\/aaaaa.com","email":"me@mysite.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Aa Aa", + "url": "http://aaaaa.com", + "email": "me@mysite.com", + "format": "txt" +} diff --git a/users/aarjithn.json b/users/aarjithn.json index 6916f22f..6f8098bf 100644 --- a/users/aarjithn.json +++ b/users/aarjithn.json @@ -1 +1,6 @@ -{"copyright":"Aarjith Nandakumar","url":"http:\/\/aarjithn.github.io","email":"aarjithn[at]gmail.com","gravatar":"true"} \ No newline at end of file +{ + "copyright": "Aarjith Nandakumar", + "url": "http://aarjithn.github.io", + "email": "aarjithn[at]gmail.com", + "gravatar": "true" +} diff --git a/users/aaron.json b/users/aaron.json index 2d73997f..780fe7a0 100644 --- a/users/aaron.json +++ b/users/aaron.json @@ -1,3 +1,3 @@ { - "copyright": "Aaron Bassett, http://aaronbassett.com" + "copyright": "Aaron Bassett, http://aaronbassett.com" } diff --git a/users/aaroncaito.json b/users/aaroncaito.json index c786526b..0f595aeb 100644 --- a/users/aaroncaito.json +++ b/users/aaroncaito.json @@ -1 +1,6 @@ -{"copyright":"Aaron Caito","url":"http:\/\/csw.io","email":"aaron@csw.io","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Aaron Caito", + "url": "http://csw.io", + "email": "aaron@csw.io", + "theme": "double-windsor" +} diff --git a/users/aarontrostle.json b/users/aarontrostle.json index dd9fb553..2ae2440f 100644 --- a/users/aarontrostle.json +++ b/users/aarontrostle.json @@ -1,7 +1,7 @@ { - "copyright": "Aaron Trostle, http://aarontrostle.com", - "url": "http://aarontrostle.com", - "email": "aaron.trostle@gmail.com", - "format": "txt", - "theme": "plaintext" + "copyright": "Aaron Trostle, http://aarontrostle.com", + "url": "http://aarontrostle.com", + "email": "aaron.trostle@gmail.com", + "format": "txt", + "theme": "plaintext" } diff --git a/users/aashutoshrathi.json b/users/aashutoshrathi.json index 5e8ca80f..f5f46e0a 100644 --- a/users/aashutoshrathi.json +++ b/users/aashutoshrathi.json @@ -1,7 +1,7 @@ -{ - "copyright": "Aashutosh Rathi", - "url": "http://aashutoshrathi.co", - "email": "aashutoshrathi@gmail.com", - "format": "txt", - "theme": "dusk" +{ + "copyright": "Aashutosh Rathi", + "url": "http://aashutoshrathi.co", + "email": "aashutoshrathi@gmail.com", + "format": "txt", + "theme": "dusk" } diff --git a/users/aayush.json b/users/aayush.json index cbfcc185..61eb1b7f 100644 --- a/users/aayush.json +++ b/users/aayush.json @@ -1,6 +1,6 @@ { - "copyright": "Aayush Jain", - "email": "aayush.2896@gmail.com", - "gravatar": true, - "theme": "dusk" + "copyright": "Aayush Jain", + "email": "aayush.2896@gmail.com", + "gravatar": true, + "theme": "dusk" } diff --git a/users/ab2d.json b/users/ab2d.json index 0744e4d6..088f2cc9 100644 --- a/users/ab2d.json +++ b/users/ab2d.json @@ -1 +1,3 @@ -{"copyright":"Remy Sharp A"} \ No newline at end of file +{ + "copyright": "Remy Sharp A" +} diff --git a/users/abas.json b/users/abas.json index 92ad1835..37e7d902 100644 --- a/users/abas.json +++ b/users/abas.json @@ -1,8 +1,8 @@ { - "copyright": "Omid Gharib, https://github.com/omidgharib", - "url": "http://omidgharib.ir", - "format": "txt", - "email": "omidgharib@yahoo.com", - "gravatar": true, - "theme" : "default" -} \ No newline at end of file + "copyright": "Omid Gharib, https://github.com/omidgharib", + "url": "http://omidgharib.ir", + "format": "txt", + "email": "omidgharib@yahoo.com", + "gravatar": true, + "theme": "default" +} diff --git a/users/abensur.json b/users/abensur.json index e473c246..f32dd976 100644 --- a/users/abensur.json +++ b/users/abensur.json @@ -1,5 +1,5 @@ { - "copyright": "Rafael Abensur, http://abensur.net", - "url": "http://abensur.net", - "email": "rafael@abensur.net" + "copyright": "Rafael Abensur, http://abensur.net", + "url": "http://abensur.net", + "email": "rafael@abensur.net" } diff --git a/users/abhisekp.json b/users/abhisekp.json index 2818aab4..76f404df 100644 --- a/users/abhisekp.json +++ b/users/abhisekp.json @@ -1,6 +1,6 @@ { - "copyright": "Abhisek Pattnaik, https://about.me/abhisekp", - "url": "https://about.me/abhisekp", - "email": "abhisekp@engineer.com", - "gravatar": true + "copyright": "Abhisek Pattnaik, https://about.me/abhisekp", + "url": "https://about.me/abhisekp", + "email": "abhisekp@engineer.com", + "gravatar": true } diff --git a/users/abhshkdz.json b/users/abhshkdz.json index ddc202e5..99496ce9 100644 --- a/users/abhshkdz.json +++ b/users/abhshkdz.json @@ -1,6 +1,6 @@ { - "copyright": "Abhishek Das", - "url": "http://abhishekdas.com", - "email": "das.abhshk@gmail.com", - "format": "txt" + "copyright": "Abhishek Das", + "url": "http://abhishekdas.com", + "email": "das.abhshk@gmail.com", + "format": "txt" } diff --git a/users/abitgone.json b/users/abitgone.json index 90fcd068..a4d39d3a 100644 --- a/users/abitgone.json +++ b/users/abitgone.json @@ -1 +1,7 @@ -{"copyright":"Anthony Williams","url":"http:\/\/abitgone.co.uk","email":"anthony@abitgone.co.uk","format":"html","theme":"flesch"} \ No newline at end of file +{ + "copyright": "Anthony Williams", + "url": "http://abitgone.co.uk", + "email": "anthony@abitgone.co.uk", + "format": "html", + "theme": "flesch" +} diff --git a/users/abnersajr.json b/users/abnersajr.json index 0bc0b1c0..8ffc90a4 100644 --- a/users/abnersajr.json +++ b/users/abnersajr.json @@ -1 +1,6 @@ -{ "copyright": "Abner Soares Alves Junior", "url": "http://abnersajr.net", "email": "me@abnersajr.net", "format": "html" } +{ + "copyright": "Abner Soares Alves Junior", + "url": "http://abnersajr.net", + "email": "me@abnersajr.net", + "format": "html" +} diff --git a/users/abovethewater.json b/users/abovethewater.json index 9a48620c..92cfe0fa 100644 --- a/users/abovethewater.json +++ b/users/abovethewater.json @@ -1 +1,6 @@ -{"copyright":"Joe Mathews","url":"http:\/\/abovethewater.co.uk","email":"joe@abovethewater.co.uk","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Joe Mathews", + "url": "http://abovethewater.co.uk", + "email": "joe@abovethewater.co.uk", + "theme": "double-windsor" +} diff --git a/users/abrambleninja.json b/users/abrambleninja.json index ccbd38f9..821431f1 100644 --- a/users/abrambleninja.json +++ b/users/abrambleninja.json @@ -1 +1,4 @@ -{ "copyright": "ABrambleNinja", "url": "http://boj.cc"} +{ + "copyright": "ABrambleNinja", + "url": "http://boj.cc" +} diff --git a/users/abs.json b/users/abs.json index 1e38b3ab..1c0ca2e3 100644 --- a/users/abs.json +++ b/users/abs.json @@ -1,6 +1,6 @@ { - "copyright": "Austin Siford, https://abs.ec", - "url": "https://abs.ec", - "email": "dizzy@wow.com", - "gravatar": true + "copyright": "Austin Siford, https://abs.ec", + "url": "https://abs.ec", + "email": "dizzy@wow.com", + "gravatar": true } diff --git a/users/abuasmaa.json b/users/abuasmaa.json index 0e0d6e36..3d41299c 100644 --- a/users/abuasmaa.json +++ b/users/abuasmaa.json @@ -1 +1,3 @@ -{"copyright":"Abd Al-Ala Camara"} \ No newline at end of file +{ + "copyright": "Abd Al-Ala Camara" +} diff --git a/users/abulava.json b/users/abulava.json index fbbe4b8b..d81edac2 100644 --- a/users/abulava.json +++ b/users/abulava.json @@ -1 +1,6 @@ -{"copyright":"Andrey Bulava","email":"abulava@gmail.com","gravatar":true,"theme":"material-indigo"} \ No newline at end of file +{ + "copyright": "Andrey Bulava", + "email": "abulava@gmail.com", + "gravatar": true, + "theme": "material-indigo" +} diff --git a/users/ac.json b/users/ac.json index e8de7a5d..34ce8f79 100644 --- a/users/ac.json +++ b/users/ac.json @@ -1 +1,5 @@ -{"copyright":"Alan Cohen","url":"https:\/\/twitter.com\/alan_mit","email":"alan.mit@gmail.com"} \ No newline at end of file +{ + "copyright": "Alan Cohen", + "url": "https://twitter.com/alan_mit", + "email": "alan.mit@gmail.com" +} diff --git a/users/acaua.json b/users/acaua.json index 85bdb778..80f892ed 100644 --- a/users/acaua.json +++ b/users/acaua.json @@ -1 +1,5 @@ -{"copyright":"Acauã Montiel","url":"http:\/\/acauamontiel.com.br","email":"contato@acauamontiel.com.br"} +{ + "copyright": "Acau\u00c3\u00a3 Montiel", + "url": "http://acauamontiel.com.br", + "email": "contato@acauamontiel.com.br" +} diff --git a/users/acenode.json b/users/acenode.json index 4b232c2d..afa86a03 100644 --- a/users/acenode.json +++ b/users/acenode.json @@ -1 +1,6 @@ -{"copyright":"AceNode","url":"http:\/\/acenode.com https:\/\/github.com\/acenode","email":"open@acenode.com","format":"txt"} \ No newline at end of file +{ + "copyright": "AceNode", + "url": "http://acenode.com https://github.com/acenode", + "email": "open@acenode.com", + "format": "txt" +} diff --git a/users/achilles.json b/users/achilles.json index 7e726916..d07f58b5 100644 --- a/users/achilles.json +++ b/users/achilles.json @@ -1 +1,6 @@ -{"copyright":"Achillefs Charmpilas","url":"http:\/\/humbuckercode.co.uk\/licks\/","email":"ac@humbuckercode.co.uk","format":"txt"} \ No newline at end of file +{ + "copyright": "Achillefs Charmpilas", + "url": "http://humbuckercode.co.uk/licks/", + "email": "ac@humbuckercode.co.uk", + "format": "txt" +} diff --git a/users/achun.json b/users/achun.json index c3fe9c23..a6c898f7 100644 --- a/users/achun.json +++ b/users/achun.json @@ -1 +1,3 @@ -{"copyright":"achun, achun.shx@qq.com"} \ No newline at end of file +{ + "copyright": "achun, achun.shx@qq.com" +} diff --git a/users/aclemen1.json b/users/aclemen1.json index dbc5a766..defc6f3e 100644 --- a/users/aclemen1.json +++ b/users/aclemen1.json @@ -1 +1,6 @@ -{"copyright":"Alain Cl\u00e9ment-Pavon","email":"alain.clement-pavon@unil.ch","format":"txt","gravatar":true} \ No newline at end of file +{ + "copyright": "Alain Cl\u00e9ment-Pavon", + "email": "alain.clement-pavon@unil.ch", + "format": "txt", + "gravatar": true +} diff --git a/users/acolchado.json b/users/acolchado.json index 18c3e118..d34d8601 100644 --- a/users/acolchado.json +++ b/users/acolchado.json @@ -1 +1,3 @@ -{"copyright":"Agustin Colchado"} \ No newline at end of file +{ + "copyright": "Agustin Colchado" +} diff --git a/users/acollington.json b/users/acollington.json index 610d56f9..d1ac7a1f 100644 --- a/users/acollington.json +++ b/users/acollington.json @@ -1,6 +1,6 @@ { - "copyright": "Andrew Collington, http://www.amnuts.com/", - "url": "http://www.amnuts.com/", - "email": "andy@amnuts.com", - "gravatar": true + "copyright": "Andrew Collington, http://www.amnuts.com/", + "url": "http://www.amnuts.com/", + "email": "andy@amnuts.com", + "gravatar": true } diff --git a/users/adafruit.json b/users/adafruit.json index 64007537..aba66601 100644 --- a/users/adafruit.json +++ b/users/adafruit.json @@ -1 +1,3 @@ -{"copyright":"Adafruit"} \ No newline at end of file +{ + "copyright": "Adafruit" +} diff --git a/users/adam-lynch.json b/users/adam-lynch.json index ef35f018..da366f42 100644 --- a/users/adam-lynch.json +++ b/users/adam-lynch.json @@ -1 +1,6 @@ -{"copyright":"Adam Lynch","url":"http:\/\/adamlynch.ie","email":"contact@adamlynch.ie","format":"txt"} \ No newline at end of file +{ + "copyright": "Adam Lynch", + "url": "http://adamlynch.ie", + "email": "contact@adamlynch.ie", + "format": "txt" +} diff --git a/users/adam.json b/users/adam.json index 1fa017d4..3f8ef215 100644 --- a/users/adam.json +++ b/users/adam.json @@ -1,7 +1,7 @@ { - "copyright": "Adam Demasi", - "url": "http://kirb.me/", - "email": "adam@hbang.ws", - "gravatar": true, - "theme": "solarized" + "copyright": "Adam Demasi", + "url": "http://kirb.me/", + "email": "adam@hbang.ws", + "gravatar": true, + "theme": "solarized" } diff --git a/users/adamh.json b/users/adamh.json index fc4df2f3..7ba309f9 100644 --- a/users/adamh.json +++ b/users/adamh.json @@ -1 +1,4 @@ -{"copyright":"Adam Holt","url":"http:\/\/adamholt.co.uk\/"} \ No newline at end of file +{ + "copyright": "Adam Holt", + "url": "http://adamholt.co.uk/" +} diff --git a/users/adampritchard.json b/users/adampritchard.json index 9970d963..200babf9 100644 --- a/users/adampritchard.json +++ b/users/adampritchard.json @@ -1 +1,3 @@ -{"copyright":"Adam Pritchard"} \ No newline at end of file +{ + "copyright": "Adam Pritchard" +} diff --git a/users/adamreeve.json b/users/adamreeve.json index e3598bb8..b8ae9f14 100644 --- a/users/adamreeve.json +++ b/users/adamreeve.json @@ -1 +1,5 @@ -{"copyright":"Adam Reeve, http:\/\/adamreeve.com","url":"http:\/\/adamreeve.com","theme":"friendly"} \ No newline at end of file +{ + "copyright": "Adam Reeve, http://adamreeve.com", + "url": "http://adamreeve.com", + "theme": "friendly" +} diff --git a/users/adamroberts.json b/users/adamroberts.json index 7d99ac9d..c1609233 100644 --- a/users/adamroberts.json +++ b/users/adamroberts.json @@ -1 +1,3 @@ -{"copyright":"Adam Roberts"} \ No newline at end of file +{ + "copyright": "Adam Roberts" +} diff --git a/users/adi.json b/users/adi.json index 44e69986..1696b3a9 100644 --- a/users/adi.json +++ b/users/adi.json @@ -1,4 +1,4 @@ { - "copyright": "Adrian Mester, http://adrianmester.com", - "url": "http://adrianmester.com" + "copyright": "Adrian Mester, http://adrianmester.com", + "url": "http://adrianmester.com" } diff --git a/users/aditya.json b/users/aditya.json index e31a57f8..9000998b 100644 --- a/users/aditya.json +++ b/users/aditya.json @@ -1 +1,6 @@ -{"copyright":"Aditya Prakash","url":"http:\/\/adityaprakash.in","email":"me@adityaprakash.in","format":"html"} \ No newline at end of file +{ + "copyright": "Aditya Prakash", + "url": "http://adityaprakash.in", + "email": "me@adityaprakash.in", + "format": "html" +} diff --git a/users/adjohnson916.json b/users/adjohnson916.json index 3c6903e3..377fef5d 100644 --- a/users/adjohnson916.json +++ b/users/adjohnson916.json @@ -1,4 +1,4 @@ { - "copyright": "Anders D. Johnson, http://andrz.me", - "url": "http://andrz.me" -} \ No newline at end of file + "copyright": "Anders D. Johnson, http://andrz.me", + "url": "http://andrz.me" +} diff --git a/users/adopi.json b/users/adopi.json index edbe1ab1..873074d6 100644 --- a/users/adopi.json +++ b/users/adopi.json @@ -1 +1,5 @@ -{"copyright":"Adonis Najimi","email":"adopi.naj@gmail.com","format":"html"} \ No newline at end of file +{ + "copyright": "Adonis Najimi", + "email": "adopi.naj@gmail.com", + "format": "html" +} diff --git a/users/adr1enbe4udou1n.json b/users/adr1enbe4udou1n.json index 2a70655e..75ed7b02 100644 --- a/users/adr1enbe4udou1n.json +++ b/users/adr1enbe4udou1n.json @@ -1,6 +1,6 @@ { - "copyright": "Adrien Beaudouin", - "email": "adrien.beaudouin@outlook.com", - "gravatar": true, - "theme": "material-teal" + "copyright": "Adrien Beaudouin", + "email": "adrien.beaudouin@outlook.com", + "gravatar": true, + "theme": "material-teal" } diff --git a/users/adtaylor.json b/users/adtaylor.json index afb2a03d..76918d92 100644 --- a/users/adtaylor.json +++ b/users/adtaylor.json @@ -1,4 +1,4 @@ { - "copyright": "Adam Taylor, http://adtaylor.co.uk", - "url": "http://adtaylor.co.uk" + "copyright": "Adam Taylor, http://adtaylor.co.uk", + "url": "http://adtaylor.co.uk" } diff --git a/users/adthul.json b/users/adthul.json index 333a42b5..836be406 100644 --- a/users/adthul.json +++ b/users/adthul.json @@ -1 +1,6 @@ -{"copyright":"Andy Thul","email":"thul.andy@gmail.com","gravatar":true,"theme":"xtansia"} \ No newline at end of file +{ + "copyright": "Andy Thul", + "email": "thul.andy@gmail.com", + "gravatar": true, + "theme": "xtansia" +} diff --git a/users/adultlink.json b/users/adultlink.json index dc418e96..0d981a58 100644 --- a/users/adultlink.json +++ b/users/adultlink.json @@ -1,6 +1,6 @@ { - "copyright": "Guillermo Angel", - "email": "ved.adultlink@gmail.com", - "gravatar": true, - "theme": "material-green" + "copyright": "Guillermo Angel", + "email": "ved.adultlink@gmail.com", + "gravatar": true, + "theme": "material-green" } diff --git a/users/ael.json b/users/ael.json index 9b68f1c5..d853e89a 100644 --- a/users/ael.json +++ b/users/ael.json @@ -1 +1,4 @@ -{"copyright":"Futoshi Takeo","url":"http:\/\/ael.aquilegia.info\/"} \ No newline at end of file +{ + "copyright": "Futoshi Takeo", + "url": "http://ael.aquilegia.info/" +} diff --git a/users/aen.json b/users/aen.json index 28159313..d86c94cd 100644 --- a/users/aen.json +++ b/users/aen.json @@ -1 +1,3 @@ -{"copyright":"Aen Tan"} \ No newline at end of file +{ + "copyright": "Aen Tan" +} diff --git a/users/aendrew.json b/users/aendrew.json index d6871d29..87d823d7 100644 --- a/users/aendrew.json +++ b/users/aendrew.json @@ -1 +1,5 @@ -{"copyright":"\u00c6ndrew Rininsland","url":"http:\/\/aendrew.com","email":"aendrew@aendrew.com"} \ No newline at end of file +{ + "copyright": "\u00c6ndrew Rininsland", + "url": "http://aendrew.com", + "email": "aendrew@aendrew.com" +} diff --git a/users/aereal.json b/users/aereal.json index 6e5690d0..76c7f837 100644 --- a/users/aereal.json +++ b/users/aereal.json @@ -1,5 +1,5 @@ { - "copyright": "Hanae Aoki, kerare.org", - "url": "http://kerare.org/", - "theme": "afterdark" + "copyright": "Hanae Aoki, kerare.org", + "url": "http://kerare.org/", + "theme": "afterdark" } diff --git a/users/aergonaut.json b/users/aergonaut.json index 1b5eff67..b54c3e1a 100644 --- a/users/aergonaut.json +++ b/users/aergonaut.json @@ -1 +1,4 @@ -{"copyright":"Chris Fung","url":"https:\/\/github.com\/aergonaut"} \ No newline at end of file +{ + "copyright": "Chris Fung", + "url": "https://github.com/aergonaut" +} diff --git a/users/aetheris.json b/users/aetheris.json index 22032fc8..e04f0304 100644 --- a/users/aetheris.json +++ b/users/aetheris.json @@ -1 +1,4 @@ -{"copyright":"Alex Cai","email":"alex.cai@uwaterloo.ca"} \ No newline at end of file +{ + "copyright": "Alex Cai", + "email": "alex.cai@uwaterloo.ca" +} diff --git a/users/af.json b/users/af.json index f19dbcf4..0e804801 100644 --- a/users/af.json +++ b/users/af.json @@ -1,7 +1,7 @@ { - "copyright": "Stanislav Lechev [AngelFire], http://0xAF.org", - "url": "http://0xAF.org", - "email": "af@0xAF.org", - "gravatar": true, - "theme": "dusk" + "copyright": "Stanislav Lechev [AngelFire], http://0xAF.org", + "url": "http://0xAF.org", + "email": "af@0xAF.org", + "gravatar": true, + "theme": "dusk" } diff --git a/users/afein.json b/users/afein.json index 7e39592e..f6320c3f 100644 --- a/users/afein.json +++ b/users/afein.json @@ -1 +1,4 @@ -{"copyright":"Alex Mavrogiannis","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Alex Mavrogiannis", + "theme": "double-windsor" +} diff --git a/users/afghah.json b/users/afghah.json index ba781522..47dadf36 100644 --- a/users/afghah.json +++ b/users/afghah.json @@ -1 +1,3 @@ -{"copyright":"Ali Afghah"} \ No newline at end of file +{ + "copyright": "Ali Afghah" +} diff --git a/users/afiore.json b/users/afiore.json index 59e9b5e4..43e954b4 100644 --- a/users/afiore.json +++ b/users/afiore.json @@ -1 +1,3 @@ -{"copyright":"Andrea Fiore"} \ No newline at end of file +{ + "copyright": "Andrea Fiore" +} diff --git a/users/afonsof.json b/users/afonsof.json index 0b859e40..683ecc2d 100644 --- a/users/afonsof.json +++ b/users/afonsof.json @@ -1 +1,7 @@ -{"copyright":"Afonso F","url":"http:\/\/afonsof.com","email":"me@afonsof.com","format":"html","gravatar":true} \ No newline at end of file +{ + "copyright": "Afonso F", + "url": "http://afonsof.com", + "email": "me@afonsof.com", + "format": "html", + "gravatar": true +} diff --git a/users/agentmilindu.json b/users/agentmilindu.json index ee6c3e68..00d2f386 100644 --- a/users/agentmilindu.json +++ b/users/agentmilindu.json @@ -1 +1,7 @@ -{"copyright":"Milindu Sanoj Kumarage","url":"http:\/\/agentmilindu.com","email":"agentmilindu@gmail.com","gravatar":true,"theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Milindu Sanoj Kumarage", + "url": "http://agentmilindu.com", + "email": "agentmilindu@gmail.com", + "gravatar": true, + "theme": "double-windsor" +} diff --git a/users/agnium.json b/users/agnium.json index 5e453941..fc4225e4 100644 --- a/users/agnium.json +++ b/users/agnium.json @@ -1,7 +1,7 @@ { - "copyright": "Agnium, http://agnium.co.id", - "url": "http://agnium.co.id", - "email": "info@agnium.co.id", - "theme": "material-red", - "gravatar": true + "copyright": "Agnium, http://agnium.co.id", + "url": "http://agnium.co.id", + "email": "info@agnium.co.id", + "theme": "material-red", + "gravatar": true } diff --git a/users/ago6e.json b/users/ago6e.json index 8f90a705..42b42d31 100644 --- a/users/ago6e.json +++ b/users/ago6e.json @@ -1 +1,5 @@ -{"copyright":"Futoshi Takeo","url":"http:\/\/code.google.com\/p\/ago6e-libraries\/","format":"txt"} \ No newline at end of file +{ + "copyright": "Futoshi Takeo", + "url": "http://code.google.com/p/ago6e-libraries/", + "format": "txt" +} diff --git a/users/ahaasler.json b/users/ahaasler.json index 8b874d04..6ff59251 100644 --- a/users/ahaasler.json +++ b/users/ahaasler.json @@ -1,8 +1,8 @@ { - "copyright": "Adrian Haasler García", - "url": "https://www.adrianhaasler.com", - "email": "dev@adrianhaasler.com", - "format": "html", - "gravatar": true, - "theme": "material-blue" + "copyright": "Adrian Haasler Garc\u00c3\u00ada", + "url": "https://www.adrianhaasler.com", + "email": "dev@adrianhaasler.com", + "format": "html", + "gravatar": true, + "theme": "material-blue" } diff --git a/users/aheissenberger.json b/users/aheissenberger.json index 6bb4beca..cdc2e728 100644 --- a/users/aheissenberger.json +++ b/users/aheissenberger.json @@ -1 +1,3 @@ -{"copyright":"Andreas Heissenberger"} \ No newline at end of file +{ + "copyright": "Andreas Heissenberger" +} diff --git a/users/ahluntang.json b/users/ahluntang.json index 3408a2ce..85d5dffa 100644 --- a/users/ahluntang.json +++ b/users/ahluntang.json @@ -1 +1,6 @@ -{"copyright":"Ah-Lun Tang","url":"http:\/\/ahlun.be","email":"tang@ahlun.be","format":"txt"} \ No newline at end of file +{ + "copyright": "Ah-Lun Tang", + "url": "http://ahlun.be", + "email": "tang@ahlun.be", + "format": "txt" +} diff --git a/users/ahmet.json b/users/ahmet.json index 20b00d1b..5c27000e 100644 --- a/users/ahmet.json +++ b/users/ahmet.json @@ -1 +1,5 @@ -{"copyright":"Ahmet AYGUN","url":"http://github.com/ahmet","theme":"flesch"} \ No newline at end of file +{ + "copyright": "Ahmet AYGUN", + "url": "http://github.com/ahmet", + "theme": "flesch" +} diff --git a/users/ahsanhabib.json b/users/ahsanhabib.json index fb71b34a..9fb74938 100644 --- a/users/ahsanhabib.json +++ b/users/ahsanhabib.json @@ -1 +1,3 @@ -{"copyright":"Ahsan Habib"} \ No newline at end of file +{ + "copyright": "Ahsan Habib" +} diff --git a/users/ai-create-team.json b/users/ai-create-team.json index 3e0d259e..3d5ef569 100644 --- a/users/ai-create-team.json +++ b/users/ai-create-team.json @@ -1,5 +1,5 @@ { - "copyright": "AI Create team", - "url": "https://github.com/AI-create-team/", - "email": "ai.create.team@gmail.com" + "copyright": "AI Create team", + "url": "https://github.com/AI-create-team/", + "email": "ai.create.team@gmail.com" } diff --git a/users/aike.json b/users/aike.json index 8906d2af..94e36664 100644 --- a/users/aike.json +++ b/users/aike.json @@ -1 +1,4 @@ -{"copyright":"aike","url":"https:\/\/github.com\/aike"} \ No newline at end of file +{ + "copyright": "aike", + "url": "https://github.com/aike" +} diff --git a/users/ailen0ada.json b/users/ailen0ada.json index 4dc6a3b1..1b9296a3 100644 --- a/users/ailen0ada.json +++ b/users/ailen0ada.json @@ -1 +1,4 @@ -{"copyright":"Tsubasa HIRANO","url":"https:\/\/github.com\/ailen0ada"} \ No newline at end of file +{ + "copyright": "Tsubasa HIRANO", + "url": "https://github.com/ailen0ada" +} diff --git a/users/airtonix.json b/users/airtonix.json index 65cf5c1a..44b3afe2 100644 --- a/users/airtonix.json +++ b/users/airtonix.json @@ -1 +1,6 @@ -{"copyright":"Zenobius Jiricek","url":"http:\/\/airtonix.net","email":"airtonix@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Zenobius Jiricek", + "url": "http://airtonix.net", + "email": "airtonix@gmail.com", + "format": "txt" +} diff --git a/users/aj9.json b/users/aj9.json index 198e6e08..6b1368a1 100644 --- a/users/aj9.json +++ b/users/aj9.json @@ -1 +1,4 @@ -{"copyright":"Adam Gask","url":"http:\/\/aj9.github.io"} \ No newline at end of file +{ + "copyright": "Adam Gask", + "url": "http://aj9.github.io" +} diff --git a/users/ajay.json b/users/ajay.json index 3a4e11fd..f9c6759f 100644 --- a/users/ajay.json +++ b/users/ajay.json @@ -1 +1,3 @@ -{"copyright":"Ajay Raj"} \ No newline at end of file +{ + "copyright": "Ajay Raj" +} diff --git a/users/ajaykarwal.json b/users/ajaykarwal.json index 2c7b0f8e..32410ace 100644 --- a/users/ajaykarwal.json +++ b/users/ajaykarwal.json @@ -1,6 +1,6 @@ { - "copyright": "Ajay Karwal, http://ajaykarwal.com", - "url": "http://ajaykarwal.com", - "email": "ajaykarwal@gmail.com", - "gravatar": true + "copyright": "Ajay Karwal, http://ajaykarwal.com", + "url": "http://ajaykarwal.com", + "email": "ajaykarwal@gmail.com", + "gravatar": true } diff --git a/users/ajenjo.json b/users/ajenjo.json index 94a07040..5c0e934e 100644 --- a/users/ajenjo.json +++ b/users/ajenjo.json @@ -1,7 +1,7 @@ { - "copyright": "Jon Dotsoy.", - "url": "https://github.com/ajenjo/ajenjo-server", - "email": "ajenjo@jon.soy", - "theme": "xtansia", - "gravatar": true + "copyright": "Jon Dotsoy.", + "url": "https://github.com/ajenjo/ajenjo-server", + "email": "ajenjo@jon.soy", + "theme": "xtansia", + "gravatar": true } diff --git a/users/ajmal.json b/users/ajmal.json index b11238bc..a468013f 100644 --- a/users/ajmal.json +++ b/users/ajmal.json @@ -1 +1,4 @@ -{"copyright":"Ajmal Eylia","url":"http:\/\/ajmaleylia.com"} \ No newline at end of file +{ + "copyright": "Ajmal Eylia", + "url": "http://ajmaleylia.com" +} diff --git a/users/ajmichael.json b/users/ajmichael.json index 3c5562c7..d7206518 100644 --- a/users/ajmichael.json +++ b/users/ajmichael.json @@ -1 +1,4 @@ -{"copyright":"Adam Michael","email":"adam@ajmichael.net"} +{ + "copyright": "Adam Michael", + "email": "adam@ajmichael.net" +} diff --git a/users/ajsquared.json b/users/ajsquared.json index 26e6a6ab..4dcd983d 100644 --- a/users/ajsquared.json +++ b/users/ajsquared.json @@ -1 +1,6 @@ -{"copyright":"Andrew Johnson","url":"http:\/\/andrewjamesjohnson.com","email":"andrew@andrewjamesjohnson.com","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Andrew Johnson", + "url": "http://andrewjamesjohnson.com", + "email": "andrew@andrewjamesjohnson.com", + "theme": "double-windsor" +} diff --git a/users/ak.json b/users/ak.json index 2270e54c..1f9d6a5e 100644 --- a/users/ak.json +++ b/users/ak.json @@ -1 +1,3 @@ -{"copyright":"Abhishek Kandoi"} \ No newline at end of file +{ + "copyright": "Abhishek Kandoi" +} diff --git a/users/akash.json b/users/akash.json index 7bed0d0d..791cd249 100644 --- a/users/akash.json +++ b/users/akash.json @@ -1 +1,6 @@ -{"copyright":"Akash Kothawale","url":"https:\/\/decached.com","email":"akash@decached.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Akash Kothawale", + "url": "https://decached.com", + "email": "akash@decached.com", + "format": "txt" +} diff --git a/users/akervern.json b/users/akervern.json index 56bc42e4..9eb55680 100644 --- a/users/akervern.json +++ b/users/akervern.json @@ -1 +1,3 @@ -{"copyright":"Arnaud Kervern"} \ No newline at end of file +{ + "copyright": "Arnaud Kervern" +} diff --git a/users/akizor.json b/users/akizor.json index 777b777b..c95c563f 100644 --- a/users/akizor.json +++ b/users/akizor.json @@ -1,7 +1,7 @@ { - "copyright": "Daniel Plăcintă", - "url": "http://artgames.ro", - "email":"daniel@artgames.ro", - "gravatar":true, - "theme":"flesch" + "copyright": "Daniel Pl\u00c4\u0192cint\u00c4\u0192", + "url": "http://artgames.ro", + "email": "daniel@artgames.ro", + "gravatar": true, + "theme": "flesch" } diff --git a/users/akkartik.json b/users/akkartik.json index 989abe48..524b1f85 100644 --- a/users/akkartik.json +++ b/users/akkartik.json @@ -1 +1,3 @@ -{"copyright":"Kartik Agaram"} \ No newline at end of file +{ + "copyright": "Kartik Agaram" +} diff --git a/users/akky.json b/users/akky.json index f0931116..0c47bedd 100644 --- a/users/akky.json +++ b/users/akky.json @@ -1 +1,3 @@ -{"copyright":"Akky AKIMOTO"} \ No newline at end of file +{ + "copyright": "Akky AKIMOTO" +} diff --git a/users/aknosis.json b/users/aknosis.json index a262094c..e3a35295 100644 --- a/users/aknosis.json +++ b/users/aknosis.json @@ -1 +1,4 @@ -{"copyright":"Paul Giberson","url":"http:\/\/aknosis.com"} \ No newline at end of file +{ + "copyright": "Paul Giberson", + "url": "http://aknosis.com" +} diff --git a/users/akshay.json b/users/akshay.json index a2e092bb..e3a4fd2f 100644 --- a/users/akshay.json +++ b/users/akshay.json @@ -1 +1,3 @@ -{"copyright":"Akshay Mhatre"} \ No newline at end of file +{ + "copyright": "Akshay Mhatre" +} diff --git a/users/akshaymhatre.json b/users/akshaymhatre.json index a2e092bb..e3a4fd2f 100644 --- a/users/akshaymhatre.json +++ b/users/akshaymhatre.json @@ -1 +1,3 @@ -{"copyright":"Akshay Mhatre"} \ No newline at end of file +{ + "copyright": "Akshay Mhatre" +} diff --git a/users/alberto.json b/users/alberto.json index 99d6bdcc..5430932a 100644 --- a/users/alberto.json +++ b/users/alberto.json @@ -1,7 +1,7 @@ { - "copyright": "Alberto Chvaicer, http://flavors.me/alberto", - "url": "http://flavors.me/alberto", - "email": "achvaicer@gmail.com", - "gravatar": true, - "theme": "orange" + "copyright": "Alberto Chvaicer, http://flavors.me/alberto", + "url": "http://flavors.me/alberto", + "email": "achvaicer@gmail.com", + "gravatar": true, + "theme": "orange" } diff --git a/users/albertofdzm.json b/users/albertofdzm.json index be11bb67..37c8445b 100644 --- a/users/albertofdzm.json +++ b/users/albertofdzm.json @@ -1 +1,7 @@ -{"copyright":"Alberto Fernandez Medina, http:\/\/onlythepixel.com","url":"http:\/\/onlythepixel.com","email":"albertofdzm@gmail.com","gravatar":true,"theme":"black-beauty"} \ No newline at end of file +{ + "copyright": "Alberto Fernandez Medina, http://onlythepixel.com", + "url": "http://onlythepixel.com", + "email": "albertofdzm@gmail.com", + "gravatar": true, + "theme": "black-beauty" +} diff --git a/users/albertogasparin.json b/users/albertogasparin.json index 5e697b95..9c8de3c9 100644 --- a/users/albertogasparin.json +++ b/users/albertogasparin.json @@ -1 +1,3 @@ -{"copyright":"Alberto Gasparin"} \ No newline at end of file +{ + "copyright": "Alberto Gasparin" +} diff --git a/users/alco.json b/users/alco.json index aa92f5d2..f0d62ea1 100644 --- a/users/alco.json +++ b/users/alco.json @@ -1 +1,3 @@ -{"copyright":"Ricardo Alcocer"} \ No newline at end of file +{ + "copyright": "Ricardo Alcocer" +} diff --git a/users/alcore.json b/users/alcore.json index d9273206..c74a6141 100644 --- a/users/alcore.json +++ b/users/alcore.json @@ -1 +1,8 @@ -{"copyright":"Michal Chojnacki, http:\/\/muyo.io","url":"http:\/\/muyo.io","email":"m.chojnacki@muyo.io","format":"html","theme":"flesch","gravatar":true} \ No newline at end of file +{ + "copyright": "Michal Chojnacki, http://muyo.io", + "url": "http://muyo.io", + "email": "m.chojnacki@muyo.io", + "format": "html", + "theme": "flesch", + "gravatar": true +} diff --git a/users/aldenquimby.json b/users/aldenquimby.json index 0060ca7e..35d50b0b 100644 --- a/users/aldenquimby.json +++ b/users/aldenquimby.json @@ -1 +1,6 @@ -{"copyright":"Alden Quimby","url":"http:\/\/www.aldenquimby.com","email":"aldenquimby@gmail.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Alden Quimby", + "url": "http://www.aldenquimby.com", + "email": "aldenquimby@gmail.com", + "gravatar": true +} diff --git a/users/aldo.json b/users/aldo.json index e9909abe..2c6f576d 100644 --- a/users/aldo.json +++ b/users/aldo.json @@ -1,6 +1,6 @@ { - "copyright": "Aldo Iljazi", - "url": "http://aldo.io", - "email": "mail@aldo.io", - "theme": "flesch" + "copyright": "Aldo Iljazi", + "url": "http://aldo.io", + "email": "mail@aldo.io", + "theme": "flesch" } diff --git a/users/aldoborrero.json b/users/aldoborrero.json index ea8dacda..f6625571 100644 --- a/users/aldoborrero.json +++ b/users/aldoborrero.json @@ -1 +1,3 @@ -{"copyright":"Aldo Borrero"} \ No newline at end of file +{ + "copyright": "Aldo Borrero" +} diff --git a/users/ale.json b/users/ale.json index 265ca84c..ed6b6d52 100644 --- a/users/ale.json +++ b/users/ale.json @@ -1 +1,6 @@ -{"copyright":"Alejandro Morales","url":"http:\/\/alejandromorales.co.cc","email":"alejandro@numbus.co","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Alejandro Morales", + "url": "http://alejandromorales.co.cc", + "email": "alejandro@numbus.co", + "theme": "double-windsor" +} diff --git a/users/aleksi.json b/users/aleksi.json index f19058d2..31cd4490 100644 --- a/users/aleksi.json +++ b/users/aleksi.json @@ -1 +1,3 @@ -{"copyright":"Alexey Palazhchenko"} \ No newline at end of file +{ + "copyright": "Alexey Palazhchenko" +} diff --git a/users/alessioalex.json b/users/alessioalex.json index f4415cc2..cae6d826 100644 --- a/users/alessioalex.json +++ b/users/alessioalex.json @@ -1 +1,5 @@ -{"copyright":"Alexandru Vladutu","email":"alexandru.vladutu@gmail.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Alexandru Vladutu", + "email": "alexandru.vladutu@gmail.com", + "gravatar": true +} diff --git a/users/aleung.json b/users/aleung.json index 40e0d99a..11ba47ff 100644 --- a/users/aleung.json +++ b/users/aleung.json @@ -1 +1,5 @@ -{"copyright":"Leo Liang","url":"https:\/\/github.com\/aleung","email":"leoliang@gmail.com"} \ No newline at end of file +{ + "copyright": "Leo Liang", + "url": "https://github.com/aleung", + "email": "leoliang@gmail.com" +} diff --git a/users/alex.json b/users/alex.json index 93ea2897..0cb608b5 100644 --- a/users/alex.json +++ b/users/alex.json @@ -1 +1,3 @@ -{"copyright":"Alex Peattie"} \ No newline at end of file +{ + "copyright": "Alex Peattie" +} diff --git a/users/alexaaronfrancisco.json b/users/alexaaronfrancisco.json index a7093e93..341ce7cd 100644 --- a/users/alexaaronfrancisco.json +++ b/users/alexaaronfrancisco.json @@ -1 +1,3 @@ -{"copyright":"Alexander Aaron Francisco"} +{ + "copyright": "Alexander Aaron Francisco" +} diff --git a/users/alexander.json b/users/alexander.json index 76129107..bdc2bc47 100644 --- a/users/alexander.json +++ b/users/alexander.json @@ -1 +1,5 @@ -{"copyright":"Alexander Shpilkin","url":"http:\/\/about.me\/alex.shpilkin","email":"ashpilkin@gmail.com"} \ No newline at end of file +{ + "copyright": "Alexander Shpilkin", + "url": "http://about.me/alex.shpilkin", + "email": "ashpilkin@gmail.com" +} diff --git a/users/alexb.json b/users/alexb.json index 7b8a1606..db4c6308 100644 --- a/users/alexb.json +++ b/users/alexb.json @@ -1 +1,5 @@ -{"copyright":"Alex Bierwagen","url":"http:\/\/alexb.ninja","email":"me@alexb.ninja"} \ No newline at end of file +{ + "copyright": "Alex Bierwagen", + "url": "http://alexb.ninja", + "email": "me@alexb.ninja" +} diff --git a/users/alexgleason.json b/users/alexgleason.json index 52bff2c0..3cfc3c75 100644 --- a/users/alexgleason.json +++ b/users/alexgleason.json @@ -1 +1,3 @@ -{"copyright":"Alex Gleason"} \ No newline at end of file +{ + "copyright": "Alex Gleason" +} diff --git a/users/alexh.json b/users/alexh.json index 9bc5be8f..408ff4a9 100644 --- a/users/alexh.json +++ b/users/alexh.json @@ -1 +1,6 @@ -{"copyright":"Alex Hamilton","url":"https:\/\/hmltn.me","email":"github@aehmlo.me","gravatar":true} +{ + "copyright": "Alex Hamilton", + "url": "https://hmltn.me", + "email": "github@aehmlo.me", + "gravatar": true +} diff --git a/users/alexluke.json b/users/alexluke.json index fbc7dc37..0d372a59 100644 --- a/users/alexluke.json +++ b/users/alexluke.json @@ -1 +1,5 @@ -{"copyright":"Alex Luke","url":"http:\/\/alexluke.me","email":"alex@alexluke.me"} \ No newline at end of file +{ + "copyright": "Alex Luke", + "url": "http://alexluke.me", + "email": "alex@alexluke.me" +} diff --git a/users/alexowl.json b/users/alexowl.json index a9b75e6a..974a3e96 100644 --- a/users/alexowl.json +++ b/users/alexowl.json @@ -1,8 +1,8 @@ { - "copyright": "Alex Owl, https://github.com/AlexOwl", - "email": "AlexOwl@protonmail.com", - "url": "https://github.com/AlexOwl", - "format": "html", - "gravatar": true, - "theme": "material-red" + "copyright": "Alex Owl, https://github.com/AlexOwl", + "email": "AlexOwl@protonmail.com", + "url": "https://github.com/AlexOwl", + "format": "html", + "gravatar": true, + "theme": "material-red" } diff --git a/users/ali-sdk.json b/users/ali-sdk.json index ffbb9f2e..dd8d70dc 100644 --- a/users/ali-sdk.json +++ b/users/ali-sdk.json @@ -1 +1,6 @@ -{"copyright":"ali-sdk and other contributors","url":"https:\/\/github.com\/ali-sdk","email":"m@fengmk2.com","format":"txt"} \ No newline at end of file +{ + "copyright": "ali-sdk and other contributors", + "url": "https://github.com/ali-sdk", + "email": "m@fengmk2.com", + "format": "txt" +} diff --git a/users/ali.json b/users/ali.json index 60054650..540b8d9d 100644 --- a/users/ali.json +++ b/users/ali.json @@ -1 +1,6 @@ -{"copyright":"Ali El-Ashram","url":"http:\/\/aliel.herokuapp.com","email":"ali.elashram@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Ali El-Ashram", + "url": "http://aliel.herokuapp.com", + "email": "ali.elashram@gmail.com", + "format": "txt" +} diff --git a/users/alias.json b/users/alias.json index cef64fc5..9007afa3 100644 --- a/users/alias.json +++ b/users/alias.json @@ -1 +1,6 @@ -{"copyright":"Alias,http:\/\/www.alias4bb.com","url":"http:\/\/www.alias4bb.com","email":"yygggg@foxmail.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Alias,http://www.alias4bb.com", + "url": "http://www.alias4bb.com", + "email": "yygggg@foxmail.com", + "gravatar": true +} diff --git a/users/alibabatajine.json b/users/alibabatajine.json index 06768708..022fbdb4 100644 --- a/users/alibabatajine.json +++ b/users/alibabatajine.json @@ -1 +1,6 @@ -{"copyright":"Harald Haesler","url":"http:\/\/www.tajine.de","email":"mit@tajine.de","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Harald Haesler", + "url": "http://www.tajine.de", + "email": "mit@tajine.de", + "theme": "double-windsor" +} diff --git a/users/aliel.json b/users/aliel.json index 071b53df..208eccf4 100644 --- a/users/aliel.json +++ b/users/aliel.json @@ -1 +1,6 @@ -{"copyright":"Ali El-Ashram","url":"http:\/\/aliel.herokuapp.com","email":"ali.elashram@gmail.com","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Ali El-Ashram", + "url": "http://aliel.herokuapp.com", + "email": "ali.elashram@gmail.com", + "theme": "double-windsor" +} diff --git a/users/alimd.json b/users/alimd.json index a60108c4..2c647021 100644 --- a/users/alimd.json +++ b/users/alimd.json @@ -1,7 +1,7 @@ { - "copyright": "Ali Mihandoost, http://ali.md", - "url": "http://ali.md", - "email": "i@ali.md", - "theme": "flesch", - "gravatar": true + "copyright": "Ali Mihandoost, http://ali.md", + "url": "http://ali.md", + "email": "i@ali.md", + "theme": "flesch", + "gravatar": true } diff --git a/users/alisch.json b/users/alisch.json index d7478996..f473faf2 100644 --- a/users/alisch.json +++ b/users/alisch.json @@ -1 +1,6 @@ -{ "copyright": "Ali SADEGHIPOURKORABASLO", "url": "https://alisch.me/", "email": "mail@alisch.me", "format": "txt" } +{ + "copyright": "Ali SADEGHIPOURKORABASLO", + "url": "https://alisch.me/", + "email": "mail@alisch.me", + "format": "txt" +} diff --git a/users/alisdair.json b/users/alisdair.json index 3d26fbfb..8fa3a656 100644 --- a/users/alisdair.json +++ b/users/alisdair.json @@ -1 +1,3 @@ -{"copyright":"Alisdair McDiarmid"} \ No newline at end of file +{ + "copyright": "Alisdair McDiarmid" +} diff --git a/users/allthingssmitty.json b/users/allthingssmitty.json index 1f10cb1d..ad11d7a0 100644 --- a/users/allthingssmitty.json +++ b/users/allthingssmitty.json @@ -1,6 +1,6 @@ { - "copyright": "Matt Smith, https://github.com/AllThingsSmitty", - "url": "https://github.com/AllThingsSmitty", - "theme": "default", - "gravatar": true + "copyright": "Matt Smith, https://github.com/AllThingsSmitty", + "url": "https://github.com/AllThingsSmitty", + "theme": "default", + "gravatar": true } diff --git a/users/almad.json b/users/almad.json index 04051ba8..5f573208 100644 --- a/users/almad.json +++ b/users/almad.json @@ -1 +1,7 @@ -{"copyright":"Lukas Linhart","url":"http:\/\/almad.net","email":"bugs@almad.net","format":"html","theme":"eula-modern"} \ No newline at end of file +{ + "copyright": "Lukas Linhart", + "url": "http://almad.net", + "email": "bugs@almad.net", + "format": "html", + "theme": "eula-modern" +} diff --git a/users/alno.json b/users/alno.json index db6874c1..832c1516 100644 --- a/users/alno.json +++ b/users/alno.json @@ -1 +1,5 @@ -{"copyright":"Alexey Noskov","url":"http:\/\/alno.name\/","email":"alexey.noskov@gmail.com"} \ No newline at end of file +{ + "copyright": "Alexey Noskov", + "url": "http://alno.name/", + "email": "alexey.noskov@gmail.com" +} diff --git a/users/alphawhy.json b/users/alphawhy.json index 87528ea8..b6548dbc 100644 --- a/users/alphawhy.json +++ b/users/alphawhy.json @@ -1 +1,3 @@ -{"copyright":"Alpha Why"} \ No newline at end of file +{ + "copyright": "Alpha Why" +} diff --git a/users/altun.json b/users/altun.json index aba2401d..778458f2 100644 --- a/users/altun.json +++ b/users/altun.json @@ -1 +1,6 @@ -{"copyright":"Mustafa Altun","url":"http:\/\/mustafaaltun.com","email":"gmail@mustafaaltun.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Mustafa Altun", + "url": "http://mustafaaltun.com", + "email": "gmail@mustafaaltun.com", + "format": "txt" +} diff --git a/users/amaan.json b/users/amaan.json index 723f2856..7c6b06f4 100644 --- a/users/amaan.json +++ b/users/amaan.json @@ -1 +1,3 @@ -{"copyright":"Amaan Cheval"} \ No newline at end of file +{ + "copyright": "Amaan Cheval" +} diff --git a/users/amarlearning.json b/users/amarlearning.json index 0c91a7e2..d4af9eb5 100644 --- a/users/amarlearning.json +++ b/users/amarlearning.json @@ -1,7 +1,7 @@ { - "copyright": "Amar Prakash Pandey, http://amarpandey.me", - "url": "http://amarpandey.me", - "email": "amar.om1994@gmail.com", - "theme": "material-pink", - "gravatar": true + "copyright": "Amar Prakash Pandey, http://amarpandey.me", + "url": "http://amarpandey.me", + "email": "amar.om1994@gmail.com", + "theme": "material-pink", + "gravatar": true } diff --git a/users/amiranda.json b/users/amiranda.json index ff5d1cfb..a2ee9604 100644 --- a/users/amiranda.json +++ b/users/amiranda.json @@ -1 +1,3 @@ -{"copyright":"Alex Miranda"} \ No newline at end of file +{ + "copyright": "Alex Miranda" +} diff --git a/users/amitmerchant1990.json b/users/amitmerchant1990.json index b1a74493..e16a76cc 100644 --- a/users/amitmerchant1990.json +++ b/users/amitmerchant1990.json @@ -1,6 +1,6 @@ { - "copyright": "Amit Merchant", - "url": "https://github.com/amitmerchant1990", - "email": "bullredeyes@gmail.com", - "theme": "cherry" + "copyright": "Amit Merchant", + "url": "https://github.com/amitmerchant1990", + "email": "bullredeyes@gmail.com", + "theme": "cherry" } diff --git a/users/amjad.json b/users/amjad.json index 4edd0f73..9940638d 100644 --- a/users/amjad.json +++ b/users/amjad.json @@ -1,7 +1,7 @@ { - "copyright": "Amjad Ali", - "url": "http://amjd.github.io", - "email": "amjad.4@gmail.com", - "gravatar": true, - "theme": "black-beauty" + "copyright": "Amjad Ali", + "url": "http://amjd.github.io", + "email": "amjad.4@gmail.com", + "gravatar": true, + "theme": "black-beauty" } diff --git a/users/analogj.json b/users/analogj.json index 71275fb3..7543317f 100644 --- a/users/analogj.json +++ b/users/analogj.json @@ -1 +1,3 @@ -{"copyright":"Jason Kulatunga"} +{ + "copyright": "Jason Kulatunga" +} diff --git a/users/anant.json b/users/anant.json index 6af27def..5846d27e 100644 --- a/users/anant.json +++ b/users/anant.json @@ -1 +1,3 @@ -{"copyright":"Anant Jain"} \ No newline at end of file +{ + "copyright": "Anant Jain" +} diff --git a/users/ancy.json b/users/ancy.json index 28e3b9a4..99e40003 100644 --- a/users/ancy.json +++ b/users/ancy.json @@ -1,5 +1,5 @@ -{ - "copyright": "Ancy , http://lazulirose.com", - "url": "http://lazulirose.com", - "theme": "double-windsor" -} \ No newline at end of file +{ + "copyright": "Ancy , http://lazulirose.com", + "url": "http://lazulirose.com", + "theme": "double-windsor" +} diff --git a/users/and3k5.json b/users/and3k5.json index c3a44bfe..e6e06a41 100644 --- a/users/and3k5.json +++ b/users/and3k5.json @@ -1 +1,3 @@ -{"copyright":"Anders Kjeldsen"} \ No newline at end of file +{ + "copyright": "Anders Kjeldsen" +} diff --git a/users/andersonaguiar.json b/users/andersonaguiar.json index 99b09c9a..8a3ddf7b 100644 --- a/users/andersonaguiar.json +++ b/users/andersonaguiar.json @@ -1 +1,5 @@ -{"copyright":"Anderson Aguiar","url":"http:\/\/andersonaguiar.com.br","email":"andersonaguiar.web@gmail.com"} +{ + "copyright": "Anderson Aguiar", + "url": "http://andersonaguiar.com.br", + "email": "andersonaguiar.web@gmail.com" +} diff --git a/users/andre.json b/users/andre.json index 385f73a3..7bd03b3b 100644 --- a/users/andre.json +++ b/users/andre.json @@ -1 +1,3 @@ -{"copyright":"Andr\u00e9 Braga"} \ No newline at end of file +{ + "copyright": "Andr\u00e9 Braga" +} diff --git a/users/andreasonny.json b/users/andreasonny.json index f8bd7c1a..bb633709 100644 --- a/users/andreasonny.json +++ b/users/andreasonny.json @@ -1 +1,7 @@ -{"copyright":"Andrea SonnY","url":"https:\/\/github.com\/andreasonny83","email":"andreasonny83@gmail.com","gravatar":true,"theme":"material-teal"} +{ + "copyright": "Andrea SonnY", + "url": "https://github.com/andreasonny83", + "email": "andreasonny83@gmail.com", + "gravatar": true, + "theme": "material-teal" +} diff --git a/users/andreif.json b/users/andreif.json index 362a6ad3..6998e56f 100644 --- a/users/andreif.json +++ b/users/andreif.json @@ -1 +1,5 @@ -{"copyright":"Andrei Fokau","email":"fokau@kth.se","url":"https:\/\/github.com\/andreif"} \ No newline at end of file +{ + "copyright": "Andrei Fokau", + "email": "fokau@kth.se", + "url": "https://github.com/andreif" +} diff --git a/users/andreisebastianc.json b/users/andreisebastianc.json index d0165aa2..78410148 100644 --- a/users/andreisebastianc.json +++ b/users/andreisebastianc.json @@ -1,5 +1,5 @@ { - "copyright": "Andrei Sebastian Cîmpean", - "email": "andreisebastianc@gmail.com", - "format": "txt" + "copyright": "Andrei Sebastian C\u00c3\u00aempean", + "email": "andreisebastianc@gmail.com", + "format": "txt" } diff --git a/users/andrel.json b/users/andrel.json index ad12afbf..c1fc34df 100644 --- a/users/andrel.json +++ b/users/andrel.json @@ -1 +1,7 @@ -{"copyright":"Andre Loureiro","url":"http:\/\/andrel.me","email":"hi@andrel.me","gravatar":true,"theme":"opensans"} \ No newline at end of file +{ + "copyright": "Andre Loureiro", + "url": "http://andrel.me", + "email": "hi@andrel.me", + "gravatar": true, + "theme": "opensans" +} diff --git a/users/andreloureiro.json b/users/andreloureiro.json index 114b7bec..c4bbb9f4 100644 --- a/users/andreloureiro.json +++ b/users/andreloureiro.json @@ -1 +1,6 @@ -{"copyright":"Andre Loureiro","url":"http:\/\/andrel.me","email":"andreloureiroo@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Andre Loureiro", + "url": "http://andrel.me", + "email": "andreloureiroo@gmail.com", + "format": "txt" +} diff --git a/users/andrew.json b/users/andrew.json index a142346e..654f25f1 100644 --- a/users/andrew.json +++ b/users/andrew.json @@ -1 +1,5 @@ -{"copyright":"Andrew Fischer","email":"afischer15@mac.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Andrew Fischer", + "email": "afischer15@mac.com", + "gravatar": true +} diff --git a/users/andreyknupp.json b/users/andreyknupp.json index 5dc75265..e92ea844 100644 --- a/users/andreyknupp.json +++ b/users/andreyknupp.json @@ -1 +1,6 @@ -{"copyright":"Andrey Knupp","url":"http:\/\/github.com\/andreyknupp","email":"andreykvital@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Andrey Knupp", + "url": "http://github.com/andreyknupp", + "email": "andreykvital@gmail.com", + "format": "txt" +} diff --git a/users/andrezero.json b/users/andrezero.json index 6dc4fb16..a3cedfbb 100644 --- a/users/andrezero.json +++ b/users/andrezero.json @@ -1 +1,6 @@ -{"copyright":"Andre Torgal","url":"http:\/\/andretorgal.com","email":"andre.torgal@gmail.com","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Andre Torgal", + "url": "http://andretorgal.com", + "email": "andre.torgal@gmail.com", + "theme": "double-windsor" +} diff --git a/users/androidnix.json b/users/androidnix.json index 7de63ffc..1c85ec6b 100644 --- a/users/androidnix.json +++ b/users/androidnix.json @@ -1 +1,6 @@ -{"copyright":"Androidnix - Android Tools for Linux Users","theme":"flesch","email":"support@icodeclarity.com","format":"html"} \ No newline at end of file +{ + "copyright": "Androidnix - Android Tools for Linux Users", + "theme": "flesch", + "email": "support@icodeclarity.com", + "format": "html" +} diff --git a/users/andrsd.json b/users/andrsd.json index 34d6fa93..8e84e07e 100644 --- a/users/andrsd.json +++ b/users/andrsd.json @@ -1,7 +1,7 @@ { - "copyright": "David Andrs", - "url": "https://github.com/andrsd", - "email": "andrsd@gmail.com", - "gravatar": true, - "theme": "material-blue" + "copyright": "David Andrs", + "url": "https://github.com/andrsd", + "email": "andrsd@gmail.com", + "gravatar": true, + "theme": "material-blue" } diff --git a/users/andxyz.json b/users/andxyz.json index 7dbec1bc..b60fbcab 100644 --- a/users/andxyz.json +++ b/users/andxyz.json @@ -1 +1,6 @@ -{"copyright":"Andrew Stevens","url":"http:\/\/andxyz.com","email":"andy@andxyz.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Andrew Stevens", + "url": "http://andxyz.com", + "email": "andy@andxyz.com", + "format": "txt" +} diff --git a/users/andyedinborough.json b/users/andyedinborough.json index 0d0edf09..beb9a128 100644 --- a/users/andyedinborough.json +++ b/users/andyedinborough.json @@ -1 +1,3 @@ -{"copyright":"Andy Edinborough"} \ No newline at end of file +{ + "copyright": "Andy Edinborough" +} diff --git a/users/andystubbs.json b/users/andystubbs.json index 50c8ed8f..dbe32bfc 100644 --- a/users/andystubbs.json +++ b/users/andystubbs.json @@ -1 +1,3 @@ -{"copyright":"Andy Stubbs"} \ No newline at end of file +{ + "copyright": "Andy Stubbs" +} diff --git a/users/angrychimp.json b/users/angrychimp.json index 5dfdd1bc..3d798128 100644 --- a/users/angrychimp.json +++ b/users/angrychimp.json @@ -1 +1,7 @@ -{"copyright": "Randall Kahler", "url": "https://angrychimp.net", "email": "rkahler@gmail.com", "gravatar": true, "theme": "material-teal"} +{ + "copyright": "Randall Kahler", + "url": "https://angrychimp.net", + "email": "rkahler@gmail.com", + "gravatar": true, + "theme": "material-teal" +} diff --git a/users/angus.json b/users/angus.json index 24e27903..d15a5e9d 100644 --- a/users/angus.json +++ b/users/angus.json @@ -1 +1,3 @@ -{"copyright":"Angus Thomsen"} \ No newline at end of file +{ + "copyright": "Angus Thomsen" +} diff --git a/users/angusm.json b/users/angusm.json index ef87e5c3..a657593b 100644 --- a/users/angusm.json +++ b/users/angusm.json @@ -1 +1,3 @@ -{"copyright":"Angus McIntyre"} \ No newline at end of file +{ + "copyright": "Angus McIntyre" +} diff --git a/users/anish.json b/users/anish.json index b5a301aa..73b0e22d 100644 --- a/users/anish.json +++ b/users/anish.json @@ -1 +1,6 @@ -{"copyright":"Anish Athalye","email":"anish-foss@mit.edu","gravatar":true,"theme":"xtansia"} \ No newline at end of file +{ + "copyright": "Anish Athalye", + "email": "anish-foss@mit.edu", + "gravatar": true, + "theme": "xtansia" +} diff --git a/users/anishathalye.json b/users/anishathalye.json index b5a301aa..73b0e22d 100644 --- a/users/anishathalye.json +++ b/users/anishathalye.json @@ -1 +1,6 @@ -{"copyright":"Anish Athalye","email":"anish-foss@mit.edu","gravatar":true,"theme":"xtansia"} \ No newline at end of file +{ + "copyright": "Anish Athalye", + "email": "anish-foss@mit.edu", + "gravatar": true, + "theme": "xtansia" +} diff --git a/users/ankur.json b/users/ankur.json index 2b18aba9..00c7f19d 100644 --- a/users/ankur.json +++ b/users/ankur.json @@ -1 +1,7 @@ -{"copyright":"Ankur Jaiswal","email":"aj17@iitbbs.ac.in","theme": "dusk","format":"html","gravatar": true} +{ + "copyright": "Ankur Jaiswal", + "email": "aj17@iitbbs.ac.in", + "theme": "dusk", + "format": "html", + "gravatar": true +} diff --git a/users/anmoljagetia.json b/users/anmoljagetia.json index 8f665a7b..9f620ea8 100644 --- a/users/anmoljagetia.json +++ b/users/anmoljagetia.json @@ -1 +1,6 @@ -{"copyright":"Anmol Jagetia","url":"http:\/\/anmoljagetia.me","email":"anmoljagetia@gmail.com","theme":"solarized"} \ No newline at end of file +{ + "copyright": "Anmol Jagetia", + "url": "http://anmoljagetia.me", + "email": "anmoljagetia@gmail.com", + "theme": "solarized" +} diff --git a/users/anon.json b/users/anon.json index d9619605..28b9b02d 100644 --- a/users/anon.json +++ b/users/anon.json @@ -1 +1,8 @@ -{"copyright":"anon","url":"http:\/\/anoncom.net","email":"anon@anoncom.net","format":"html","theme":"eula-modern","gravatar":true} \ No newline at end of file +{ + "copyright": "anon", + "url": "http://anoncom.net", + "email": "anon@anoncom.net", + "format": "html", + "theme": "eula-modern", + "gravatar": true +} diff --git a/users/anovsiradj.json b/users/anovsiradj.json index eb013f52..e0d884a5 100644 --- a/users/anovsiradj.json +++ b/users/anovsiradj.json @@ -1,6 +1,6 @@ { - "copyright": "Mayendra Costanov (anovsiradj)", - "email": "anov.siradj(22@(gmail|live).com|@gin.co.id)", - "url": "http://ne-a-r.blogspot.com/ncr", - "format": "txt" + "copyright": "Mayendra Costanov (anovsiradj)", + "email": "anov.siradj(22@(gmail|live).com|@gin.co.id)", + "url": "http://ne-a-r.blogspot.com/ncr", + "format": "txt" } diff --git a/users/anrodon.json b/users/anrodon.json index 7dd3c8b3..8ee2fd0c 100644 --- a/users/anrodon.json +++ b/users/anrodon.json @@ -1,6 +1,6 @@ { - "copyright": "Andreu Rodríguez i Donaire", - "url": "http://arodriguezdonaire.com", - "email": "arodriguezdonaire@gmail.com", - "format": "txt" + "copyright": "Andreu Rodr\u00c3\u00adguez i Donaire", + "url": "http://arodriguezdonaire.com", + "email": "arodriguezdonaire@gmail.com", + "format": "txt" } diff --git a/users/anshul.json b/users/anshul.json index 9bef6705..ec0a2d31 100644 --- a/users/anshul.json +++ b/users/anshul.json @@ -1 +1,4 @@ -{"copyright":"Anshul Shah","email":"anshulshah96@gmail.com"} \ No newline at end of file +{ + "copyright": "Anshul Shah", + "email": "anshulshah96@gmail.com" +} diff --git a/users/anthkris.json b/users/anthkris.json index 1cf6ea37..f400a1f8 100644 --- a/users/anthkris.json +++ b/users/anthkris.json @@ -1,7 +1,7 @@ -{ -"copyright": "Kristin Anthony, http://knanthony.com", -"url": "http://knanthony.com", -"email": "kristin@knanthony.com", -"format": "html", -"theme": "mitserrat" +{ + "copyright": "Kristin Anthony, http://knanthony.com", + "url": "http://knanthony.com", + "email": "kristin@knanthony.com", + "format": "html", + "theme": "mitserrat" } diff --git a/users/anthony.json b/users/anthony.json index e0dd5687..23964319 100644 --- a/users/anthony.json +++ b/users/anthony.json @@ -1 +1,7 @@ -{"copyright":"Anthony Rappa","url":"http:\/\/rappasoft.com","email":"rappa819@gmail.com","format":"html","gravatar":true} \ No newline at end of file +{ + "copyright": "Anthony Rappa", + "url": "http://rappasoft.com", + "email": "rappa819@gmail.com", + "format": "html", + "gravatar": true +} diff --git a/users/antimatter15.json b/users/antimatter15.json index e7bbf69d..7b09581a 100644 --- a/users/antimatter15.json +++ b/users/antimatter15.json @@ -1 +1,5 @@ -{"copyright":"Kevin Kwok","url":"http:\/\/antimatter15.com","email":"antimatter15@gmail.com"} \ No newline at end of file +{ + "copyright": "Kevin Kwok", + "url": "http://antimatter15.com", + "email": "antimatter15@gmail.com" +} diff --git a/users/anton.json b/users/anton.json index e9c9d22f..19ed5c55 100644 --- a/users/anton.json +++ b/users/anton.json @@ -1 +1,3 @@ -{"copyright":"Anton Piatek"} \ No newline at end of file +{ + "copyright": "Anton Piatek" +} diff --git a/users/antonhalim.json b/users/antonhalim.json index e02ba318..965bc15a 100644 --- a/users/antonhalim.json +++ b/users/antonhalim.json @@ -1 +1,6 @@ -{"copyright": "Anton Halim, http://antonhalim.me", "url": "antonhalim.me", "email": "anton@antonhalim.me", "theme": "flesch" } +{ + "copyright": "Anton Halim, http://antonhalim.me", + "url": "antonhalim.me", + "email": "anton@antonhalim.me", + "theme": "flesch" +} diff --git a/users/antonholmgren.json b/users/antonholmgren.json index c6dea75c..23f04bc4 100644 --- a/users/antonholmgren.json +++ b/users/antonholmgren.json @@ -1 +1,6 @@ -{"copyright":"Anton Holmgren","url":"http:\/\/antonholmgren.com","email":"me@antonholmgren.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Anton Holmgren", + "url": "http://antonholmgren.com", + "email": "me@antonholmgren.com", + "format": "txt" +} diff --git a/users/antonio.json b/users/antonio.json index 6a3296e6..1411e2d2 100644 --- a/users/antonio.json +++ b/users/antonio.json @@ -1,4 +1,4 @@ { - "copyright":"Antonio Santos", - "theme":"afterdark" -} \ No newline at end of file + "copyright": "Antonio Santos", + "theme": "afterdark" +} diff --git a/users/antonybailey.json b/users/antonybailey.json index 047154e8..bc6837c7 100644 --- a/users/antonybailey.json +++ b/users/antonybailey.json @@ -1 +1,6 @@ -{"copyright":"Antony Bailey","url":"http:\/\/www.antonybailey.net","email":"support@antonybailey.net","format":"txt"} \ No newline at end of file +{ + "copyright": "Antony Bailey", + "url": "http://www.antonybailey.net", + "email": "support@antonybailey.net", + "format": "txt" +} diff --git a/users/anunay.json b/users/anunay.json index a5d15e1a..7a18c212 100644 --- a/users/anunay.json +++ b/users/anunay.json @@ -1 +1,6 @@ -{"copyright":"Anunay Dahal","url":"http:\/\/anunaydahal.com","email":"anunay.dahal@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Anunay Dahal", + "url": "http://anunaydahal.com", + "email": "anunay.dahal@gmail.com", + "format": "txt" +} diff --git a/users/anuraj.json b/users/anuraj.json index 62441e4a..573a4939 100644 --- a/users/anuraj.json +++ b/users/anuraj.json @@ -1,6 +1,6 @@ { - "copyright": "Anuraj P", - "url": "https://dotnetthoughts.net", - "email": "me@dotnetthoughts.net", - "format": "html" + "copyright": "Anuraj P", + "url": "https://dotnetthoughts.net", + "email": "me@dotnetthoughts.net", + "format": "html" } diff --git a/users/anwarjaved.json b/users/anwarjaved.json index 22daa74f..04bccb8f 100644 --- a/users/anwarjaved.json +++ b/users/anwarjaved.json @@ -1 +1,7 @@ -{ "copyright": "Anwar Javed", "email": "anwarjaved@gmail.com", "format": "html", "gravatar": true, "theme": "default-dark" } +{ + "copyright": "Anwar Javed", + "email": "anwarjaved@gmail.com", + "format": "html", + "gravatar": true, + "theme": "default-dark" +} diff --git a/users/anze.json b/users/anze.json index b74b73bf..5e36bb47 100644 --- a/users/anze.json +++ b/users/anze.json @@ -1 +1,6 @@ -{"copyright":"Alberto Anzellotti","url":"http:\/\/anzellotti.cu.cc","email":"alberto.anzellotti@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Alberto Anzellotti", + "url": "http://anzellotti.cu.cc", + "email": "alberto.anzellotti@gmail.com", + "format": "txt" +} diff --git a/users/apnerve.json b/users/apnerve.json index 6adbe036..71375b13 100644 --- a/users/apnerve.json +++ b/users/apnerve.json @@ -1 +1,3 @@ -{"copyright":"Praveen Kumar"} \ No newline at end of file +{ + "copyright": "Praveen Kumar" +} diff --git a/users/apollojustice.json b/users/apollojustice.json index c299a6ed..85eccdf3 100644 --- a/users/apollojustice.json +++ b/users/apollojustice.json @@ -1 +1,7 @@ -{"copyright":"Ricardo Garcia (ApolloJustice)","url":"https:\/\/apollo.pw","email":"me@apollo.pw","theme":"material-indigo","gravatar":true} +{ + "copyright": "Ricardo Garcia (ApolloJustice)", + "url": "https://apollo.pw", + "email": "me@apollo.pw", + "theme": "material-indigo", + "gravatar": true +} diff --git a/users/aponxi.json b/users/aponxi.json index e9d9a09f..9cc16efe 100644 --- a/users/aponxi.json +++ b/users/aponxi.json @@ -1 +1,7 @@ -{"copyright":"WeaponXI","url":"http:\/\/www.weaponxi.com","email":"aponxi@weaponxi.com","format":"html","theme":"blackwood"} \ No newline at end of file +{ + "copyright": "WeaponXI", + "url": "http://www.weaponxi.com", + "email": "aponxi@weaponxi.com", + "format": "html", + "theme": "blackwood" +} diff --git a/users/apopelo.json b/users/apopelo.json index ffac6f1f..a16ce5ef 100644 --- a/users/apopelo.json +++ b/users/apopelo.json @@ -1 +1,3 @@ -{"copyright":"Andrey Popelo"} \ No newline at end of file +{ + "copyright": "Andrey Popelo" +} diff --git a/users/appsattic.json b/users/appsattic.json index 58b3c45d..34ff9faf 100644 --- a/users/appsattic.json +++ b/users/appsattic.json @@ -1,5 +1,5 @@ { - "copyright" : "AppsAttic Ltd", - "url" : "http://appsattic.com/", - "email" : "chilts@appsattic.com" + "copyright": "AppsAttic Ltd", + "url": "http://appsattic.com/", + "email": "chilts@appsattic.com" } diff --git a/users/apriendeau.json b/users/apriendeau.json index 570bf7ff..a42f6185 100644 --- a/users/apriendeau.json +++ b/users/apriendeau.json @@ -1 +1,5 @@ -{"copyright":"Austin Riendeau","url":"http:\/\/apriendeau.com","email":"austin@apriendeau.com"} \ No newline at end of file +{ + "copyright": "Austin Riendeau", + "url": "http://apriendeau.com", + "email": "austin@apriendeau.com" +} diff --git a/users/aps.json b/users/aps.json index 74bfda98..aab647dc 100644 --- a/users/aps.json +++ b/users/aps.json @@ -1,6 +1,6 @@ { - "copyright": "Aman Pratap Singh, http://amanpratapsingh.in", - "url": "http://amanpratapsingh.in", - "email": "amanprtpsingh@gmail.com", - "theme": "material-pink" + "copyright": "Aman Pratap Singh, http://amanpratapsingh.in", + "url": "http://amanpratapsingh.in", + "email": "amanprtpsingh@gmail.com", + "theme": "material-pink" } diff --git a/users/ar.json b/users/ar.json index 4966f63a..1db7041d 100644 --- a/users/ar.json +++ b/users/ar.json @@ -1 +1,3 @@ -{"copyright":"Alexander Rosolko"} \ No newline at end of file +{ + "copyright": "Alexander Rosolko" +} diff --git a/users/arashmilani.json b/users/arashmilani.json index d9f900e5..c18f0cd8 100644 --- a/users/arashmilani.json +++ b/users/arashmilani.json @@ -1,7 +1,7 @@ { - "copyright": "Arash Milani", - "url": "http://arashmilani.com", - "email": "me@arashmilani.com", - "format": "html", - "gravatar": true + "copyright": "Arash Milani", + "url": "http://arashmilani.com", + "email": "me@arashmilani.com", + "format": "html", + "gravatar": true } diff --git a/users/arizzol.json b/users/arizzol.json index 20404c34..88c51a43 100644 --- a/users/arizzol.json +++ b/users/arizzol.json @@ -1 +1,3 @@ -{"copyright":"Arier Filizzola"} \ No newline at end of file +{ + "copyright": "Arier Filizzola" +} diff --git a/users/arjun.json b/users/arjun.json index 634dc897..d27e8f4c 100644 --- a/users/arjun.json +++ b/users/arjun.json @@ -1 +1,5 @@ -{ "copyright": "Arjun Rao", "url": "https://arjun.fyi", "email": "contact@arjun.fyi" } +{ + "copyright": "Arjun Rao", + "url": "https://arjun.fyi", + "email": "contact@arjun.fyi" +} diff --git a/users/arlo.json b/users/arlo.json index 49ca7587..54a9b37d 100644 --- a/users/arlo.json +++ b/users/arlo.json @@ -1,4 +1,4 @@ { - "copyright": "Arlo Carreon, http://arlocarreon.com", - "url": "http://arlocarreon.com" + "copyright": "Arlo Carreon, http://arlocarreon.com", + "url": "http://arlocarreon.com" } diff --git a/users/armpit.json b/users/armpit.json index 06f0767f..a3a82504 100644 --- a/users/armpit.json +++ b/users/armpit.json @@ -1 +1,3 @@ -{"copyright":"Shane Holding"} \ No newline at end of file +{ + "copyright": "Shane Holding" +} diff --git a/users/armujahid.json b/users/armujahid.json index 5f2e5320..aaaef49c 100644 --- a/users/armujahid.json +++ b/users/armujahid.json @@ -4,4 +4,4 @@ "email": "abdulraufmujahid@gmail.com", "theme": "material", "gravatar": true -} \ No newline at end of file +} diff --git a/users/arnavroy.json b/users/arnavroy.json index a9d41fa5..4e02197c 100644 --- a/users/arnavroy.json +++ b/users/arnavroy.json @@ -1 +1,6 @@ -{"copyright":"Arnav Roy","url":"http:\/\/www.arnavroy.com","email":"roy.arnav@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Arnav Roy", + "url": "http://www.arnavroy.com", + "email": "roy.arnav@gmail.com", + "format": "txt" +} diff --git a/users/arroxa.json b/users/arroxa.json index b75dc124..942a5a66 100644 --- a/users/arroxa.json +++ b/users/arroxa.json @@ -1 +1,4 @@ -{"copyright":"Arroxa","theme":"eula-modern"} \ No newline at end of file +{ + "copyright": "Arroxa", + "theme": "eula-modern" +} diff --git a/users/artemave.json b/users/artemave.json index 76c9ebfc..9f45c8d5 100644 --- a/users/artemave.json +++ b/users/artemave.json @@ -1 +1,3 @@ -{"copyright":"Artem Avetisyan"} \ No newline at end of file +{ + "copyright": "Artem Avetisyan" +} diff --git a/users/arthurfigueiredo.json b/users/arthurfigueiredo.json index c63b932b..22fbb58b 100644 --- a/users/arthurfigueiredo.json +++ b/users/arthurfigueiredo.json @@ -1 +1,6 @@ -{"copyright":"Arthur Figueiredo Nunes","url":"http:\/\/www.arthurfigueiredo.com.br","email":"arthurfn.webdev@gmail.com","format":"html"} +{ + "copyright": "Arthur Figueiredo Nunes", + "url": "http://www.arthurfigueiredo.com.br", + "email": "arthurfn.webdev@gmail.com", + "format": "html" +} diff --git a/users/arthurguy.json b/users/arthurguy.json index 5aad4dbe..186cd5e7 100644 --- a/users/arthurguy.json +++ b/users/arthurguy.json @@ -1 +1,3 @@ -{"copyright":"Arthur Guy"} \ No newline at end of file +{ + "copyright": "Arthur Guy" +} diff --git a/users/artnc.json b/users/artnc.json index 9f41d3d3..2dab7a70 100644 --- a/users/artnc.json +++ b/users/artnc.json @@ -1 +1,3 @@ -{"copyright":"Art Chaidarun"} \ No newline at end of file +{ + "copyright": "Art Chaidarun" +} diff --git a/users/aruhan.json b/users/aruhan.json index 63e6d9b6..cc03fcc8 100644 --- a/users/aruhan.json +++ b/users/aruhan.json @@ -1 +1,3 @@ -{"copyright":"Takashi Harada"} \ No newline at end of file +{ + "copyright": "Takashi Harada" +} diff --git a/users/arulrajnet.json b/users/arulrajnet.json index 72c57912..525d1e31 100644 --- a/users/arulrajnet.json +++ b/users/arulrajnet.json @@ -1,6 +1,6 @@ { - "copyright": "Arulraj Venni", - "url": "http://arulraj.net", - "email": "me@arulraj.net", - "gravatar": true + "copyright": "Arulraj Venni", + "url": "http://arulraj.net", + "email": "me@arulraj.net", + "gravatar": true } diff --git a/users/arunoda.json b/users/arunoda.json index d037cac9..812a1862 100644 --- a/users/arunoda.json +++ b/users/arunoda.json @@ -1 +1,3 @@ -{"copyright":"Arunoda Susiripala"} \ No newline at end of file +{ + "copyright": "Arunoda Susiripala" +} diff --git a/users/arvid.json b/users/arvid.json index 474a0d49..b3057653 100644 --- a/users/arvid.json +++ b/users/arvid.json @@ -1 +1,4 @@ -{"copyright":"Arvid Bj\u00f6rkstr\u00f6m","email":"arvid@bjorkstrom.se"} \ No newline at end of file +{ + "copyright": "Arvid Bj\u00f6rkstr\u00f6m", + "email": "arvid@bjorkstrom.se" +} diff --git a/users/asante.json b/users/asante.json index bc5d88a7..286d1509 100644 --- a/users/asante.json +++ b/users/asante.json @@ -1 +1,3 @@ -{"copyright":"Alexander Sante"} \ No newline at end of file +{ + "copyright": "Alexander Sante" +} diff --git a/users/asbubam.json b/users/asbubam.json index 876c0527..dcde87f1 100644 --- a/users/asbubam.json +++ b/users/asbubam.json @@ -1 +1,6 @@ -{"copyright":"asbubam","url":"http:\/\/blog.2dal.com","email":"asbubam@gmail.com","format":"txt"} +{ + "copyright": "asbubam", + "url": "http://blog.2dal.com", + "email": "asbubam@gmail.com", + "format": "txt" +} diff --git a/users/aschn.json b/users/aschn.json index fb65021d..7915fa7f 100644 --- a/users/aschn.json +++ b/users/aschn.json @@ -1 +1,3 @@ -{"copyright":"Anna Schneider"} \ No newline at end of file +{ + "copyright": "Anna Schneider" +} diff --git a/users/asdbasjdbaskjd.json b/users/asdbasjdbaskjd.json index 627d7028..cc3199af 100644 --- a/users/asdbasjdbaskjd.json +++ b/users/asdbasjdbaskjd.json @@ -1 +1,3 @@ -{"copyright":"Lucas Galfas\u00f3"} \ No newline at end of file +{ + "copyright": "Lucas Galfas\u00f3" +} diff --git a/users/asdbjasbdja.json b/users/asdbjasbdja.json index dce85522..6206bafc 100644 --- a/users/asdbjasbdja.json +++ b/users/asdbjasbdja.json @@ -1 +1,3 @@ -{"copyright":"ajsdhbjabsdh"} \ No newline at end of file +{ + "copyright": "ajsdhbjabsdh" +} diff --git a/users/aseemk.json b/users/aseemk.json index 7057ef56..73d44545 100644 --- a/users/aseemk.json +++ b/users/aseemk.json @@ -1 +1,5 @@ -{"copyright":"Aseem Kishore","url":"http:\/\/aseemk.com\/","email":"aseem.kishore@gmail.com"} \ No newline at end of file +{ + "copyright": "Aseem Kishore", + "url": "http://aseemk.com/", + "email": "aseem.kishore@gmail.com" +} diff --git a/users/ashchan.json b/users/ashchan.json index 6e8b318b..ffaec4c5 100644 --- a/users/ashchan.json +++ b/users/ashchan.json @@ -1 +1,5 @@ -{"copyright":"James Chen","url":"http:\/\/ashchan.com","email":"ashchan@gmail.com"} \ No newline at end of file +{ + "copyright": "James Chen", + "url": "http://ashchan.com", + "email": "ashchan@gmail.com" +} diff --git a/users/ashtonwar.json b/users/ashtonwar.json index 16220a96..c0038220 100644 --- a/users/ashtonwar.json +++ b/users/ashtonwar.json @@ -1 +1,3 @@ -{"copyright":"Ashton War"} \ No newline at end of file +{ + "copyright": "Ashton War" +} diff --git a/users/ask11.json b/users/ask11.json index ad3944fa..5e0b7d7d 100644 --- a/users/ask11.json +++ b/users/ask11.json @@ -1 +1,5 @@ -{"copyright":"Aleksey Kulikov","email":"alekseys.kulikov@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Aleksey Kulikov", + "email": "alekseys.kulikov@gmail.com", + "format": "txt" +} diff --git a/users/askesian.json b/users/askesian.json index 1c8b32d1..494b6895 100644 --- a/users/askesian.json +++ b/users/askesian.json @@ -1 +1,5 @@ -{"copyright":"askesian","url":"http:\/\/askesian.com","email":"askesian@outlook.com"} \ No newline at end of file +{ + "copyright": "askesian", + "url": "http://askesian.com", + "email": "askesian@outlook.com" +} diff --git a/users/asolkar.json b/users/asolkar.json index 0284303e..54ebe1bc 100644 --- a/users/asolkar.json +++ b/users/asolkar.json @@ -1,5 +1,5 @@ { - "copyright": "Mahesh Asolkar", - "url": "http://mahesha.com", - "theme": "double-windsor" + "copyright": "Mahesh Asolkar", + "url": "http://mahesha.com", + "theme": "double-windsor" } diff --git a/users/ata.json b/users/ata.json index a700477a..5a1aade9 100644 --- a/users/ata.json +++ b/users/ata.json @@ -1,5 +1,5 @@ { - "copyright": "Andrew Amis, http://geeklob.wordpress.com", - "url": "http://geeklob.wordpress.com", - "email": "atamiser@gmail.com" + "copyright": "Andrew Amis, http://geeklob.wordpress.com", + "url": "http://geeklob.wordpress.com", + "email": "atamiser@gmail.com" } diff --git a/users/atbox.json b/users/atbox.json index 36ecfaf2..c288c185 100644 --- a/users/atbox.json +++ b/users/atbox.json @@ -1,8 +1,8 @@ { - "copyright": "Atbox, https://atbox.io", - "url": "https://atbox.io", - "format": "html", - "email": "info@atbox.io", - "gravatar": true, - "theme": "opensans" + "copyright": "Atbox, https://atbox.io", + "url": "https://atbox.io", + "format": "html", + "email": "info@atbox.io", + "gravatar": true, + "theme": "opensans" } diff --git a/users/atelierbram.json b/users/atelierbram.json index 66c19d84..466fa470 100644 --- a/users/atelierbram.json +++ b/users/atelierbram.json @@ -1,5 +1,5 @@ { - "copyright": "Bram de Haan, http://atelierbramdehaan.nl", - "url": "http://atelierbramdehaan.nl", - "theme": "black-beauty" + "copyright": "Bram de Haan, http://atelierbramdehaan.nl", + "url": "http://atelierbramdehaan.nl", + "theme": "black-beauty" } diff --git a/users/atilafassina.json b/users/atilafassina.json index 786859da..79e34e58 100644 --- a/users/atilafassina.json +++ b/users/atilafassina.json @@ -1,7 +1,7 @@ { - "copyright": "Átila Fassina, http://atilafassina.com", - "url": "http://atilafassina.com", - "email": "hey@atilafassina.com", - "theme": "material-teal", - "gravatar": true + "copyright": "Átila Fassina, http://atilafassina.com", + "url": "http://atilafassina.com", + "email": "hey@atilafassina.com", + "theme": "material-teal", + "gravatar": true } diff --git a/users/atran.json b/users/atran.json index 77244099..716de297 100644 --- a/users/atran.json +++ b/users/atran.json @@ -1 +1,4 @@ -{"copyright":"Anthony Tran","url":"http:\/\/anthonytran.info"} \ No newline at end of file +{ + "copyright": "Anthony Tran", + "url": "http://anthonytran.info" +} diff --git a/users/ats.json b/users/ats.json index cfc428c9..e9ac27ea 100644 --- a/users/ats.json +++ b/users/ats.json @@ -1 +1,3 @@ -{"copyright":"ActBlue Technical Services"} \ No newline at end of file +{ + "copyright": "ActBlue Technical Services" +} diff --git a/users/audreyr.json b/users/audreyr.json index e51cb1ca..a17a9002 100644 --- a/users/audreyr.json +++ b/users/audreyr.json @@ -1 +1,6 @@ -{"copyright":"Audrey Roy","url":"http:\/\/www.audreymroy.com","email":"audreyr@cartwheelweb.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Audrey Roy", + "url": "http://www.audreymroy.com", + "email": "audreyr@cartwheelweb.com", + "format": "txt" +} diff --git a/users/aus3ris.json b/users/aus3ris.json index eee2456e..fbf30197 100644 --- a/users/aus3ris.json +++ b/users/aus3ris.json @@ -1 +1,6 @@ -{"copyright":"Austris Landmanis","url":"http:\/\/chevron.lv","email":"austris@chevron.lv","format":"txt"} \ No newline at end of file +{ + "copyright": "Austris Landmanis", + "url": "http://chevron.lv", + "email": "austris@chevron.lv", + "format": "txt" +} diff --git a/users/aus3ys.json b/users/aus3ys.json index 1069f92b..0e2aa101 100644 --- a/users/aus3ys.json +++ b/users/aus3ys.json @@ -1 +1,4 @@ -{"copyright":"Austris Landmanis","email":"aus3ys@gmail.com"} \ No newline at end of file +{ + "copyright": "Austris Landmanis", + "email": "aus3ys@gmail.com" +} diff --git a/users/austegard.json b/users/austegard.json index 2cd2c40d..053f8846 100644 --- a/users/austegard.json +++ b/users/austegard.json @@ -1,5 +1,5 @@ { - "copyright": "Oskar Austegard, http://austegard.com", - "url": "http://austegard.com", - "email": "me@austegard.com" + "copyright": "Oskar Austegard, http://austegard.com", + "url": "http://austegard.com", + "email": "me@austegard.com" } diff --git a/users/austin.json b/users/austin.json index 2e70e18d..63ed1724 100644 --- a/users/austin.json +++ b/users/austin.json @@ -1 +1,6 @@ -{"copyright":"Austin Riendeau","url":"http:\/\/apriendeau.com","email":"austin@apriendeau.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Austin Riendeau", + "url": "http://apriendeau.com", + "email": "austin@apriendeau.com", + "format": "txt" +} diff --git a/users/avdaredevil.json b/users/avdaredevil.json index 31222d34..8283e7fa 100644 --- a/users/avdaredevil.json +++ b/users/avdaredevil.json @@ -1 +1,7 @@ -{"copyright":"Apoorv Verma","url":"https:\/\/www.linkedin.com\/in\/apoorvverma","email":"avdaredevil@gmail.com","format":"txt","gravatar":true} \ No newline at end of file +{ + "copyright": "Apoorv Verma", + "url": "https://www.linkedin.com/in/apoorvverma", + "email": "avdaredevil@gmail.com", + "format": "txt", + "gravatar": true +} diff --git a/users/avelino.json b/users/avelino.json index 2e11f699..ff889ab0 100644 --- a/users/avelino.json +++ b/users/avelino.json @@ -1 +1,6 @@ -{"copyright":"Avelino","url":"http:\/\/avelino.xxx","email":"thiago@avelino.xxx","gravatar":true} +{ + "copyright": "Avelino", + "url": "http://avelino.xxx", + "email": "thiago@avelino.xxx", + "gravatar": true +} diff --git a/users/average-studios.json b/users/average-studios.json index a33c1379..dda00190 100644 --- a/users/average-studios.json +++ b/users/average-studios.json @@ -1 +1,3 @@ -{"copyright":"Andrew Stewart"} \ No newline at end of file +{ + "copyright": "Andrew Stewart" +} diff --git a/users/avidal.json b/users/avidal.json index fb036c7b..00f9c116 100644 --- a/users/avidal.json +++ b/users/avidal.json @@ -1 +1,6 @@ -{"copyright":"Alex Vidal","url":"https:\/\/github.com\/avidal","email":"alex.vidal@gmail.com","format":"html"} \ No newline at end of file +{ + "copyright": "Alex Vidal", + "url": "https://github.com/avidal", + "email": "alex.vidal@gmail.com", + "format": "html" +} diff --git a/users/avidenie.json b/users/avidenie.json index 1918bac5..d8e34619 100644 --- a/users/avidenie.json +++ b/users/avidenie.json @@ -1 +1,6 @@ -{"copyright":"Adrian Videnie","url":"http:\/\/web.expectations.ro","email":"avidenie@gmail.com","theme":"eula-modern"} \ No newline at end of file +{ + "copyright": "Adrian Videnie", + "url": "http://web.expectations.ro", + "email": "avidenie@gmail.com", + "theme": "eula-modern" +} diff --git a/users/avm99963.json b/users/avm99963.json index e25375e8..db439e8d 100644 --- a/users/avm99963.json +++ b/users/avm99963.json @@ -1 +1,7 @@ -{"copyright":"Adri\u00e0 Vilanova Mart\u00ednez","url":"http:\/\/avm99963.tk","email":"me@avm99963.tk","gravatar":true,"theme":"material-indigo"} \ No newline at end of file +{ + "copyright": "Adri\u00e0 Vilanova Mart\u00ednez", + "url": "http://avm99963.tk", + "email": "me@avm99963.tk", + "gravatar": true, + "theme": "material-indigo" +} diff --git a/users/awles.json b/users/awles.json index d0dccaf9..a30b9ad1 100644 --- a/users/awles.json +++ b/users/awles.json @@ -1,7 +1,7 @@ { - "copyright": "Alessio Malu, https://github.com/awles", - "url": "http://alessiomalu.com", - "format": "txt", - "email": "hello@alessiomalu.com", - "theme": "double-windsor" + "copyright": "Alessio Malu, https://github.com/awles", + "url": "http://alessiomalu.com", + "format": "txt", + "email": "hello@alessiomalu.com", + "theme": "double-windsor" } diff --git a/users/axe312.json b/users/axe312.json index e598e2ce..8f8b6b21 100644 --- a/users/axe312.json +++ b/users/axe312.json @@ -1 +1,3 @@ -{"copyright":"Benedikt R\u00f6tsch"} \ No newline at end of file +{ + "copyright": "Benedikt R\u00f6tsch" +} diff --git a/users/axelav.json b/users/axelav.json index 91ab769f..99414e2f 100644 --- a/users/axelav.json +++ b/users/axelav.json @@ -1 +1,6 @@ -{"copyright":"Axel Anderson, axelav.com","url":"http:\/\/axelav.com","email":"axelav@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Axel Anderson, axelav.com", + "url": "http://axelav.com", + "email": "axelav@gmail.com", + "format": "txt" +} diff --git a/users/axisthemes.json b/users/axisthemes.json index 13552d2d..3ac49a5e 100644 --- a/users/axisthemes.json +++ b/users/axisthemes.json @@ -1 +1,5 @@ -{"copyright":"AxisThemes","url":"http:\/\/axisthemes.com","theme":"double-windsor"} +{ + "copyright": "AxisThemes", + "url": "http://axisthemes.com", + "theme": "double-windsor" +} diff --git a/users/axot.json b/users/axot.json index 49dbb50a..64114648 100644 --- a/users/axot.json +++ b/users/axot.json @@ -1,6 +1,6 @@ { - "copyright": "Zheng Shao", - "url": "http://www.axot.org", - "email": "imaxot@gmail.com", - "theme": "blackwood" + "copyright": "Zheng Shao", + "url": "http://www.axot.org", + "email": "imaxot@gmail.com", + "theme": "blackwood" } diff --git a/users/axross.json b/users/axross.json index 5647be9f..ef0fa8f4 100644 --- a/users/axross.json +++ b/users/axross.json @@ -1,7 +1,7 @@ { - "copyright": "Kohei Asai", - "url": "https://github.com/axross", - "email": "me@axross.io", - "format": "txt", - "gravatar": true + "copyright": "Kohei Asai", + "url": "https://github.com/axross", + "email": "me@axross.io", + "format": "txt", + "gravatar": true } diff --git a/users/ayahya.json b/users/ayahya.json index 8ea36ef1..2ae45cf4 100644 --- a/users/ayahya.json +++ b/users/ayahya.json @@ -1 +1,8 @@ -{ "copyright": "Abdullah Yahya", "url": "https://ayahya.me", "email": "me.ayahya@gmail.com", "format": "html", "gravatar": true, "theme": "material" } +{ + "copyright": "Abdullah Yahya", + "url": "https://ayahya.me", + "email": "me.ayahya@gmail.com", + "format": "html", + "gravatar": true, + "theme": "material" +} diff --git a/users/ayesh.json b/users/ayesh.json index 1afaa2bc..a1cc5784 100644 --- a/users/ayesh.json +++ b/users/ayesh.json @@ -1 +1,4 @@ -{"copyright":"Ayesh Karunaratne","url":"http:\/\/ayesh.me"} \ No newline at end of file +{ + "copyright": "Ayesh Karunaratne", + "url": "http://ayesh.me" +} diff --git a/users/azamara.json b/users/azamara.json index d1044274..8fd8faef 100644 --- a/users/azamara.json +++ b/users/azamara.json @@ -1 +1,4 @@ -{"copyright":"William Kim, http:\/\/azamara.io\/","url":"http:\/\/azamara.io\/"} \ No newline at end of file +{ + "copyright": "William Kim, http://azamara.io/", + "url": "http://azamara.io/" +} diff --git a/users/azder.json b/users/azder.json index 3fe83043..64df0963 100644 --- a/users/azder.json +++ b/users/azder.json @@ -1 +1,5 @@ -{"copyright":"Goran Peoski","email":"azhder@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Goran Peoski", + "email": "azhder@gmail.com", + "format": "txt" +} diff --git a/users/azizur.json b/users/azizur.json index d9c18f81..8210d7b2 100644 --- a/users/azizur.json +++ b/users/azizur.json @@ -1 +1,3 @@ -{"copyright":"Azizur Rahman"} \ No newline at end of file +{ + "copyright": "Azizur Rahman" +} diff --git a/users/azlab.json b/users/azlab.json index e719f26c..c41583c6 100644 --- a/users/azlab.json +++ b/users/azlab.json @@ -1 +1,3 @@ -{"copyright":"AnZen-Lab (UEC, Tokyo)"} \ No newline at end of file +{ + "copyright": "AnZen-Lab (UEC, Tokyo)" +} diff --git a/users/azu.json b/users/azu.json index 51be2f68..c95686d0 100644 --- a/users/azu.json +++ b/users/azu.json @@ -1 +1,4 @@ -{"copyright":"azu","url":"http:\/\/efcl.info\/"} \ No newline at end of file +{ + "copyright": "azu", + "url": "http://efcl.info/" +} diff --git a/users/b.json b/users/b.json index 3695b0c7..a8e9e924 100644 --- a/users/b.json +++ b/users/b.json @@ -1,5 +1,5 @@ { - "copyright": "Brian Seward, http://brianseward.com", - "url": "http://brianseward.com", - "theme": "default" + "copyright": "Brian Seward, http://brianseward.com", + "url": "http://brianseward.com", + "theme": "default" } diff --git a/users/b4b4r07.json b/users/b4b4r07.json index 341e307c..ab84fd77 100644 --- a/users/b4b4r07.json +++ b/users/b4b4r07.json @@ -1 +1,6 @@ -{"copyright":"Masaki Ishiyama","url":"http:\/\/b4b4r07.com","email":"b4b4r07@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Masaki Ishiyama", + "url": "http://b4b4r07.com", + "email": "b4b4r07@gmail.com", + "format": "txt" +} diff --git a/users/baenziger-hug.json b/users/baenziger-hug.json index d19147a5..98e370b0 100644 --- a/users/baenziger-hug.json +++ b/users/baenziger-hug.json @@ -1 +1,6 @@ -{"copyright":"B\u00e4nziger Hug Ltd.","url":"http:\/\/baenziger-hug.com","email":"oh@baenziger-hug.com","format":"html"} \ No newline at end of file +{ + "copyright": "B\u00e4nziger Hug Ltd.", + "url": "http://baenziger-hug.com", + "email": "oh@baenziger-hug.com", + "format": "html" +} diff --git a/users/bai.json b/users/bai.json index df524d3e..96df267c 100644 --- a/users/bai.json +++ b/users/bai.json @@ -1,4 +1,4 @@ { - "copyright": "Vlad Gorodetsky", - "email": "v@gor.io" + "copyright": "Vlad Gorodetsky", + "email": "v@gor.io" } diff --git a/users/balbeko.json b/users/balbeko.json index ab9d2053..56481d7e 100644 --- a/users/balbeko.json +++ b/users/balbeko.json @@ -1,6 +1,6 @@ { - "copyright":"Sergey Balbeko, http://balbeko.com/", - "email": "sergey@balbeko.com", - "url": "http://balbeko.com/", - "theme": "double-windsor" + "copyright": "Sergey Balbeko, http://balbeko.com/", + "email": "sergey@balbeko.com", + "url": "http://balbeko.com/", + "theme": "double-windsor" } diff --git a/users/bamorim.json b/users/bamorim.json index 15e79c5c..ac8c351f 100644 --- a/users/bamorim.json +++ b/users/bamorim.json @@ -1 +1,6 @@ -{"copyright":"Bernardo Amorim","url":"http:\/\/bamorim.com","email":"contato@bamorim.com","format":"html"} \ No newline at end of file +{ + "copyright": "Bernardo Amorim", + "url": "http://bamorim.com", + "email": "contato@bamorim.com", + "format": "html" +} diff --git a/users/bankfacil.json b/users/bankfacil.json index 1bd3a770..3d0af525 100644 --- a/users/bankfacil.json +++ b/users/bankfacil.json @@ -1 +1,4 @@ -{"copyright":"BankFacil, http:\/\/bankfacil.com.br","url":"http:\/\/bankfacil.com.br"} \ No newline at end of file +{ + "copyright": "BankFacil, http://bankfacil.com.br", + "url": "http://bankfacil.com.br" +} diff --git a/users/banyan.json b/users/banyan.json index 0fbb7788..144b1017 100644 --- a/users/banyan.json +++ b/users/banyan.json @@ -1,6 +1,6 @@ { - "copyright": "Kohei Hasegawa, https://github.com/banyan", - "url": "https://github.com/banyan", - "email": "ameutau@gmail.com", - "theme": "flesch" + "copyright": "Kohei Hasegawa, https://github.com/banyan", + "url": "https://github.com/banyan", + "email": "ameutau@gmail.com", + "theme": "flesch" } diff --git a/users/bardi.json b/users/bardi.json index 4aee4352..8828d093 100644 --- a/users/bardi.json +++ b/users/bardi.json @@ -1 +1,6 @@ -{"copyright":"Bardi Harborow","url":"https:\/\/www.bardiharborow.com","email":"bardi@bardiharborow.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Bardi Harborow", + "url": "https://www.bardiharborow.com", + "email": "bardi@bardiharborow.com", + "gravatar": true +} diff --git a/users/barnik.json b/users/barnik.json index 433fc979..7957533b 100644 --- a/users/barnik.json +++ b/users/barnik.json @@ -1,4 +1,4 @@ { - "copyright": "Barnik Ray", - "email": "barnikray@live.com" -} \ No newline at end of file + "copyright": "Barnik Ray", + "email": "barnikray@live.com" +} diff --git a/users/bartaz.json b/users/bartaz.json index 66612f03..54c59750 100644 --- a/users/bartaz.json +++ b/users/bartaz.json @@ -1 +1,3 @@ -{"copyright":"Bartek Szopka"} \ No newline at end of file +{ + "copyright": "Bartek Szopka" +} diff --git a/users/bat.json b/users/bat.json index 34cc6c3f..2006d7a0 100644 --- a/users/bat.json +++ b/users/bat.json @@ -1 +1,3 @@ -{"copyright":"Ben Atkin"} \ No newline at end of file +{ + "copyright": "Ben Atkin" +} diff --git a/users/batu.json b/users/batu.json index 3b2307ca..960a4ca2 100644 --- a/users/batu.json +++ b/users/batu.json @@ -1,5 +1,5 @@ { - "copyright": "Batuhan Icoz, http://batu.me/1", - "url": "http://batu.me/1", - "email": "i@batu.me" -} \ No newline at end of file + "copyright": "Batuhan Icoz, http://batu.me/1", + "url": "http://batu.me/1", + "email": "i@batu.me" +} diff --git a/users/bauglir.json b/users/bauglir.json index 6eda38fd..b276ef1e 100644 --- a/users/bauglir.json +++ b/users/bauglir.json @@ -1 +1,6 @@ -{"copyright":"Joris Kraak, https:\/\/majorfail.com","url":"https:\/\/majorfail.com","email":"joris@majorfail.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Joris Kraak, https://majorfail.com", + "url": "https://majorfail.com", + "email": "joris@majorfail.com", + "gravatar": true +} diff --git a/users/bazilio.json b/users/bazilio.json index f12719c4..4aa37bb2 100644 --- a/users/bazilio.json +++ b/users/bazilio.json @@ -1 +1,7 @@ -{"copyright":"Bazilio","email":"x.bazilio@gmail.com","format":"txt","gravatar":false,"theme":"plaintext"} \ No newline at end of file +{ + "copyright": "Bazilio", + "email": "x.bazilio@gmail.com", + "format": "txt", + "gravatar": false, + "theme": "plaintext" +} diff --git a/users/bbuecherl.json b/users/bbuecherl.json index 59ba3a3b..5a36ed07 100644 --- a/users/bbuecherl.json +++ b/users/bbuecherl.json @@ -1 +1,7 @@ -{"copyright":"Bernhard B\u00fccherl, http:\/\/bbuecherl.de","url":"http:\/\/bbuecherl.de","email":"bernhard.buecherl@gmail.com","theme":"friendly","gravatar":true} \ No newline at end of file +{ + "copyright": "Bernhard B\u00fccherl, http://bbuecherl.de", + "url": "http://bbuecherl.de", + "email": "bernhard.buecherl@gmail.com", + "theme": "friendly", + "gravatar": true +} diff --git a/users/bcse.json b/users/bcse.json index 616b30de..21263068 100644 --- a/users/bcse.json +++ b/users/bcse.json @@ -1 +1,5 @@ -{"copyright":"Grey Lee, http:\/\/bcse.tw","url":"http:\/\/bcse.tw","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Grey Lee, http://bcse.tw", + "url": "http://bcse.tw", + "theme": "double-windsor" +} diff --git a/users/bdukes.json b/users/bdukes.json index 3cbae72e..3084e47b 100644 --- a/users/bdukes.json +++ b/users/bdukes.json @@ -1 +1,4 @@ -{"copyright":"Brian Dukes","email":"dukes.brian@gmail.com"} \ No newline at end of file +{ + "copyright": "Brian Dukes", + "email": "dukes.brian@gmail.com" +} diff --git a/users/bear.json b/users/bear.json index 2a60cc94..d19e1e8d 100644 --- a/users/bear.json +++ b/users/bear.json @@ -1 +1,6 @@ -{"copyright":"Alexander Harkness","url":"http:\/\/www.bearbin.net","email":"bearbin@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Alexander Harkness", + "url": "http://www.bearbin.net", + "email": "bearbin@gmail.com", + "format": "txt" +} diff --git a/users/becevka.json b/users/becevka.json index 1d28171c..80be111a 100644 --- a/users/becevka.json +++ b/users/becevka.json @@ -1 +1,7 @@ -{"copyright":"Wolfgang Bas, https:\/\/becevka.com","url":"https:\/\/becevka.com","email":"wolf@becevka.com","gravatar":true,"theme":"dusk"} +{ + "copyright": "Wolfgang Bas, https://becevka.com", + "url": "https://becevka.com", + "email": "wolf@becevka.com", + "gravatar": true, + "theme": "dusk" +} diff --git a/users/bee.json b/users/bee.json index 717cbb1f..6f8efc91 100644 --- a/users/bee.json +++ b/users/bee.json @@ -1 +1,5 @@ -{"copyright":"Songbee","url":"http:\/\/songbee.net","email":"hi@songbee.net"} +{ + "copyright": "Songbee", + "url": "http://songbee.net", + "email": "hi@songbee.net" +} diff --git a/users/beedaan.json b/users/beedaan.json index 3cfa90b0..15db2697 100644 --- a/users/beedaan.json +++ b/users/beedaan.json @@ -1 +1,6 @@ -{"copyright":"Brendan Heussler","url":"http://bheussler.name","email":"bheussler@gmail.com","theme":"flesch"} +{ + "copyright": "Brendan Heussler", + "url": "http://bheussler.name", + "email": "bheussler@gmail.com", + "theme": "flesch" +} diff --git a/users/beingtomgreen.json b/users/beingtomgreen.json index 9472b0c3..23033c3f 100644 --- a/users/beingtomgreen.json +++ b/users/beingtomgreen.json @@ -1 +1,6 @@ -{"copyright":"Tom Green","url":"http:\/\/beingtomgreen.com","email":"tom@beingtomgreen.com","format":"html"} \ No newline at end of file +{ + "copyright": "Tom Green", + "url": "http://beingtomgreen.com", + "email": "tom@beingtomgreen.com", + "format": "html" +} diff --git a/users/beintoo.json b/users/beintoo.json index e886ca0c..0d3bab24 100644 --- a/users/beintoo.json +++ b/users/beintoo.json @@ -1 +1,5 @@ -{"copyright":"Beintoo","url":"http:\/\/www.beintoo.com\/","theme":"material-light-green"} \ No newline at end of file +{ + "copyright": "Beintoo", + "url": "http://www.beintoo.com/", + "theme": "material-light-green" +} diff --git a/users/belldandu.json b/users/belldandu.json index 561ebfb3..ec6277d5 100644 --- a/users/belldandu.json +++ b/users/belldandu.json @@ -1,6 +1,6 @@ { - "copyright": "Belldandu, http://ilp.moe", - "url": "http://ilp.moe", - "email": "kami@ilp.moe", - "format": "html" + "copyright": "Belldandu, http://ilp.moe", + "url": "http://ilp.moe", + "email": "kami@ilp.moe", + "format": "html" } diff --git a/users/beloi.json b/users/beloi.json index d8e14799..b4471702 100644 --- a/users/beloi.json +++ b/users/beloi.json @@ -1 +1,4 @@ -{"copyright":"Beloi Ignacio","format":"txt"} \ No newline at end of file +{ + "copyright": "Beloi Ignacio", + "format": "txt" +} diff --git a/users/ben.json b/users/ben.json index 34236487..bcab4fc5 100644 --- a/users/ben.json +++ b/users/ben.json @@ -1 +1,3 @@ -{"copyright":"Ben Smithett"} \ No newline at end of file +{ + "copyright": "Ben Smithett" +} diff --git a/users/benatkin.json b/users/benatkin.json index 34cc6c3f..2006d7a0 100644 --- a/users/benatkin.json +++ b/users/benatkin.json @@ -1 +1,3 @@ -{"copyright":"Ben Atkin"} \ No newline at end of file +{ + "copyright": "Ben Atkin" +} diff --git a/users/benbarber.json b/users/benbarber.json index b90fac7f..b5ae90c3 100644 --- a/users/benbarber.json +++ b/users/benbarber.json @@ -1,4 +1,4 @@ { - "copyright": "Benjamin Barber", - "theme": "plaintext" + "copyright": "Benjamin Barber", + "theme": "plaintext" } diff --git a/users/benizi.json b/users/benizi.json index 8cd6af13..38c45fe3 100644 --- a/users/benizi.json +++ b/users/benizi.json @@ -1 +1,4 @@ -{"copyright":"Benjamin R. Haskell","email":"mit-license@benizi.com"} \ No newline at end of file +{ + "copyright": "Benjamin R. Haskell", + "email": "mit-license@benizi.com" +} diff --git a/users/benjie.json b/users/benjie.json index dfada5dc..936899aa 100644 --- a/users/benjie.json +++ b/users/benjie.json @@ -1 +1,3 @@ -{"copyright":"Benjie Gillam"} \ No newline at end of file +{ + "copyright": "Benjie Gillam" +} diff --git a/users/benniemosher.json b/users/benniemosher.json index ccb3d0ee..ed1d1b51 100644 --- a/users/benniemosher.json +++ b/users/benniemosher.json @@ -1 +1,3 @@ -{"copyright":"Bennie Mosher"} \ No newline at end of file +{ + "copyright": "Bennie Mosher" +} diff --git a/users/bensarmiento.json b/users/bensarmiento.json index 4681a5dd..839ec0b9 100644 --- a/users/bensarmiento.json +++ b/users/bensarmiento.json @@ -1,6 +1,6 @@ { - "copyright": "Ben Sarmiento, http://bensarmiento.com", - "url": "http://bensarmiento.com", - "email": "me@bensarmiento.com", - "gravatar": true -} \ No newline at end of file + "copyright": "Ben Sarmiento, http://bensarmiento.com", + "url": "http://bensarmiento.com", + "email": "me@bensarmiento.com", + "gravatar": true +} diff --git a/users/benspotatoes.json b/users/benspotatoes.json index ddf75877..c7524083 100644 --- a/users/benspotatoes.json +++ b/users/benspotatoes.json @@ -1 +1,6 @@ -{"copyright":"Benjamin Hsieh","url":"http:\/\/benspotatoes.com","email":"benspotatoes@gmail.com","format":"html"} \ No newline at end of file +{ + "copyright": "Benjamin Hsieh", + "url": "http://benspotatoes.com", + "email": "benspotatoes@gmail.com", + "format": "html" +} diff --git a/users/berbaquero.json b/users/berbaquero.json index 78ba8a35..086ec238 100644 --- a/users/berbaquero.json +++ b/users/berbaquero.json @@ -1 +1,3 @@ -{"copyright":"Bernardo Baquero Stand"} \ No newline at end of file +{ + "copyright": "Bernardo Baquero Stand" +} diff --git a/users/berngfilho.json b/users/berngfilho.json index 93433a93..6ae7a275 100644 --- a/users/berngfilho.json +++ b/users/berngfilho.json @@ -1 +1,6 @@ -{"copyright":"Bernardo Gurgel Filho","url":"http:\/\/bernardogfilho.github.io","email":"bernardogfilho@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Bernardo Gurgel Filho", + "url": "http://bernardogfilho.github.io", + "email": "bernardogfilho@gmail.com", + "format": "txt" +} diff --git a/users/bescott.json b/users/bescott.json index 1a03452f..a85f52ca 100644 --- a/users/bescott.json +++ b/users/bescott.json @@ -1,6 +1,6 @@ { - "copyright": "Ben Scott, http://bescott.org", - "url": "http://bescott.org", - "email": "bescott@andrew.cmu.edu", - "theme": "default-dark" -} \ No newline at end of file + "copyright": "Ben Scott, http://bescott.org", + "url": "http://bescott.org", + "email": "bescott@andrew.cmu.edu", + "theme": "default-dark" +} diff --git a/users/beshr.json b/users/beshr.json index b8bd08d1..a79ef770 100644 --- a/users/beshr.json +++ b/users/beshr.json @@ -1 +1,5 @@ -{"copyright": "Beshr Kayali, http://beshr.com", "url": "http://beshr.com", "email": "me@beshr.com"} +{ + "copyright": "Beshr Kayali, http://beshr.com", + "url": "http://beshr.com", + "email": "me@beshr.com" +} diff --git a/users/besson.json b/users/besson.json index 4f40d656..1e74e617 100644 --- a/users/besson.json +++ b/users/besson.json @@ -1 +1,7 @@ -{"copyright":"Lilian Besson, http:\/\/perso.crans.org\/besson\/","url":"http:\/\/perso.crans.org\/besson\/","email":"besson at crans dot org","format":"html","gravatar":true} \ No newline at end of file +{ + "copyright": "Lilian Besson, http://perso.crans.org/besson/", + "url": "http://perso.crans.org/besson/", + "email": "besson at crans dot org", + "format": "html", + "gravatar": true +} diff --git a/users/bethanyr.json b/users/bethanyr.json index 5ae8bda9..76fab4c1 100644 --- a/users/bethanyr.json +++ b/users/bethanyr.json @@ -1 +1,6 @@ -{"copyright":"Bethany Rentz","url":"http:http:\/\/www.bethanyrentz.com","email":"bethany.rentz@hotmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Bethany Rentz", + "url": "http:http://www.bethanyrentz.com", + "email": "bethany.rentz@hotmail.com", + "format": "txt" +} diff --git a/users/betomuniz.json b/users/betomuniz.json index 95e15b6e..ec416e03 100644 --- a/users/betomuniz.json +++ b/users/betomuniz.json @@ -1 +1,3 @@ -{"copyright":"Beto Muniz"} \ No newline at end of file +{ + "copyright": "Beto Muniz" +} diff --git a/users/beyondweb.json b/users/beyondweb.json index a5ed07e8..855af4c7 100644 --- a/users/beyondweb.json +++ b/users/beyondweb.json @@ -1 +1,4 @@ -{"copyright":"BeyondWEB","url":"http:\/\/beyondweb.co.za"} \ No newline at end of file +{ + "copyright": "BeyondWEB", + "url": "http://beyondweb.co.za" +} diff --git a/users/bezoerb.json b/users/bezoerb.json index b5abf1a7..27a2d734 100644 --- a/users/bezoerb.json +++ b/users/bezoerb.json @@ -1 +1,4 @@ -{"copyright":"Ben Z\u00f6rb","email":"ben@sommerlaune.com"} \ No newline at end of file +{ + "copyright": "Ben Z\u00f6rb", + "email": "ben@sommerlaune.com" +} diff --git a/users/bfoxwell.json b/users/bfoxwell.json index 77e57bb6..359c32fc 100644 --- a/users/bfoxwell.json +++ b/users/bfoxwell.json @@ -1 +1,3 @@ -{"copyright":"Brian Foxwell"} \ No newline at end of file +{ + "copyright": "Brian Foxwell" +} diff --git a/users/bh.json b/users/bh.json index 89dc140e..a4779f4c 100644 --- a/users/bh.json +++ b/users/bh.json @@ -1 +1,6 @@ -{"copyright":"B\u00e4nziger Hug Ltd.","url":"http:\/\/baenziger-hug.com","email":"oh@baenziger-hug.com","format":"txt"} \ No newline at end of file +{ + "copyright": "B\u00e4nziger Hug Ltd.", + "url": "http://baenziger-hug.com", + "email": "oh@baenziger-hug.com", + "format": "txt" +} diff --git a/users/bharath063.json b/users/bharath063.json index e717b82b..3c17a59c 100644 --- a/users/bharath063.json +++ b/users/bharath063.json @@ -1 +1,3 @@ -{"copyright":"Bharath Balan"} \ No newline at end of file +{ + "copyright": "Bharath Balan" +} diff --git a/users/bigab.json b/users/bigab.json index 61e8cf44..ad857029 100644 --- a/users/bigab.json +++ b/users/bigab.json @@ -1 +1,3 @@ -{"copyright":"Adam Barrett"} \ No newline at end of file +{ + "copyright": "Adam Barrett" +} diff --git a/users/bih.json b/users/bih.json index e0b8137c..3ffdf252 100644 --- a/users/bih.json +++ b/users/bih.json @@ -1 +1,5 @@ -{"copyright":"Bilawal Hameed","url":"http:\/\/bilaw.al","email":"me@bilaw.al"} \ No newline at end of file +{ + "copyright": "Bilawal Hameed", + "url": "http://bilaw.al", + "email": "me@bilaw.al" +} diff --git a/users/bilger.json b/users/bilger.json index 7f6a0668..1525111e 100644 --- a/users/bilger.json +++ b/users/bilger.json @@ -1 +1,6 @@ -{"copyright":"Matthias Bilger","url":"http:\/\/bilger.info","email":"matthias@bilger.info","format":"txt"} \ No newline at end of file +{ + "copyright": "Matthias Bilger", + "url": "http://bilger.info", + "email": "matthias@bilger.info", + "format": "txt" +} diff --git a/users/biomassives.json b/users/biomassives.json index dac9407c..89c02db4 100644 --- a/users/biomassives.json +++ b/users/biomassives.json @@ -1 +1,3 @@ -{"copyright":"Biomassives Group Ltd."} \ No newline at end of file +{ + "copyright": "Biomassives Group Ltd." +} diff --git a/users/bipbop.json b/users/bipbop.json index 83d8d982..40b5d4a0 100644 --- a/users/bipbop.json +++ b/users/bipbop.json @@ -1 +1,6 @@ -{"copyright":"BIPBOP SOFTWARE E SERVICOS LTDA","url":"http:\/\/www.bipbop.com.br\/","email":"contato@bipbop.com.br","format":"txt"} \ No newline at end of file +{ + "copyright": "BIPBOP SOFTWARE E SERVICOS LTDA", + "url": "http://www.bipbop.com.br/", + "email": "contato@bipbop.com.br", + "format": "txt" +} diff --git a/users/birdi.json b/users/birdi.json index 8e69ae82..4774a4d6 100644 --- a/users/birdi.json +++ b/users/birdi.json @@ -1 +1,7 @@ -{"copyright":"Birdicode","url":"http:\/\/black-burn.ch","email":"birdicode@gmail.com","format":"html","theme":"xtansia"} +{ + "copyright": "Birdicode", + "url": "http://black-burn.ch", + "email": "birdicode@gmail.com", + "format": "html", + "theme": "xtansia" +} diff --git a/users/birkof.json b/users/birkof.json index 67279b4c..7113d3a9 100644 --- a/users/birkof.json +++ b/users/birkof.json @@ -1,8 +1,8 @@ { - "copyright": "Daniel STANCU, http://birkof.ro", - "url": "http://birkof.ro", - "theme": "afterdark", - "email": "birkof@birkof.ro", - "gravatar": true, - "format": "html" + "copyright": "Daniel STANCU, http://birkof.ro", + "url": "http://birkof.ro", + "theme": "afterdark", + "email": "birkof@birkof.ro", + "gravatar": true, + "format": "html" } diff --git a/users/bitbonsai.json b/users/bitbonsai.json index d66dc00e..3d9f5271 100644 --- a/users/bitbonsai.json +++ b/users/bitbonsai.json @@ -1 +1,8 @@ -{"copyright":"Mauricio Wolff - BitBonsai","url":"http:\/\/bitbonsai.com","email":"m@bitbonsai.com","format":"html","gravatar":true,"theme":"double-windsor"} +{ + "copyright": "Mauricio Wolff - BitBonsai", + "url": "http://bitbonsai.com", + "email": "m@bitbonsai.com", + "format": "html", + "gravatar": true, + "theme": "double-windsor" +} diff --git a/users/bitmxittz.json b/users/bitmxittz.json index 1aacc32d..391c2c3d 100644 --- a/users/bitmxittz.json +++ b/users/bitmxittz.json @@ -1,7 +1,7 @@ { - "copyright": "Bitmxittz", - "url": "http://bitmxittz.com", - "email": "contact@bitmxittz.com", - "theme": "flesch", - "gravatar": true + "copyright": "Bitmxittz", + "url": "http://bitmxittz.com", + "email": "contact@bitmxittz.com", + "theme": "flesch", + "gravatar": true } diff --git a/users/bjeanes.json b/users/bjeanes.json index adbde2d3..e00aa5cb 100644 --- a/users/bjeanes.json +++ b/users/bjeanes.json @@ -1 +1,6 @@ -{"copyright":"Bo Jeanes","url":"http:\/\/bjeanes.com","email":"me@bjeanes.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Bo Jeanes", + "url": "http://bjeanes.com", + "email": "me@bjeanes.com", + "format": "txt" +} diff --git a/users/blacklite.json b/users/blacklite.json index 088c007f..2a69a8f6 100644 --- a/users/blacklite.json +++ b/users/blacklite.json @@ -1 +1,7 @@ -{"copyright":"David Driscoll","url":"http:\/\/blacklite.ca","email":"david@blacklite.ca","gravatar":true,"theme":"opensans"} \ No newline at end of file +{ + "copyright": "David Driscoll", + "url": "http://blacklite.ca", + "email": "david@blacklite.ca", + "gravatar": true, + "theme": "opensans" +} diff --git a/users/blahah.json b/users/blahah.json index 889c419b..0ed19c79 100644 --- a/users/blahah.json +++ b/users/blahah.json @@ -1 +1,3 @@ -{"copyright":"Richard Smith-Unna"} \ No newline at end of file +{ + "copyright": "Richard Smith-Unna" +} diff --git a/users/blake.json b/users/blake.json index 46bad8cf..6aeb1670 100644 --- a/users/blake.json +++ b/users/blake.json @@ -1 +1,6 @@ -{"copyright":"Blake Owens","url":"http:\/\/blakeowens.com","email":"blake@blakeowens.com","format":"html"} \ No newline at end of file +{ + "copyright": "Blake Owens", + "url": "http://blakeowens.com", + "email": "blake@blakeowens.com", + "format": "html" +} diff --git a/users/blaulan.json b/users/blaulan.json index 5d7395eb..4cff7ca3 100644 --- a/users/blaulan.json +++ b/users/blaulan.json @@ -1 +1,6 @@ -{"copyright":"Eric Wu","url":"http:\/\/blaulan.com","email":"me@blaulan.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Eric Wu", + "url": "http://blaulan.com", + "email": "me@blaulan.com", + "format": "txt" +} diff --git a/users/blazeworx.json b/users/blazeworx.json index 9cc1db1a..b8bf58b1 100644 --- a/users/blazeworx.json +++ b/users/blazeworx.json @@ -1 +1,6 @@ -{"copyright":"Alex Carter","url":"http:\/\/blazeworx.com","email":"alex@blazeworx.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Alex Carter", + "url": "http://blazeworx.com", + "email": "alex@blazeworx.com", + "format": "txt" +} diff --git a/users/blim.json b/users/blim.json index 2016b4d9..e0e65563 100644 --- a/users/blim.json +++ b/users/blim.json @@ -1 +1,3 @@ -{"copyright":"Koo Chi Hoon, http:\/\/i-blim.com\/"} \ No newline at end of file +{ + "copyright": "Koo Chi Hoon, http://i-blim.com/" +} diff --git a/users/blitzkraft.json b/users/blitzkraft.json index b53c02af..d5fe325b 100644 --- a/users/blitzkraft.json +++ b/users/blitzkraft.json @@ -1,6 +1,6 @@ { - "copyright": "BK Bolisetty, http://blitzkraft.me", - "url": "http://blitzkraft.me", - "email": "bk@blitzkraft.me", - "theme": "default-dark" + "copyright": "BK Bolisetty, http://blitzkraft.me", + "url": "http://blitzkraft.me", + "email": "bk@blitzkraft.me", + "theme": "default-dark" } diff --git a/users/blueberrystream.json b/users/blueberrystream.json index ac6270bb..b4d9701f 100644 --- a/users/blueberrystream.json +++ b/users/blueberrystream.json @@ -1,7 +1,7 @@ { - "copyright": "Fumihito Hachinohe", - "email": "kid0725@gmail.com", - "format": "html", - "theme": "opensans", - "gravatar": true + "copyright": "Fumihito Hachinohe", + "email": "kid0725@gmail.com", + "format": "html", + "theme": "opensans", + "gravatar": true } diff --git a/users/blueimp.json b/users/blueimp.json index 226d6e7f..bb5ff3e4 100644 --- a/users/blueimp.json +++ b/users/blueimp.json @@ -1 +1,4 @@ -{"copyright":"Sebastian Tschan","url":"https:\/\/blueimp.net"} \ No newline at end of file +{ + "copyright": "Sebastian Tschan", + "url": "https://blueimp.net" +} diff --git a/users/blunderboy.json b/users/blunderboy.json index 1193fd4b..d1df2e18 100644 --- a/users/blunderboy.json +++ b/users/blunderboy.json @@ -1 +1,6 @@ -{"copyright":"Sachin Jain","email":"sachinjain024@gmail.com","theme":"cherry","format":"txt"} \ No newline at end of file +{ + "copyright": "Sachin Jain", + "email": "sachinjain024@gmail.com", + "theme": "cherry", + "format": "txt" +} diff --git a/users/bmaeser.json b/users/bmaeser.json index 95743af3..a96bf78c 100644 --- a/users/bmaeser.json +++ b/users/bmaeser.json @@ -1,4 +1,4 @@ { - "copyright": "Bernhard Mäser, http://bmaeser.io", - "url": "http://bmaeser.io" + "copyright": "Bernhard M\u00c3\u00a4ser, http://bmaeser.io", + "url": "http://bmaeser.io" } diff --git a/users/bmelton.json b/users/bmelton.json index 68b24a9e..90abc0cb 100644 --- a/users/bmelton.json +++ b/users/bmelton.json @@ -1 +1,3 @@ -{"copyright":"Barry Melton"} \ No newline at end of file +{ + "copyright": "Barry Melton" +} diff --git a/users/bmintz.json b/users/bmintz.json index 0547cd02..cd5697d3 100644 --- a/users/bmintz.json +++ b/users/bmintz.json @@ -1 +1,4 @@ -{"copyright":"Benjamin Mintz","theme":"black-beauty"} +{ + "copyright": "Benjamin Mintz", + "theme": "black-beauty" +} diff --git a/users/boardintelligence.json b/users/boardintelligence.json index 6cbb6ea6..0598bd22 100644 --- a/users/boardintelligence.json +++ b/users/boardintelligence.json @@ -1 +1,5 @@ -{"copyright":"Board Intelligence","url":"http:\/\/boardintelligence.co.uk","email":"boardiq@boardintelligence.co.uk"} \ No newline at end of file +{ + "copyright": "Board Intelligence", + "url": "http://boardintelligence.co.uk", + "email": "boardiq@boardintelligence.co.uk" +} diff --git a/users/bobby-tables.json b/users/bobby-tables.json index 05f5ab28..b3da2d34 100644 --- a/users/bobby-tables.json +++ b/users/bobby-tables.json @@ -1 +1,4 @@ -{"copyright":"Bobby Tables","email":"bobby.tables@mailinator.com\">Little Bobby Tables<\/a>
"} \ No newline at end of file +{ + "copyright": "Johannes Holzfu\u00df " +} diff --git a/users/davejustice.json b/users/davejustice.json index 8464b127..61c0ca93 100644 --- a/users/davejustice.json +++ b/users/davejustice.json @@ -1 +1,6 @@ -{"copyright":"Dave Justice","url":"http:\/\/davejustice.com","email":"davejustishh@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Dave Justice", + "url": "http://davejustice.com", + "email": "davejustishh@gmail.com", + "format": "txt" +} diff --git a/users/daveross.json b/users/daveross.json index bfcf0f9a..d52c023a 100644 --- a/users/daveross.json +++ b/users/daveross.json @@ -1 +1,6 @@ -{"copyright":"David Michael Ross","url":"http:\/\/davidmichaelross.com","email":"dave@davidmichaelross.com","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "David Michael Ross", + "url": "http://davidmichaelross.com", + "email": "dave@davidmichaelross.com", + "theme": "double-windsor" +} diff --git a/users/davestern.json b/users/davestern.json index 831171fb..826961bd 100644 --- a/users/davestern.json +++ b/users/davestern.json @@ -1 +1,6 @@ -{"copyright":"Dave Stern","url":"https:\/\/github.com\/davestern","email":"dave@davestern.com","theme":"double-windsor"} +{ + "copyright": "Dave Stern", + "url": "https://github.com/davestern", + "email": "dave@davestern.com", + "theme": "double-windsor" +} diff --git a/users/david.json b/users/david.json index fa48ea3f..1efb5845 100644 --- a/users/david.json +++ b/users/david.json @@ -1 +1,3 @@ -{"copyright":"David Pennington "} \ No newline at end of file +{ + "copyright": "David Pennington " +} diff --git a/users/davidcmoulton.json b/users/davidcmoulton.json index 3b684ec8..bb3ee0eb 100644 --- a/users/davidcmoulton.json +++ b/users/davidcmoulton.json @@ -1 +1,4 @@ -{"copyright":"David Moulton","theme":"afterdark"} \ No newline at end of file +{ + "copyright": "David Moulton", + "theme": "afterdark" +} diff --git a/users/davidgovea.json b/users/davidgovea.json index 1ba9a890..c16112f6 100644 --- a/users/davidgovea.json +++ b/users/davidgovea.json @@ -1 +1,6 @@ -{"copyright":"David Govea","url":"https:\/\/github.com\/davidgovea","email":"govea.d@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "David Govea", + "url": "https://github.com/davidgovea", + "email": "govea.d@gmail.com", + "format": "txt" +} diff --git a/users/davidsonfellipe.json b/users/davidsonfellipe.json index 01578637..82439aaf 100644 --- a/users/davidsonfellipe.json +++ b/users/davidsonfellipe.json @@ -1 +1,5 @@ -{ "copyright": "Davidson Fellipe", "url": "http://fellipe.com", "email": "email@fellipe.com" } +{ + "copyright": "Davidson Fellipe", + "url": "http://fellipe.com", + "email": "email@fellipe.com" +} diff --git a/users/davidzitting.json b/users/davidzitting.json index 3774dbf2..9bcfadbc 100644 --- a/users/davidzitting.json +++ b/users/davidzitting.json @@ -1,7 +1,7 @@ { - "copyright": "David Zitting, https://twitter.com/dgzitting", - "url": "https://twitter.com/dgzitting", - "format": "html", - "email": "davidzittingaccts1@gmail.com", - "theme": "default" + "copyright": "David Zitting, https://twitter.com/dgzitting", + "url": "https://twitter.com/dgzitting", + "format": "html", + "email": "davidzittingaccts1@gmail.com", + "theme": "default" } diff --git a/users/daviesgeek.json b/users/daviesgeek.json index 11b5fd0e..60d35ee4 100644 --- a/users/daviesgeek.json +++ b/users/daviesgeek.json @@ -1 +1,7 @@ -{"copyright":"Matthew Davies","url":"http:\/\/daviesgeek.com","theme":"double-windsor","email":"matthew@daviesgeek.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Matthew Davies", + "url": "http://daviesgeek.com", + "theme": "double-windsor", + "email": "matthew@daviesgeek.com", + "gravatar": true +} diff --git a/users/davisonio.json b/users/davisonio.json index 3f71ed06..c9a3ea51 100644 --- a/users/davisonio.json +++ b/users/davisonio.json @@ -1 +1,6 @@ -{"copyright":"Craig Davison","url":"https:\/\/davison.io","email":"craig@davison.io","format":"txt"} \ No newline at end of file +{ + "copyright": "Craig Davison", + "url": "https://davison.io", + "email": "craig@davison.io", + "format": "txt" +} diff --git a/users/davoclavo.json b/users/davoclavo.json index a6a20ca1..e0562c21 100644 --- a/users/davoclavo.json +++ b/users/davoclavo.json @@ -1 +1,3 @@ -{"copyright":"David G\u00f3mez Urquiza"} \ No newline at end of file +{ + "copyright": "David G\u00f3mez Urquiza" +} diff --git a/users/dawneraq.json b/users/dawneraq.json index 5af517e5..bb6b9da2 100644 --- a/users/dawneraq.json +++ b/users/dawneraq.json @@ -1,6 +1,6 @@ { - "copyright": "Andrew Aquino, https://dawneraq.github.io", - "url": "https://dawneraq.github.io", - "email": "dawneraq@gmail.com", - "gravatar": true + "copyright": "Andrew Aquino, https://dawneraq.github.io", + "url": "https://dawneraq.github.io", + "email": "dawneraq@gmail.com", + "gravatar": true } diff --git a/users/daxlab.json b/users/daxlab.json index aae44d2d..308f5f7d 100644 --- a/users/daxlab.json +++ b/users/daxlab.json @@ -1,7 +1,7 @@ { - "copyright": "Mandeep Singh", - "url": "https://github.com/daxlab", - "email": "mandeep25894@gmail.com", - "theme": "material-green", - "gravatar": true + "copyright": "Mandeep Singh", + "url": "https://github.com/daxlab", + "email": "mandeep25894@gmail.com", + "theme": "material-green", + "gravatar": true } diff --git a/users/dayflower.json b/users/dayflower.json index a384084a..3d5a6e30 100644 --- a/users/dayflower.json +++ b/users/dayflower.json @@ -1 +1,4 @@ -{"copyright":"dayflower","gravatar":"true"} \ No newline at end of file +{ + "copyright": "dayflower", + "gravatar": "true" +} diff --git a/users/dayvsonlima.json b/users/dayvsonlima.json index 288c8e2e..88a1b4b0 100644 --- a/users/dayvsonlima.json +++ b/users/dayvsonlima.json @@ -1 +1,5 @@ -{"copyright":"Dayvson Lima","email":"dayvsonlima31@gmail.com","format":"txt"} +{ + "copyright": "Dayvson Lima", + "email": "dayvsonlima31@gmail.com", + "format": "txt" +} diff --git a/users/dbohdan.json b/users/dbohdan.json index 0024a0b8..280eb4b5 100644 --- a/users/dbohdan.json +++ b/users/dbohdan.json @@ -1 +1,3 @@ -{"copyright":"Danyil Bohdan"} \ No newline at end of file +{ + "copyright": "Danyil Bohdan" +} diff --git a/users/dcgauld.json b/users/dcgauld.json index ab75e7eb..d8bf3778 100644 --- a/users/dcgauld.json +++ b/users/dcgauld.json @@ -1 +1,3 @@ -{"copyright":"David Gauld"} \ No newline at end of file +{ + "copyright": "David Gauld" +} diff --git a/users/dch.json b/users/dch.json index 8114c4ce..79d4cc55 100644 --- a/users/dch.json +++ b/users/dch.json @@ -1 +1,6 @@ -{"copyright":"Dave Cottlehuber","url":"http:\/\/jsonified.com","email":"dch@jsonified.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Dave Cottlehuber", + "url": "http://jsonified.com", + "email": "dch@jsonified.com", + "format": "txt" +} diff --git a/users/dcronkite.json b/users/dcronkite.json index 8ea31b88..d2e88b98 100644 --- a/users/dcronkite.json +++ b/users/dcronkite.json @@ -1,4 +1,4 @@ { - "copyright": "David Cronkite", - "format": "txt" + "copyright": "David Cronkite", + "format": "txt" } diff --git a/users/dcunited001.json b/users/dcunited001.json index 1e273457..d34f802a 100644 --- a/users/dcunited001.json +++ b/users/dcunited001.json @@ -1,8 +1,8 @@ { - "copyright":"David Conner", - "email": "dconner.pro@gmail.com", - "format": "html", - "gravatar": "true", - "url": "http://te.xel.io", - "theme": "opensans" + "copyright": "David Conner", + "email": "dconner.pro@gmail.com", + "format": "html", + "gravatar": "true", + "url": "http://te.xel.io", + "theme": "opensans" } diff --git a/users/dd.json b/users/dd.json index 3c011f1c..afe752e1 100644 --- a/users/dd.json +++ b/users/dd.json @@ -1 +1,3 @@ -{"copyright":"Dave Della Costa"} \ No newline at end of file +{ + "copyright": "Dave Della Costa" +} diff --git a/users/ddd.json b/users/ddd.json index 941ed326..4e4e8721 100644 --- a/users/ddd.json +++ b/users/ddd.json @@ -1,6 +1,6 @@ { - "copyright": "D Deryl Downey, http://deryldowney.com", - "url": "http://deryldowney.com", - "email": "ddd@deryldowney.com", - "theme": "eula-modern" + "copyright": "D Deryl Downey, http://deryldowney.com", + "url": "http://deryldowney.com", + "email": "ddd@deryldowney.com", + "theme": "eula-modern" } diff --git a/users/ddeaguiar.json b/users/ddeaguiar.json index 005c2029..bf003e7b 100644 --- a/users/ddeaguiar.json +++ b/users/ddeaguiar.json @@ -1,4 +1,4 @@ { - "copyright": "Daniel De Aguiar", - "format": "txt" + "copyright": "Daniel De Aguiar", + "format": "txt" } diff --git a/users/ddl1st.json b/users/ddl1st.json index e16b50bd..1c2971f1 100644 --- a/users/ddl1st.json +++ b/users/ddl1st.json @@ -1 +1,6 @@ -{"copyright":"ddl1st","url":"http:\/\/ddl1st.github.com","email":"looooooooooooooooooooooooooops@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "ddl1st", + "url": "http://ddl1st.github.com", + "email": "looooooooooooooooooooooooooops@gmail.com", + "format": "txt" +} diff --git a/users/ddproxy.json b/users/ddproxy.json index efec488f..ca49bdc8 100644 --- a/users/ddproxy.json +++ b/users/ddproxy.json @@ -1 +1,6 @@ -{"copyright":"Jon West","email":"ddproxy@gmail.com","format":"html","theme":"material-blue"} \ No newline at end of file +{ + "copyright": "Jon West", + "email": "ddproxy@gmail.com", + "format": "html", + "theme": "material-blue" +} diff --git a/users/deacalion.json b/users/deacalion.json index 2fea9859..b1f2e29d 100644 --- a/users/deacalion.json +++ b/users/deacalion.json @@ -1 +1,7 @@ -{"copyright":"Matt Deacalion Stevens","url":"http:\/\/dirtymonkey.co.uk","email":"matt@dirtymonkey.co.uk","gravatar":true,"theme":"default dark"} +{ + "copyright": "Matt Deacalion Stevens", + "url": "http://dirtymonkey.co.uk", + "email": "matt@dirtymonkey.co.uk", + "gravatar": true, + "theme": "default dark" +} diff --git a/users/deanlandolt.json b/users/deanlandolt.json index f1148aa3..f1617bc7 100644 --- a/users/deanlandolt.json +++ b/users/deanlandolt.json @@ -1 +1,6 @@ -{"copyright":"Dean Landolt","url":"http:\/\/deanlandolt.com","email":"dean@deanlandolt.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Dean Landolt", + "url": "http://deanlandolt.com", + "email": "dean@deanlandolt.com", + "format": "txt" +} diff --git a/users/decached.json b/users/decached.json index b3c4c16a..60063f51 100644 --- a/users/decached.json +++ b/users/decached.json @@ -1 +1,3 @@ -{"copyright":"Akash Kothawale"} \ No newline at end of file +{ + "copyright": "Akash Kothawale" +} diff --git a/users/decklin.json b/users/decklin.json index 1403fb4a..1258d5f4 100644 --- a/users/decklin.json +++ b/users/decklin.json @@ -1 +1,3 @@ -{"copyright":"Decklin Foster"} \ No newline at end of file +{ + "copyright": "Decklin Foster" +} diff --git a/users/deecewan.json b/users/deecewan.json index 4bdc1aba..8a385fbe 100644 --- a/users/deecewan.json +++ b/users/deecewan.json @@ -1,6 +1,6 @@ { - "copyright": "David Buchan-Swanson", - "email": "david.buchanswanson@gmail.com", - "theme": "material-light-blue", - "gravatar": true + "copyright": "David Buchan-Swanson", + "email": "david.buchanswanson@gmail.com", + "theme": "material-light-blue", + "gravatar": true } diff --git a/users/deefour.json b/users/deefour.json index 08bce6f4..6d631421 100644 --- a/users/deefour.json +++ b/users/deefour.json @@ -1 +1,8 @@ -{"copyright":"Jason Daly (deefour)","url":"http:\/\/deefour.me","email":"jason@deefour.me","format":"html","gravater":true,"theme":"plaintext"} \ No newline at end of file +{ + "copyright": "Jason Daly (deefour)", + "url": "http://deefour.me", + "email": "jason@deefour.me", + "format": "html", + "gravater": true, + "theme": "plaintext" +} diff --git a/users/deepak.json b/users/deepak.json index 9bba67ed..fed7498e 100644 --- a/users/deepak.json +++ b/users/deepak.json @@ -1,6 +1,6 @@ { - "copyright": "Deepak Kamat", - "url": "http://www.stramaxon.com/", - "email": "depy45631@gmail.com", - "theme": "solarized" + "copyright": "Deepak Kamat", + "url": "http://www.stramaxon.com/", + "email": "depy45631@gmail.com", + "theme": "solarized" } diff --git a/users/deeplysimple.json b/users/deeplysimple.json index 43757298..85943e00 100644 --- a/users/deeplysimple.json +++ b/users/deeplysimple.json @@ -1 +1,5 @@ -{"copyright":"Deeplysimple","url":"http:\/\/deeplysimple.com","email":"hello@deeplysimple.com"} \ No newline at end of file +{ + "copyright": "Deeplysimple", + "url": "http://deeplysimple.com", + "email": "hello@deeplysimple.com" +} diff --git a/users/definedcode.json b/users/definedcode.json index 10f2d019..19fc6644 100644 --- a/users/definedcode.json +++ b/users/definedcode.json @@ -1 +1,6 @@ -{"copyright":"Defined Code Ltd","url":"http:\/\/serverctrl.io","email":"mail@definedcode.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Defined Code Ltd", + "url": "http://serverctrl.io", + "email": "mail@definedcode.com", + "format": "txt" +} diff --git a/users/degree9.json b/users/degree9.json index 72e445bf..d65a433f 100644 --- a/users/degree9.json +++ b/users/degree9.json @@ -1 +1,3 @@ -{"copyright":"Matthew Ratzke"} \ No newline at end of file +{ + "copyright": "Matthew Ratzke" +} diff --git a/users/dehnavi.json b/users/dehnavi.json index d579c664..66ae669f 100644 --- a/users/dehnavi.json +++ b/users/dehnavi.json @@ -1,2 +1,7 @@ -{ "copyright": "Hossein Dehnavi", "url": "http:\/\/dehnavi.info", "email": "hossein.dehnavy@gmail.com","theme": "open-sans", - "gravatar": true } +{ + "copyright": "Hossein Dehnavi", + "url": "http://dehnavi.info", + "email": "hossein.dehnavy@gmail.com", + "theme": "open-sans", + "gravatar": true +} diff --git a/users/deif.json b/users/deif.json index 442da3a7..e40af071 100644 --- a/users/deif.json +++ b/users/deif.json @@ -1,4 +1,4 @@ { - "copyright" : "David Fisher-Moreau", - "email" : "deiform87@gmail.com" + "copyright": "David Fisher-Moreau", + "email": "deiform87@gmail.com" } diff --git a/users/deirdre.json b/users/deirdre.json index 3ae33b04..f3c59fc8 100644 --- a/users/deirdre.json +++ b/users/deirdre.json @@ -1 +1,6 @@ -{"copyright":"Deirdre Allison","url":"http:\/\/deirdreallison.com","email":"deirdre9@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Deirdre Allison", + "url": "http://deirdreallison.com", + "email": "deirdre9@gmail.com", + "format": "txt" +} diff --git a/users/dejal.json b/users/dejal.json index c268dd39..169ef390 100644 --- a/users/dejal.json +++ b/users/dejal.json @@ -1 +1,4 @@ -{"copyright":"Dejal Systems, LLC, http:\/\/www.dejal.com\/developer\/","url":"http:\/\/www.dejal.com\/developer\/"} \ No newline at end of file +{ + "copyright": "Dejal Systems, LLC, http://www.dejal.com/developer/", + "url": "http://www.dejal.com/developer/" +} diff --git a/users/dejay.json b/users/dejay.json index 2bac42cb..408b449b 100644 --- a/users/dejay.json +++ b/users/dejay.json @@ -1 +1,5 @@ -{"copyright":"David Heaney","url":"http:\/\/dejayheaney.com","format":"txt"} \ No newline at end of file +{ + "copyright": "David Heaney", + "url": "http://dejayheaney.com", + "format": "txt" +} diff --git a/users/delicatebits.json b/users/delicatebits.json index db10ceab..7705feb1 100644 --- a/users/delicatebits.json +++ b/users/delicatebits.json @@ -1 +1,5 @@ -{"copyright":"delicatebits","url":"https:\/\/github.com\/delicatebits","theme":"xtansia"} \ No newline at end of file +{ + "copyright": "delicatebits", + "url": "https://github.com/delicatebits", + "theme": "xtansia" +} diff --git a/users/delorean.json b/users/delorean.json index e54e0bf9..da94dfe9 100644 --- a/users/delorean.json +++ b/users/delorean.json @@ -1 +1,6 @@ -{"copyright":"Fatih Kadir Ak\u0131n","url":"http:\/\/deloreanjs.org","email":"fka@fatihak.in","format":"txt"} \ No newline at end of file +{ + "copyright": "Fatih Kadir Ak\u0131n", + "url": "http://deloreanjs.org", + "email": "fka@fatihak.in", + "format": "txt" +} diff --git a/users/delphidabbler.json b/users/delphidabbler.json index 44343aa3..19dec11f 100644 --- a/users/delphidabbler.json +++ b/users/delphidabbler.json @@ -1 +1,6 @@ -{"copyright":"Peter D Johnson","url":"http:\/\/delphidabbler.com\/","format":"text","version":"fdcf640"} \ No newline at end of file +{ + "copyright": "Peter D Johnson", + "url": "http://delphidabbler.com/", + "format": "text", + "version": "fdcf640" +} diff --git a/users/denbuzze.json b/users/denbuzze.json index 132d604b..83a95ead 100644 --- a/users/denbuzze.json +++ b/users/denbuzze.json @@ -1 +1,3 @@ -{"copyright":"Christian Vuerings"} \ No newline at end of file +{ + "copyright": "Christian Vuerings" +} diff --git a/users/denis.json b/users/denis.json index 4692d0e2..9ae95355 100644 --- a/users/denis.json +++ b/users/denis.json @@ -1 +1,3 @@ -{"copyright":"Denis Ciccale"} \ No newline at end of file +{ + "copyright": "Denis Ciccale" +} diff --git a/users/denji.json b/users/denji.json index 0557411a..ac004b2e 100644 --- a/users/denji.json +++ b/users/denji.json @@ -1 +1,8 @@ -{"copyright":"Denis Denisov","email":"denji0k@gmail.com","format":"html","gravatar":true,"theme":"opensans","url":"https://github.com/denji"} +{ + "copyright": "Denis Denisov", + "email": "denji0k@gmail.com", + "format": "html", + "gravatar": true, + "theme": "opensans", + "url": "https://github.com/denji" +} diff --git a/users/derek-palmer.json b/users/derek-palmer.json index 5cffeac0..2d2f6821 100644 --- a/users/derek-palmer.json +++ b/users/derek-palmer.json @@ -4,4 +4,4 @@ "theme": "material-light-blue", "email": "dpalmerdev@gmail.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/derekahmedzai.json b/users/derekahmedzai.json index 2c8a943f..e5257936 100644 --- a/users/derekahmedzai.json +++ b/users/derekahmedzai.json @@ -1 +1,5 @@ -{"copyright":"Derek Ahmedzai","url":"http:\/\/www.sharpshooter.org","email":"derek@sharpshooter.org"} \ No newline at end of file +{ + "copyright": "Derek Ahmedzai", + "url": "http://www.sharpshooter.org", + "email": "derek@sharpshooter.org" +} diff --git a/users/desandro.json b/users/desandro.json index a10eab0d..379c98ff 100644 --- a/users/desandro.json +++ b/users/desandro.json @@ -1,5 +1,5 @@ { - "copyright": "David DeSandro", - "url": "http://desandro.com", - "theme": "double-windsor" -} \ No newline at end of file + "copyright": "David DeSandro", + "url": "http://desandro.com", + "theme": "double-windsor" +} diff --git a/users/designa.json b/users/designa.json index 42c4d370..a9fde3d3 100644 --- a/users/designa.json +++ b/users/designa.json @@ -1 +1,6 @@ -{ "copyright": "Designa", "url": "http://designa.com.br", "email": "contato@designa.com.br", "format": "txt" } +{ + "copyright": "Designa", + "url": "http://designa.com.br", + "email": "contato@designa.com.br", + "format": "txt" +} diff --git a/users/deuxhuithuit.json b/users/deuxhuithuit.json index 0084ab49..669b2010 100644 --- a/users/deuxhuithuit.json +++ b/users/deuxhuithuit.json @@ -1,6 +1,6 @@ { - "copyright": "Deux Huit Huit", - "url": "https://deuxhuithuit.com", - "theme": "flesch", - "gravatar": true + "copyright": "Deux Huit Huit", + "url": "https://deuxhuithuit.com", + "theme": "flesch", + "gravatar": true } diff --git a/users/dev-dipesh.json b/users/dev-dipesh.json index 25a8e32f..91d7adf0 100644 --- a/users/dev-dipesh.json +++ b/users/dev-dipesh.json @@ -1,7 +1,7 @@ -{ - "copyright": "Dipesh Bhardwaj", - "email": "itdeveloper03@gmail.com", - "url": "http://in.linkedin.com/in/devdipesh/", - "theme": "silver-style", - "gravatar": true -} \ No newline at end of file +{ + "copyright": "Dipesh Bhardwaj", + "email": "itdeveloper03@gmail.com", + "url": "http://in.linkedin.com/in/devdipesh/", + "theme": "silver-style", + "gravatar": true +} diff --git a/users/dev.json b/users/dev.json index f54fdd9c..acc9cd48 100644 --- a/users/dev.json +++ b/users/dev.json @@ -1 +1,5 @@ -{"copyright":"Ko\u0142o Naukowe >DEV","url":"http:\/\/dev.uek.krakow.pl","email":"dev@uek.krakow.pl"} \ No newline at end of file +{ + "copyright": "Ko\u0142o Naukowe >DEV", + "url": "http://dev.uek.krakow.pl", + "email": "dev@uek.krakow.pl" +} diff --git a/users/devan.json b/users/devan.json index 068cd5f0..4f41e043 100644 --- a/users/devan.json +++ b/users/devan.json @@ -1 +1,4 @@ -{"copyright":"Devan Carpenter","email":"devanc@gmail.com"} \ No newline at end of file +{ + "copyright": "Devan Carpenter", + "email": "devanc@gmail.com" +} diff --git a/users/devgru.json b/users/devgru.json index e70eb4ad..beb66f30 100644 --- a/users/devgru.json +++ b/users/devgru.json @@ -1,5 +1,5 @@ { - "copyright": "Dmitriy Semyushkin, https://devg.ru", - "url": "https://devg.ru", - "email": "git@devg.ru" + "copyright": "Dmitriy Semyushkin, https://devg.ru", + "url": "https://devg.ru", + "email": "git@devg.ru" } diff --git a/users/devin.json b/users/devin.json index a7610d1a..51cbddbd 100644 --- a/users/devin.json +++ b/users/devin.json @@ -1,5 +1,5 @@ { - "copyright": "Devin Smith", - "url": "http://devinrsmith.com", - "email": "devinrsmith@protonmail.com" + "copyright": "Devin Smith", + "url": "http://devinrsmith.com", + "email": "devinrsmith@protonmail.com" } diff --git a/users/devinus.json b/users/devinus.json index 7441b460..2ee88dee 100644 --- a/users/devinus.json +++ b/users/devinus.json @@ -1 +1,6 @@ -{"copyright":"Devin Torres","url":"http:\/\/devintorr.es\/","email":"devin@devintorr.es","format":"txt"} \ No newline at end of file +{ + "copyright": "Devin Torres", + "url": "http://devintorr.es/", + "email": "devin@devintorr.es", + "format": "txt" +} diff --git a/users/devssay.json b/users/devssay.json index 1d17fa8a..f476aca0 100644 --- a/users/devssay.json +++ b/users/devssay.json @@ -1 +1,5 @@ -{"copyright":"Seokmoon Jang, http:\/\/drssay.com\/","url":"http:\/\/drssay.com","theme":"afterdark"} \ No newline at end of file +{ + "copyright": "Seokmoon Jang, http://drssay.com/", + "url": "http://drssay.com", + "theme": "afterdark" +} diff --git a/users/dexafree.json b/users/dexafree.json index 07d564f1..be0ccddd 100644 --- a/users/dexafree.json +++ b/users/dexafree.json @@ -1 +1,3 @@ -{"copyright":"Dexafree"} \ No newline at end of file +{ + "copyright": "Dexafree" +} diff --git a/users/dexterind.json b/users/dexterind.json index b4e1b997..7e06ca85 100644 --- a/users/dexterind.json +++ b/users/dexterind.json @@ -1,6 +1,6 @@ -{ - "copyright": "Dexter Industries", - "url": "https:\/\/dexterindustries.com", - "email": "support@dexterindustries.com", - "format": "html" +{ + "copyright": "Dexter Industries", + "url": "https://dexterindustries.com", + "email": "support@dexterindustries.com", + "format": "html" } diff --git a/users/deyvisonrocha.json b/users/deyvisonrocha.json index 9a725d87..35161324 100644 --- a/users/deyvisonrocha.json +++ b/users/deyvisonrocha.json @@ -1 +1,5 @@ -{"copyright":"Deyvison Rocha","url":"http://deyvison.me","email":"deyvison@gmail.com"} +{ + "copyright": "Deyvison Rocha", + "url": "http://deyvison.me", + "email": "deyvison@gmail.com" +} diff --git a/users/dgoodlad.json b/users/dgoodlad.json index b7469e44..1e80a772 100644 --- a/users/dgoodlad.json +++ b/users/dgoodlad.json @@ -1 +1,5 @@ -{"copyright":"David Goodlad","url":"http:\/\/d.goodlad.net\/","email":"david@goodlad.net"} \ No newline at end of file +{ + "copyright": "David Goodlad", + "url": "http://d.goodlad.net/", + "email": "david@goodlad.net" +} diff --git a/users/dgt.json b/users/dgt.json index 095d6b69..cf627378 100644 --- a/users/dgt.json +++ b/users/dgt.json @@ -1 +1,6 @@ -{"copyright":"Daniel G. Taylor","email":"danielgtaylor@gmail.com","gravatar":true,"theme":"flesch"} \ No newline at end of file +{ + "copyright": "Daniel G. Taylor", + "email": "danielgtaylor@gmail.com", + "gravatar": true, + "theme": "flesch" +} diff --git a/users/dh.json b/users/dh.json index dc4d6fcf..f241cddf 100644 --- a/users/dh.json +++ b/users/dh.json @@ -1 +1,6 @@ -{"copyright":"Daniel Honies","url":"http:\/\/danielhonies.me","email":"daniel.honies@gmail.com","theme":"material-red"} \ No newline at end of file +{ + "copyright": "Daniel Honies", + "url": "http://danielhonies.me", + "email": "daniel.honies@gmail.com", + "theme": "material-red" +} diff --git a/users/dhainzl.json b/users/dhainzl.json index 40e5d0ee..e595c7bb 100644 --- a/users/dhainzl.json +++ b/users/dhainzl.json @@ -1 +1,7 @@ -{"copyright":"David Hainzl","url":"http:\/\/dhainzl.at","email":"david@dhainzl.at","gravatar":true,"theme":"material-deep-orange"} \ No newline at end of file +{ + "copyright": "David Hainzl", + "url": "http://dhainzl.at", + "email": "david@dhainzl.at", + "gravatar": true, + "theme": "material-deep-orange" +} diff --git a/users/dhaval.json b/users/dhaval.json index 9547bbb0..47e86a43 100644 --- a/users/dhaval.json +++ b/users/dhaval.json @@ -1,8 +1,8 @@ { - "copyright": "Dhaval Kapil", - "url": "https://dhavalkapil.com", - "email":"me@dhavalkapil.com", - "format": "html", - "gravatar": true, - "theme": "rokkitt" + "copyright": "Dhaval Kapil", + "url": "https://dhavalkapil.com", + "email": "me@dhavalkapil.com", + "format": "html", + "gravatar": true, + "theme": "rokkitt" } diff --git a/users/dhavalkapil.json b/users/dhavalkapil.json index 762a9e6f..47e86a43 100644 --- a/users/dhavalkapil.json +++ b/users/dhavalkapil.json @@ -1 +1,8 @@ -{"copyright":"Dhaval Kapil","url":"https:\/\/dhavalkapil.com","email":"me@dhavalkapil.com","format":"html","gravatar":true,"theme":"rokkitt"} \ No newline at end of file +{ + "copyright": "Dhaval Kapil", + "url": "https://dhavalkapil.com", + "email": "me@dhavalkapil.com", + "format": "html", + "gravatar": true, + "theme": "rokkitt" +} diff --git a/users/dhawal.json b/users/dhawal.json index 522be3ed..83867488 100644 --- a/users/dhawal.json +++ b/users/dhawal.json @@ -1,8 +1,8 @@ { - "copyright": "Dhawal Mehta, http://dhawalmehta.com", - "url": "http://dhawalmehta.com", - "email": "dhawalmehta91@gmail.com", - "gravatar": true, - "format": "html", - "theme": "dusk" + "copyright": "Dhawal Mehta, http://dhawalmehta.com", + "url": "http://dhawalmehta.com", + "email": "dhawalmehta91@gmail.com", + "gravatar": true, + "format": "html", + "theme": "dusk" } diff --git a/users/dhuyy.json b/users/dhuyy.json index 571dab41..5aa68e0f 100644 --- a/users/dhuyy.json +++ b/users/dhuyy.json @@ -1,5 +1,5 @@ -{ - "copyright": "Vandhuy Martins", - "url": "http:\/\/dhuymartins.com.br", - "email": "vandhuy@gmail.com" -} \ No newline at end of file +{ + "copyright": "Vandhuy Martins", + "url": "http://dhuymartins.com.br", + "email": "vandhuy@gmail.com" +} diff --git a/users/dhyegofernando.json b/users/dhyegofernando.json index 49609077..c47f28fc 100644 --- a/users/dhyegofernando.json +++ b/users/dhyegofernando.json @@ -1 +1,7 @@ -{"copyright":"Dhyego Fernando","url":"https:\/\/github.com\/dhyegofernando","email":"dhyegofernando@gmail.com","gravatar":true,"theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Dhyego Fernando", + "url": "https://github.com/dhyegofernando", + "email": "dhyegofernando@gmail.com", + "gravatar": true, + "theme": "double-windsor" +} diff --git a/users/diadatp.json b/users/diadatp.json index 3d40566a..5323eb9e 100644 --- a/users/diadatp.json +++ b/users/diadatp.json @@ -1 +1,5 @@ -{"copyright":"Bittu N","url":"http:\/\/diadatp.com","email":"admin@diadatp.com"} \ No newline at end of file +{ + "copyright": "Bittu N", + "url": "http://diadatp.com", + "email": "admin@diadatp.com" +} diff --git a/users/diessica.json b/users/diessica.json index 3678526f..2cb13dde 100644 --- a/users/diessica.json +++ b/users/diessica.json @@ -1 +1,7 @@ -{"copyright":"Di\u00e9ssica Gurskas","url":"http:\/\/diessi.ca","email":"diessicode@gmail.com","theme":"double-windsor","gravatar":true} +{ + "copyright": "Di\u00e9ssica Gurskas", + "url": "http://diessi.ca", + "email": "diessicode@gmail.com", + "theme": "double-windsor", + "gravatar": true +} diff --git a/users/digipars.json b/users/digipars.json index 3e9eef7d..4ee5c8f9 100644 --- a/users/digipars.json +++ b/users/digipars.json @@ -1 +1,7 @@ -{"copyright":"DigiPars, http:\/\/digipars.com","url":"http:\/\/digipars.com\/","format":"html","gravatar":false,"theme":"plaintext"} \ No newline at end of file +{ + "copyright": "DigiPars, http://digipars.com", + "url": "http://digipars.com/", + "format": "html", + "gravatar": false, + "theme": "plaintext" +} diff --git a/users/dimakovalevskyi.json b/users/dimakovalevskyi.json index 1164c412..87a40c69 100644 --- a/users/dimakovalevskyi.json +++ b/users/dimakovalevskyi.json @@ -1 +1,7 @@ -{"copyright":"Dmytro Kovalevskyi","email":"dimakovalevskyi@gmail.com","url": "https://dimakovalevskyi.github.io","format":"html","gravatar":true} \ No newline at end of file +{ + "copyright": "Dmytro Kovalevskyi", + "email": "dimakovalevskyi@gmail.com", + "url": "https://dimakovalevskyi.github.io", + "format": "html", + "gravatar": true +} diff --git a/users/disposaboy.json b/users/disposaboy.json index 69aee264..00d8e96b 100644 --- a/users/disposaboy.json +++ b/users/disposaboy.json @@ -1 +1,6 @@ -{"copyright":"DisposaBoy","url":"http:\/\/gosublime.org\/","email":"disposaboy@dby.me","format":"txt"} \ No newline at end of file +{ + "copyright": "DisposaBoy", + "url": "http://gosublime.org/", + "email": "disposaboy@dby.me", + "format": "txt" +} diff --git a/users/dissimile.json b/users/dissimile.json index 58a15188..1a520125 100644 --- a/users/dissimile.json +++ b/users/dissimile.json @@ -1,6 +1,6 @@ { - "copyright": "Hugo Jobling", - "url": "http://www.thisishugo.com", - "email": "me@thisishugo.com", - "format": "txt" + "copyright": "Hugo Jobling", + "url": "http://www.thisishugo.com", + "email": "me@thisishugo.com", + "format": "txt" } diff --git a/users/diti.json b/users/diti.json index 93072c2d..8ba4f431 100644 --- a/users/diti.json +++ b/users/diti.json @@ -1 +1,8 @@ -{"copyright":"Dimitri Torterat","url":"http:\/\/diti.me\/","email":"kra@diti.me","format":"html","gravatar":true,"theme":"hipster-gray"} \ No newline at end of file +{ + "copyright": "Dimitri Torterat", + "url": "http://diti.me/", + "email": "kra@diti.me", + "format": "html", + "gravatar": true, + "theme": "hipster-gray" +} diff --git a/users/divyanshu.json b/users/divyanshu.json index 9c1f9b0c..b1df611d 100644 --- a/users/divyanshu.json +++ b/users/divyanshu.json @@ -1,8 +1,8 @@ { - "copyright": "Divyanshu Rawat, http://www.divyanshurawat.in", - "url": "http://www.divyanshurawat.in", - "email": "divyanshu.r46956@gmail.com", - "gravatar": true, - "theme": "material-deep-orange", - "format": "html" + "copyright": "Divyanshu Rawat, http://www.divyanshurawat.in", + "url": "http://www.divyanshurawat.in", + "email": "divyanshu.r46956@gmail.com", + "gravatar": true, + "theme": "material-deep-orange", + "format": "html" } diff --git a/users/djakobik.json b/users/djakobik.json index 02976ba5..9623a4fb 100644 --- a/users/djakobik.json +++ b/users/djakobik.json @@ -1 +1,3 @@ -{"copyright":"David Jakobik"} \ No newline at end of file +{ + "copyright": "David Jakobik" +} diff --git a/users/djalmaaraujo.json b/users/djalmaaraujo.json index bf2db96d..509626cf 100644 --- a/users/djalmaaraujo.json +++ b/users/djalmaaraujo.json @@ -1 +1,6 @@ -{"copyright":"Djalma Araujo","url":"http:\/\/djalmaaraujo.github.io\/","email":"djalma.araujo@gmail.com", "gravatar": true} +{ + "copyright": "Djalma Araujo", + "url": "http://djalmaaraujo.github.io/", + "email": "djalma.araujo@gmail.com", + "gravatar": true +} diff --git a/users/djdch.json b/users/djdch.json index 8da804cc..4bd84f38 100644 --- a/users/djdch.json +++ b/users/djdch.json @@ -1 +1,5 @@ -{"copyright":"DjDCH","url":"http:\/\/djdch.com\/","email":"coding@djdch.com"} \ No newline at end of file +{ + "copyright": "DjDCH", + "url": "http://djdch.com/", + "email": "coding@djdch.com" +} diff --git a/users/djohnson.json b/users/djohnson.json index 048a96e0..3e39eef3 100644 --- a/users/djohnson.json +++ b/users/djohnson.json @@ -1 +1,8 @@ -{"copyright":"Duncan Johnson, http:\/\/duncanjohnson.ca\/","url":"http:\/\/duncanjohnson.ca\/","email":"duncan@duncanjohnson.ca","format":"html","gravatar":"true","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Duncan Johnson, http://duncanjohnson.ca/", + "url": "http://duncanjohnson.ca/", + "email": "duncan@duncanjohnson.ca", + "format": "html", + "gravatar": "true", + "theme": "double-windsor" +} diff --git a/users/dkiyatkin.json b/users/dkiyatkin.json index 5a72b9ab..a18df8a5 100644 --- a/users/dkiyatkin.json +++ b/users/dkiyatkin.json @@ -1 +1,7 @@ -{"copyright":"Dmitriy Kiyatkin, http:\/\/dkiyatkin.com","url":"http:\/\/dkiyatkin.com","email":"info@dkiyatkin.com","format":"html","gravatar":true} +{ + "copyright": "Dmitriy Kiyatkin, http://dkiyatkin.com", + "url": "http://dkiyatkin.com", + "email": "info@dkiyatkin.com", + "format": "html", + "gravatar": true +} diff --git a/users/dlambert.json b/users/dlambert.json index ce43b52f..f2f5a987 100644 --- a/users/dlambert.json +++ b/users/dlambert.json @@ -1 +1,5 @@ -{"copyright":"Derek J. Lambert","url":"http:\/\/dereklambert.com","email":"dlambert@dereklambert.com"} \ No newline at end of file +{ + "copyright": "Derek J. Lambert", + "url": "http://dereklambert.com", + "email": "dlambert@dereklambert.com" +} diff --git a/users/dlukov.json b/users/dlukov.json index dffe5cd7..5ab5c4cc 100644 --- a/users/dlukov.json +++ b/users/dlukov.json @@ -1 +1,6 @@ -{"copyright":"Denis Lukov","url":"http:\/\/github.com\/NeXTs","email":"denismassters@gmail.com","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Denis Lukov", + "url": "http://github.com/NeXTs", + "email": "denismassters@gmail.com", + "theme": "double-windsor" +} diff --git a/users/dmcclccam.json b/users/dmcclccam.json index bf0558ca..ad8bdb58 100644 --- a/users/dmcclccam.json +++ b/users/dmcclccam.json @@ -1 +1,6 @@ -{"copyright":"Danilo Moreira de Castro","url":"http:\/\/dmcclccam.com.br","email":"danilo.moreira94@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Danilo Moreira de Castro", + "url": "http://dmcclccam.com.br", + "email": "danilo.moreira94@gmail.com", + "format": "txt" +} diff --git a/users/dmg.json b/users/dmg.json index 5618f4dd..e0b4b089 100644 --- a/users/dmg.json +++ b/users/dmg.json @@ -1 +1,4 @@ -{"copyright":"Daniel M. Gehrlein","url":"http:\/\/dmglab.de"} \ No newline at end of file +{ + "copyright": "Daniel M. Gehrlein", + "url": "http://dmglab.de" +} diff --git a/users/dmk.json b/users/dmk.json index 0d1bc0b7..d3a2fc87 100644 --- a/users/dmk.json +++ b/users/dmk.json @@ -1 +1,3 @@ -{"copyright":"Dominik Kukacka"} \ No newline at end of file +{ + "copyright": "Dominik Kukacka" +} diff --git a/users/dmorrison42.json b/users/dmorrison42.json index 0de60164..d87685f5 100644 --- a/users/dmorrison42.json +++ b/users/dmorrison42.json @@ -1 +1,3 @@ -{"copyright":"Daniel Morrison"} \ No newline at end of file +{ + "copyright": "Daniel Morrison" +} diff --git a/users/dn.json b/users/dn.json index 077641b4..57d86ec6 100644 --- a/users/dn.json +++ b/users/dn.json @@ -1,6 +1,6 @@ { - "copyright": "David Newman", - "format": "txt", - "email": "davidjndev@gmail.com", - "theme" : "default" + "copyright": "David Newman", + "format": "txt", + "email": "davidjndev@gmail.com", + "theme": "default" } diff --git a/users/dobtco.json b/users/dobtco.json index dcaf8f7f..46af0843 100644 --- a/users/dobtco.json +++ b/users/dobtco.json @@ -1 +1,3 @@ -{"copyright":"Department of Better Technology"} \ No newline at end of file +{ + "copyright": "Department of Better Technology" +} diff --git a/users/dochang.json b/users/dochang.json index b93f8c6d..bda011ad 100644 --- a/users/dochang.json +++ b/users/dochang.json @@ -1,5 +1,5 @@ { - "copyright": "ZHANG Weiyi", - "url": "https://github.com/dochang", - "email": "dochang@gmail.com" + "copyright": "ZHANG Weiyi", + "url": "https://github.com/dochang", + "email": "dochang@gmail.com" } diff --git a/users/dog2puppy.json b/users/dog2puppy.json index 887fdc2d..423322be 100644 --- a/users/dog2puppy.json +++ b/users/dog2puppy.json @@ -1,8 +1,8 @@ { - "copyright": "Dog2puppy", - "url": "https://www.dog2puppy-github.tk", - "email": "dog2puppy.mc@gmail.com", - "format": "html", - "theme": "material-light-blue", - "gravatar": true + "copyright": "Dog2puppy", + "url": "https://www.dog2puppy-github.tk", + "email": "dog2puppy.mc@gmail.com", + "format": "html", + "theme": "material-light-blue", + "gravatar": true } diff --git a/users/dogan.json b/users/dogan.json index 79c63f3c..e2c8f3f6 100644 --- a/users/dogan.json +++ b/users/dogan.json @@ -1 +1,3 @@ -{"copyright":"Wojciech Dogan Doganowski"} \ No newline at end of file +{ + "copyright": "Wojciech Dogan Doganowski" +} diff --git a/users/doiio.json b/users/doiio.json index 04dc91b7..b276a666 100644 --- a/users/doiio.json +++ b/users/doiio.json @@ -1 +1,3 @@ -{"copyright":"Open Access Dojo"} \ No newline at end of file +{ + "copyright": "Open Access Dojo" +} diff --git a/users/don.json b/users/don.json index 2f91b4df..7c792be1 100644 --- a/users/don.json +++ b/users/don.json @@ -1 +1,3 @@ -{"copyright":"Don Chea"} \ No newline at end of file +{ + "copyright": "Don Chea" +} diff --git a/users/dongilbert.json b/users/dongilbert.json index 863d7dc0..1d6f0bde 100644 --- a/users/dongilbert.json +++ b/users/dongilbert.json @@ -1 +1,6 @@ -{"copyright":"Don Gilbert","url":"http:\/\/dongilbert.net","email":"don@dongilbert.net","format":"txt"} \ No newline at end of file +{ + "copyright": "Don Gilbert", + "url": "http://dongilbert.net", + "email": "don@dongilbert.net", + "format": "txt" +} diff --git a/users/donortega.json b/users/donortega.json index 18241ef7..47da2aee 100644 --- a/users/donortega.json +++ b/users/donortega.json @@ -1 +1,4 @@ -{"copyright":"Don Ortega","url":"http:\/\/donortega.com"} \ No newline at end of file +{ + "copyright": "Don Ortega", + "url": "http://donortega.com" +} diff --git a/users/donoskaro.json b/users/donoskaro.json index 9f8ad3d2..c722d696 100644 --- a/users/donoskaro.json +++ b/users/donoskaro.json @@ -5,4 +5,4 @@ "format": "html", "theme": "material-blue", "gravatar": true - } +} diff --git a/users/doossy.json b/users/doossy.json index a4c42bb0..5fc6dc3a 100644 --- a/users/doossy.json +++ b/users/doossy.json @@ -1 +1,6 @@ -{"copyright":"doossy","url":"http:\/\/www.doossy.com","email":"it@doossy.com","format":"txt"} \ No newline at end of file +{ + "copyright": "doossy", + "url": "http://www.doossy.com", + "email": "it@doossy.com", + "format": "txt" +} diff --git a/users/dopppler.json b/users/dopppler.json index 16d49967..2c2eec91 100644 --- a/users/dopppler.json +++ b/users/dopppler.json @@ -1 +1,5 @@ -{"copyright":"dopppler","url":"https:\/\/github.com\/dopppler","email":"dopppler@foxmail.com"} +{ + "copyright": "dopppler", + "url": "https://github.com/dopppler", + "email": "dopppler@foxmail.com" +} diff --git a/users/dorian.json b/users/dorian.json index 467a0f31..55f71d2c 100644 --- a/users/dorian.json +++ b/users/dorian.json @@ -1 +1,3 @@ -{"copyright":"Dorian Mari\u00e9"} \ No newline at end of file +{ + "copyright": "Dorian Mari\u00e9" +} diff --git a/users/dotamir.json b/users/dotamir.json index 5d86dacc..1200c898 100644 --- a/users/dotamir.json +++ b/users/dotamir.json @@ -1,6 +1,6 @@ { - "copyright": "Amirhossein Eslami, http://dotam.ir", - "url": "http://dotam.ir", - "email": "eslami.amir76@gmail.com", - "gravatar": true + "copyright": "Amirhossein Eslami, http://dotam.ir", + "url": "http://dotam.ir", + "email": "eslami.amir76@gmail.com", + "gravatar": true } diff --git a/users/dougborg.json b/users/dougborg.json index a67a2eb6..62425672 100644 --- a/users/dougborg.json +++ b/users/dougborg.json @@ -1,6 +1,6 @@ { - "copyright": "Douglas Borg, http://dougborg.org", - "url": "http://dougborg.org", - "email": "dougborg@dougborg.org", - "gravatar": true + "copyright": "Douglas Borg, http://dougborg.org", + "url": "http://dougborg.org", + "email": "dougborg@dougborg.org", + "gravatar": true } diff --git a/users/dougneiner.json b/users/dougneiner.json index b2495e7e..fdc3140b 100644 --- a/users/dougneiner.json +++ b/users/dougneiner.json @@ -1,4 +1,4 @@ { - "copyright": "Doug Neiner, http://dougneiner.com", - "url": "http://dougneiner.com" -} \ No newline at end of file + "copyright": "Doug Neiner, http://dougneiner.com", + "url": "http://dougneiner.com" +} diff --git a/users/dragonfly.json b/users/dragonfly.json index 34f506f3..0b909a3a 100644 --- a/users/dragonfly.json +++ b/users/dragonfly.json @@ -1 +1,3 @@ -{"copyright":"ISLE Consultants & the Dragonfly project"} \ No newline at end of file +{ + "copyright": "ISLE Consultants & the Dragonfly project" +} diff --git a/users/dreams.json b/users/dreams.json index 1f386256..4cb4c1e2 100644 --- a/users/dreams.json +++ b/users/dreams.json @@ -1 +1,4 @@ -{"copyright": "Dreams of .NET, http://www.dreamsof.net","url": "http://www.dreamsof.net"} +{ + "copyright": "Dreams of .NET, http://www.dreamsof.net", + "url": "http://www.dreamsof.net" +} diff --git a/users/dreamysource.json b/users/dreamysource.json index dce1e41f..de129c9c 100644 --- a/users/dreamysource.json +++ b/users/dreamysource.json @@ -1,7 +1,7 @@ { - "copyright" : "DreamySource", - "url" : "http:\/\/dreamysource.fr", - "email" : "contact@dreamysource.fr", - "gravatar" : true, - "theme" : "friendly" -} \ No newline at end of file + "copyright": "DreamySource", + "url": "http://dreamysource.fr", + "email": "contact@dreamysource.fr", + "gravatar": true, + "theme": "friendly" +} diff --git a/users/druznek.json b/users/druznek.json index 199c64eb..59b41a9f 100644 --- a/users/druznek.json +++ b/users/druznek.json @@ -1 +1,4 @@ -{"copyright":"druzn3k","format":"txt"} \ No newline at end of file +{ + "copyright": "druzn3k", + "format": "txt" +} diff --git a/users/drzax.json b/users/drzax.json index 6b854f7b..1da86952 100644 --- a/users/drzax.json +++ b/users/drzax.json @@ -1 +1,6 @@ -{"copyright":"Simon Elvery","url":"http:\/\/elvery.net","email":"simon@elvery.net","format":"txt"} \ No newline at end of file +{ + "copyright": "Simon Elvery", + "url": "http://elvery.net", + "email": "simon@elvery.net", + "format": "txt" +} diff --git a/users/ds82.json b/users/ds82.json index 265b1975..abbe3144 100644 --- a/users/ds82.json +++ b/users/ds82.json @@ -1 +1,6 @@ -{"copyright":"Dennis Saenger","url":"http:\/\/dennis.io","email":"mit-license@mail.ds82.de","format":"txt"} \ No newline at end of file +{ + "copyright": "Dennis Saenger", + "url": "http://dennis.io", + "email": "mit-license@mail.ds82.de", + "format": "txt" +} diff --git a/users/dsc.json b/users/dsc.json index 0df94b16..a20fa0a0 100644 --- a/users/dsc.json +++ b/users/dsc.json @@ -1 +1,3 @@ -{"copyright":"David Alan Schoonover"} \ No newline at end of file +{ + "copyright": "David Alan Schoonover" +} diff --git a/users/dsernst.json b/users/dsernst.json index 35947dea..ed87a83b 100644 --- a/users/dsernst.json +++ b/users/dsernst.json @@ -1 +1,5 @@ -{"copyright":"David Ernst","url":"http:\/\/dsernst.com","email":"david@dsernst.com"} \ No newline at end of file +{ + "copyright": "David Ernst", + "url": "http://dsernst.com", + "email": "david@dsernst.com" +} diff --git a/users/dshaw.json b/users/dshaw.json index 5f88d5a8..fc82d309 100644 --- a/users/dshaw.json +++ b/users/dshaw.json @@ -1,4 +1,4 @@ { - "copyright": "Daniel D. Shaw", - "url": "http://dshaw.com" + "copyright": "Daniel D. Shaw", + "url": "http://dshaw.com" } diff --git a/users/ducky.json b/users/ducky.json index ea71182d..7176a61b 100644 --- a/users/ducky.json +++ b/users/ducky.json @@ -1,7 +1,7 @@ { - "copyright": "Ducky", - "url": "https://ducky.ws", - "email": "ducky.vexton@outlook.com", - "gravatar": true, - "theme": "default" + "copyright": "Ducky", + "url": "https://ducky.ws", + "email": "ducky.vexton@outlook.com", + "gravatar": true, + "theme": "default" } diff --git a/users/duncanmcdougall.json b/users/duncanmcdougall.json index b9b9a2db..02f6039a 100644 --- a/users/duncanmcdougall.json +++ b/users/duncanmcdougall.json @@ -1 +1,6 @@ -{"copyright":"Duncan McDougall, http:\/\/www.duncanmcdougall.co.uk","url":"http:\/\/www.duncanmcdougall.co.uk","format":"html","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Duncan McDougall, http://www.duncanmcdougall.co.uk", + "url": "http://www.duncanmcdougall.co.uk", + "format": "html", + "theme": "double-windsor" +} diff --git a/users/dusong.json b/users/dusong.json index b4fb452e..13aa54c0 100644 --- a/users/dusong.json +++ b/users/dusong.json @@ -1 +1,6 @@ -{"copyright":"Du Song","url":"http:\/\/rollingcode.org","email":"freewizard@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Du Song", + "url": "http://rollingcode.org", + "email": "freewizard@gmail.com", + "format": "txt" +} diff --git a/users/dva.json b/users/dva.json index c8f9b44e..cfa63431 100644 --- a/users/dva.json +++ b/users/dva.json @@ -1 +1,6 @@ -{"copyright":"Denis Andryushchenko","url":"http:\/\/2citizen.com","email":"denisva@gmail.com","format":"txt"} +{ + "copyright": "Denis Andryushchenko", + "url": "http://2citizen.com", + "email": "denisva@gmail.com", + "format": "txt" +} diff --git a/users/dvni.json b/users/dvni.json index bba5f1ca..8d7d6549 100644 --- a/users/dvni.json +++ b/users/dvni.json @@ -1 +1,5 @@ -{"copyright":"Daniel P\u00e9rez","format":"html","theme":"material-indigo"} \ No newline at end of file +{ + "copyright": "Daniel P\u00e9rez", + "format": "html", + "theme": "material-indigo" +} diff --git a/users/dvrein.json b/users/dvrein.json index 757dd391..483a640c 100644 --- a/users/dvrein.json +++ b/users/dvrein.json @@ -1,7 +1,7 @@ { - "copyright": "dvrein", - "url": "https://github.com/dvrein", - "gravatar": "false", - "format": "html", - "theme": "xtansia" + "copyright": "dvrein", + "url": "https://github.com/dvrein", + "gravatar": "false", + "format": "html", + "theme": "xtansia" } diff --git a/users/dwettstein.json b/users/dwettstein.json index a7f356da..59ff91e5 100644 --- a/users/dwettstein.json +++ b/users/dwettstein.json @@ -1,7 +1,7 @@ { - "copyright": "David Wettstein, http://wettste.in", - "url": "http://wettste.in", - "theme": "default", - "format": "txt", - "gravatar": false + "copyright": "David Wettstein, http://wettste.in", + "url": "http://wettste.in", + "theme": "default", + "format": "txt", + "gravatar": false } diff --git a/users/dwradcliffe.json b/users/dwradcliffe.json index 8620f35f..aec35f4d 100644 --- a/users/dwradcliffe.json +++ b/users/dwradcliffe.json @@ -1,4 +1,4 @@ { - "copyright": "David Radcliffe, http://dwradcliffe.com", - "url": "http://dwradcliffe.com" + "copyright": "David Radcliffe, http://dwradcliffe.com", + "url": "http://dwradcliffe.com" } diff --git a/users/dydx.json b/users/dydx.json index 777eca53..46635a23 100644 --- a/users/dydx.json +++ b/users/dydx.json @@ -1 +1,3 @@ -{"copyright":"Josh Sandlin"} \ No newline at end of file +{ + "copyright": "Josh Sandlin" +} diff --git a/users/dylanthomas.json b/users/dylanthomas.json index 62d9904d..1449305a 100644 --- a/users/dylanthomas.json +++ b/users/dylanthomas.json @@ -1,7 +1,7 @@ { - "copyright": "Dylan Thomas, https://github.com/dylan93", - "email": "dylan.thomas@vt.edu", - "url": "https://github.com/dylan93", - "format": "html", - "theme": "material-deep-purple" + "copyright": "Dylan Thomas, https://github.com/dylan93", + "email": "dylan.thomas@vt.edu", + "url": "https://github.com/dylan93", + "format": "html", + "theme": "material-deep-purple" } diff --git a/users/dym.json b/users/dym.json index c16d8b83..5595af2a 100644 --- a/users/dym.json +++ b/users/dym.json @@ -1,6 +1,7 @@ -{ "copyright": "DYM" -, "url": "http:\/\/dym.sh" -, "email": "re@dym.sh" -, "theme": "hipster-gray" -, "gravatar": false +{ + "copyright": "DYM", + "url": "http://dym.sh", + "email": "re@dym.sh", + "theme": "hipster-gray", + "gravatar": false } diff --git a/users/earaujoassis.json b/users/earaujoassis.json index 637183a6..9694d481 100644 --- a/users/earaujoassis.json +++ b/users/earaujoassis.json @@ -1 +1,5 @@ -{"copyright":"Ewerton Carlos Assis","url":"http:\/\/quatrolabs.com/p/carlos","email":"earaujoassis@gmail.com"} +{ + "copyright": "Ewerton Carlos Assis", + "url": "http://quatrolabs.com/p/carlos", + "email": "earaujoassis@gmail.com" +} diff --git a/users/ebith.json b/users/ebith.json index 7830787c..f279486c 100644 --- a/users/ebith.json +++ b/users/ebith.json @@ -1 +1,3 @@ -{"copyright":"ebith"} \ No newline at end of file +{ + "copyright": "ebith" +} diff --git a/users/echo.json b/users/echo.json index c19e590e..5dc01a2d 100644 --- a/users/echo.json +++ b/users/echo.json @@ -1,5 +1,5 @@ { - "copyright": "ECHO Inc, http://www.echonet.org/", - "url": "http://www.echonet.org/", - "theme": "material-green" + "copyright": "ECHO Inc, http://www.echonet.org/", + "url": "http://www.echonet.org/", + "theme": "material-green" } diff --git a/users/eddiemonge.json b/users/eddiemonge.json index b170e7cf..3223c7c4 100644 --- a/users/eddiemonge.json +++ b/users/eddiemonge.json @@ -1,4 +1,4 @@ { - "copyright": "Eddie Monge Jr., http://eddiemonge.com", - "url": "http://eddiemonge.com" + "copyright": "Eddie Monge Jr., http://eddiemonge.com", + "url": "http://eddiemonge.com" } diff --git a/users/eddywashere.json b/users/eddywashere.json index 72e5bdce..fa23d9bd 100644 --- a/users/eddywashere.json +++ b/users/eddywashere.json @@ -1 +1,6 @@ -{"copyright":"Eddy Hernandez","url":"http:\/\/eddywashere.com","email":"edward.d.hernandez@gmail.com","format":"txt"} +{ + "copyright": "Eddy Hernandez", + "url": "http://eddywashere.com", + "email": "edward.d.hernandez@gmail.com", + "format": "txt" +} diff --git a/users/ederribeiro.json b/users/ederribeiro.json index d8c4336f..1523eea3 100644 --- a/users/ederribeiro.json +++ b/users/ederribeiro.json @@ -1 +1,7 @@ -{"copyright":"Eder Ribeiro","url":"http:\/\/ederibeiro.com","email":"eder@ederibeiro.com","gravatar": true,"theme":"default-dark"} \ No newline at end of file +{ + "copyright": "Eder Ribeiro", + "url": "http://ederibeiro.com", + "email": "eder@ederibeiro.com", + "gravatar": true, + "theme": "default-dark" +} diff --git a/users/ederssouza.json b/users/ederssouza.json index aa01ee5e..6e0cfc91 100644 --- a/users/ederssouza.json +++ b/users/ederssouza.json @@ -1,7 +1,7 @@ { - "copyright": "Eder Sampaio", - "url": "https://ederssouza.github.io", - "email": "eder@edersampaio.com.br", - "gravatar": false, - "theme": "default" + "copyright": "Eder Sampaio", + "url": "https://ederssouza.github.io", + "email": "eder@edersampaio.com.br", + "gravatar": false, + "theme": "default" } diff --git a/users/edferras.json b/users/edferras.json index b5bc3a59..6fe6bdd2 100644 --- a/users/edferras.json +++ b/users/edferras.json @@ -1,5 +1,5 @@ { "copyright": "Eduardo Ferras", - "url": "https:\/\/github.com\/edferras", + "url": "https://github.com/edferras", "email": "edferras@gmail.com" } diff --git a/users/editorconfig.json b/users/editorconfig.json index 210fe6d6..ebfe6f71 100644 --- a/users/editorconfig.json +++ b/users/editorconfig.json @@ -1 +1,5 @@ -{"copyright":"EditorConfig Team","url":"http:\/\/editorconfig.org","theme":"default"} \ No newline at end of file +{ + "copyright": "EditorConfig Team", + "url": "http://editorconfig.org", + "theme": "default" +} diff --git a/users/edmondmajoriii.json b/users/edmondmajoriii.json index b310f26d..6cdaf2c1 100644 --- a/users/edmondmajoriii.json +++ b/users/edmondmajoriii.json @@ -1,7 +1,7 @@ { - "copyright": "Edmond Major III, http://edmondmajor.com", - "url": "http://edmondmajor.com", - "format": "html", - "email": "spmediallc@gmail.com", - "theme": "default" + "copyright": "Edmond Major III, http://edmondmajor.com", + "url": "http://edmondmajor.com", + "format": "html", + "email": "spmediallc@gmail.com", + "theme": "default" } diff --git a/users/edsurge.json b/users/edsurge.json index 1b93049d..a5736c79 100644 --- a/users/edsurge.json +++ b/users/edsurge.json @@ -1 +1,3 @@ -{"copyright":"EdSurge, Inc."} +{ + "copyright": "EdSurge, Inc." +} diff --git a/users/eduan.json b/users/eduan.json index 72b87405..eff0dc3f 100644 --- a/users/eduan.json +++ b/users/eduan.json @@ -1 +1,7 @@ -{"copyright":"Greduan","url":"http:\/\/greduan.com","email":"eduan@websharks-inc.com","format":"html","theme":"default"} +{ + "copyright": "Greduan", + "url": "http://greduan.com", + "email": "eduan@websharks-inc.com", + "format": "html", + "theme": "default" +} diff --git a/users/eduardorabelo.json b/users/eduardorabelo.json index 231c704e..8f0aadb0 100644 --- a/users/eduardorabelo.json +++ b/users/eduardorabelo.json @@ -1,7 +1,7 @@ { - "copyright": "Eduardo Rabelo", - "url": "http://eduardorabelo.com.br", - "email": "oieduardorabelo@gmail.com", - "gravatar": true, - "theme": "default" + "copyright": "Eduardo Rabelo", + "url": "http://eduardorabelo.com.br", + "email": "oieduardorabelo@gmail.com", + "gravatar": true, + "theme": "default" } diff --git a/users/eduardostuart.json b/users/eduardostuart.json index c55d4c7c..1607d04a 100644 --- a/users/eduardostuart.json +++ b/users/eduardostuart.json @@ -1 +1,7 @@ -{ "copyright": "Eduardo Stuart", "url": "https://s.tuart.me", "email": "hi@s.tuart.me", "format": "html", "theme": "afterdark" } +{ + "copyright": "Eduardo Stuart", + "url": "https://s.tuart.me", + "email": "hi@s.tuart.me", + "format": "html", + "theme": "afterdark" +} diff --git a/users/eduncan911.json b/users/eduncan911.json index 6fcda13a..41cfbb00 100644 --- a/users/eduncan911.json +++ b/users/eduncan911.json @@ -1,7 +1,7 @@ { - "copyright": "Eric Duncan, http://eduncan911.com", - "url": "http://eduncan911.com", - "email": "copyright@eduncan911.com", - "gravatar": true, - "theme": "double-windsor" + "copyright": "Eric Duncan, http://eduncan911.com", + "url": "http://eduncan911.com", + "email": "copyright@eduncan911.com", + "gravatar": true, + "theme": "double-windsor" } diff --git a/users/edvinas.json b/users/edvinas.json index 7e355447..55ec6839 100644 --- a/users/edvinas.json +++ b/users/edvinas.json @@ -1 +1,3 @@ -{"copyright":"Edvinas Jurevicius"} \ No newline at end of file +{ + "copyright": "Edvinas Jurevicius" +} diff --git a/users/eek.json b/users/eek.json index cfae9fe6..e8edd45d 100644 --- a/users/eek.json +++ b/users/eek.json @@ -1 +1,6 @@ -{"copyright":"Radu-Sebastian Amarie","url":"https:\/\/eek.ro","email":"hello@eek.ro","format":"txt"} \ No newline at end of file +{ + "copyright": "Radu-Sebastian Amarie", + "url": "https://eek.ro", + "email": "hello@eek.ro", + "format": "txt" +} diff --git a/users/eeleater.json b/users/eeleater.json index 58f0bb4c..5edaf4b6 100644 --- a/users/eeleater.json +++ b/users/eeleater.json @@ -1 +1,3 @@ -{"copyright":"Nikolas Weger"} \ No newline at end of file +{ + "copyright": "Nikolas Weger" +} diff --git a/users/ef-labs.json b/users/ef-labs.json index 85e543f8..fff09576 100644 --- a/users/ef-labs.json +++ b/users/ef-labs.json @@ -1,6 +1,6 @@ { - "copyright": "EF Learning Labs", - "url": "https://www.ef.com", - "email": "labs.oss@EF.com", - "format": "html" -} \ No newline at end of file + "copyright": "EF Learning Labs", + "url": "https://www.ef.com", + "email": "labs.oss@EF.com", + "format": "html" +} diff --git a/users/efrainc.json b/users/efrainc.json index 28c6408f..1761b27b 100644 --- a/users/efrainc.json +++ b/users/efrainc.json @@ -1,7 +1,7 @@ { - "copyright": "Efrain Camacho", - "url": "http://github.com/efrainc", - "email": "efrainc88@gmail.com", - "gravatar": false, - "theme": "solarized" + "copyright": "Efrain Camacho", + "url": "http://github.com/efrainc", + "email": "efrainc88@gmail.com", + "gravatar": false, + "theme": "solarized" } diff --git a/users/efrea2004k.json b/users/efrea2004k.json index 91ea2281..717a160a 100644 --- a/users/efrea2004k.json +++ b/users/efrea2004k.json @@ -1 +1,8 @@ -{"copyright":"Efreak2004","url":"http:\/\/www.efreakbnc.net","email":"efreak@users.noreply.github.com","format":"html","gravatar":true,"theme":"blackwood"} \ No newline at end of file +{ + "copyright": "Efreak2004", + "url": "http://www.efreakbnc.net", + "email": "efreak@users.noreply.github.com", + "format": "html", + "gravatar": true, + "theme": "blackwood" +} diff --git a/users/efreak.json b/users/efreak.json index e45b3143..6d97331b 100644 --- a/users/efreak.json +++ b/users/efreak.json @@ -1 +1,8 @@ -{"copyright":"Efreak","url":"http:\/\/www.efreakbnc.net","email":"efreak@users.noreply.github.com","format":"html","gravatar":true,"theme":"blackwood"} \ No newline at end of file +{ + "copyright": "Efreak", + "url": "http://www.efreakbnc.net", + "email": "efreak@users.noreply.github.com", + "format": "html", + "gravatar": true, + "theme": "blackwood" +} diff --git a/users/efreak2004.json b/users/efreak2004.json index 91ea2281..717a160a 100644 --- a/users/efreak2004.json +++ b/users/efreak2004.json @@ -1 +1,8 @@ -{"copyright":"Efreak2004","url":"http:\/\/www.efreakbnc.net","email":"efreak@users.noreply.github.com","format":"html","gravatar":true,"theme":"blackwood"} \ No newline at end of file +{ + "copyright": "Efreak2004", + "url": "http://www.efreakbnc.net", + "email": "efreak@users.noreply.github.com", + "format": "html", + "gravatar": true, + "theme": "blackwood" +} diff --git a/users/efries.json b/users/efries.json index 478a4fe7..f6c79d07 100644 --- a/users/efries.json +++ b/users/efries.json @@ -1 +1,3 @@ -{"copyright":"Ernesto Fries Urioste"} \ No newline at end of file +{ + "copyright": "Ernesto Fries Urioste" +} diff --git a/users/egeriis.json b/users/egeriis.json index 70000f2d..fbee5a3e 100644 --- a/users/egeriis.json +++ b/users/egeriis.json @@ -1 +1,6 @@ -{"copyright":"Ronni Egeriis Persson","url":"http:\/\/egeriis.me","email":"ronni@egeriis.me","gravatar":"true"} \ No newline at end of file +{ + "copyright": "Ronni Egeriis Persson", + "url": "http://egeriis.me", + "email": "ronni@egeriis.me", + "gravatar": "true" +} diff --git a/users/eggforsale.json b/users/eggforsale.json index 56aeeafd..a4b3f390 100644 --- a/users/eggforsale.json +++ b/users/eggforsale.json @@ -1 +1,6 @@ -{"copyright":"EggForSale Platform","url":"http:\/\/www.eggforsale.com","email":"support@eggforsale.com","format":"html"} +{ + "copyright": "EggForSale Platform", + "url": "http://www.eggforsale.com", + "email": "support@eggforsale.com", + "format": "html" +} diff --git a/users/egoist.json b/users/egoist.json index 85a21fb9..92ed667e 100644 --- a/users/egoist.json +++ b/users/egoist.json @@ -1 +1,8 @@ -{"gravatar":true,"copyright":"EGOIST","theme":"material-pink","url":"https:\/\/egoistian.com","email":"0x142857@gmail.com","format":"txt"} \ No newline at end of file +{ + "gravatar": true, + "copyright": "EGOIST", + "theme": "material-pink", + "url": "https://egoistian.com", + "email": "0x142857@gmail.com", + "format": "txt" +} diff --git a/users/ehealthafrica.json b/users/ehealthafrica.json index 87593522..f5f83502 100644 --- a/users/ehealthafrica.json +++ b/users/ehealthafrica.json @@ -1 +1,5 @@ -{"copyright":"eHealth Africa","url":"http:\/\/ehealthafrica.org","email":"oss@ehealthafrica.org"} \ No newline at end of file +{ + "copyright": "eHealth Africa", + "url": "http://ehealthafrica.org", + "email": "oss@ehealthafrica.org" +} diff --git a/users/ehecatl.json b/users/ehecatl.json index 60db0eec..a70b279e 100644 --- a/users/ehecatl.json +++ b/users/ehecatl.json @@ -1 +1,3 @@ -{"copyright":"Servicios de Software Ehecatl SA de CV"} \ No newline at end of file +{ + "copyright": "Servicios de Software Ehecatl SA de CV" +} diff --git a/users/ehsan.json b/users/ehsan.json index 8b128dce..32370c82 100644 --- a/users/ehsan.json +++ b/users/ehsan.json @@ -1,7 +1,7 @@ { - "copyright": "Ehsan Aghaei, http://ehsanaghaei.ir", - "url": "http://ehsanaghaei.ir", - "email": "ehsan.aghaeii@gmail.com", - "format": "txt", - "theme": "opensans" + "copyright": "Ehsan Aghaei, http://ehsanaghaei.ir", + "url": "http://ehsanaghaei.ir", + "email": "ehsan.aghaeii@gmail.com", + "format": "txt", + "theme": "opensans" } diff --git a/users/eib.json b/users/eib.json index 3c1cf420..6bfa8898 100644 --- a/users/eib.json +++ b/users/eib.json @@ -1 +1,4 @@ -{"copyright":"Ethan Blackwelder, http:\/\/eblackwelder.com","url":"http:\/\/eblackwelder.com"} \ No newline at end of file +{ + "copyright": "Ethan Blackwelder, http://eblackwelder.com", + "url": "http://eblackwelder.com" +} diff --git a/users/einaru.json b/users/einaru.json index 0a264296..0922d99e 100644 --- a/users/einaru.json +++ b/users/einaru.json @@ -1 +1,3 @@ -{"copyright":"Einar Uvsl\u00f8kk"} \ No newline at end of file +{ + "copyright": "Einar Uvsl\u00f8kk" +} diff --git a/users/ekamil.json b/users/ekamil.json index 93060dc5..9023b6c3 100644 --- a/users/ekamil.json +++ b/users/ekamil.json @@ -1 +1,3 @@ -{"copyright":"Kamil Essekkat"} \ No newline at end of file +{ + "copyright": "Kamil Essekkat" +} diff --git a/users/ekin.json b/users/ekin.json index b1ebf098..896559d9 100644 --- a/users/ekin.json +++ b/users/ekin.json @@ -1 +1,3 @@ -{"copyright":"Ekin Koc"} \ No newline at end of file +{ + "copyright": "Ekin Koc" +} diff --git a/users/elegwance.json b/users/elegwance.json index 8dbcba5c..b92ba85e 100644 --- a/users/elegwance.json +++ b/users/elegwance.json @@ -1 +1,3 @@ -{"copyright":"Jae-Kwang Lee, http:\/\/elegwance.com"} \ No newline at end of file +{ + "copyright": "Jae-Kwang Lee, http://elegwance.com" +} diff --git a/users/elektronaut.json b/users/elektronaut.json index 0fe6f159..3fdeb8aa 100644 --- a/users/elektronaut.json +++ b/users/elektronaut.json @@ -1 +1,4 @@ -{"copyright":"Inge J\u00f8rgensen","url":"http:\/\/elektronaut.no"} \ No newline at end of file +{ + "copyright": "Inge J\u00f8rgensen", + "url": "http://elektronaut.no" +} diff --git a/users/eleven.json b/users/eleven.json index 0b174739..80815e93 100644 --- a/users/eleven.json +++ b/users/eleven.json @@ -1,5 +1,5 @@ { - "copyright": "Eleven Inc.", - "url": "https://github.com/eleven", - "theme": "double-windsor" -} \ No newline at end of file + "copyright": "Eleven Inc.", + "url": "https://github.com/eleven", + "theme": "double-windsor" +} diff --git a/users/elgook.json b/users/elgook.json index 4ff56993..02a1dfdf 100644 --- a/users/elgook.json +++ b/users/elgook.json @@ -1 +1,3 @@ -{"copyright":"elgook"} \ No newline at end of file +{ + "copyright": "elgook" +} diff --git a/users/elifiner.json b/users/elifiner.json index 48ee31ce..e9f191c8 100644 --- a/users/elifiner.json +++ b/users/elifiner.json @@ -1 +1,6 @@ -{"copyright":"Eli Finer","url":"http:\/\/elifiner.com","email":"eli.finer@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Eli Finer", + "url": "http://elifiner.com", + "email": "eli.finer@gmail.com", + "format": "txt" +} diff --git a/users/elim.json b/users/elim.json index cff0dfaf..17274a99 100644 --- a/users/elim.json +++ b/users/elim.json @@ -1 +1,4 @@ -{"copyright":"Takeru Naito","url":"https:\/\/github.com\/elim"} \ No newline at end of file +{ + "copyright": "Takeru Naito", + "url": "https://github.com/elim" +} diff --git a/users/elisaado.json b/users/elisaado.json index 5c8c280a..4999b877 100644 --- a/users/elisaado.json +++ b/users/elisaado.json @@ -1,6 +1,6 @@ { - "copyright": "Eli Saado", - "url": "https://elisaado.com", - "email": "eli5saado@gmail.com", - "theme": "material-teal" + "copyright": "Eli Saado", + "url": "https://elisaado.com", + "email": "eli5saado@gmail.com", + "theme": "material-teal" } diff --git a/users/ellekasai.json b/users/ellekasai.json index 31fb8e7d..4caddf11 100644 --- a/users/ellekasai.json +++ b/users/ellekasai.json @@ -1 +1,3 @@ -{"copyright":"Elle Kasai"} \ No newline at end of file +{ + "copyright": "Elle Kasai" +} diff --git a/users/elliotec.json b/users/elliotec.json index c36b747d..447a868f 100644 --- a/users/elliotec.json +++ b/users/elliotec.json @@ -1 +1,3 @@ -{"copyright":"Michael Elliott"} \ No newline at end of file +{ + "copyright": "Michael Elliott" +} diff --git a/users/ellis.json b/users/ellis.json index f41f4e15..f88128bc 100644 --- a/users/ellis.json +++ b/users/ellis.json @@ -1,3 +1,3 @@ { - "copyright": "Ellis Sharp" + "copyright": "Ellis Sharp" } diff --git a/users/elmer.json b/users/elmer.json index 5a36889c..381e7791 100644 --- a/users/elmer.json +++ b/users/elmer.json @@ -1 +1,7 @@ -{"url":"http:\/\/variable-scope.com","theme":"friendly","gravatar":true,"email":"elmer.delooff@gmail.com","copyright":"Elmer de Looff"} \ No newline at end of file +{ + "url": "http://variable-scope.com", + "theme": "friendly", + "gravatar": true, + "email": "elmer.delooff@gmail.com", + "copyright": "Elmer de Looff" +} diff --git a/users/elsknerd.json b/users/elsknerd.json index ac99ba2c..fde52679 100644 --- a/users/elsknerd.json +++ b/users/elsknerd.json @@ -1,6 +1,6 @@ { - "copyright": "Dennis Heinrich, https://elsknerd.de", - "url": "https://elsknerd.de", - "theme": "dusk", - "gravatar": true + "copyright": "Dennis Heinrich, https://elsknerd.de", + "url": "https://elsknerd.de", + "theme": "dusk", + "gravatar": true } diff --git a/users/elsmore.json b/users/elsmore.json index 1d842c98..bdc33365 100644 --- a/users/elsmore.json +++ b/users/elsmore.json @@ -1 +1,6 @@ -{"copyright":"Mike Elsmore, http:\/\/elsmore.me","url":"http:\/\/elsmore.me","theme":"hipster-grey","email":"mike@elsmore.me"} \ No newline at end of file +{ + "copyright": "Mike Elsmore, http://elsmore.me", + "url": "http://elsmore.me", + "theme": "hipster-grey", + "email": "mike@elsmore.me" +} diff --git a/users/emabrey.json b/users/emabrey.json index a5eedfb7..bcb9b112 100644 --- a/users/emabrey.json +++ b/users/emabrey.json @@ -1 +1,5 @@ -{"copyright":"Emily Mabrey","email":"emilymabrey93@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Emily Mabrey", + "email": "emilymabrey93@gmail.com", + "format": "txt" +} diff --git a/users/emanuelpessoa.json b/users/emanuelpessoa.json index 885d8679..bf46b2d2 100644 --- a/users/emanuelpessoa.json +++ b/users/emanuelpessoa.json @@ -1 +1,5 @@ -{"copyright":"Emanuel Pessoa","url":"http:\/\/emanuelpessoa.com.br","email":"emanuelpessoaa@gmail.com"} +{ + "copyright": "Emanuel Pessoa", + "url": "http://emanuelpessoa.com.br", + "email": "emanuelpessoaa@gmail.com" +} diff --git a/users/emberads.json b/users/emberads.json index c2215cb4..9d691ab9 100644 --- a/users/emberads.json +++ b/users/emberads.json @@ -1 +1,4 @@ -{"copyright":"emberads ltd","url":"http:\/\/emberads.com\/"} \ No newline at end of file +{ + "copyright": "emberads ltd", + "url": "http://emberads.com/" +} diff --git a/users/emd.json b/users/emd.json index 715aa357..44443cb1 100644 --- a/users/emd.json +++ b/users/emd.json @@ -1,5 +1,5 @@ { - "copyright": "Erin Dalzell, http://thedalzells.org", - "url": "http://thedalzells.org", - "email": "erin@thedalzells.org" + "copyright": "Erin Dalzell, http://thedalzells.org", + "url": "http://thedalzells.org", + "email": "erin@thedalzells.org" } diff --git a/users/emir.json b/users/emir.json index 68a4d00e..76655266 100644 --- a/users/emir.json +++ b/users/emir.json @@ -1 +1,7 @@ -{"copyright":"Emir Kar\u015f\u0131yakal\u0131, http:\/\/emirkarsiyakali.com","url":"http:\/\/emirkarsiyakali.com","email":"emirkarsiyakali@gmail.com","gravatar":true,"theme":"default"} \ No newline at end of file +{ + "copyright": "Emir Kar\u015f\u0131yakal\u0131, http://emirkarsiyakali.com", + "url": "http://emirkarsiyakali.com", + "email": "emirkarsiyakali@gmail.com", + "gravatar": true, + "theme": "default" +} diff --git a/users/emiw.json b/users/emiw.json index cc46aa42..a39b588d 100644 --- a/users/emiw.json +++ b/users/emiw.json @@ -1 +1,6 @@ -{"copyright":"EMIW, LLC","url":"http:\/\/emiw.xyz","email":"emiw@emiw.xyz","gravatar":true} \ No newline at end of file +{ + "copyright": "EMIW, LLC", + "url": "http://emiw.xyz", + "email": "emiw@emiw.xyz", + "gravatar": true +} diff --git a/users/emma.json b/users/emma.json index 1c6ec991..a72fdb0c 100644 --- a/users/emma.json +++ b/users/emma.json @@ -1 +1,3 @@ -{"copyright":"Emma Hardman"} \ No newline at end of file +{ + "copyright": "Emma Hardman" +} diff --git a/users/emmanuel.json b/users/emmanuel.json index f96d7fc4..45033ab6 100644 --- a/users/emmanuel.json +++ b/users/emmanuel.json @@ -1 +1,3 @@ -{"copyright":"Emmanuel Gomez"} \ No newline at end of file +{ + "copyright": "Emmanuel Gomez" +} diff --git a/users/endel-test.json b/users/endel-test.json index fcae6838..62acf996 100644 --- a/users/endel-test.json +++ b/users/endel-test.json @@ -1 +1,7 @@ -{"copyright":"Endel Dreyer","url":"http:\/\/endel.me","email":"endel.dreyer@gmail.com","theme":"flesch","gravatar":true} \ No newline at end of file +{ + "copyright": "Endel Dreyer", + "url": "http://endel.me", + "email": "endel.dreyer@gmail.com", + "theme": "flesch", + "gravatar": true +} diff --git a/users/endel.json b/users/endel.json index 1f6aee78..1a2dae78 100644 --- a/users/endel.json +++ b/users/endel.json @@ -1 +1,6 @@ -{"copyright":"Endel Dreyer","url":"http:\/\/endel.me","email":"endel.dreyer@gmail.com","theme":"flesch"} \ No newline at end of file +{ + "copyright": "Endel Dreyer", + "url": "http://endel.me", + "email": "endel.dreyer@gmail.com", + "theme": "flesch" +} diff --git a/users/ender.json b/users/ender.json index 67ee8759..23f14c70 100644 --- a/users/ender.json +++ b/users/ender.json @@ -1,6 +1,6 @@ { - "copyright": "Andrew Bowers, http://agamecoder.com", - "url": "http://agamecoder.com", - "email": "andrew.bowers@agamecoder.com", - "theme": "afterdark" -} \ No newline at end of file + "copyright": "Andrew Bowers, http://agamecoder.com", + "url": "http://agamecoder.com", + "email": "andrew.bowers@agamecoder.com", + "theme": "afterdark" +} diff --git a/users/endorama.json b/users/endorama.json index 87dabd31..dff1ea55 100644 --- a/users/endorama.json +++ b/users/endorama.json @@ -1,5 +1,5 @@ { - "copyright":"Edoardo Tenani", - "url": "http://about.me/edoardo.tenani", - "gravatar": true + "copyright": "Edoardo Tenani", + "url": "http://about.me/edoardo.tenani", + "gravatar": true } diff --git a/users/enfos.json b/users/enfos.json index d7b247c0..5c0135d5 100644 --- a/users/enfos.json +++ b/users/enfos.json @@ -1 +1,8 @@ -{"copyright":"ENFOS, Inc.","url":"http:\/\/enfos.com","format":"html","email":"shadi@enfos.com","gravatar":true,"theme":"magic-mint"} \ No newline at end of file +{ + "copyright": "ENFOS, Inc.", + "url": "http://enfos.com", + "format": "html", + "email": "shadi@enfos.com", + "gravatar": true, + "theme": "magic-mint" +} diff --git a/users/englishtown.json b/users/englishtown.json index e366d54e..492a80e2 100644 --- a/users/englishtown.json +++ b/users/englishtown.json @@ -1 +1,6 @@ -{"copyright":"Englishtown","url":"http:\/\/englishtown.com","email":"opensource@englishtown.com","format":"html"} \ No newline at end of file +{ + "copyright": "Englishtown", + "url": "http://englishtown.com", + "email": "opensource@englishtown.com", + "format": "html" +} diff --git a/users/enigmaticflare.json b/users/enigmaticflare.json index fa396f27..8afe7c42 100644 --- a/users/enigmaticflare.json +++ b/users/enigmaticflare.json @@ -1 +1,3 @@ -{"copyright":"Enigmatic Flare"} \ No newline at end of file +{ + "copyright": "Enigmatic Flare" +} diff --git a/users/enov.json b/users/enov.json index 6b341892..2c0481c9 100644 --- a/users/enov.json +++ b/users/enov.json @@ -1 +1,3 @@ -{"copyright":"Samuel Demirdjian"} \ No newline at end of file +{ + "copyright": "Samuel Demirdjian" +} diff --git a/users/entist.json b/users/entist.json index 5313a463..dac4f968 100644 --- a/users/entist.json +++ b/users/entist.json @@ -1 +1,3 @@ -{"copyright":"Aiden J Lee, http:\/\/entist.net\/"} \ No newline at end of file +{ + "copyright": "Aiden J Lee, http://entist.net/" +} diff --git a/users/eoc-lover.json b/users/eoc-lover.json index e318d0e7..1de1cba3 100644 --- a/users/eoc-lover.json +++ b/users/eoc-lover.json @@ -1 +1,3 @@ -{"copyright":"EOW Lover"} \ No newline at end of file +{ + "copyright": "EOW Lover" +} diff --git a/users/eoin.json b/users/eoin.json index 01ed027f..870ca556 100644 --- a/users/eoin.json +++ b/users/eoin.json @@ -1,6 +1,6 @@ { - "copyright": "Eoin O'Brien, https://eoinobrien.me", - "url": "https://eoinobrien.me", - "email": "eoinobrien910@gmail.com", - "gravatar": true + "copyright": "Eoin O'Brien, https://eoinobrien.me", + "url": "https://eoinobrien.me", + "email": "eoinobrien910@gmail.com", + "gravatar": true } diff --git a/users/erbesharat.json b/users/erbesharat.json index 7b668628..5085f330 100644 --- a/users/erbesharat.json +++ b/users/erbesharat.json @@ -1 +1,8 @@ -{"copyright":"Erfan Besharat","url":"http:\/\/erfanbs.net","email":"erbesharat@gmail.com","format":"txt","gravatar":true,"theme":"willpower"} \ No newline at end of file +{ + "copyright": "Erfan Besharat", + "url": "http://erfanbs.net", + "email": "erbesharat@gmail.com", + "format": "txt", + "gravatar": true, + "theme": "willpower" +} diff --git a/users/erbridge.json b/users/erbridge.json index be2db7cb..a33ce89d 100644 --- a/users/erbridge.json +++ b/users/erbridge.json @@ -1 +1,3 @@ -{"copyright":"Felix Laurie von Massenbach"} \ No newline at end of file +{ + "copyright": "Felix Laurie von Massenbach" +} diff --git a/users/ere.json b/users/ere.json index 38c6a0b9..0d30bf0c 100644 --- a/users/ere.json +++ b/users/ere.json @@ -1 +1,6 @@ -{"copyright":"csjcndkscc","url":"http:\/\/rarp.com","email":"me@mysite.com","format":"txt"} \ No newline at end of file +{ + "copyright": "csjcndkscc", + "url": "http://rarp.com", + "email": "me@mysite.com", + "format": "txt" +} diff --git a/users/erfan.json b/users/erfan.json index 1e09d179..18adf512 100644 --- a/users/erfan.json +++ b/users/erfan.json @@ -1 +1,8 @@ -{"copyright":"Erfan Besharat","url":"http:\/\/erfanbs.net","email":"erbesharat@gmail.com","format":"html","gravatar":true,"theme":"willpower"} \ No newline at end of file +{ + "copyright": "Erfan Besharat", + "url": "http://erfanbs.net", + "email": "erbesharat@gmail.com", + "format": "html", + "gravatar": true, + "theme": "willpower" +} diff --git a/users/ericcristhiano.json b/users/ericcristhiano.json index a7e46545..50eecf61 100644 --- a/users/ericcristhiano.json +++ b/users/ericcristhiano.json @@ -1 +1,4 @@ -{"copyright":"Eric Cristhiano","email":"ericcristhiano@gmail.com"} +{ + "copyright": "Eric Cristhiano", + "email": "ericcristhiano@gmail.com" +} diff --git a/users/ericdouglas.json b/users/ericdouglas.json index 7b2214ca..9ade5e47 100644 --- a/users/ericdouglas.json +++ b/users/ericdouglas.json @@ -1 +1,5 @@ -{"copyright":"Eric Douglas","url":"https:\/\/github.com\/ericdouglas","email":"eric.douglas.mail@gmail.com"} \ No newline at end of file +{ + "copyright": "Eric Douglas", + "url": "https://github.com/ericdouglas", + "email": "eric.douglas.mail@gmail.com" +} diff --git a/users/eriklindebratt.json b/users/eriklindebratt.json index 437a321f..882a5882 100644 --- a/users/eriklindebratt.json +++ b/users/eriklindebratt.json @@ -1 +1,5 @@ -{"copyright":"Erik Lindebratt, https:\/\/twitter.com\/eriklindebratt","email":"erik.lindebratt@gmail.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Erik Lindebratt, https://twitter.com/eriklindebratt", + "email": "erik.lindebratt@gmail.com", + "gravatar": true +} diff --git a/users/erikvorhes.json b/users/erikvorhes.json index 8a697609..dc34a3a6 100644 --- a/users/erikvorhes.json +++ b/users/erikvorhes.json @@ -1,6 +1,6 @@ { - "copyright": "Erik Vorhes", - "url": "http:\/\/erikanderica.org\/erik", - "email": "erik@erikanderica.org", - "format": "txt" + "copyright": "Erik Vorhes", + "url": "http://erikanderica.org/erik", + "email": "erik@erikanderica.org", + "format": "txt" } diff --git a/users/erkobridee.json b/users/erkobridee.json index 71504c10..c659c54d 100644 --- a/users/erkobridee.json +++ b/users/erkobridee.json @@ -1 +1,5 @@ -{"copyright":"Erko Bridee de Almeida Cabrera, http:\/\/erkobridee.com","url":"http:\/\/erkobridee.com","email":"erko.bridee@gmail.com"} \ No newline at end of file +{ + "copyright": "Erko Bridee de Almeida Cabrera, http://erkobridee.com", + "url": "http://erkobridee.com", + "email": "erko.bridee@gmail.com" +} diff --git a/users/errordeveloper.json b/users/errordeveloper.json index d3878b3d..873fe0c8 100644 --- a/users/errordeveloper.json +++ b/users/errordeveloper.json @@ -1 +1,6 @@ -{"copyright":"Ilya Dmitrichenko","url":"https:\/\/git.io\/ilya.dmitrichenko","email":"errordeveloper@gmail.com","theme":"flesch"} \ No newline at end of file +{ + "copyright": "Ilya Dmitrichenko", + "url": "https://git.io/ilya.dmitrichenko", + "email": "errordeveloper@gmail.com", + "theme": "flesch" +} diff --git a/users/estupendo.json b/users/estupendo.json index 97c19e15..522abced 100644 --- a/users/estupendo.json +++ b/users/estupendo.json @@ -1 +1,6 @@ -{"copyright":"Jonas Orrico","url":"http:\/\/estupendo.net","email":"jonas@estupendo.net","format":"txt"} \ No newline at end of file +{ + "copyright": "Jonas Orrico", + "url": "http://estupendo.net", + "email": "jonas@estupendo.net", + "format": "txt" +} diff --git a/users/ether.json b/users/ether.json index ce521954..89249b22 100644 --- a/users/ether.json +++ b/users/ether.json @@ -1 +1,5 @@ -{"copyright":"Ether Creative","url":"http:\/\/ethercreative.co.uk","email":"hello@ethercreative.co.uk"} \ No newline at end of file +{ + "copyright": "Ether Creative", + "url": "http://ethercreative.co.uk", + "email": "hello@ethercreative.co.uk" +} diff --git a/users/ethercycle.json b/users/ethercycle.json index eba93add..7a721114 100644 --- a/users/ethercycle.json +++ b/users/ethercycle.json @@ -1 +1,3 @@ -{"copyright":"Ethercycle"} \ No newline at end of file +{ + "copyright": "Ethercycle" +} diff --git a/users/evan.json b/users/evan.json index 0c228770..680d77fd 100644 --- a/users/evan.json +++ b/users/evan.json @@ -1 +1,3 @@ -{"copyright":"Thomas Evan Lecklider"} \ No newline at end of file +{ + "copyright": "Thomas Evan Lecklider" +} diff --git a/users/evansolomon.json b/users/evansolomon.json index c573e6ea..887a137e 100644 --- a/users/evansolomon.json +++ b/users/evansolomon.json @@ -1 +1,3 @@ -{"copyright":"Evan Solomon"} \ No newline at end of file +{ + "copyright": "Evan Solomon" +} diff --git a/users/evenchange4.json b/users/evenchange4.json index b7cd2c25..dac19dc7 100644 --- a/users/evenchange4.json +++ b/users/evenchange4.json @@ -1 +1,7 @@ -{"copyright":"Michael Hsu, https:\/\/michaelhsu.tw","url":"https:\/\/michaelhsu.tw","email":"evenchange4@gmail.com","format":"txt","theme":"plaintext"} +{ + "copyright": "Michael Hsu, https://michaelhsu.tw", + "url": "https://michaelhsu.tw", + "email": "evenchange4@gmail.com", + "format": "txt", + "theme": "plaintext" +} diff --git a/users/evenellie.json b/users/evenellie.json index 6ad4625f..7167b65e 100644 --- a/users/evenellie.json +++ b/users/evenellie.json @@ -1 +1,5 @@ -{"copyright":"Ellen Musick","email":"ellen.musick@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Ellen Musick", + "email": "ellen.musick@gmail.com", + "format": "txt" +} diff --git a/users/evertton.json b/users/evertton.json index 52cb19ea..a8208e3e 100644 --- a/users/evertton.json +++ b/users/evertton.json @@ -1,7 +1,7 @@ { - "copyright": "Evertton de Lima", - "email": "e.everttonlima@gmail.com", - "format": "html", - "gravatar": true, - "theme": "friendly" + "copyright": "Evertton de Lima", + "email": "e.everttonlima@gmail.com", + "format": "html", + "gravatar": true, + "theme": "friendly" } diff --git a/users/ew.json b/users/ew.json index a13df6da..e4704e24 100644 --- a/users/ew.json +++ b/users/ew.json @@ -1 +1,5 @@ -{"copyright":"Electric Wizardry, LLC","url":"http:\/\/electric-wizardry.com","theme":"silver-style"} \ No newline at end of file +{ + "copyright": "Electric Wizardry, LLC", + "url": "http://electric-wizardry.com", + "theme": "silver-style" +} diff --git a/users/ewafford.json b/users/ewafford.json index 9e899d68..f5ae2d8e 100644 --- a/users/ewafford.json +++ b/users/ewafford.json @@ -1 +1,3 @@ -{"copyright":"Eric Wafford"} \ No newline at end of file +{ + "copyright": "Eric Wafford" +} diff --git a/users/ewerton-araujo.json b/users/ewerton-araujo.json index 3ab720a2..74d0d7d6 100644 --- a/users/ewerton-araujo.json +++ b/users/ewerton-araujo.json @@ -1 +1,5 @@ -{"copyright":"Ewerton Assis","url":"http:\/\/ewerton-araujo.com","email":"hey@ewerton-araujo.com"} \ No newline at end of file +{ + "copyright": "Ewerton Assis", + "url": "http://ewerton-araujo.com", + "email": "hey@ewerton-araujo.com" +} diff --git a/users/expbytes.json b/users/expbytes.json index d8080be4..5ecf2e8c 100644 --- a/users/expbytes.json +++ b/users/expbytes.json @@ -1 +1,3 @@ -{"copyright":"ExpBytes Software"} \ No newline at end of file +{ + "copyright": "ExpBytes Software" +} diff --git a/users/eyecatchup.json b/users/eyecatchup.json index 23b1eb43..40c9d4d3 100644 --- a/users/eyecatchup.json +++ b/users/eyecatchup.json @@ -1 +1,6 @@ -{"copyright":"Stephan Schmitz, https:\/\/github.com\/eyecatchup","url":"https:\/\/github.com\/eyecatchup","email":"eyecatchup@gmail.com","theme":"default"} \ No newline at end of file +{ + "copyright": "Stephan Schmitz, https://github.com/eyecatchup", + "url": "https://github.com/eyecatchup", + "email": "eyecatchup@gmail.com", + "theme": "default" +} diff --git a/users/f.json b/users/f.json index 2ea771ac..91630482 100644 --- a/users/f.json +++ b/users/f.json @@ -1 +1,5 @@ -{"copyright":"Fatih Kadir Akin","url":"http:\/\/fatihak.in","email":"fka@fatihak.in"} \ No newline at end of file +{ + "copyright": "Fatih Kadir Akin", + "url": "http://fatihak.in", + "email": "fka@fatihak.in" +} diff --git a/users/fabdouglas.json b/users/fabdouglas.json index 00de6051..0e078030 100644 --- a/users/fabdouglas.json +++ b/users/fabdouglas.json @@ -1,6 +1,6 @@ { - "copyright": "Fabrice Daugan", - "email": "fabrice.daugan@gmail.com", - "theme": "material-brown", - "gravatar": true + "copyright": "Fabrice Daugan", + "email": "fabrice.daugan@gmail.com", + "theme": "material-brown", + "gravatar": true } diff --git a/users/fabian.json b/users/fabian.json index 7778fd02..df40ab66 100644 --- a/users/fabian.json +++ b/users/fabian.json @@ -1 +1,6 @@ -{"copyright":"Fabian Beiner","url":"https:\/\/fabianbeiner.de","email":"fb@fabianbeiner.de","format":"txt"} \ No newline at end of file +{ + "copyright": "Fabian Beiner", + "url": "https://fabianbeiner.de", + "email": "fb@fabianbeiner.de", + "format": "txt" +} diff --git a/users/fabianbeiner.json b/users/fabianbeiner.json index 7778fd02..df40ab66 100644 --- a/users/fabianbeiner.json +++ b/users/fabianbeiner.json @@ -1 +1,6 @@ -{"copyright":"Fabian Beiner","url":"https:\/\/fabianbeiner.de","email":"fb@fabianbeiner.de","format":"txt"} \ No newline at end of file +{ + "copyright": "Fabian Beiner", + "url": "https://fabianbeiner.de", + "email": "fb@fabianbeiner.de", + "format": "txt" +} diff --git a/users/fabianmoronzirfas.json b/users/fabianmoronzirfas.json index 4306ce34..47d29a50 100644 --- a/users/fabianmoronzirfas.json +++ b/users/fabianmoronzirfas.json @@ -1 +1,8 @@ -{"copyright":"Fabian Mor\u00f3n Zirfas","format":"txt","url": "https://fabianmoronzirfas.me", "email": "fabian.moron.zirfas@gmail.com", "format": "txt", "gravatar": true,"theme":"default"} \ No newline at end of file +{ + "copyright": "Fabian Mor\u00f3n Zirfas", + "format": "txt", + "url": "https://fabianmoronzirfas.me", + "email": "fabian.moron.zirfas@gmail.com", + "gravatar": true, + "theme": "default" +} diff --git a/users/fabianperez.json b/users/fabianperez.json index 354e13a9..f725394f 100644 --- a/users/fabianperez.json +++ b/users/fabianperez.json @@ -1 +1,3 @@ -{"copyright":"Fabian Perez"} \ No newline at end of file +{ + "copyright": "Fabian Perez" +} diff --git a/users/fabiantheblind.json b/users/fabiantheblind.json index f9ba552f..3b85624e 100644 --- a/users/fabiantheblind.json +++ b/users/fabiantheblind.json @@ -1 +1,4 @@ -{"copyright":"Fabian Mor\u00f3n Zirfas","format":"txt"} \ No newline at end of file +{ + "copyright": "Fabian Mor\u00f3n Zirfas", + "format": "txt" +} diff --git a/users/fabien.json b/users/fabien.json index fc67f4fe..c6abeac7 100644 --- a/users/fabien.json +++ b/users/fabien.json @@ -1 +1,3 @@ -{"copyright":"Fabien OCarroll"} \ No newline at end of file +{ + "copyright": "Fabien OCarroll" +} diff --git a/users/fabioluciano.json b/users/fabioluciano.json index 82b50d82..c66604dc 100644 --- a/users/fabioluciano.json +++ b/users/fabioluciano.json @@ -1 +1,8 @@ -{ "copyright": "Fábio Luciano", "url": "http://naoimporta.com", "email": "fabio@naoimporta.com", "format": "html", "gravatar":"true", "theme": "flesch"} +{ + "copyright": "F\u00c3\u00a1bio Luciano", + "url": "http://naoimporta.com", + "email": "fabio@naoimporta.com", + "format": "html", + "gravatar": "true", + "theme": "flesch" +} diff --git a/users/fabryz.json b/users/fabryz.json index b986913a..ccb07de2 100644 --- a/users/fabryz.json +++ b/users/fabryz.json @@ -1 +1,3 @@ -{"copyright":"Fabrizio Codello"} \ No newline at end of file +{ + "copyright": "Fabrizio Codello" +} diff --git a/users/facundofarias.json b/users/facundofarias.json index 4a27d2fa..ec9d3fa3 100644 --- a/users/facundofarias.json +++ b/users/facundofarias.json @@ -1,6 +1,6 @@ { - "copyright": "Facundo Farias", - "url": "http://facundofarias.github.io/", - "email": "facundo.farias@gmail.com", - "gravatar": true + "copyright": "Facundo Farias", + "url": "http://facundofarias.github.io/", + "email": "facundo.farias@gmail.com", + "gravatar": true } diff --git a/users/faeliaso.json b/users/faeliaso.json index 987a6541..dd8c7ac5 100644 --- a/users/faeliaso.json +++ b/users/faeliaso.json @@ -1 +1,3 @@ -{"copyright":"Elias de Oliveira"} \ No newline at end of file +{ + "copyright": "Elias de Oliveira" +} diff --git a/users/fancyguy.json b/users/fancyguy.json index 2a8c0eac..f574ce65 100644 --- a/users/fancyguy.json +++ b/users/fancyguy.json @@ -1 +1,3 @@ -{"copyright":"FancyGuy Technologies"} \ No newline at end of file +{ + "copyright": "FancyGuy Technologies" +} diff --git a/users/fanestra.json b/users/fanestra.json index aacf145c..58bb8a81 100644 --- a/users/fanestra.json +++ b/users/fanestra.json @@ -1 +1,5 @@ -{"copyright":"Fanetra","url":"http:\/\/fanestra.net","email":"ops@fanestra.net"} \ No newline at end of file +{ + "copyright": "Fanetra", + "url": "http://fanestra.net", + "email": "ops@fanestra.net" +} diff --git a/users/fannheyward.json b/users/fannheyward.json index 5c346583..163c1346 100644 --- a/users/fannheyward.json +++ b/users/fannheyward.json @@ -1 +1,7 @@ -{"copyright":"Heyward Fann","url":"http:\/\/fann.im","email":"fannheyward@gmail.com","format":"txt","theme":"plaintext"} \ No newline at end of file +{ + "copyright": "Heyward Fann", + "url": "http://fann.im", + "email": "fannheyward@gmail.com", + "format": "txt", + "theme": "plaintext" +} diff --git a/users/fauzism.json b/users/fauzism.json index 61beec95..300b8fc1 100644 --- a/users/fauzism.json +++ b/users/fauzism.json @@ -1 +1,6 @@ -{"copyright":"Yousuf Fauzan","url":"http:\/\/fauzism.com","email":"yousuffauzan@gmail.com","theme":"default"} \ No newline at end of file +{ + "copyright": "Yousuf Fauzan", + "url": "http://fauzism.com", + "email": "yousuffauzan@gmail.com", + "theme": "default" +} diff --git a/users/fd.json b/users/fd.json index 8205113c..f2b98e8f 100644 --- a/users/fd.json +++ b/users/fd.json @@ -1 +1,5 @@ -{"copyright":"Simon Menke","url":"http:\/\/github.com\/fd","email":"simon.menke@gmail.com"} \ No newline at end of file +{ + "copyright": "Simon Menke", + "url": "http://github.com/fd", + "email": "simon.menke@gmail.com" +} diff --git a/users/fdavidcl.json b/users/fdavidcl.json index e50439a5..23e4ef09 100644 --- a/users/fdavidcl.json +++ b/users/fdavidcl.json @@ -1 +1,4 @@ -{"copyright":"David Charte","url":"http:\/\/fdavidcl.me"} \ No newline at end of file +{ + "copyright": "David Charte", + "url": "http://fdavidcl.me" +} diff --git a/users/fefc.json b/users/fefc.json index 84bb40be..313c24ee 100644 --- a/users/fefc.json +++ b/users/fefc.json @@ -1 +1,3 @@ -{"copyright":"Front End Friends Club"} \ No newline at end of file +{ + "copyright": "Front End Friends Club" +} diff --git a/users/felipe.json b/users/felipe.json index b6364b6a..2c1d9735 100644 --- a/users/felipe.json +++ b/users/felipe.json @@ -1 +1,4 @@ -{"copyright":"Felipe Marcos","email":"hey@felipemarcos.com"} \ No newline at end of file +{ + "copyright": "Felipe Marcos", + "email": "hey@felipemarcos.com" +} diff --git a/users/felipefialho.json b/users/felipefialho.json index f69312d1..7bbe6bd3 100644 --- a/users/felipefialho.json +++ b/users/felipefialho.json @@ -1 +1,5 @@ -{"copyright":"Felipe Fialho","url":"http://www.felipefialho.com/","email":"hi@felipefialho.com"} +{ + "copyright": "Felipe Fialho", + "url": "http://www.felipefialho.com/", + "email": "hi@felipefialho.com" +} diff --git a/users/felix-schuetz.json b/users/felix-schuetz.json index f20cfac6..c50bf347 100644 --- a/users/felix-schuetz.json +++ b/users/felix-schuetz.json @@ -1,6 +1,6 @@ { - "copyright": "Felix Schütz", - "url": "https://felix-schuetz.de", - "email": "mail@felix-schuetz.de", - "gravatar": true + "copyright": "Felix Sch\u00c3\u00bctz", + "url": "https://felix-schuetz.de", + "email": "mail@felix-schuetz.de", + "gravatar": true } diff --git a/users/felix.json b/users/felix.json index a96e1552..1b972f17 100644 --- a/users/felix.json +++ b/users/felix.json @@ -1 +1,6 @@ -{"copyright":"Felix Grabowski","url":"http:\/\/www.myriadvisuals.com","email":"admin@myriadvisuals.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Felix Grabowski", + "url": "http://www.myriadvisuals.com", + "email": "admin@myriadvisuals.com", + "format": "txt" +} diff --git a/users/felixsanz.json b/users/felixsanz.json index 77c9d9a8..81b80298 100644 --- a/users/felixsanz.json +++ b/users/felixsanz.json @@ -1,8 +1,8 @@ { - "copyright": "Félix Sanz, https://felixsanz.com", - "url": "https://felixsanz.com", - "email": "me@felixsanz.com", - "gravatar": true, - "format": "html", - "theme": "default" + "copyright": "F\u00c3\u00a9lix Sanz, https://felixsanz.com", + "url": "https://felixsanz.com", + "email": "me@felixsanz.com", + "gravatar": true, + "format": "html", + "theme": "default" } diff --git a/users/fendi.json b/users/fendi.json index 5c77879f..453db266 100644 --- a/users/fendi.json +++ b/users/fendi.json @@ -1 +1,7 @@ -{"copyright": "Sutrisno Efendi", "url": "http://kangfendi.net", "email": "kangfend@gmail.com", "gravatar": true, "theme": "material-light-blue"} +{ + "copyright": "Sutrisno Efendi", + "url": "http://kangfendi.net", + "email": "kangfend@gmail.com", + "gravatar": true, + "theme": "material-light-blue" +} diff --git a/users/fengmk2.json b/users/fengmk2.json index 97d6a152..08164e9e 100644 --- a/users/fengmk2.json +++ b/users/fengmk2.json @@ -1 +1,6 @@ -{"copyright":"fengmk2","url":"http:\/\/fengmk2.com","email":"m@fengmk2.com","format":"txt"} \ No newline at end of file +{ + "copyright": "fengmk2", + "url": "http://fengmk2.com", + "email": "m@fengmk2.com", + "format": "txt" +} diff --git a/users/fenris-studios.json b/users/fenris-studios.json index 002eb0cf..b31d8bdb 100644 --- a/users/fenris-studios.json +++ b/users/fenris-studios.json @@ -1,6 +1,6 @@ { - "copyright" : "Fenris Studios, http://fenris.io", - "url" : "http://fenris.io", - "format" : "html", - "theme" : "material-red" + "copyright": "Fenris Studios, http://fenris.io", + "url": "http://fenris.io", + "format": "html", + "theme": "material-red" } diff --git a/users/feross.json b/users/feross.json index 73ef4b35..6016ef14 100644 --- a/users/feross.json +++ b/users/feross.json @@ -1 +1,5 @@ -{"copyright":"Feross Aboukhadijeh, http:\/\/feross.org","url":"http:\/\/feross.org","theme":"flesch"} \ No newline at end of file +{ + "copyright": "Feross Aboukhadijeh, http://feross.org", + "url": "http://feross.org", + "theme": "flesch" +} diff --git a/users/ff.json b/users/ff.json index 05020160..ea6ef508 100644 --- a/users/ff.json +++ b/users/ff.json @@ -1 +1,3 @@ -{"copyright":"Florian Fida"} \ No newline at end of file +{ + "copyright": "Florian Fida" +} diff --git a/users/ffljjqbqvsywxqakpvdbwyqqyt.json b/users/ffljjqbqvsywxqakpvdbwyqqyt.json index a1425a26..ae746533 100644 --- a/users/ffljjqbqvsywxqakpvdbwyqqyt.json +++ b/users/ffljjqbqvsywxqakpvdbwyqqyt.json @@ -1 +1,3 @@ -{"copyright":"ffljjqbqvsywxqakpvdbwyqqyt"} \ No newline at end of file +{ + "copyright": "ffljjqbqvsywxqakpvdbwyqqyt" +} diff --git a/users/ffljjqbqvsywxqakpvdbwyqqytt.json b/users/ffljjqbqvsywxqakpvdbwyqqytt.json index f565d751..9d1cbd4c 100644 --- a/users/ffljjqbqvsywxqakpvdbwyqqytt.json +++ b/users/ffljjqbqvsywxqakpvdbwyqqytt.json @@ -1 +1,3 @@ -{"copyright":"ffljjqbqvsywxqakpvdbwyqqytt"} \ No newline at end of file +{ + "copyright": "ffljjqbqvsywxqakpvdbwyqqytt" +} diff --git a/users/fgsdhkdfjghdksfgjsg.json b/users/fgsdhkdfjghdksfgjsg.json index f8d3e0da..700b3736 100644 --- a/users/fgsdhkdfjghdksfgjsg.json +++ b/users/fgsdhkdfjghdksfgjsg.json @@ -1 +1,3 @@ -{"copyright":"Remy Sharp"} \ No newline at end of file +{ + "copyright": "Remy Sharp" +} diff --git a/users/fh.json b/users/fh.json index e2faec2d..32e48e8d 100644 --- a/users/fh.json +++ b/users/fh.json @@ -1 +1,8 @@ -{"copyright":"Feras ALHAEK","url":"http:\/\/alhaek.com","email":"feras@alhaek.com","format":"txt","gravatar":true,"theme":"eula-modern"} \ No newline at end of file +{ + "copyright": "Feras ALHAEK", + "url": "http://alhaek.com", + "email": "feras@alhaek.com", + "format": "txt", + "gravatar": true, + "theme": "eula-modern" +} diff --git a/users/fiber-miniapp.json b/users/fiber-miniapp.json index f5808c8b..fe218399 100644 --- a/users/fiber-miniapp.json +++ b/users/fiber-miniapp.json @@ -1 +1,3 @@ -{"copyright":"RIKEN AICS"} \ No newline at end of file +{ + "copyright": "RIKEN AICS" +} diff --git a/users/fiber.json b/users/fiber.json index 4f7abb42..dacf9b4c 100644 --- a/users/fiber.json +++ b/users/fiber.json @@ -1 +1,3 @@ -{"copyright":"Sven Engelhardt"} \ No newline at end of file +{ + "copyright": "Sven Engelhardt" +} diff --git a/users/fibo.json b/users/fibo.json index 8aa2ef4b..8c11cf2b 100644 --- a/users/fibo.json +++ b/users/fibo.json @@ -1,4 +1,4 @@ { - "copyright": "Gianluca Casati, http://g14n.info", - "url": "http://g14n.info" + "copyright": "Gianluca Casati, http://g14n.info", + "url": "http://g14n.info" } diff --git a/users/filepang.json b/users/filepang.json index 534d78b9..08663e9c 100644 --- a/users/filepang.json +++ b/users/filepang.json @@ -1 +1,3 @@ -{"copyright":"Sung Su Kim, http:\/\/www.filepang.co.kr"} \ No newline at end of file +{ + "copyright": "Sung Su Kim, http://www.filepang.co.kr" +} diff --git a/users/filipebarros.json b/users/filipebarros.json index e08562c9..cbee5554 100644 --- a/users/filipebarros.json +++ b/users/filipebarros.json @@ -1 +1,4 @@ -{ "copyright": "Filipe Barros", "email": "filipebarrossi@gmail.com"} +{ + "copyright": "Filipe Barros", + "email": "filipebarrossi@gmail.com" +} diff --git a/users/filosottile.json b/users/filosottile.json index 0a04ff92..d27a9e80 100644 --- a/users/filosottile.json +++ b/users/filosottile.json @@ -1,5 +1,7 @@ -{ "copyright": "Filippo Valsorda, FiloSottile", - "url": "http:\/\/filippo.io", - "email": "fv@filippo.io", - "theme": "default", - "gravatar": true } +{ + "copyright": "Filippo Valsorda, FiloSottile", + "url": "http://filippo.io", + "email": "fv@filippo.io", + "theme": "default", + "gravatar": true +} diff --git a/users/fireball.json b/users/fireball.json index 7519c90a..dfbfeaa4 100644 --- a/users/fireball.json +++ b/users/fireball.json @@ -1 +1,3 @@ -{"copyright":"Tyler Reed"} \ No newline at end of file +{ + "copyright": "Tyler Reed" +} diff --git a/users/firebase.json b/users/firebase.json index ccde0e9f..5484b105 100644 --- a/users/firebase.json +++ b/users/firebase.json @@ -1 +1,5 @@ -{"copyright":"Firebase","url":"https:\/\/firebase.com","email":"opensource@firebase.com"} \ No newline at end of file +{ + "copyright": "Firebase", + "url": "https://firebase.com", + "email": "opensource@firebase.com" +} diff --git a/users/fireflies.json b/users/fireflies.json index 475122ec..e9bc5e96 100644 --- a/users/fireflies.json +++ b/users/fireflies.json @@ -1 +1,6 @@ -{"copyright":"Connor Spencer Harries","url":"https:\/\/smirking.ninja","email":"connor@smirking.ninja","format":"txt"} \ No newline at end of file +{ + "copyright": "Connor Spencer Harries", + "url": "https://smirking.ninja", + "email": "connor@smirking.ninja", + "format": "txt" +} diff --git a/users/firejune.json b/users/firejune.json index e78bb984..6854e2c2 100644 --- a/users/firejune.json +++ b/users/firejune.json @@ -1,6 +1,6 @@ { - "copyright": "Joon Kyoung, @firejune, http://firejune.com", - "url": "http://firejune.com", - "email": "to@firejune.com", - "theme": "flesch" + "copyright": "Joon Kyoung, @firejune, http://firejune.com", + "url": "http://firejune.com", + "email": "to@firejune.com", + "theme": "flesch" } diff --git a/users/fitjs.json b/users/fitjs.json index 1b5a2bec..600eb1d9 100644 --- a/users/fitjs.json +++ b/users/fitjs.json @@ -1 +1,6 @@ -{"copyright":"Sufijen Bani","url":"http:\/\/fitjs.sbani.net","email":"sufijen-fitjs@sbani.net","format":"txt"} \ No newline at end of file +{ + "copyright": "Sufijen Bani", + "url": "http://fitjs.sbani.net", + "email": "sufijen-fitjs@sbani.net", + "format": "txt" +} diff --git a/users/fixate.json b/users/fixate.json index ccde136c..c7ab4834 100644 --- a/users/fixate.json +++ b/users/fixate.json @@ -1,5 +1,5 @@ { - "copyright": "Fixate Web and Design, http://fixate.it/", - "url": "http://fixate.it/", - "theme": "double-windsor" + "copyright": "Fixate Web and Design, http://fixate.it/", + "url": "http://fixate.it/", + "theme": "double-windsor" } diff --git a/users/fjellerup.json b/users/fjellerup.json index 416c0980..c459dd70 100644 --- a/users/fjellerup.json +++ b/users/fjellerup.json @@ -1 +1,3 @@ -{"copyright":"Mikkel Fjellerup Jensen"} \ No newline at end of file +{ + "copyright": "Mikkel Fjellerup Jensen" +} diff --git a/users/fjorgemota.json b/users/fjorgemota.json index 5a9f7b68..b005903b 100644 --- a/users/fjorgemota.json +++ b/users/fjorgemota.json @@ -1 +1,4 @@ -{"copyright":"Fernando Jorge Mota", "url":"http://fjorgemota.com"} +{ + "copyright": "Fernando Jorge Mota", + "url": "http://fjorgemota.com" +} diff --git a/users/fka.json b/users/fka.json index b8d70a70..0f133592 100644 --- a/users/fka.json +++ b/users/fka.json @@ -1 +1,3 @@ -{"copyright":"Fatih Kadir Akin"} \ No newline at end of file +{ + "copyright": "Fatih Kadir Akin" +} diff --git a/users/flat.json b/users/flat.json index 30762b7b..462bf103 100644 --- a/users/flat.json +++ b/users/flat.json @@ -1 +1,4 @@ -{"copyright":"Flat","url":"https:\/\/github.com\/Flatta"} \ No newline at end of file +{ + "copyright": "Flat", + "url": "https://github.com/Flatta" +} diff --git a/users/flattr.json b/users/flattr.json index a7cc9ab3..a800c330 100644 --- a/users/flattr.json +++ b/users/flattr.json @@ -1 +1,5 @@ -{"copyright":"Flattr AB","url":"http:\/\/flattr.com","theme":"double-windsor "} \ No newline at end of file +{ + "copyright": "Flattr AB", + "url": "http://flattr.com", + "theme": "double-windsor " +} diff --git a/users/fleeting.json b/users/fleeting.json index 6817a690..c9a60793 100644 --- a/users/fleeting.json +++ b/users/fleeting.json @@ -1 +1,5 @@ -{"copyright":"James Fleeting, http:\/\/jamesfleeting.com","url":"http:\/\/jamesfleeting.com","theme":"flesch"} \ No newline at end of file +{ + "copyright": "James Fleeting, http://jamesfleeting.com", + "url": "http://jamesfleeting.com", + "theme": "flesch" +} diff --git a/users/flesch.json b/users/flesch.json index a7921629..99c3bbec 100644 --- a/users/flesch.json +++ b/users/flesch.json @@ -1,5 +1,5 @@ { - "copyright": "John Flesch, http://fles.ch", - "url": "http://fles.ch", - "theme": "flesch" + "copyright": "John Flesch, http://fles.ch", + "url": "http://fles.ch", + "theme": "flesch" } diff --git a/users/fletc3her.json b/users/fletc3her.json index 1ca8319c..92c5e88b 100644 --- a/users/fletc3her.json +++ b/users/fletc3her.json @@ -1 +1,6 @@ -{"copyright":"Fletcher Sandbeck","url":"http:\/\/www.fletc3her.com","email":"fletc3her@gmail.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Fletcher Sandbeck", + "url": "http://www.fletc3her.com", + "email": "fletc3her@gmail.com", + "gravatar": true +} diff --git a/users/flexd.json b/users/flexd.json index ca01df77..2e6ae741 100644 --- a/users/flexd.json +++ b/users/flexd.json @@ -1 +1,6 @@ -{"copyright":"Kristoffer Berdal","url":"http:\/\/cognitive.io","email":"web@flexd.net","format":"txt"} \ No newline at end of file +{ + "copyright": "Kristoffer Berdal", + "url": "http://cognitive.io", + "email": "web@flexd.net", + "format": "txt" +} diff --git a/users/floppy.json b/users/floppy.json index aa378df0..a89ac264 100644 --- a/users/floppy.json +++ b/users/floppy.json @@ -1 +1,6 @@ -{"copyright":"James Smith","url":"http:\/\/floppy.org.uk","email":"james@floppy.org.uk","gravatar":true} \ No newline at end of file +{ + "copyright": "James Smith", + "url": "http://floppy.org.uk", + "email": "james@floppy.org.uk", + "gravatar": true +} diff --git a/users/florian.json b/users/florian.json index 8e8c142f..5ae79957 100644 --- a/users/florian.json +++ b/users/florian.json @@ -1 +1,5 @@ -{"copyright":"Florian Pircher ","url":"http:\/\/addpixel.net","format":"html"} \ No newline at end of file +{ + "copyright": "Florian Pircher ", + "url": "http://addpixel.net", + "format": "html" +} diff --git a/users/floydpink.json b/users/floydpink.json index 044ca089..defe6b16 100644 --- a/users/floydpink.json +++ b/users/floydpink.json @@ -1,7 +1,7 @@ { - "copyright": "Hari Menon, https://harimenon.com", - "url": "https://harimenon.com", - "email": "me@harimenon.com", - "gravatar": true, - "theme": "double-windsor" + "copyright": "Hari Menon, https://harimenon.com", + "url": "https://harimenon.com", + "email": "me@harimenon.com", + "gravatar": true, + "theme": "double-windsor" } diff --git a/users/flyjs.json b/users/flyjs.json index f409cb20..440d76e4 100644 --- a/users/flyjs.json +++ b/users/flyjs.json @@ -1 +1,3 @@ -{"copyright":"Oleg Pimenov"} \ No newline at end of file +{ + "copyright": "Oleg Pimenov" +} diff --git a/users/fm.json b/users/fm.json index 277ae72c..5e566332 100644 --- a/users/fm.json +++ b/users/fm.json @@ -1 +1,3 @@ -{"copyright":"Florian M\u00fcller"} \ No newline at end of file +{ + "copyright": "Florian M\u00fcller" +} diff --git a/users/foak.json b/users/foak.json index 55b0af88..1c8c144f 100644 --- a/users/foak.json +++ b/users/foak.json @@ -1 +1,6 @@ -{"copyright":"Foak Productions Limited","url":"http:\/\/thefoakhouse.com","email":"info@thefoakhouse.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Foak Productions Limited", + "url": "http://thefoakhouse.com", + "email": "info@thefoakhouse.com", + "gravatar": true +} diff --git a/users/foat.json b/users/foat.json index fdd9a5ce..27c26791 100644 --- a/users/foat.json +++ b/users/foat.json @@ -1,6 +1,6 @@ { - "copyright": "Foat Akhmadeev", - "url": "https://github.com/Foat", - "email": "foat.akhmadeev@gmail.com", - "theme": "double-windsor" -} \ No newline at end of file + "copyright": "Foat Akhmadeev", + "url": "https://github.com/Foat", + "email": "foat.akhmadeev@gmail.com", + "theme": "double-windsor" +} diff --git a/users/foobar.json b/users/foobar.json index 53d94811..33c075f6 100644 --- a/users/foobar.json +++ b/users/foobar.json @@ -1 +1,3 @@ -{"copyright":"Foo Bar"} \ No newline at end of file +{ + "copyright": "Foo Bar" +} diff --git a/users/ford.json b/users/ford.json index e16c039f..56e8adee 100644 --- a/users/ford.json +++ b/users/ford.json @@ -1 +1,4 @@ -{"copyright":"Ford Peprah","email":"ford.peprah@uwaterloo.ca"} \ No newline at end of file +{ + "copyright": "Ford Peprah", + "email": "ford.peprah@uwaterloo.ca" +} diff --git a/users/forresty.json b/users/forresty.json index 2c1ed186..b048bb97 100644 --- a/users/forresty.json +++ b/users/forresty.json @@ -1 +1,3 @@ -{"copyright":"Forrest Ye"} \ No newline at end of file +{ + "copyright": "Forrest Ye" +} diff --git a/users/forsvikgroup.json b/users/forsvikgroup.json index 2015ec2e..c4015a2d 100644 --- a/users/forsvikgroup.json +++ b/users/forsvikgroup.json @@ -1,6 +1,5 @@ { - "copyright": "Christoffer Hallas", - "url": "http://www.forsvikgroup.com", - "email": "christoffer.hallas@forsvikgroup.com" + "copyright": "Christoffer Hallas", + "url": "http://www.forsvikgroup.com", + "email": "christoffer.hallas@forsvikgroup.com" } - diff --git a/users/foss-haas.json b/users/foss-haas.json index 45c0d39f..b946f482 100644 --- a/users/foss-haas.json +++ b/users/foss-haas.json @@ -1 +1,6 @@ -{"copyright":"Foss & Haas GmbH","url":"http:\/\/foss-haas.de","email":"mail@foss-haas.de","gravatar":true} +{ + "copyright": "Foss & Haas GmbH", + "url": "http://foss-haas.de", + "email": "mail@foss-haas.de", + "gravatar": true +} diff --git a/users/fov.json b/users/fov.json index 346dd9cf..9ce00f08 100644 --- a/users/fov.json +++ b/users/fov.json @@ -1 +1,4 @@ -{"copyright":"Franklin Oliveira Da Veiga","email":"aionprofile@hotmail.com"} \ No newline at end of file +{ + "copyright": "Franklin Oliveira Da Veiga", + "email": "aionprofile@hotmail.com" +} diff --git a/users/fp.json b/users/fp.json index 0a05adab..b6e15e60 100644 --- a/users/fp.json +++ b/users/fp.json @@ -1 +1,3 @@ -{"copyright":"Floyd Price"} \ No newline at end of file +{ + "copyright": "Floyd Price" +} diff --git a/users/fpcs.json b/users/fpcs.json index 6b674670..ba4e8f37 100644 --- a/users/fpcs.json +++ b/users/fpcs.json @@ -1 +1,6 @@ -{"copyright":"Flashpoint Computer Services, LLC","url":"http:\/\/www.flashpointcs.net","email":"info@flashpointcs.net","format":"html"} \ No newline at end of file +{ + "copyright": "Flashpoint Computer Services, LLC", + "url": "http://www.flashpointcs.net", + "email": "info@flashpointcs.net", + "format": "html" +} diff --git a/users/fr.json b/users/fr.json index 9da1e4db..500da9c4 100644 --- a/users/fr.json +++ b/users/fr.json @@ -1 +1,3 @@ -{"copyright":"Fran\u00e7ois Romain"} \ No newline at end of file +{ + "copyright": "Fran\u00e7ois Romain" +} diff --git a/users/francisbesset.json b/users/francisbesset.json index 6bff5df5..d3e92021 100644 --- a/users/francisbesset.json +++ b/users/francisbesset.json @@ -1,6 +1,6 @@ { - "copyright": "Francis Besset, http://francis-besset.com", - "url": "http://francis-besset.com", - "theme": "default", - "gravatar": true + "copyright": "Francis Besset, http://francis-besset.com", + "url": "http://francis-besset.com", + "theme": "default", + "gravatar": true } diff --git a/users/frebro.json b/users/frebro.json index 09e8f92d..71437bc2 100644 --- a/users/frebro.json +++ b/users/frebro.json @@ -1,5 +1,5 @@ { - "copyright": "Fredrik Broman, http://frebro.com", - "url": "http://frebro.com", - "theme": "default" + "copyright": "Fredrik Broman, http://frebro.com", + "url": "http://frebro.com", + "theme": "default" } diff --git a/users/fredi.json b/users/fredi.json index 32a1eca1..265500ca 100644 --- a/users/fredi.json +++ b/users/fredi.json @@ -1 +1,3 @@ -{"copyright":"Federico Leo Redi"} +{ + "copyright": "Federico Leo Redi" +} diff --git a/users/fredrik.json b/users/fredrik.json index f710c11b..f422f51e 100644 --- a/users/fredrik.json +++ b/users/fredrik.json @@ -1 +1,6 @@ -{"copyright":"Fredrik M\u00f6llerstrand","url":"http:\/\/fredrikmollerstrand.se\/","email":"fredrik@mollerstrand.se","format":"txt"} \ No newline at end of file +{ + "copyright": "Fredrik M\u00f6llerstrand", + "url": "http://fredrikmollerstrand.se/", + "email": "fredrik@mollerstrand.se", + "format": "txt" +} diff --git a/users/fredwu.json b/users/fredwu.json index caaf3e7a..b1f90c57 100644 --- a/users/fredwu.json +++ b/users/fredwu.json @@ -1 +1,6 @@ -{"copyright":"Fred Wu","url":"http:\/\/fredwu.me\/","email":"ifredwu@gmail.com","format":"html"} \ No newline at end of file +{ + "copyright": "Fred Wu", + "url": "http://fredwu.me/", + "email": "ifredwu@gmail.com", + "format": "html" +} diff --git a/users/freewheel.json b/users/freewheel.json index 9ba81fba..544f9916 100644 --- a/users/freewheel.json +++ b/users/freewheel.json @@ -1 +1,6 @@ -{"copyright":"FreeWheel Inc.","url":"http:\/\/rollingcode.org","email":"sdu@freewheel.tv","format":"txt"} \ No newline at end of file +{ + "copyright": "FreeWheel Inc.", + "url": "http://rollingcode.org", + "email": "sdu@freewheel.tv", + "format": "txt" +} diff --git a/users/freewizard.json b/users/freewizard.json index b4fb452e..13aa54c0 100644 --- a/users/freewizard.json +++ b/users/freewizard.json @@ -1 +1,6 @@ -{"copyright":"Du Song","url":"http:\/\/rollingcode.org","email":"freewizard@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Du Song", + "url": "http://rollingcode.org", + "email": "freewizard@gmail.com", + "format": "txt" +} diff --git a/users/fremy.json b/users/fremy.json index 4ba8ff6a..58b0b780 100644 --- a/users/fremy.json +++ b/users/fremy.json @@ -1,6 +1,6 @@ { - "copyright": "REMY François, http://fremycompany.com/", - "url": "http://fremycompany.com/", - "email": "francois.remy.dev@outlook.com", - "gravatar": true -} \ No newline at end of file + "copyright": "REMY Fran\u00c3\u00a7ois, http://fremycompany.com/", + "url": "http://fremycompany.com/", + "email": "francois.remy.dev@outlook.com", + "gravatar": true +} diff --git a/users/frendon.json b/users/frendon.json index 0a5321ab..b4891e52 100644 --- a/users/frendon.json +++ b/users/frendon.json @@ -1 +1,3 @@ -{"copyright":"Fernando J. Rend\u00f3n"} \ No newline at end of file +{ + "copyright": "Fernando J. Rend\u00f3n" +} diff --git a/users/freshbox.json b/users/freshbox.json index 603074da..b8617903 100644 --- a/users/freshbox.json +++ b/users/freshbox.json @@ -1 +1,6 @@ -{"copyright":"freshbox","url":"http:\/\/freshbox.io","email":"info@freshbox.io","format":"html"} \ No newline at end of file +{ + "copyright": "freshbox", + "url": "http://freshbox.io", + "email": "info@freshbox.io", + "format": "html" +} diff --git a/users/freshmade.json b/users/freshmade.json index 1fe12987..822cef19 100644 --- a/users/freshmade.json +++ b/users/freshmade.json @@ -1,5 +1,5 @@ { - "copyright": "Jack Keller, http://freshma.de", - "url": "http://freshma.de", - "theme": "flesch" + "copyright": "Jack Keller, http://freshma.de", + "url": "http://freshma.de", + "theme": "flesch" } diff --git a/users/frickreich.json b/users/frickreich.json index 40080315..6333738b 100644 --- a/users/frickreich.json +++ b/users/frickreich.json @@ -1 +1,3 @@ -{"copyright":"F. Rick Reich"} \ No newline at end of file +{ + "copyright": "F. Rick Reich" +} diff --git a/users/friedcell.json b/users/friedcell.json index 4324c619..0c61875a 100644 --- a/users/friedcell.json +++ b/users/friedcell.json @@ -1 +1,5 @@ -{"copyright":"Marko Mrdjenovic","url":"http:\/\/friedcell.si","email":"fry@friedcell.si"} \ No newline at end of file +{ + "copyright": "Marko Mrdjenovic", + "url": "http://friedcell.si", + "email": "fry@friedcell.si" +} diff --git a/users/fristonio.json b/users/fristonio.json index 1ea52bf2..54f72fa1 100644 --- a/users/fristonio.json +++ b/users/fristonio.json @@ -1,7 +1,7 @@ { - "copyright": "Deepesh Pathak http://fristonio.co", - "url": "http://fristonio.co", - "email": "me@fristonio.co", - "gravatar": true, - "theme": "dusk" + "copyright": "Deepesh Pathak http://fristonio.co", + "url": "http://fristonio.co", + "email": "me@fristonio.co", + "gravatar": true, + "theme": "dusk" } diff --git a/users/frozenskys.json b/users/frozenskys.json index 8d88fadf..2840548e 100644 --- a/users/frozenskys.json +++ b/users/frozenskys.json @@ -1,7 +1,7 @@ { - "copyright": "Richard Cooper", - "url": "https://github.com/frozenskys", - "email": "richard@frozenskys.co.uk", - "gravatar": true, - "theme": "eula-modern" -} \ No newline at end of file + "copyright": "Richard Cooper", + "url": "https://github.com/frozenskys", + "email": "richard@frozenskys.co.uk", + "gravatar": true, + "theme": "eula-modern" +} diff --git a/users/frozzare.json b/users/frozzare.json index c0ed8c09..de151ac8 100644 --- a/users/frozzare.json +++ b/users/frozzare.json @@ -1,5 +1,5 @@ { - "copyright": "Fredrik Forsmo, http://forsmo.me", - "url": "http://forsmo.me", - "theme": "flesch" -} \ No newline at end of file + "copyright": "Fredrik Forsmo, http://forsmo.me", + "url": "http://forsmo.me", + "theme": "flesch" +} diff --git a/users/frwrdnet.json b/users/frwrdnet.json index f47888b2..45510761 100644 --- a/users/frwrdnet.json +++ b/users/frwrdnet.json @@ -1,7 +1,7 @@ { - "copyright": "Victor Zambrano, https://frwrd.net", - "url": "https://frwrd.net", - "email": "victor@frwrd.net", - "format": "html", - "theme": "plaintext" -} \ No newline at end of file + "copyright": "Victor Zambrano, https://frwrd.net", + "url": "https://frwrd.net", + "email": "victor@frwrd.net", + "format": "html", + "theme": "plaintext" +} diff --git a/users/fs.json b/users/fs.json index 2ea33f5a..c20ba996 100644 --- a/users/fs.json +++ b/users/fs.json @@ -1 +1,6 @@ -{"copyright":"Frederick Silva","url":"http:\/\/fredericksilva.github.io","email":"devfrederick@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Frederick Silva", + "url": "http://fredericksilva.github.io", + "email": "devfrederick@gmail.com", + "format": "txt" +} diff --git a/users/fuckthebitch.json b/users/fuckthebitch.json index 6920901d..64134d25 100644 --- a/users/fuckthebitch.json +++ b/users/fuckthebitch.json @@ -1 +1,5 @@ -{"copyright":"FuckTheBitch","url":"http:\/\/fuckthebitch.com","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "FuckTheBitch", + "url": "http://fuckthebitch.com", + "theme": "double-windsor" +} diff --git a/users/fujieda.json b/users/fujieda.json index a16d3f9c..270cc441 100644 --- a/users/fujieda.json +++ b/users/fujieda.json @@ -1 +1,3 @@ -{"copyright":"Kazuhiro Fujieda "} \ No newline at end of file +{ + "copyright": "Kazuhiro Fujieda " +} diff --git a/users/fujimoto.json b/users/fujimoto.json index b415f5e2..187f99f7 100644 --- a/users/fujimoto.json +++ b/users/fujimoto.json @@ -1,6 +1,6 @@ { - "copyright": "Haruya Fujimoto", - "url": "http://qn33.github.io", - "format": "html", - "theme": "material-blue" + "copyright": "Haruya Fujimoto", + "url": "http://qn33.github.io", + "format": "html", + "theme": "material-blue" } diff --git a/users/fullaf.json b/users/fullaf.json index 1415d159..8506e021 100644 --- a/users/fullaf.json +++ b/users/fullaf.json @@ -1 +1,3 @@ -{"copyright":"Full AF"} \ No newline at end of file +{ + "copyright": "Full AF" +} diff --git a/users/functioncallback.json b/users/functioncallback.json index a6d8942a..99a7b95d 100644 --- a/users/functioncallback.json +++ b/users/functioncallback.json @@ -1 +1,6 @@ -{"copyright":"Wagner Camarao","url":"https:\/\/github.com\/functioncallback","email":"functioncallback@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Wagner Camarao", + "url": "https://github.com/functioncallback", + "email": "functioncallback@gmail.com", + "format": "txt" +} diff --git a/users/fusco.json b/users/fusco.json index b934b99a..da0bcb5f 100644 --- a/users/fusco.json +++ b/users/fusco.json @@ -1 +1,6 @@ -{"copyright":"Joseph Fusco","url":"http:\/\/josephfus.co","email":"hello@josephfus.co","format":"txt"} \ No newline at end of file +{ + "copyright": "Joseph Fusco", + "url": "http://josephfus.co", + "email": "hello@josephfus.co", + "format": "txt" +} diff --git a/users/futoase.json b/users/futoase.json index 03fbda2f..32b6b369 100644 --- a/users/futoase.json +++ b/users/futoase.json @@ -1 +1,3 @@ -{"copyright":"Keiji Matsuzaki"} \ No newline at end of file +{ + "copyright": "Keiji Matsuzaki" +} diff --git a/users/fwolf.json b/users/fwolf.json index 729a596e..048f5025 100644 --- a/users/fwolf.json +++ b/users/fwolf.json @@ -1 +1,4 @@ -{"copyright":"Fwolf","email":"fwolf.aide+MIT@gmail.com"} \ No newline at end of file +{ + "copyright": "Fwolf", + "email": "fwolf.aide+MIT@gmail.com" +} diff --git a/users/fyhuang.json b/users/fyhuang.json index 2f76e6ea..fb1092c7 100644 --- a/users/fyhuang.json +++ b/users/fyhuang.json @@ -1 +1,6 @@ -{"copyright":"Yifeng Huang","url":"http:\/\/nongraphical.com","email":"me@nongraphical.com","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Yifeng Huang", + "url": "http://nongraphical.com", + "email": "me@nongraphical.com", + "theme": "double-windsor" +} diff --git a/users/g0nh1n.json b/users/g0nh1n.json index 0c581059..f85a7cbf 100644 --- a/users/g0nh1n.json +++ b/users/g0nh1n.json @@ -1 +1,8 @@ -{"copyright":"Iv\u00e1n Gonzalo Hinojosa","url":"","email":"","format":"html","gravatar":true,"theme":"material-teal"} \ No newline at end of file +{ + "copyright": "Iv\u00e1n Gonzalo Hinojosa", + "url": "", + "email": "", + "format": "html", + "gravatar": true, + "theme": "material-teal" +} diff --git a/users/g0v.json b/users/g0v.json index 13fdceec..e322f69f 100644 --- a/users/g0v.json +++ b/users/g0v.json @@ -1 +1,4 @@ -{"copyright":"g0v Contributors","url":"http:\/\/g0v.tw"} \ No newline at end of file +{ + "copyright": "g0v Contributors", + "url": "http://g0v.tw" +} diff --git a/users/gableroux.json b/users/gableroux.json index 7f4fe9c8..1322d15c 100644 --- a/users/gableroux.json +++ b/users/gableroux.json @@ -1 +1,6 @@ -{"copyright":"Gabriel Le Breton","url":"http:\/\/gableroux.com","email":"lebreton.gabriel@gmail.com","format":"html"} \ No newline at end of file +{ + "copyright": "Gabriel Le Breton", + "url": "http://gableroux.com", + "email": "lebreton.gabriel@gmail.com", + "format": "html" +} diff --git a/users/gabriel.json b/users/gabriel.json index 34d123fb..829f640c 100644 --- a/users/gabriel.json +++ b/users/gabriel.json @@ -1 +1,5 @@ -{"copyright":"Gabriel Hase","email":"gabriel.hase@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Gabriel Hase", + "email": "gabriel.hase@gmail.com", + "format": "txt" +} diff --git a/users/gabrielecanepa.json b/users/gabrielecanepa.json index 0d1e46a9..728e19da 100644 --- a/users/gabrielecanepa.json +++ b/users/gabrielecanepa.json @@ -1 +1,5 @@ -{"copyright":"Gabriele Canepa","url":"https:\/\/gabriele.canepa.io","email":"gabriele@canepa.io"} +{ + "copyright": "Gabriele Canepa", + "url": "https://gabriele.canepa.io", + "email": "gabriele@canepa.io" +} diff --git a/users/gabrielgfa.json b/users/gabrielgfa.json index 0417b1a1..9bb3c910 100644 --- a/users/gabrielgfa.json +++ b/users/gabrielgfa.json @@ -1,6 +1,6 @@ { - "copyright": "Gabriel Garcia", - "url": "http://gabrielgfa.com", - "email": "gabrielgfa@gmail.com", - "theme": "default" + "copyright": "Gabriel Garcia", + "url": "http://gabrielgfa.com", + "email": "gabrielgfa@gmail.com", + "theme": "default" } diff --git a/users/gabrielgodoy.json b/users/gabrielgodoy.json index e8729de3..166fa6f6 100644 --- a/users/gabrielgodoy.json +++ b/users/gabrielgodoy.json @@ -1,5 +1,5 @@ -{ -"copyright": "Gabriel Godoy", -"url": "http:\/\/www.gabrielgodoy.com", -"email": "hi@gabrielgodoy.com" +{ + "copyright": "Gabriel Godoy", + "url": "http://www.gabrielgodoy.com", + "email": "hi@gabrielgodoy.com" } diff --git a/users/gabrielizaias.json b/users/gabrielizaias.json index 5f2e8d61..96ad07e1 100644 --- a/users/gabrielizaias.json +++ b/users/gabrielizaias.json @@ -1,7 +1,7 @@ { - "copyright": "Gabriel Izaias, https://izaias.co", - "url": "https://izaias.co", - "email": "gabriel.izaias@gmail.com", - "gravatar": true, - "theme": "material" + "copyright": "Gabriel Izaias, https://izaias.co", + "url": "https://izaias.co", + "email": "gabriel.izaias@gmail.com", + "gravatar": true, + "theme": "material" } diff --git a/users/gabrieljmj.json b/users/gabrieljmj.json index 812e36e0..afcc9d21 100644 --- a/users/gabrieljmj.json +++ b/users/gabrieljmj.json @@ -1,8 +1,8 @@ { - "copyright": "Gabriel Jacinto", - "url": "http://gabrieljmj.github.io", - "format": "txt", - "email": "gamjj74@hotmail.com", - "gravatar": true, - "theme": "default" + "copyright": "Gabriel Jacinto", + "url": "http://gabrieljmj.github.io", + "format": "txt", + "email": "gamjj74@hotmail.com", + "gravatar": true, + "theme": "default" } diff --git a/users/gabrielrcouto.json b/users/gabrielrcouto.json index a118055a..71f6b1e8 100644 --- a/users/gabrielrcouto.json +++ b/users/gabrielrcouto.json @@ -1 +1,6 @@ -{"copyright":"Gabriel Rodrigues Couto","url":"http:\/\/r3c.com.br","email":"gabriel@r3c.com.br","format":"txt"} \ No newline at end of file +{ + "copyright": "Gabriel Rodrigues Couto", + "url": "http://r3c.com.br", + "email": "gabriel@r3c.com.br", + "format": "txt" +} diff --git a/users/gabskoro.json b/users/gabskoro.json index 5cc5beb7..e4c16e1d 100644 --- a/users/gabskoro.json +++ b/users/gabskoro.json @@ -1 +1,6 @@ -{"copyright":"Gabrijel Škoro","url":"http://gabrijelskoro.com","email":"gabrijel.skoro@gmail.com","gravatar":true} +{ + "copyright": "Gabrijel \u00c5\u00a0koro", + "url": "http://gabrijelskoro.com", + "email": "gabrijel.skoro@gmail.com", + "gravatar": true +} diff --git a/users/gae-tap.json b/users/gae-tap.json index 3fd35c8b..7141b263 100644 --- a/users/gae-tap.json +++ b/users/gae-tap.json @@ -1 +1,3 @@ -{"copyright":"ENDOH takanao"} \ No newline at end of file +{ + "copyright": "ENDOH takanao" +} diff --git a/users/gamajo.json b/users/gamajo.json index f686ad9e..7432bd57 100644 --- a/users/gamajo.json +++ b/users/gamajo.json @@ -1 +1,3 @@ -{"copyright":"Gary Jones, Gamajo Tech"} \ No newline at end of file +{ + "copyright": "Gary Jones, Gamajo Tech" +} diff --git a/users/gammasoft.json b/users/gammasoft.json index d055725b..f564dede 100644 --- a/users/gammasoft.json +++ b/users/gammasoft.json @@ -1 +1,7 @@ -{"copyright":"Gammasoft Desenvolvimento de Software Ltda (CNPJ: 19.950.366\/0001-50)","url":"http:\/\/www.gammasoft.com.br","email":"contact@gammasoft.com.br","format":"html", "gravatar": true} +{ + "copyright": "Gammasoft Desenvolvimento de Software Ltda (CNPJ: 19.950.366/0001-50)", + "url": "http://www.gammasoft.com.br", + "email": "contact@gammasoft.com.br", + "format": "html", + "gravatar": true +} diff --git a/users/gao.json b/users/gao.json index fabfa1b0..98865c41 100644 --- a/users/gao.json +++ b/users/gao.json @@ -1 +1,4 @@ -{"copyright":"gao","url":"https:\/\/github.com\/gaogao-9"} \ No newline at end of file +{ + "copyright": "gao", + "url": "https://github.com/gaogao-9" +} diff --git a/users/gasolwu.json b/users/gasolwu.json index 8cfab6cd..3313ad96 100644 --- a/users/gasolwu.json +++ b/users/gasolwu.json @@ -1 +1,5 @@ -{"copyright":"Gasol Wu","email":"gasol.wu@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Gasol Wu", + "email": "gasol.wu@gmail.com", + "format": "txt" +} diff --git a/users/gauntlt.json b/users/gauntlt.json index 8a6ac046..f068e48f 100644 --- a/users/gauntlt.json +++ b/users/gauntlt.json @@ -1,4 +1,4 @@ { - "copyright": "James Wickett, Mani Tadayon, gauntlt.org", - "url": "https://github.com/thegauntlet/gauntlt" + "copyright": "James Wickett, Mani Tadayon, gauntlt.org", + "url": "https://github.com/thegauntlet/gauntlt" } diff --git a/users/gaurav.json b/users/gaurav.json index 1a06d832..b02aab40 100644 --- a/users/gaurav.json +++ b/users/gaurav.json @@ -1 +1,6 @@ -{"copyright":"Gaurav Singh","url":"http:\/\/sgaurav.in","email":"sgaurav.baghel@gmail.com","theme":"opensans"} \ No newline at end of file +{ + "copyright": "Gaurav Singh", + "url": "http://sgaurav.in", + "email": "sgaurav.baghel@gmail.com", + "theme": "opensans" +} diff --git a/users/gautam.json b/users/gautam.json index 11773c04..1702fc84 100644 --- a/users/gautam.json +++ b/users/gautam.json @@ -1 +1,5 @@ -{"copyright":"Gautam Lodhiya","email":"glodhiya89@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Gautam Lodhiya", + "email": "glodhiya89@gmail.com", + "format": "txt" +} diff --git a/users/gavin.json b/users/gavin.json index 942ca0ba..453c9b6f 100644 --- a/users/gavin.json +++ b/users/gavin.json @@ -1 +1,3 @@ -{"copyright":"Gavin Huang"} \ No newline at end of file +{ + "copyright": "Gavin Huang" +} diff --git a/users/gavinhungry.json b/users/gavinhungry.json index 0863fa4a..633ea4fe 100644 --- a/users/gavinhungry.json +++ b/users/gavinhungry.json @@ -1 +1,5 @@ -{"copyright":"Gavin Lloyd","url":"https:\/\/gavinhungry.io","email":"gavinhungry@gmail.com"} \ No newline at end of file +{ + "copyright": "Gavin Lloyd", + "url": "https://gavinhungry.io", + "email": "gavinhungry@gmail.com" +} diff --git a/users/gb.json b/users/gb.json index d751adfa..c025d5c4 100644 --- a/users/gb.json +++ b/users/gb.json @@ -1,3 +1,3 @@ { - "copyright": "George Bashi, http://georgebashi.com" + "copyright": "George Bashi, http://georgebashi.com" } diff --git a/users/gbleux.json b/users/gbleux.json index 0c417655..f6b4a781 100644 --- a/users/gbleux.json +++ b/users/gbleux.json @@ -1 +1,4 @@ -{"copyright":"Gordon Bleux","url":"https:\/\/github.com\/gbleux\/"} \ No newline at end of file +{ + "copyright": "Gordon Bleux", + "url": "https://github.com/gbleux/" +} diff --git a/users/gdqyn.json b/users/gdqyn.json index 48d01363..56c487de 100644 --- a/users/gdqyn.json +++ b/users/gdqyn.json @@ -1 +1,6 @@ -{"copyright":"gdqyn","url":"http:\/\/gdqyn.com","email":"gdqyn@mysite.com","format":"txt"} \ No newline at end of file +{ + "copyright": "gdqyn", + "url": "http://gdqyn.com", + "email": "gdqyn@mysite.com", + "format": "txt" +} diff --git a/users/geeky.json b/users/geeky.json index 6ae660d9..c19cb778 100644 --- a/users/geeky.json +++ b/users/geeky.json @@ -1 +1,3 @@ -{"copyright":"Arne Krause"} \ No newline at end of file +{ + "copyright": "Arne Krause" +} diff --git a/users/genesislive.json b/users/genesislive.json index b35003af..f48562d3 100644 --- a/users/genesislive.json +++ b/users/genesislive.json @@ -1 +1,8 @@ -{ "copyright": "genesislive", "url": "https://github.com/genesislive", "email": "genesislive@126.com", "format": "html", "gravatar": true, "theme": "black-beauty" } +{ + "copyright": "genesislive", + "url": "https://github.com/genesislive", + "email": "genesislive@126.com", + "format": "html", + "gravatar": true, + "theme": "black-beauty" +} diff --git a/users/georapbox.json b/users/georapbox.json index 37ad809e..80a17d39 100644 --- a/users/georapbox.json +++ b/users/georapbox.json @@ -1,8 +1,8 @@ { - "copyright": "George Raptis", - "url": "https://georapbox.github.io", - "email": "georapbox@gmail.com", - "gravatar": true, - "theme": "dusk", - "format": "html" + "copyright": "George Raptis", + "url": "https://georapbox.github.io", + "email": "georapbox@gmail.com", + "gravatar": true, + "theme": "dusk", + "format": "html" } diff --git a/users/georgerogers42.json b/users/georgerogers42.json index ed022efe..e9b900c2 100644 --- a/users/georgerogers42.json +++ b/users/georgerogers42.json @@ -1 +1,3 @@ -{"copyright":"George Rogers"} \ No newline at end of file +{ + "copyright": "George Rogers" +} diff --git a/users/georgeyue.json b/users/georgeyue.json index 831102de..da2c5d4a 100644 --- a/users/georgeyue.json +++ b/users/georgeyue.json @@ -1 +1,5 @@ -{"copyright":"George Yue","url":"https:\/\/github.com\/georgeyue","format":"txt"} \ No newline at end of file +{ + "copyright": "George Yue", + "url": "https://github.com/georgeyue", + "format": "txt" +} diff --git a/users/geota.json b/users/geota.json index 80bc7cfe..d8ef70d7 100644 --- a/users/geota.json +++ b/users/geota.json @@ -1 +1,3 @@ -{"copyright":"Adrian Maceiras"} \ No newline at end of file +{ + "copyright": "Adrian Maceiras" +} diff --git a/users/geovation.json b/users/geovation.json index 2d6edde3..19751e72 100644 --- a/users/geovation.json +++ b/users/geovation.json @@ -1,3 +1,3 @@ { - "copyright": "Geovation, https://geovation.uk/" + "copyright": "Geovation, https://geovation.uk/" } diff --git a/users/gep13.json b/users/gep13.json index 18a20cb8..4e793685 100644 --- a/users/gep13.json +++ b/users/gep13.json @@ -1,4 +1,4 @@ { - "copyright":"Gary Ewan Park", - "url": "http://www.gep13.co.uk" -} \ No newline at end of file + "copyright": "Gary Ewan Park", + "url": "http://www.gep13.co.uk" +} diff --git a/users/ger.json b/users/ger.json index acc356d2..714b0384 100644 --- a/users/ger.json +++ b/users/ger.json @@ -1 +1,3 @@ -{"copyright":"Geraldi Sutanto"} \ No newline at end of file +{ + "copyright": "Geraldi Sutanto" +} diff --git a/users/gersonthiago.json b/users/gersonthiago.json index e2913ea3..49271d83 100644 --- a/users/gersonthiago.json +++ b/users/gersonthiago.json @@ -1 +1,6 @@ -{"copyright":"Gerson Thiago","url":"http:\/\/gersonthiago.com","email":"gersonthiago.lima@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Gerson Thiago", + "url": "http://gersonthiago.com", + "email": "gersonthiago.lima@gmail.com", + "format": "txt" +} diff --git a/users/geta6.json b/users/geta6.json index ce29ee2e..7cf370a2 100644 --- a/users/geta6.json +++ b/users/geta6.json @@ -1 +1,4 @@ -{"copyright":"Hirotaka Katakura","url":"https:\/\/github.com\/geta6"} \ No newline at end of file +{ + "copyright": "Hirotaka Katakura", + "url": "https://github.com/geta6" +} diff --git a/users/getify.json b/users/getify.json index b17233f8..2d686032 100644 --- a/users/getify.json +++ b/users/getify.json @@ -1,7 +1,7 @@ { - "copyright": "Kyle Simpson", - "url": "http://getify.me", - "email": "getify@gmail.com", - "gravatar": true, - "theme": "eula-modern" + "copyright": "Kyle Simpson", + "url": "http://getify.me", + "email": "getify@gmail.com", + "gravatar": true, + "theme": "eula-modern" } diff --git a/users/gfk.json b/users/gfk.json index c3160e29..66c97c8c 100644 --- a/users/gfk.json +++ b/users/gfk.json @@ -1 +1,3 @@ -{"copyright":"GfK"} \ No newline at end of file +{ + "copyright": "GfK" +} diff --git a/users/gggkiller.json b/users/gggkiller.json index 48bf78d1..c857148b 100644 --- a/users/gggkiller.json +++ b/users/gggkiller.json @@ -1 +1,8 @@ -{"copyright":"GGG KILLER","email":"gggkiller2@gmail.com","format":"html", "url":"http://gggkiller.com","gravatar":true,"theme":"double-windsor"} +{ + "copyright": "GGG KILLER", + "email": "gggkiller2@gmail.com", + "format": "html", + "url": "http://gggkiller.com", + "gravatar": true, + "theme": "double-windsor" +} diff --git a/users/ghedo.json b/users/ghedo.json index 7c6cda2c..b5baf065 100644 --- a/users/ghedo.json +++ b/users/ghedo.json @@ -1 +1,3 @@ -{"copyright":"Alessandro Ghedini"} \ No newline at end of file +{ + "copyright": "Alessandro Ghedini" +} diff --git a/users/gherlein.json b/users/gherlein.json index 490078df..b5171979 100644 --- a/users/gherlein.json +++ b/users/gherlein.json @@ -1,6 +1,6 @@ { - "copyright": "Greg Herlein", - "url": "https://www.linkedin.com/in/gherlein/", - "email": "gherlein@herlein.com", - "gravatar": true + "copyright": "Greg Herlein", + "url": "https://www.linkedin.com/in/gherlein/", + "email": "gherlein@herlein.com", + "gravatar": true } diff --git a/users/ghozylab.json b/users/ghozylab.json index 2d04dcd4..e26f37b1 100644 --- a/users/ghozylab.json +++ b/users/ghozylab.json @@ -1,7 +1,7 @@ { - "copyright": "PT. GHOZY LAB LLC", - "url": "https://ghozylab.com", - "theme": "material-light-blue", - "email": "license@ghozylab.com", - "gravatar": true + "copyright": "PT. GHOZY LAB LLC", + "url": "https://ghozylab.com", + "theme": "material-light-blue", + "email": "license@ghozylab.com", + "gravatar": true } diff --git a/users/giancarlovillena.json b/users/giancarlovillena.json index 823301e0..81dc960b 100644 --- a/users/giancarlovillena.json +++ b/users/giancarlovillena.json @@ -1,5 +1,5 @@ { - "copyright": "Giancarlo Villena", - "url": "http://giancarlovillena.pe", - "email": "yo@giancarlovillena.pe" + "copyright": "Giancarlo Villena", + "url": "http://giancarlovillena.pe", + "email": "yo@giancarlovillena.pe" } diff --git a/users/gianu.json b/users/gianu.json index 72ce11cd..b0821c2e 100644 --- a/users/gianu.json +++ b/users/gianu.json @@ -1 +1,8 @@ -{"copyright":"Sergio Rafael Gianazza","url":"http:\/\/softwarepsychonaut.com","email":"sgianazza@gmail.com","format":"html","gravatar":true,"theme":"default"} \ No newline at end of file +{ + "copyright": "Sergio Rafael Gianazza", + "url": "http://softwarepsychonaut.com", + "email": "sgianazza@gmail.com", + "format": "html", + "gravatar": true, + "theme": "default" +} diff --git a/users/gibsjose.json b/users/gibsjose.json index 3eca9ffa..67e2e749 100644 --- a/users/gibsjose.json +++ b/users/gibsjose.json @@ -1,8 +1,8 @@ { - "copyright":"Joe Gibson", - "url":"https://gibsjose.com", - "email":"joseph.gibson@nasa.gov", - "format": "html", - "gravatar": false, - "theme": "double-windsor" + "copyright": "Joe Gibson", + "url": "https://gibsjose.com", + "email": "joseph.gibson@nasa.gov", + "format": "html", + "gravatar": false, + "theme": "double-windsor" } diff --git a/users/gigony.json b/users/gigony.json index 31f685a0..bf3410ad 100644 --- a/users/gigony.json +++ b/users/gigony.json @@ -1,4 +1,4 @@ { - "copyright": "Gigon Bae, http://gigony.tistory.com", - "url": "http://gigony.tistory.com" + "copyright": "Gigon Bae, http://gigony.tistory.com", + "url": "http://gigony.tistory.com" } diff --git a/users/gilmoreorless.json b/users/gilmoreorless.json index 2615485b..fd89487b 100644 --- a/users/gilmoreorless.json +++ b/users/gilmoreorless.json @@ -1,5 +1,5 @@ { - "copyright": "Gilmore Davidson", - "url": "http://shoehornwithteeth.com", - "theme": "double-windsor" -} \ No newline at end of file + "copyright": "Gilmore Davidson", + "url": "http://shoehornwithteeth.com", + "theme": "double-windsor" +} diff --git a/users/gine.json b/users/gine.json index 37225272..29576afd 100644 --- a/users/gine.json +++ b/users/gine.json @@ -1,4 +1,4 @@ { - "copyright": "Chris Austin", - "email": "caustin.adwan@gmail.com" + "copyright": "Chris Austin", + "email": "caustin.adwan@gmail.com" } diff --git a/users/ginger.json b/users/ginger.json index 8f24882b..63115e91 100644 --- a/users/ginger.json +++ b/users/ginger.json @@ -1 +1,3 @@ -{"copyright":"Ginger Griffis"} \ No newline at end of file +{ + "copyright": "Ginger Griffis" +} diff --git a/users/girvo.json b/users/girvo.json index 7f5e3df6..fdb426f9 100644 --- a/users/girvo.json +++ b/users/girvo.json @@ -1 +1,3 @@ -{"copyright":"Joshua Girvin"} \ No newline at end of file +{ + "copyright": "Joshua Girvin" +} diff --git a/users/girvo2.json b/users/girvo2.json index 64692ada..d3a7238e 100644 --- a/users/girvo2.json +++ b/users/girvo2.json @@ -1 +1,4 @@ -{"copyright":"Joshua Girvin","format":"txt"} \ No newline at end of file +{ + "copyright": "Joshua Girvin", + "format": "txt" +} diff --git a/users/github.json b/users/github.json index 58fd0377..4b04831f 100644 --- a/users/github.json +++ b/users/github.json @@ -1 +1,5 @@ -{"copyright":"Github Inc","url":"https:\/\/github.com","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Github Inc", + "url": "https://github.com", + "theme": "double-windsor" +} diff --git a/users/gkatsev.json b/users/gkatsev.json index 57d23242..86fbc1d8 100644 --- a/users/gkatsev.json +++ b/users/gkatsev.json @@ -1 +1,6 @@ -{"copyright":"Gary Katsevman","url":"http:\/\/gkatsev.com","email":"me@gkatsev.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Gary Katsevman", + "url": "http://gkatsev.com", + "email": "me@gkatsev.com", + "format": "txt" +} diff --git a/users/gkralik.json b/users/gkralik.json index 9e80d354..da058233 100644 --- a/users/gkralik.json +++ b/users/gkralik.json @@ -1,8 +1,8 @@ { - "copyright": "Gergely Králik", - "url": "https://kralik.io", - "email": "gergely@kralik.io", - "gravatar": false, - "theme": "solarized", - "format": "html" + "copyright": "Gergely Kr\u00c3\u00a1lik", + "url": "https://kralik.io", + "email": "gergely@kralik.io", + "gravatar": false, + "theme": "solarized", + "format": "html" } diff --git a/users/gld1982ltd.json b/users/gld1982ltd.json index 645d7a82..fff2615b 100644 --- a/users/gld1982ltd.json +++ b/users/gld1982ltd.json @@ -1,8 +1,8 @@ { - "copyright": "Gary DeLaney", - "url": "http://chickenchimichan.ga", - "email": "gld1982ltd@gmail.com", - "format": "html", - "gravatar": true, - "theme": "eula-modern" + "copyright": "Gary DeLaney", + "url": "http://chickenchimichan.ga", + "email": "gld1982ltd@gmail.com", + "format": "html", + "gravatar": true, + "theme": "eula-modern" } diff --git a/users/glsee.json b/users/glsee.json index 1ad6eda1..05325094 100644 --- a/users/glsee.json +++ b/users/glsee.json @@ -1 +1,3 @@ -{"copyright":"See Guo Lin"} \ No newline at end of file +{ + "copyright": "See Guo Lin" +} diff --git a/users/glynford.json b/users/glynford.json index 1c4bdcb0..3c0e52c9 100644 --- a/users/glynford.json +++ b/users/glynford.json @@ -1 +1,6 @@ -{"copyright":"Glynford Padao","url":"http:\/\/g.padao.org","email":"glynford@padao.org","format":"txt"} \ No newline at end of file +{ + "copyright": "Glynford Padao", + "url": "http://g.padao.org", + "email": "glynford@padao.org", + "format": "txt" +} diff --git a/users/gmanricks.json b/users/gmanricks.json index 91979d73..95deda8c 100644 --- a/users/gmanricks.json +++ b/users/gmanricks.json @@ -1 +1,5 @@ -{"copyright":"Gabriel Manricks","url":"http:\/\/gabrielmanricks.com","email":"gmanricks@icloud.com"} \ No newline at end of file +{ + "copyright": "Gabriel Manricks", + "url": "http://gabrielmanricks.com", + "email": "gmanricks@icloud.com" +} diff --git a/users/gmph.json b/users/gmph.json index f7cb8d21..b0553730 100644 --- a/users/gmph.json +++ b/users/gmph.json @@ -1 +1,6 @@ -{"copyright":"Graham Macphee","url":"http:\/\/grahammacphee.co.uk","email":"hi@grahammacphee.co.uk","format":"txt"} \ No newline at end of file +{ + "copyright": "Graham Macphee", + "url": "http://grahammacphee.co.uk", + "email": "hi@grahammacphee.co.uk", + "format": "txt" +} diff --git a/users/gogoout.json b/users/gogoout.json index 34ada770..0196d7b7 100644 --- a/users/gogoout.json +++ b/users/gogoout.json @@ -1,7 +1,7 @@ { - "copyright": "Gogoout", - "url": "https://gogoout.github.io/resumecard/", - "email": "gogoout@gmail.com", - "gravatar": true, - "theme": "8bits-monochrome" + "copyright": "Gogoout", + "url": "https://gogoout.github.io/resumecard/", + "email": "gogoout@gmail.com", + "gravatar": true, + "theme": "8bits-monochrome" } diff --git a/users/goji.json b/users/goji.json index bc263cb2..ef39ea0b 100644 --- a/users/goji.json +++ b/users/goji.json @@ -1 +1,7 @@ -{"copyright":"Ghozy Arif Fajri, @gojigeje","url":"http:\/\/goji.web.id","email":"gojigeje@gmail.com","theme":"black-beauty","gravatar":true} \ No newline at end of file +{ + "copyright": "Ghozy Arif Fajri, @gojigeje", + "url": "http://goji.web.id", + "email": "gojigeje@gmail.com", + "theme": "black-beauty", + "gravatar": true +} diff --git a/users/gojigeje.json b/users/gojigeje.json index bc263cb2..ef39ea0b 100644 --- a/users/gojigeje.json +++ b/users/gojigeje.json @@ -1 +1,7 @@ -{"copyright":"Ghozy Arif Fajri, @gojigeje","url":"http:\/\/goji.web.id","email":"gojigeje@gmail.com","theme":"black-beauty","gravatar":true} \ No newline at end of file +{ + "copyright": "Ghozy Arif Fajri, @gojigeje", + "url": "http://goji.web.id", + "email": "gojigeje@gmail.com", + "theme": "black-beauty", + "gravatar": true +} diff --git a/users/gokaygurcan.json b/users/gokaygurcan.json index e9941432..9585f538 100644 --- a/users/gokaygurcan.json +++ b/users/gokaygurcan.json @@ -1,7 +1,7 @@ { - "copyright": "Gökay Gürcan", - "url": "https://www.gokaygurcan.com/", - "email": "info@gokaygurcan.com", - "format": "html", - "theme": "default" + "copyright": "G\u00c3\u00b6kay G\u00c3\u00bcrcan", + "url": "https://www.gokaygurcan.com/", + "email": "info@gokaygurcan.com", + "format": "html", + "theme": "default" } diff --git a/users/gokmen.json b/users/gokmen.json index ca0fda8c..11bb1973 100644 --- a/users/gokmen.json +++ b/users/gokmen.json @@ -1 +1,6 @@ -{"copyright":"G\u00f6kmen G\u00f6rgen","url":"http:\/\/gokmengorgen.net","email":"gkmngrgn@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "G\u00f6kmen G\u00f6rgen", + "url": "http://gokmengorgen.net", + "email": "gkmngrgn@gmail.com", + "format": "txt" +} diff --git a/users/goldsborough.json b/users/goldsborough.json index ab36c237..afde7fe1 100644 --- a/users/goldsborough.json +++ b/users/goldsborough.json @@ -1 +1,5 @@ -{"copyright":"Peter Goldsborough","email":"petergoldsborough@hotmail.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Peter Goldsborough", + "email": "petergoldsborough@hotmail.com", + "gravatar": true +} diff --git a/users/goodybag.json b/users/goodybag.json index 63e5052a..29b2055d 100644 --- a/users/goodybag.json +++ b/users/goodybag.json @@ -1 +1,6 @@ -{"copyright":"Goodybag, Inc.","url":"http:\/\/www.goodybag.com","email":"engineering@goodybag.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Goodybag, Inc.", + "url": "http://www.goodybag.com", + "email": "engineering@goodybag.com", + "format": "txt" +} diff --git a/users/googledrivewpmedia.json b/users/googledrivewpmedia.json index 53a593fc..97a4182a 100644 --- a/users/googledrivewpmedia.json +++ b/users/googledrivewpmedia.json @@ -1 +1,6 @@ -{"copyright":"Moch Amir, http:\/\/mochamir.com","url":"https:\/\/wordpress.org\/plugins\/google-drive-wp-media\/","email":"surat@mochamir.com","format":"html"} \ No newline at end of file +{ + "copyright": "Moch Amir, http://mochamir.com", + "url": "https://wordpress.org/plugins/google-drive-wp-media/", + "email": "surat@mochamir.com", + "format": "html" +} diff --git a/users/gordondiggs.json b/users/gordondiggs.json index e31831b3..14b708db 100644 --- a/users/gordondiggs.json +++ b/users/gordondiggs.json @@ -1 +1,6 @@ -{"copyright":"Gordon Diggs","url":"http:\/\/gordondiggs.com","email":"gordon@diggs.me","format":"txt"} \ No newline at end of file +{ + "copyright": "Gordon Diggs", + "url": "http://gordondiggs.com", + "email": "gordon@diggs.me", + "format": "txt" +} diff --git a/users/gossi.json b/users/gossi.json index d4f608f5..26cf4a8a 100644 --- a/users/gossi.json +++ b/users/gossi.json @@ -1 +1,4 @@ -{"copyright":"Thomas Gossmann, http:\/\/gos.si","url":"http:\/\/gos.si"} \ No newline at end of file +{ + "copyright": "Thomas Gossmann, http://gos.si", + "url": "http://gos.si" +} diff --git a/users/gphofficial.json b/users/gphofficial.json index 22e35cfc..8bc150ea 100644 --- a/users/gphofficial.json +++ b/users/gphofficial.json @@ -1 +1,7 @@ -{ "copyright": "Goh Puay Hiang", "url": "https:\/\/gphofficial.github.com\/", "email": "gphofficial+public@gmail.com", "format": "html","gravatar": true } +{ + "copyright": "Goh Puay Hiang", + "url": "https://gphofficial.github.com/", + "email": "gphofficial+public@gmail.com", + "format": "html", + "gravatar": true +} diff --git a/users/gpl.json b/users/gpl.json index 7f532b6d..a6eddc36 100644 --- a/users/gpl.json +++ b/users/gpl.json @@ -1 +1,4 @@ -{"copyright":"GPL Project Developer Who Made Changes \n\nThis is an example of sublicensing an MIT licensed work under the\nterms of the GNU GPLv3+.\n\nThis file is free software: you may copy, redistribute and\/or\nmodify it under the terms of the GNU General Public License version 3\nas published by the Free Software Foundation, or (at\nyour option) any later version.\n\nThis file is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nGeneral Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program. If not, see\n.\n\nThis file incorporates work covered by the following copyright\nand permission notice:\n\nCopyright \u00a9 2013 Original Contributor Name ","format":"txt"} \ No newline at end of file +{ + "copyright": "GPL Project Developer Who Made Changes \n\nThis is an example of sublicensing an MIT licensed work under the\nterms of the GNU GPLv3+.\n\nThis file is free software: you may copy, redistribute and/or\nmodify it under the terms of the GNU General Public License version 3\nas published by the Free Software Foundation, or (at\nyour option) any later version.\n\nThis file is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nGeneral Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program. If not, see\n.\n\nThis file incorporates work covered by the following copyright\nand permission notice:\n\nCopyright \u00a9 2013 Original Contributor Name ", + "format": "txt" +} diff --git a/users/gplv2.json b/users/gplv2.json index d22db50d..0fbe59c0 100644 --- a/users/gplv2.json +++ b/users/gplv2.json @@ -1 +1,4 @@ -{"copyright":"GPL Project Developer Who Made Changes \n\nThis is an example of sublicensing an MIT licensed work under the terms of\nthe GNU GPLv2+.\n\nThis file is free software: you may copy, redistribute and\/or modify it \nunder the terms of the GNU General Public License as published by the \nFree Software Foundation, either version 2 of the License, or (at your \noption) any later version. \n\nThis file is distributed in the hope that it will be useful, but \nWITHOUT ANY WARRANTY; without even the implied warranty of \nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU \nGeneral Public License for more details. \n\nYou should have received a copy of the GNU General Public License \nalong with this program. If not, see . \n\nThis file incorporates work covered by the following copyright and \npermission notice:\n\nCopyright \u00a9 2013 Original Contributor Name ","format":"txt"} \ No newline at end of file +{ + "copyright": "GPL Project Developer Who Made Changes \n\nThis is an example of sublicensing an MIT licensed work under the terms of\nthe GNU GPLv2+.\n\nThis file is free software: you may copy, redistribute and/or modify it \nunder the terms of the GNU General Public License as published by the \nFree Software Foundation, either version 2 of the License, or (at your \noption) any later version. \n\nThis file is distributed in the hope that it will be useful, but \nWITHOUT ANY WARRANTY; without even the implied warranty of \nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU \nGeneral Public License for more details. \n\nYou should have received a copy of the GNU General Public License \nalong with this program. If not, see . \n\nThis file incorporates work covered by the following copyright and \npermission notice:\n\nCopyright \u00a9 2013 Original Contributor Name ", + "format": "txt" +} diff --git a/users/gplv3.json b/users/gplv3.json index 95b7ada4..7be1d97a 100644 --- a/users/gplv3.json +++ b/users/gplv3.json @@ -1 +1,4 @@ -{"copyright":"GPL Project Developer Who Made Changes \n\nThis is an example of sublicensing an MIT licensed work under the terms of\nthe GNU GPLv3+.\n\nThis file is free software: you may copy, redistribute and\/or modify it \nunder the terms of the GNU General Public License as published by the \nFree Software Foundation, either version 3 of the License, or (at your \noption) any later version. \n\nThis file is distributed in the hope that it will be useful, but \nWITHOUT ANY WARRANTY; without even the implied warranty of \nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU \nGeneral Public License for more details. \n\nYou should have received a copy of the GNU General Public License \nalong with this program. If not, see . \n\nThis file incorporates work covered by the following copyright and \npermission notice:\n\nCopyright \u00a9 2013 Original Contributor-Name ","format":"txt"} \ No newline at end of file +{ + "copyright": "GPL Project Developer Who Made Changes \n\nThis is an example of sublicensing an MIT licensed work under the terms of\nthe GNU GPLv3+.\n\nThis file is free software: you may copy, redistribute and/or modify it \nunder the terms of the GNU General Public License as published by the \nFree Software Foundation, either version 3 of the License, or (at your \noption) any later version. \n\nThis file is distributed in the hope that it will be useful, but \nWITHOUT ANY WARRANTY; without even the implied warranty of \nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU \nGeneral Public License for more details. \n\nYou should have received a copy of the GNU General Public License \nalong with this program. If not, see . \n\nThis file incorporates work covered by the following copyright and \npermission notice:\n\nCopyright \u00a9 2013 Original Contributor-Name ", + "format": "txt" +} diff --git a/users/graham.json b/users/graham.json index 84ec6b1b..d3e8afb6 100644 --- a/users/graham.json +++ b/users/graham.json @@ -1,5 +1,5 @@ { - "copyright": "Graham Licence, http://blog.grahamlicence.co.uk", - "url": "http://blog.grahamlicence.co.uk", - "theme": "double-windsor" + "copyright": "Graham Licence, http://blog.grahamlicence.co.uk", + "url": "http://blog.grahamlicence.co.uk", + "theme": "double-windsor" } diff --git a/users/grapestack.json b/users/grapestack.json index fc63a290..73e1ec34 100644 --- a/users/grapestack.json +++ b/users/grapestack.json @@ -1 +1,6 @@ -{"copyright":"GRAPE Stack","url":"http:\/\/www.grapestack.com","email":"license@grapestack.com","format":"txt"} \ No newline at end of file +{ + "copyright": "GRAPE Stack", + "url": "http://www.grapestack.com", + "email": "license@grapestack.com", + "format": "txt" +} diff --git a/users/grapevine.json b/users/grapevine.json index 284b2a42..4b76f4bb 100644 --- a/users/grapevine.json +++ b/users/grapevine.json @@ -1 +1,6 @@ -{"copyright":"Marc H. Weiner","url":"http:\/\/www.wizardlogic.com","email":"mhweiner234@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Marc H. Weiner", + "url": "http://www.wizardlogic.com", + "email": "mhweiner234@gmail.com", + "format": "txt" +} diff --git a/users/grawity.json b/users/grawity.json index a31a7ea8..4a31537e 100644 --- a/users/grawity.json +++ b/users/grawity.json @@ -1,6 +1,6 @@ { - "copyright": "Mantas Mikulėnas", - "email": "grawity@gmail.com", - "url": "http://nullroute.eu.org/~grawity/", - "format": "txt" + "copyright": "Mantas Mikul\u00c4\u2014nas", + "email": "grawity@gmail.com", + "url": "http://nullroute.eu.org/~grawity/", + "format": "txt" } diff --git a/users/gre.json b/users/gre.json index b6ad97b1..e0479f85 100644 --- a/users/gre.json +++ b/users/gre.json @@ -1 +1,5 @@ -{"copyright":"Ga\u00ebtan Renaudeau","url":"http:\/\/greweb.fr","email":"renaudeau.gaetan@gmail.com"} \ No newline at end of file +{ + "copyright": "Ga\u00ebtan Renaudeau", + "url": "http://greweb.fr", + "email": "renaudeau.gaetan@gmail.com" +} diff --git a/users/greatwizard.json b/users/greatwizard.json index c5077433..f9efdd6e 100644 --- a/users/greatwizard.json +++ b/users/greatwizard.json @@ -1,8 +1,8 @@ { - "copyright": "Guillaume Gérard, http://guillaume.gerard.pm", - "url": "http://guillaume.gerard.pm", - "email": "guillaume.gerard88@gmail.com", - "format": "html", - "gravatar": true, - "theme": "material-deep-orange" + "copyright": "Guillaume G\u00c3\u00a9rard, http://guillaume.gerard.pm", + "url": "http://guillaume.gerard.pm", + "email": "guillaume.gerard88@gmail.com", + "format": "html", + "gravatar": true, + "theme": "material-deep-orange" } diff --git a/users/green.json b/users/green.json index a113e5ea..4e6fa8f0 100644 --- a/users/green.json +++ b/users/green.json @@ -1 +1,3 @@ -{"copyright":"Anthony Green"} \ No newline at end of file +{ + "copyright": "Anthony Green" +} diff --git a/users/greenify.json b/users/greenify.json index e572c9a7..ba6a86cd 100644 --- a/users/greenify.json +++ b/users/greenify.json @@ -1 +1,8 @@ -{"copyright":"greenify","url":"https:\/\/github.com\/greenify","email":"greeenify@gmail.com","format":"html","gravatar":"true","theme":"magicmint"} \ No newline at end of file +{ + "copyright": "greenify", + "url": "https://github.com/greenify", + "email": "greeenify@gmail.com", + "format": "html", + "gravatar": "true", + "theme": "magicmint" +} diff --git a/users/gregarmer.json b/users/gregarmer.json index b16b049e..16efc29f 100644 --- a/users/gregarmer.json +++ b/users/gregarmer.json @@ -1 +1,7 @@ -{"copyright":"Gregory Armer","url":"https:\/\/sigterm.sh","email":"greg@sigterm.sh","gravatar":true,"theme":"eula-modern"} \ No newline at end of file +{ + "copyright": "Gregory Armer", + "url": "https://sigterm.sh", + "email": "greg@sigterm.sh", + "gravatar": true, + "theme": "eula-modern" +} diff --git a/users/grekko.json b/users/grekko.json index 7fd6388c..000ae630 100644 --- a/users/grekko.json +++ b/users/grekko.json @@ -1 +1,8 @@ -{"copyright":"Gregory Igelmund","url":"http:\/\/grekko.de","email":"me@grekko.de","format":"html","theme":"double-windsor","gravatar":true} +{ + "copyright": "Gregory Igelmund", + "url": "http://grekko.de", + "email": "me@grekko.de", + "format": "html", + "theme": "double-windsor", + "gravatar": true +} diff --git a/users/greweb.json b/users/greweb.json index 9967a18c..70214bb5a 100644 --- a/users/greweb.json +++ b/users/greweb.json @@ -1 +1,6 @@ -{"copyright":"Ga\u00ebtan Renaudeau","url":"http:\/\/greweb.fr","email":"renaudeau.gaetan@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Ga\u00ebtan Renaudeau", + "url": "http://greweb.fr", + "email": "renaudeau.gaetan@gmail.com", + "format": "txt" +} diff --git a/users/greyhoundforty.json b/users/greyhoundforty.json index 140227f0..17295d22 100644 --- a/users/greyhoundforty.json +++ b/users/greyhoundforty.json @@ -1 +1,3 @@ -{"copyright":"Ryan Tiffany"} \ No newline at end of file +{ + "copyright": "Ryan Tiffany" +} diff --git a/users/greystate.json b/users/greystate.json index c7ac5c5e..d8abddab 100644 --- a/users/greystate.json +++ b/users/greystate.json @@ -1,5 +1,5 @@ { - "copyright": "Chriztian Steinmeier, http://greystate.dk", - "url": "http://greystate.dk", - "email": "chriztian@steinmeier.dk" -} \ No newline at end of file + "copyright": "Chriztian Steinmeier, http://greystate.dk", + "url": "http://greystate.dk", + "email": "chriztian@steinmeier.dk" +} diff --git a/users/groenewege.json b/users/groenewege.json index 7dbe8055..6d978614 100644 --- a/users/groenewege.json +++ b/users/groenewege.json @@ -1 +1,4 @@ -{"copyright":"Gunther Groenewege, http:\/\/groenewege.com","url":"http:\/\/groenewege.com"} \ No newline at end of file +{ + "copyright": "Gunther Groenewege, http://groenewege.com", + "url": "http://groenewege.com" +} diff --git a/users/grvcoelho.json b/users/grvcoelho.json index 00839101..934efeea 100644 --- a/users/grvcoelho.json +++ b/users/grvcoelho.json @@ -1 +1,4 @@ -{"copyright":"Guilherme Rv Coelho","email":"guilhermervcoelho@gmail.com"} \ No newline at end of file +{ + "copyright": "Guilherme Rv Coelho", + "email": "guilhermervcoelho@gmail.com" +} diff --git a/users/gryftir.json b/users/gryftir.json index 3ab91846..8d17face 100644 --- a/users/gryftir.json +++ b/users/gryftir.json @@ -1 +1,6 @@ -{"copyright":"Lawrence Jacob Siebert","url":"https:\/\/github.com\/gryftir\/get_number","email":"gryftir@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Lawrence Jacob Siebert", + "url": "https://github.com/gryftir/get_number", + "email": "gryftir@gmail.com", + "format": "txt" +} diff --git a/users/gsimard.json b/users/gsimard.json index 31301a11..0b45a6d1 100644 --- a/users/gsimard.json +++ b/users/gsimard.json @@ -1 +1,3 @@ -{"copyright":"Guillaume Simard"} \ No newline at end of file +{ + "copyright": "Guillaume Simard" +} diff --git a/users/gtierney.json b/users/gtierney.json index 5e1bd34b..b38770c4 100644 --- a/users/gtierney.json +++ b/users/gtierney.json @@ -1 +1,6 @@ -{"copyright":"Gary Tierney","url":"https:\/\/protectyour.pw\/","email":"gary.tierney@gmx.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Gary Tierney", + "url": "https://protectyour.pw/", + "email": "gary.tierney@gmx.com", + "format": "txt" +} diff --git a/users/gtomitsuka.json b/users/gtomitsuka.json index f71a4311..f57e329f 100644 --- a/users/gtomitsuka.json +++ b/users/gtomitsuka.json @@ -1 +1,3 @@ -{"copyright":"Gabriel Tomitsuka"} \ No newline at end of file +{ + "copyright": "Gabriel Tomitsuka" +} diff --git a/users/gtrrz-victor.json b/users/gtrrz-victor.json index 10305117..90c8b277 100644 --- a/users/gtrrz-victor.json +++ b/users/gtrrz-victor.json @@ -1 +1,8 @@ -{"copyright":"V\u00edctor Guti\u00e9rrez","url":"www.gtrrzvictor.com","email":"dev@gtrrzvictor.com","format":"html","gravatar":true,"theme":"material-light-blue"} \ No newline at end of file +{ + "copyright": "V\u00edctor Guti\u00e9rrez", + "url": "www.gtrrzvictor.com", + "email": "dev@gtrrzvictor.com", + "format": "html", + "gravatar": true, + "theme": "material-light-blue" +} diff --git a/users/gugod.json b/users/gugod.json index 36033b3e..90d9aa14 100644 --- a/users/gugod.json +++ b/users/gugod.json @@ -1 +1,3 @@ -{"copyright":"Kang-min Liu"} \ No newline at end of file +{ + "copyright": "Kang-min Liu" +} diff --git a/users/guicheffer.json b/users/guicheffer.json index 1d6474f3..c6a16e59 100644 --- a/users/guicheffer.json +++ b/users/guicheffer.json @@ -1 +1,7 @@ -{"copyright":"Joao Guilherme","url":"http:\/\/guicheffer.me\/","email":"hi@guicheffer.me","theme":"default","gravatar":true} \ No newline at end of file +{ + "copyright": "Joao Guilherme", + "url": "http://guicheffer.me/", + "email": "hi@guicheffer.me", + "theme": "default", + "gravatar": true +} diff --git a/users/guidokessels.json b/users/guidokessels.json index e7e744b8..a18f5fa9 100644 --- a/users/guidokessels.json +++ b/users/guidokessels.json @@ -1 +1,4 @@ -{"copyright":"Guido Kessels","email":"guidokessels@gmail.com"} \ No newline at end of file +{ + "copyright": "Guido Kessels", + "email": "guidokessels@gmail.com" +} diff --git a/users/guilhermemarconi.json b/users/guilhermemarconi.json index 4d60b5e4..ea6b4db9 100644 --- a/users/guilhermemarconi.json +++ b/users/guilhermemarconi.json @@ -1 +1,7 @@ -{"copyright":"Guilherme Marconi","url":"http:\/\/guilhermemarconi.me","email":"oi@guilhermemarconi.me","format":"txt","gravatar":"gwyer"} \ No newline at end of file +{ + "copyright": "Guilherme Marconi", + "url": "http://guilhermemarconi.me", + "email": "oi@guilhermemarconi.me", + "format": "txt", + "gravatar": "gwyer" +} diff --git a/users/guilhermeprates.json b/users/guilhermeprates.json index d399f675..e6c2ef83 100644 --- a/users/guilhermeprates.json +++ b/users/guilhermeprates.json @@ -1 +1,3 @@ -{"copyright":"Guilherme Prates"} \ No newline at end of file +{ + "copyright": "Guilherme Prates" +} diff --git a/users/gunar.json b/users/gunar.json index 75610578..cbeff9f9 100644 --- a/users/gunar.json +++ b/users/gunar.json @@ -1 +1,7 @@ -{"copyright":"Gunar C. Gessner, http:\/\/gunargessner.com","url":"http:\/\/gunargessner.com","email":"gunar@gunargessner.com","theme":"opensans","gravatar":true} \ No newline at end of file +{ + "copyright": "Gunar C. Gessner, http://gunargessner.com", + "url": "http://gunargessner.com", + "email": "gunar@gunargessner.com", + "theme": "opensans", + "gravatar": true +} diff --git a/users/gus.json b/users/gus.json index cc177f63..1c70ff65 100644 --- a/users/gus.json +++ b/users/gus.json @@ -1 +1,3 @@ -{"copyright":"Angus Macdonald"} \ No newline at end of file +{ + "copyright": "Angus Macdonald" +} diff --git a/users/gvv.json b/users/gvv.json index bc747474..7a717b1b 100644 --- a/users/gvv.json +++ b/users/gvv.json @@ -1 +1,4 @@ -{"copyright":"Gary V. Vaughan","url":"http:\/\/gary.vaughan.pe"} \ No newline at end of file +{ + "copyright": "Gary V. Vaughan", + "url": "http://gary.vaughan.pe" +} diff --git a/users/gyoshev.json b/users/gyoshev.json index a68c16b0..71602065 100644 --- a/users/gyoshev.json +++ b/users/gyoshev.json @@ -1,5 +1,5 @@ { - "copyright": "Alexander Gyoshev, http://gyoshev.net", - "url": "http://gyoshev.net", - "theme": "flesch" + "copyright": "Alexander Gyoshev, http://gyoshev.net", + "url": "http://gyoshev.net", + "theme": "flesch" } diff --git a/users/h.json b/users/h.json index f157b7b4..fde9ba4d 100644 --- a/users/h.json +++ b/users/h.json @@ -1 +1,6 @@ -{"copyright":"Harrison Gulliver","url":"http:\/\/hrrsn.net","email":"harrison@thenewthirty.co.nz","format":"html"} \ No newline at end of file +{ + "copyright": "Harrison Gulliver", + "url": "http://hrrsn.net", + "email": "harrison@thenewthirty.co.nz", + "format": "html" +} diff --git a/users/hadb.json b/users/hadb.json index 03549da8..7cb8a4a2 100644 --- a/users/hadb.json +++ b/users/hadb.json @@ -1,8 +1,8 @@ { - "copyright": "HADB, Bean Deng 邓斌", - "url": "http://blog.haoest.com", - "format": "html", - "email": "haiandengbin@126.com", - "gravatar": false, - "theme": "eula-modern" + "copyright": "HADB, Bean Deng \u00e9\u201a\u201c\u00e6\u2013\u0152", + "url": "http://blog.haoest.com", + "format": "html", + "email": "haiandengbin@126.com", + "gravatar": false, + "theme": "eula-modern" } diff --git a/users/hail2u.json b/users/hail2u.json index 55c21f99..9522d254 100644 --- a/users/hail2u.json +++ b/users/hail2u.json @@ -1,5 +1,5 @@ { - "copyright": "Kyo Nagashima, http://hail2u.net/", - "url": "http://hail2u.net/", - "theme": "flesch" + "copyright": "Kyo Nagashima, http://hail2u.net/", + "url": "http://hail2u.net/", + "theme": "flesch" } diff --git a/users/halil.json b/users/halil.json index b1ec31eb..fa224042 100644 --- a/users/halil.json +++ b/users/halil.json @@ -1 +1,6 @@ -{"copyright":"Halil İbrahim ŞAFAK","url":"https://github.com/halil","email":"hibrahimsafak@gmail.com","format":"txt"} +{ + "copyright": "Halil \u00c4\u00b0brahim \u00c5\u017eAFAK", + "url": "https://github.com/halil", + "email": "hibrahimsafak@gmail.com", + "format": "txt" +} diff --git a/users/halit.json b/users/halit.json index c5f567fe..c6890966 100644 --- a/users/halit.json +++ b/users/halit.json @@ -1 +1,6 @@ -{"copyright":"Halit Alptekin","url":"http:\/\/www.halitalptekin.com","email":"info@halitalptekin.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Halit Alptekin", + "url": "http://www.halitalptekin.com", + "email": "info@halitalptekin.com", + "format": "txt" +} diff --git a/users/hallme.json b/users/hallme.json index 38e4a4f7..520290d4 100644 --- a/users/hallme.json +++ b/users/hallme.json @@ -1 +1,6 @@ -{"copyright":"Hall Internet Marketing","url":"http:\/\/www.hallme.com\/","email":"it@hallme.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Hall Internet Marketing", + "url": "http://www.hallme.com/", + "email": "it@hallme.com", + "gravatar": true +} diff --git a/users/hamano.json b/users/hamano.json index b5a503f0..720f03d7 100644 --- a/users/hamano.json +++ b/users/hamano.json @@ -1 +1,3 @@ -{"copyright":"HAMANO Tsukasa"} \ No newline at end of file +{ + "copyright": "HAMANO Tsukasa" +} diff --git a/users/hamidshavarean.json b/users/hamidshavarean.json index 9d5f7fa4..9506e296 100644 --- a/users/hamidshavarean.json +++ b/users/hamidshavarean.json @@ -1 +1,6 @@ -{"copyright":"Hamid Shavarean","url":"http:\/\/www.hamidshavarean.com\/","email":"hamid@hamidshavarean.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Hamid Shavarean", + "url": "http://www.hamidshavarean.com/", + "email": "hamid@hamidshavarean.com", + "format": "txt" +} diff --git a/users/haoxiong.json b/users/haoxiong.json index 8d0c8a9e..2517979f 100644 --- a/users/haoxiong.json +++ b/users/haoxiong.json @@ -1,6 +1,6 @@ { - "copyright": "Hao Xiong", - "email": "xionghao818@hotmail.com", - "format": "html", - "theme": "plaintext" -} \ No newline at end of file + "copyright": "Hao Xiong", + "email": "xionghao818@hotmail.com", + "format": "html", + "theme": "plaintext" +} diff --git a/users/hardeep.json b/users/hardeep.json index 1d0e91fe..2c602572 100644 --- a/users/hardeep.json +++ b/users/hardeep.json @@ -1 +1,4 @@ -{"copyright":"Hardeep Singh","email":"h@rdeep.ca"} \ No newline at end of file +{ + "copyright": "Hardeep Singh", + "email": "h@rdeep.ca" +} diff --git a/users/harold.json b/users/harold.json index 714d4475..770223fe 100644 --- a/users/harold.json +++ b/users/harold.json @@ -1 +1,6 @@ -{"copyright":"Harold Hoo","url":"http:\/\/yaolong.me","email":"mail@yaolong.me","format":"txt"} \ No newline at end of file +{ + "copyright": "Harold Hoo", + "url": "http://yaolong.me", + "email": "mail@yaolong.me", + "format": "txt" +} diff --git a/users/harry.json b/users/harry.json index ca2fabc0..884f370c 100644 --- a/users/harry.json +++ b/users/harry.json @@ -1,9 +1,9 @@ { - "copyright": "Harry Scheiner", - "url": "http://harryscheiner.com", - "email": "me@harryscheiner.com", - "format": "html", - "gravatar": true, - "version": "6d33a046", - "theme": "default" -} \ No newline at end of file + "copyright": "Harry Scheiner", + "url": "http://harryscheiner.com", + "email": "me@harryscheiner.com", + "format": "html", + "gravatar": true, + "version": "6d33a046", + "theme": "default" +} diff --git a/users/harryd.json b/users/harryd.json index b23075a4..6bb81039 100644 --- a/users/harryd.json +++ b/users/harryd.json @@ -1 +1,7 @@ -{"copyright":"Harry Denley","url":"http:\/\/harrydenley.com","email":"h.denley@yahoo.co.uk","gravatar":true,"theme":"eula-modern"} \ No newline at end of file +{ + "copyright": "Harry Denley", + "url": "http://harrydenley.com", + "email": "h.denley@yahoo.co.uk", + "gravatar": true, + "theme": "eula-modern" +} diff --git a/users/harrydeluxe.json b/users/harrydeluxe.json index ad1281a8..4613adf7 100644 --- a/users/harrydeluxe.json +++ b/users/harrydeluxe.json @@ -1,5 +1,5 @@ { - "copyright": "Harald Hanek, http://delacap.com", - "url": "http://delacap.com", - "theme": "flesch" -} \ No newline at end of file + "copyright": "Harald Hanek, http://delacap.com", + "url": "http://delacap.com", + "theme": "flesch" +} diff --git a/users/harshjain.json b/users/harshjain.json index 4788cdab..3c754d88 100644 --- a/users/harshjain.json +++ b/users/harshjain.json @@ -1,7 +1,7 @@ { - "copyright": "Harsh Jain, http://harsh.ml", - "url": "http://harshjain.ml", - "email": "harshjniitr@gmail.com", - "gravatar": true, - "theme": "black-beauty" + "copyright": "Harsh Jain, http://harsh.ml", + "url": "http://harshjain.ml", + "email": "harshjniitr@gmail.com", + "gravatar": true, + "theme": "black-beauty" } diff --git a/users/harshjv.json b/users/harshjv.json index e32cc402..181e40ef 100644 --- a/users/harshjv.json +++ b/users/harshjv.json @@ -1 +1,5 @@ -{"copyright":"Harsh Vakharia","url":"https:\/\/harshjv.github.io","email":"harshjv@gmail.com"} +{ + "copyright": "Harsh Vakharia", + "url": "https://harshjv.github.io", + "email": "harshjv@gmail.com" +} diff --git a/users/hashanp.json b/users/hashanp.json index 5a59eb43..488562e5 100644 --- a/users/hashanp.json +++ b/users/hashanp.json @@ -1,6 +1,6 @@ { - "copyright": "Hashan Punchihewa, https://hashanp.github.io", - "url": "https://hashanp.divshot.io", - "email": "hashan.punchihewa@gmail.com", - "theme":"magic-mint" + "copyright": "Hashan Punchihewa, https://hashanp.github.io", + "url": "https://hashanp.divshot.io", + "email": "hashan.punchihewa@gmail.com", + "theme": "magic-mint" } diff --git a/users/hashnuke.json b/users/hashnuke.json index cb2ed6b0..ff2d6dc0 100644 --- a/users/hashnuke.json +++ b/users/hashnuke.json @@ -1 +1,3 @@ -{"copyright":"Akash Manohar J"} \ No newline at end of file +{ + "copyright": "Akash Manohar J" +} diff --git a/users/hassankhan.json b/users/hassankhan.json index 7b9e999b..b2141ca5 100644 --- a/users/hassankhan.json +++ b/users/hassankhan.json @@ -1 +1,7 @@ -{"copyright":"Hassan Khan, http:\/\/hassankhan.me","url":"http:\/\/hassankhan.me","email":"contact@hassankhan.me","gravatar":true,"theme":"black-beauty"} \ No newline at end of file +{ + "copyright": "Hassan Khan, http://hassankhan.me", + "url": "http://hassankhan.me", + "email": "contact@hassankhan.me", + "gravatar": true, + "theme": "black-beauty" +} diff --git a/users/hassox.json b/users/hassox.json index 6e20982c..0845b780 100644 --- a/users/hassox.json +++ b/users/hassox.json @@ -1 +1,3 @@ -{"copyright":"Daniel Neighman"} \ No newline at end of file +{ + "copyright": "Daniel Neighman" +} diff --git a/users/hatena.json b/users/hatena.json index 43be919e..71dbd94d 100644 --- a/users/hatena.json +++ b/users/hatena.json @@ -1 +1,4 @@ -{"copyright":"Hatena, Inc.","url":"http:\/\/www.hatena.ne.jp"} \ No newline at end of file +{ + "copyright": "Hatena, Inc.", + "url": "http://www.hatena.ne.jp" +} diff --git a/users/hbc.json b/users/hbc.json index e4cc4723..c9dab6e1 100644 --- a/users/hbc.json +++ b/users/hbc.json @@ -1 +1,6 @@ -{ "copyright": "hbc", "email": "me@hbc.rocks", "format": "txt", "gravatar": true } +{ + "copyright": "hbc", + "email": "me@hbc.rocks", + "format": "txt", + "gravatar": true +} diff --git a/users/hd.json b/users/hd.json index ee03c0bb..9d76828e 100644 --- a/users/hd.json +++ b/users/hd.json @@ -1 +1,6 @@ -{"copyright":"Harry Denley","url":"http:\/\/harrydenley.com","email":"","format":"txt"} \ No newline at end of file +{ + "copyright": "Harry Denley", + "url": "http://harrydenley.com", + "email": "", + "format": "txt" +} diff --git a/users/he7d3r.json b/users/he7d3r.json index 381c5b62..e8683c32 100644 --- a/users/he7d3r.json +++ b/users/he7d3r.json @@ -1,4 +1,4 @@ { - "copyright": "He7d3r", - "theme": "eula-modern" + "copyright": "He7d3r", + "theme": "eula-modern" } diff --git a/users/healthx.json b/users/healthx.json index 2d779d4f..8b98703f 100644 --- a/users/healthx.json +++ b/users/healthx.json @@ -1 +1,3 @@ -{"copyright":"Healthx, Inc"} \ No newline at end of file +{ + "copyright": "Healthx, Inc" +} diff --git a/users/hecticjeff.json b/users/hecticjeff.json index 3bea314c..1d2cbc04 100644 --- a/users/hecticjeff.json +++ b/users/hecticjeff.json @@ -1 +1,3 @@ -{"copyright":"Chris Mytton"} \ No newline at end of file +{ + "copyright": "Chris Mytton" +} diff --git a/users/hello.json b/users/hello.json index 6fbfc6dc..a7da30cc 100644 --- a/users/hello.json +++ b/users/hello.json @@ -1 +1,6 @@ -{"copyright":"James Pinto","url":"https:\/\/github.com\/hello-gem\/hello","email":"thejamespinto@gmail.com","theme":"opensans"} \ No newline at end of file +{ + "copyright": "James Pinto", + "url": "https://github.com/hello-gem/hello", + "email": "thejamespinto@gmail.com", + "theme": "opensans" +} diff --git a/users/hemersonvianna.json b/users/hemersonvianna.json index 868e2c7c..86b3464f 100644 --- a/users/hemersonvianna.json +++ b/users/hemersonvianna.json @@ -1 +1,5 @@ -{"copyright":"Hemerson Vianna","url":"http:\/\/hemersonvianna.io","email":"hemerson.lourenco@gmail.com"} +{ + "copyright": "Hemerson Vianna", + "url": "http://hemersonvianna.io", + "email": "hemerson.lourenco@gmail.com" +} diff --git a/users/henrikbjorn.json b/users/henrikbjorn.json index 40c1da52..3dc17e01 100644 --- a/users/henrikbjorn.json +++ b/users/henrikbjorn.json @@ -1,6 +1,6 @@ { - "copyright": "Henrik Bjørnskov", - "email" : "henrik@bjrnskov.dk", - "url": "http://henrik.bjrnskov.dk", - "format" : "txt" + "copyright": "Henrik Bj\u00c3\u00b8rnskov", + "email": "henrik@bjrnskov.dk", + "url": "http://henrik.bjrnskov.dk", + "format": "txt" } diff --git a/users/henrikhodne.json b/users/henrikhodne.json index c4ba0806..f35adbbd 100644 --- a/users/henrikhodne.json +++ b/users/henrikhodne.json @@ -1 +1,4 @@ -{"copyright":"Henrik Hodne","email":"henrik@hodne.io"} \ No newline at end of file +{ + "copyright": "Henrik Hodne", + "email": "henrik@hodne.io" +} diff --git a/users/henriquemoody.json b/users/henriquemoody.json index c42520d9..b6ae1d59 100644 --- a/users/henriquemoody.json +++ b/users/henriquemoody.json @@ -1 +1,5 @@ -{"copyright":"Henrique Moody","url":"http:\/\/about.me\/henriquemoody","email":"henriquemoody@gmail.com"} \ No newline at end of file +{ + "copyright": "Henrique Moody", + "url": "http://about.me/henriquemoody", + "email": "henriquemoody@gmail.com" +} diff --git a/users/henvic.json b/users/henvic.json index 7807f598..aa27b3df 100644 --- a/users/henvic.json +++ b/users/henvic.json @@ -1 +1,6 @@ -{"copyright":"Henrique Vicente","url":"http:\/\/henvic.github.io\/","email":"henriquevicente@gmail.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Henrique Vicente", + "url": "http://henvic.github.io/", + "email": "henriquevicente@gmail.com", + "gravatar": true +} diff --git a/users/heppler.json b/users/heppler.json index 2e203a43..54549b5c 100644 --- a/users/heppler.json +++ b/users/heppler.json @@ -1,6 +1,6 @@ { - "copyright":"Jason A. Heppler", - "url":"http:\/\/jasonheppler.org", - "email":"jason@jasonheppler.org", - "theme": "eula-modern" + "copyright": "Jason A. Heppler", + "url": "http://jasonheppler.org", + "email": "jason@jasonheppler.org", + "theme": "eula-modern" } diff --git a/users/herson.json b/users/herson.json index 1d794f2c..ecba1b21 100644 --- a/users/herson.json +++ b/users/herson.json @@ -1 +1,6 @@ -{"copyright":"Herson Salinas","url":"https://github.com/Hers","email":"hersonHN@gmail.com","theme":"afterdark"} +{ + "copyright": "Herson Salinas", + "url": "https://github.com/Hers", + "email": "hersonHN@gmail.com", + "theme": "afterdark" +} diff --git a/users/heyday.json b/users/heyday.json index 1b3389e4..46ca7067 100644 --- a/users/heyday.json +++ b/users/heyday.json @@ -1,5 +1,5 @@ { - "copyright": "Heyday Digital, http://heyday.co.nz", - "url": "http://heyday.co.nz", - "email": "dev@heyday.co.nz" + "copyright": "Heyday Digital, http://heyday.co.nz", + "url": "http://heyday.co.nz", + "email": "dev@heyday.co.nz" } diff --git a/users/hfm.json b/users/hfm.json index f6ac7d37..3fa25706 100644 --- a/users/hfm.json +++ b/users/hfm.json @@ -1 +1,3 @@ -{"copyright":"OKUMURA Takahiro"} \ No newline at end of file +{ + "copyright": "OKUMURA Takahiro" +} diff --git a/users/hh.json b/users/hh.json index 8823953e..b05beec4 100644 --- a/users/hh.json +++ b/users/hh.json @@ -1 +1,3 @@ -{"copyright":"Chris McClimans"} \ No newline at end of file +{ + "copyright": "Chris McClimans" +} diff --git a/users/hika69.json b/users/hika69.json index 2f15f80f..76062bab 100644 --- a/users/hika69.json +++ b/users/hika69.json @@ -1 +1,4 @@ -{"copyright":"hikarock","url":"http:\/\/blog.hika69.com"} \ No newline at end of file +{ + "copyright": "hikarock", + "url": "http://blog.hika69.com" +} diff --git a/users/hildor.json b/users/hildor.json index 3bda6c04..eb8f6220 100644 --- a/users/hildor.json +++ b/users/hildor.json @@ -1,5 +1,5 @@ { - "copyright": "Hildor Junior.", - "url": "https://hildor.com.br", - "email": "contato@hildor.com.br" + "copyright": "Hildor Junior.", + "url": "https://hildor.com.br", + "email": "contato@hildor.com.br" } diff --git a/users/hinassan.json b/users/hinassan.json index 268a37ae..c7b20f50 100644 --- a/users/hinassan.json +++ b/users/hinassan.json @@ -1,4 +1,4 @@ { - "copyright":"Yanagi Hinata", - "url": "http://hinata.in/" -} \ No newline at end of file + "copyright": "Yanagi Hinata", + "url": "http://hinata.in/" +} diff --git a/users/hippiehacker.json b/users/hippiehacker.json index 8823953e..b05beec4 100644 --- a/users/hippiehacker.json +++ b/users/hippiehacker.json @@ -1 +1,3 @@ -{"copyright":"Chris McClimans"} \ No newline at end of file +{ + "copyright": "Chris McClimans" +} diff --git a/users/hiremaga.json b/users/hiremaga.json index e55cbc6c..89345d5f 100644 --- a/users/hiremaga.json +++ b/users/hiremaga.json @@ -1 +1,3 @@ -{"copyright":"Abhijit Hiremagalur"} \ No newline at end of file +{ + "copyright": "Abhijit Hiremagalur" +} diff --git a/users/hirokiky.json b/users/hirokiky.json index 5d495423..1ad62161 100644 --- a/users/hirokiky.json +++ b/users/hirokiky.json @@ -1 +1,6 @@ -{"copyright":"Hiroki KIYOHARA","url":"http:\/\/hirokiky.org\/","email":"hirokiky@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Hiroki KIYOHARA", + "url": "http://hirokiky.org/", + "email": "hirokiky@gmail.com", + "format": "txt" +} diff --git a/users/hitode909.json b/users/hitode909.json index 232e6770..75cea9df 100644 --- a/users/hitode909.json +++ b/users/hitode909.json @@ -1 +1,3 @@ -{"copyright":"hitode909"} \ No newline at end of file +{ + "copyright": "hitode909" +} diff --git a/users/hlfcoding.json b/users/hlfcoding.json index 838963d7..18e3a5ba 100644 --- a/users/hlfcoding.json +++ b/users/hlfcoding.json @@ -1 +1,6 @@ -{"copyright":"Peng Wang","url":"http:\/\/pengxwang.com","email":"peng@pengxwang.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Peng Wang", + "url": "http://pengxwang.com", + "email": "peng@pengxwang.com", + "format": "txt" +} diff --git a/users/hlomzik.json b/users/hlomzik.json index 99322034..a08fda53 100644 --- a/users/hlomzik.json +++ b/users/hlomzik.json @@ -1 +1,6 @@ -{"copyright":"Andrey Kholmanyuk","url":"https:\/\/github.com\/hlomzik\/","email":"hlomzik@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Andrey Kholmanyuk", + "url": "https://github.com/hlomzik/", + "email": "hlomzik@gmail.com", + "format": "txt" +} diff --git a/users/hmkz.json b/users/hmkz.json index f44bd8da..4b018003 100644 --- a/users/hmkz.json +++ b/users/hmkz.json @@ -1 +1,4 @@ -{"copyright":"Kazunori Hamada","email":"hmkz@rapid-liquid.com"} \ No newline at end of file +{ + "copyright": "Kazunori Hamada", + "email": "hmkz@rapid-liquid.com" +} diff --git a/users/hobogrammer.json b/users/hobogrammer.json index 3d32b6d2..691ddc98 100644 --- a/users/hobogrammer.json +++ b/users/hobogrammer.json @@ -1 +1,3 @@ -{"copyright":"Andre Smith"} \ No newline at end of file +{ + "copyright": "Andre Smith" +} diff --git a/users/hokaccha.json b/users/hokaccha.json index c439c011..61321c71 100644 --- a/users/hokaccha.json +++ b/users/hokaccha.json @@ -1 +1,3 @@ -{"copyright":"Kazuhito Hokamura"} \ No newline at end of file +{ + "copyright": "Kazuhito Hokamura" +} diff --git a/users/hokypoky.json b/users/hokypoky.json index 56cc45a8..8dfdaae4 100644 --- a/users/hokypoky.json +++ b/users/hokypoky.json @@ -1 +1,4 @@ -{"copyright":"Kotaro Imai","url":"http:\/\/hokypoky.info"} \ No newline at end of file +{ + "copyright": "Kotaro Imai", + "url": "http://hokypoky.info" +} diff --git a/users/honyovk.json b/users/honyovk.json index d06aae2c..3d4a8aff 100644 --- a/users/honyovk.json +++ b/users/honyovk.json @@ -1 +1,5 @@ -{"copyright":"Matt Jordan","url":"https://github.com/mbjordan","theme":"orange"} +{ + "copyright": "Matt Jordan", + "url": "https://github.com/mbjordan", + "theme": "orange" +} diff --git a/users/hoop33.json b/users/hoop33.json index 5f3b9302..6c6301fd 100644 --- a/users/hoop33.json +++ b/users/hoop33.json @@ -1 +1,8 @@ -{"copyright":"Rob Warner","url":"http:\/\/grailbox.com","email":"rwarner@grailbox.com","format":"html","gravatar":true,"theme":"opensans"} +{ + "copyright": "Rob Warner", + "url": "http://grailbox.com", + "email": "rwarner@grailbox.com", + "format": "html", + "gravatar": true, + "theme": "opensans" +} diff --git a/users/hope.json b/users/hope.json index e91ee765..16f0d6a7 100644 --- a/users/hope.json +++ b/users/hope.json @@ -1 +1,6 @@ -{"copyright":"Sergey Sadovoi","url":"http:\/\/hope.ua","email":"sergey@hope.ua","gravatar":true} \ No newline at end of file +{ + "copyright": "Sergey Sadovoi", + "url": "http://hope.ua", + "email": "sergey@hope.ua", + "gravatar": true +} diff --git a/users/hor.json b/users/hor.json index eb452239..1ad4fc87 100644 --- a/users/hor.json +++ b/users/hor.json @@ -1 +1,6 @@ -{"copyright":"HorX","url":"http:\/\/hanhor.com","email":"hanhor.wu@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "HorX", + "url": "http://hanhor.com", + "email": "hanhor.wu@gmail.com", + "format": "txt" +} diff --git a/users/horacioibrahim.json b/users/horacioibrahim.json index 5d2c2c58..6bba5fb9 100644 --- a/users/horacioibrahim.json +++ b/users/horacioibrahim.json @@ -1 +1,6 @@ -{"copyright":"Horacio Ibrahim","url":"http:\/\/horacioibrahim.io","email":"horacioibrahim@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Horacio Ibrahim", + "url": "http://horacioibrahim.io", + "email": "horacioibrahim@gmail.com", + "format": "txt" +} diff --git a/users/horiuchi.json b/users/horiuchi.json index b24ca684..4dddd428 100644 --- a/users/horiuchi.json +++ b/users/horiuchi.json @@ -1 +1,4 @@ -{"copyright":"Hiroki Horiuchi","url":"https:\/\/github.com\/horiuchi"} \ No newline at end of file +{ + "copyright": "Hiroki Horiuchi", + "url": "https://github.com/horiuchi" +} diff --git a/users/hotoo.json b/users/hotoo.json index 3b742d76..bc51b89b 100644 --- a/users/hotoo.json +++ b/users/hotoo.json @@ -1 +1,6 @@ -{"copyright":"\u95f2\u8018\u2122","url":"http:\/\/hotoo.me","email":"hotoo.cn@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "\u95f2\u8018\u2122", + "url": "http://hotoo.me", + "email": "hotoo.cn@gmail.com", + "format": "txt" +} diff --git a/users/hotplate.json b/users/hotplate.json index 8c5ef028..a200e74b 100644 --- a/users/hotplate.json +++ b/users/hotplate.json @@ -1 +1,3 @@ -{"copyright":"Hotplate Labs Ltd"} \ No newline at end of file +{ + "copyright": "Hotplate Labs Ltd" +} diff --git a/users/housetrip.json b/users/housetrip.json index bf34659b..edf5b84d 100644 --- a/users/housetrip.json +++ b/users/housetrip.json @@ -1 +1,3 @@ -{"copyright":"HouseTrip"} \ No newline at end of file +{ + "copyright": "HouseTrip" +} diff --git a/users/hpg.json b/users/hpg.json index e1496e67..a6110e0e 100644 --- a/users/hpg.json +++ b/users/hpg.json @@ -1 +1,6 @@ -{"copyright":"Harrison Gulliver","url":"http:\/\/hrrsn.net","email":"harrison@thenewthirty.co.nz","format":"txt"} \ No newline at end of file +{ + "copyright": "Harrison Gulliver", + "url": "http://hrrsn.net", + "email": "harrison@thenewthirty.co.nz", + "format": "txt" +} diff --git a/users/hr.json b/users/hr.json index aa53c4dc..c21aad74 100644 --- a/users/hr.json +++ b/users/hr.json @@ -1 +1,6 @@ -{"copyright":"Hardik Ruparel","url":"http:\/\/www.hardikr.com","email":"me@hardikr.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Hardik Ruparel", + "url": "http://www.hardikr.com", + "email": "me@hardikr.com", + "format": "txt" +} diff --git a/users/hss.json b/users/hss.json index f7ffdaf4..0c708b6d 100644 --- a/users/hss.json +++ b/users/hss.json @@ -1 +1,6 @@ -{"copyright":"Evan Harmon","url":"http:\/\/harmonsoftwaresolutions.com","email":"admin@harmonsoftwaresolutions.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Evan Harmon", + "url": "http://harmonsoftwaresolutions.com", + "email": "admin@harmonsoftwaresolutions.com", + "format": "txt" +} diff --git a/users/hsyn.json b/users/hsyn.json index 9a46126b..5760e448 100644 --- a/users/hsyn.json +++ b/users/hsyn.json @@ -1 +1,3 @@ -{"copyright":"M. H\u00fcseyin \u00d6zt\u00fcrk"} \ No newline at end of file +{ + "copyright": "M. H\u00fcseyin \u00d6zt\u00fcrk" +} diff --git a/users/htdvisser.json b/users/htdvisser.json index 01e25808..fa8a7ead 100644 --- a/users/htdvisser.json +++ b/users/htdvisser.json @@ -1 +1,6 @@ -{"copyright":"Hylke Visser","url":"http:\/\/hylkevisser.nl","email":"htdvisser@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Hylke Visser", + "url": "http://hylkevisser.nl", + "email": "htdvisser@gmail.com", + "format": "txt" +} diff --git a/users/htjson.json b/users/htjson.json index b93ab588..35b0d94b 100644 --- a/users/htjson.json +++ b/users/htjson.json @@ -1 +1,6 @@ -{"copyright":"HTJSON","url":"http:\/\/github.com\/felquis\/HTJSON","email":"frgformenton@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "HTJSON", + "url": "http://github.com/felquis/HTJSON", + "email": "frgformenton@gmail.com", + "format": "txt" +} diff --git a/users/hug.json b/users/hug.json index 3087926e..bbfdaab4 100644 --- a/users/hug.json +++ b/users/hug.json @@ -1,7 +1,7 @@ { - "copyright": "Daniel Hug, http://hugwebdesign.com", - "url": "http://hugwebdesign.com", - "email": "daniel@hugwebdesign.com", - "gravatar": true, - "theme": "double-windsor" + "copyright": "Daniel Hug, http://hugwebdesign.com", + "url": "http://hugwebdesign.com", + "email": "daniel@hugwebdesign.com", + "gravatar": true, + "theme": "double-windsor" } diff --git a/users/husniadil.json b/users/husniadil.json index 337595e8..a8248d15 100644 --- a/users/husniadil.json +++ b/users/husniadil.json @@ -1,8 +1,7 @@ { - "copyright": "Husni Adil Makmur", - "email": "husni.adil@gmail.com", - "url": "https://github.com/husniadil", - "format": "html", - "gravatar": true + "copyright": "Husni Adil Makmur", + "email": "husni.adil@gmail.com", + "url": "https://github.com/husniadil", + "format": "html", + "gravatar": true } - diff --git a/users/hwthorn.json b/users/hwthorn.json index 1a4ad2b0..cb19bd45 100644 --- a/users/hwthorn.json +++ b/users/hwthorn.json @@ -1 +1,5 @@ -{"copyright":"Felix Pflaum","email":"hwthorn@outlook.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Felix Pflaum", + "email": "hwthorn@outlook.com", + "format": "txt" +} diff --git a/users/i.json b/users/i.json index a8ac018f..e84ab233 100644 --- a/users/i.json +++ b/users/i.json @@ -1,8 +1,8 @@ { - "copyright":"Jing Su", - "url":"https://ku.io", - "email":"me@jing.su", - "format":"html", - "gravatar":true, - "theme":"material" + "copyright": "Jing Su", + "url": "https://ku.io", + "email": "me@jing.su", + "format": "html", + "gravatar": true, + "theme": "material" } diff --git a/users/iadvize.json b/users/iadvize.json index f6339081..5c26c215 100644 --- a/users/iadvize.json +++ b/users/iadvize.json @@ -1 +1,3 @@ -{"copyright":"iAdvize"} \ No newline at end of file +{ + "copyright": "iAdvize" +} diff --git a/users/iagodahlem.json b/users/iagodahlem.json index 21371197..ceb3ee1a 100644 --- a/users/iagodahlem.json +++ b/users/iagodahlem.json @@ -1,6 +1,6 @@ { - "copyright": "Iago Dahlem Lorensini", - "url": "http://iagodahlem.com", - "email": "iagodahlemlorensini@gmail.com", - "theme": "material-grey" + "copyright": "Iago Dahlem Lorensini", + "url": "http://iagodahlem.com", + "email": "iagodahlemlorensini@gmail.com", + "theme": "material-grey" } diff --git a/users/iamale.json b/users/iamale.json index 9ec37c94..53612a28 100644 --- a/users/iamale.json +++ b/users/iamale.json @@ -1 +1,5 @@ -{"copyright":"Alexander Pushkov","url":"https:\/\/ale.rocks","email":"hi@ale.rocks"} +{ + "copyright": "Alexander Pushkov", + "url": "https://ale.rocks", + "email": "hi@ale.rocks" +} diff --git a/users/iamgabeortiz.json b/users/iamgabeortiz.json index f3321846..f251d00d 100644 --- a/users/iamgabeortiz.json +++ b/users/iamgabeortiz.json @@ -1 +1,6 @@ -{"copyright":"Gabriel Ortiz, http:\/\/gabeortiz.com","url":"http:\/\/gabeortiz.com","email":"gabeortiz@icloud.com","format":"html"} \ No newline at end of file +{ + "copyright": "Gabriel Ortiz, http://gabeortiz.com", + "url": "http://gabeortiz.com", + "email": "gabeortiz@icloud.com", + "format": "html" +} diff --git a/users/ian.json b/users/ian.json index b1132336..3f6e4456 100644 --- a/users/ian.json +++ b/users/ian.json @@ -1 +1,6 @@ -{"copyright":"Ian Lai","url":"http:\/\/www.fyianlai.com","email":"ian@fyianlai.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Ian Lai", + "url": "http://www.fyianlai.com", + "email": "ian@fyianlai.com", + "format": "txt" +} diff --git a/users/ianaya89.json b/users/ianaya89.json index 5420289a..5e0762e2 100644 --- a/users/ianaya89.json +++ b/users/ianaya89.json @@ -1 +1,6 @@ -{"copyright":"Ignacio Anaya","url":"http:\/\/keepe.rs","email":"ignacio.anaya89@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Ignacio Anaya", + "url": "http://keepe.rs", + "email": "ignacio.anaya89@gmail.com", + "format": "txt" +} diff --git a/users/ianfoo.json b/users/ianfoo.json index 014d2aa7..834ff13b 100644 --- a/users/ianfoo.json +++ b/users/ianfoo.json @@ -1 +1,3 @@ -{"copyright":"Ian Molee"} \ No newline at end of file +{ + "copyright": "Ian Molee" +} diff --git a/users/ianhammondcooper.json b/users/ianhammondcooper.json index 370bb2fb..388ac808 100644 --- a/users/ianhammondcooper.json +++ b/users/ianhammondcooper.json @@ -1 +1,6 @@ -{"copyright":"Ian Cooper","url":"http:\/\/ianhammondcooper.com","email":"ian_hammond_cooper@yahoo.co.uk","format":"txt"} \ No newline at end of file +{ + "copyright": "Ian Cooper", + "url": "http://ianhammondcooper.com", + "email": "ian_hammond_cooper@yahoo.co.uk", + "format": "txt" +} diff --git a/users/iantearle.json b/users/iantearle.json index d06094a2..d9c12d62 100644 --- a/users/iantearle.json +++ b/users/iantearle.json @@ -1,5 +1,5 @@ { - "copyright": "Ian Tearle, http://iantearle.com", - "url": "http://iantearle.com", - "theme": "flesch" + "copyright": "Ian Tearle, http://iantearle.com", + "url": "http://iantearle.com", + "theme": "flesch" } diff --git a/users/ianvaughan.json b/users/ianvaughan.json index d2b0897e..71242599 100644 --- a/users/ianvaughan.json +++ b/users/ianvaughan.json @@ -1 +1,5 @@ -{"copyright":"Ian Vaughan","url":"http:\/\/ianvaughan.co.uk","email":"mit@ianvaughan.co.uk"} \ No newline at end of file +{ + "copyright": "Ian Vaughan", + "url": "http://ianvaughan.co.uk", + "email": "mit@ianvaughan.co.uk" +} diff --git a/users/ianwang.json b/users/ianwang.json index 1ef3f8fd..78d5e893 100644 --- a/users/ianwang.json +++ b/users/ianwang.json @@ -1 +1,6 @@ -{"copyright":"Ian Wang","url":"https:\/\/github.com\/IanWang","email":"gogoenwon@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Ian Wang", + "url": "https://github.com/IanWang", + "email": "gogoenwon@gmail.com", + "format": "txt" +} diff --git a/users/ianwinter.json b/users/ianwinter.json index f1b1200d..dd0495ad 100644 --- a/users/ianwinter.json +++ b/users/ianwinter.json @@ -1 +1,3 @@ -{"copyright":"Ian Winter"} \ No newline at end of file +{ + "copyright": "Ian Winter" +} diff --git a/users/ic.json b/users/ic.json index 6154a107..46c9c37a 100644 --- a/users/ic.json +++ b/users/ic.json @@ -1 +1,5 @@ -{"copyright":"IC Ignacio","format":"html","theme":"flesch"} \ No newline at end of file +{ + "copyright": "IC Ignacio", + "format": "html", + "theme": "flesch" +} diff --git a/users/ichizok.json b/users/ichizok.json index 8ff8fd7a..d471428c 100644 --- a/users/ichizok.json +++ b/users/ichizok.json @@ -1,5 +1,5 @@ { - "copyright": "Ozaki Kiichi", - "url": "https://github.com/ichizok", - "theme": "double-windsor" + "copyright": "Ozaki Kiichi", + "url": "https://github.com/ichizok", + "theme": "double-windsor" } diff --git a/users/icq4ever.json b/users/icq4ever.json index 3af7c0b4..784507fc 100644 --- a/users/icq4ever.json +++ b/users/icq4ever.json @@ -1 +1,3 @@ -{"copyright":"Yi donghoon, http:\/\/icq4ever.net\/"} \ No newline at end of file +{ + "copyright": "Yi donghoon, http://icq4ever.net/" +} diff --git a/users/idkazuma.json b/users/idkazuma.json index dd6dce40..c6717b8c 100644 --- a/users/idkazuma.json +++ b/users/idkazuma.json @@ -1,5 +1,5 @@ { - "copyright": "Kazuma Furuhashi", - "email": "idkazuma@gmail.com", - "theme": "double-windsor" + "copyright": "Kazuma Furuhashi", + "email": "idkazuma@gmail.com", + "theme": "double-windsor" } diff --git a/users/idlua.json b/users/idlua.json index ef7e79a3..f945f2a4 100644 --- a/users/idlua.json +++ b/users/idlua.json @@ -1 +1,6 @@ -{ "copyright": "Luan Vicente", "url": "https:\/\/idlua.me", "email": "luanfrvicente@gmail.com", "theme": "plaintext" } +{ + "copyright": "Luan Vicente", + "url": "https://idlua.me", + "email": "luanfrvicente@gmail.com", + "theme": "plaintext" +} diff --git a/users/idomusha.json b/users/idomusha.json index dce8fca9..1b71dfdd 100644 --- a/users/idomusha.json +++ b/users/idomusha.json @@ -1 +1,6 @@ -{"copyright":"idomusha, https:\/\/github.com\/idomusha","url":"https:\/\/github.com\/idomusha","email":"idomusha@gmail.com","gravatar":true} \ No newline at end of file +{ + "copyright": "idomusha, https://github.com/idomusha", + "url": "https://github.com/idomusha", + "email": "idomusha@gmail.com", + "gravatar": true +} diff --git a/users/iet-ou.json b/users/iet-ou.json index a26f7f62..8497f8b7 100644 --- a/users/iet-ou.json +++ b/users/iet-ou.json @@ -1 +1,8 @@ -{"copyright":"The Open University (Institute of Educational Technology)","url":"http:\/\/iet.open.ac.uk","email":"IET-Webmaster@open.ac.uk","gravatar":true,"format":"html","theme":"opensans"} \ No newline at end of file +{ + "copyright": "The Open University (Institute of Educational Technology)", + "url": "http://iet.open.ac.uk", + "email": "IET-Webmaster@open.ac.uk", + "gravatar": true, + "format": "html", + "theme": "opensans" +} diff --git a/users/if.json b/users/if.json index f906db12..445169e0 100644 --- a/users/if.json +++ b/users/if.json @@ -1 +1,5 @@ -{"copyright":"invisible friend","url":"http:\/\/invisiblefriend.com","format":"txt"} +{ + "copyright": "invisible friend", + "url": "http://invisiblefriend.com", + "format": "txt" +} diff --git a/users/ifdattic.json b/users/ifdattic.json index 3129d590..6a002677 100644 --- a/users/ifdattic.json +++ b/users/ifdattic.json @@ -1 +1,4 @@ -{"copyright":"Andrius Marcinkevicius (Andrew M.)","url":"http:\/\/ifdattic.com"} \ No newline at end of file +{ + "copyright": "Andrius Marcinkevicius (Andrew M.)", + "url": "http://ifdattic.com" +} diff --git a/users/igliu.json b/users/igliu.json index 60a3110a..3fee8a0f 100644 --- a/users/igliu.json +++ b/users/igliu.json @@ -1 +1,3 @@ -{"copyright":"Anthony Liu"} \ No newline at end of file +{ + "copyright": "Anthony Liu" +} diff --git a/users/igneous.json b/users/igneous.json index ecf810da..f12172d7 100644 --- a/users/igneous.json +++ b/users/igneous.json @@ -1 +1,3 @@ -{"copyright":"Bucky Wolfe"} \ No newline at end of file +{ + "copyright": "Bucky Wolfe" +} diff --git a/users/ignitelabs.json b/users/ignitelabs.json index a5d03b17..adb3a767 100644 --- a/users/ignitelabs.json +++ b/users/ignitelabs.json @@ -1 +1,6 @@ -{"copyright":"Ignite Laboratories","url":"http:\/\/ignitelabs.net","email":"rpetz@ignitelabs.net","format":"txt"} \ No newline at end of file +{ + "copyright": "Ignite Laboratories", + "url": "http://ignitelabs.net", + "email": "rpetz@ignitelabs.net", + "format": "txt" +} diff --git a/users/igorcorradi.json b/users/igorcorradi.json index fadc337a..571daa0f 100644 --- a/users/igorcorradi.json +++ b/users/igorcorradi.json @@ -1 +1,4 @@ -{"copyright":"Igor Corradi","email":"igorcorradi.dev@gmail.com"} +{ + "copyright": "Igor Corradi", + "email": "igorcorradi.dev@gmail.com" +} diff --git a/users/igorprado.json b/users/igorprado.json index f9e1093a..82d8966a 100644 --- a/users/igorprado.json +++ b/users/igorprado.json @@ -1 +1,3 @@ -{"copyright":"Igor Prado"} \ No newline at end of file +{ + "copyright": "Igor Prado" +} diff --git a/users/iknew.json b/users/iknew.json index 8bfb883c..051550e8 100644 --- a/users/iknew.json +++ b/users/iknew.json @@ -1 +1,5 @@ -{"copyright": "iknew today", "url": "http:\/\/iknew.today", "email": "iknew.today@gmail.com"} +{ + "copyright": "iknew today", + "url": "http://iknew.today", + "email": "iknew.today@gmail.com" +} diff --git a/users/ilee.json b/users/ilee.json index e95f3308..6977847e 100644 --- a/users/ilee.json +++ b/users/ilee.json @@ -1 +1,6 @@ -{"copyright":"Lee Crossley","url":"http:\/\/ilee.co.uk","email":"leee@hotmail.co.uk","format":"txt"} \ No newline at end of file +{ + "copyright": "Lee Crossley", + "url": "http://ilee.co.uk", + "email": "leee@hotmail.co.uk", + "format": "txt" +} diff --git a/users/imahmoodz.json b/users/imahmoodz.json index 76398e2d..3682665c 100644 --- a/users/imahmoodz.json +++ b/users/imahmoodz.json @@ -1,6 +1,6 @@ { - "copyright": "Mahmood Zamani, http://mahmoodzamani.ir", - "url": "http://mahmoodzamani.ir", - "email": "imahmoodzamani@gmail.com", - "gravatar": true + "copyright": "Mahmood Zamani, http://mahmoodzamani.ir", + "url": "http://mahmoodzamani.ir", + "email": "imahmoodzamani@gmail.com", + "gravatar": true } diff --git a/users/imalliaros.json b/users/imalliaros.json index d461126d..1395726e 100644 --- a/users/imalliaros.json +++ b/users/imalliaros.json @@ -1,6 +1,6 @@ { - "copyright": "Jacob Malliaros", - "url": "https://jmalliaros.wordpress.com/", - "email": "imalliar@gmail.com", - "gravatar": true + "copyright": "Jacob Malliaros", + "url": "https://jmalliaros.wordpress.com/", + "email": "imalliar@gmail.com", + "gravatar": true } diff --git a/users/imjching.json b/users/imjching.json index a0d155b6..73a3a634 100644 --- a/users/imjching.json +++ b/users/imjching.json @@ -1 +1,6 @@ -{"copyright":"Jay C.","url":"http://www.imjching.com","email":"jay@imjching.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Jay C.", + "url": "http://www.imjching.com", + "email": "jay@imjching.com", + "format": "txt" +} diff --git a/users/immae.json b/users/immae.json index 8061f3e5..b7f5cc41 100644 --- a/users/immae.json +++ b/users/immae.json @@ -1 +1,5 @@ -{"copyright":"Isma\u00ebl Bouya","url":"http:\/\/www.normalesup.org\/~bouya\/","format":"txt"} \ No newline at end of file +{ + "copyright": "Isma\u00ebl Bouya", + "url": "http://www.normalesup.org/~bouya/", + "format": "txt" +} diff --git a/users/imryan.json b/users/imryan.json index 74ab6f57..c8b71aac 100644 --- a/users/imryan.json +++ b/users/imryan.json @@ -1 +1,3 @@ -{"copyright":"Ryan Cohen"} \ No newline at end of file +{ + "copyright": "Ryan Cohen" +} diff --git a/users/incertia.json b/users/incertia.json index 782b8cfc..33de29d1 100644 --- a/users/incertia.json +++ b/users/incertia.json @@ -1 +1,3 @@ -{"copyright":"incertia"} \ No newline at end of file +{ + "copyright": "incertia" +} diff --git a/users/indutny.json b/users/indutny.json index 8ba0a8bd..740859e0 100644 --- a/users/indutny.json +++ b/users/indutny.json @@ -1 +1,3 @@ -{"copyright":"Fedor Indutny"} \ No newline at end of file +{ + "copyright": "Fedor Indutny" +} diff --git a/users/indy.json b/users/indy.json index 2a829e49..c1495e74 100644 --- a/users/indy.json +++ b/users/indy.json @@ -1 +1,5 @@ -{"copyright":"Inderjit Gill","url":"http:\/\/indy.io","email":"email@indy.io"} \ No newline at end of file +{ + "copyright": "Inderjit Gill", + "url": "http://indy.io", + "email": "email@indy.io" +} diff --git a/users/inetpeople.json b/users/inetpeople.json index 77785694..5352a25f 100644 --- a/users/inetpeople.json +++ b/users/inetpeople.json @@ -1 +1,3 @@ -{"copyright":"inetpeople"} \ No newline at end of file +{ + "copyright": "inetpeople" +} diff --git a/users/instaphp.json b/users/instaphp.json index cf8cbf2b..b6328d7e 100644 --- a/users/instaphp.json +++ b/users/instaphp.json @@ -1 +1,6 @@ -{"copyright":"Randy Sesser","url":"http:\/\/instaphp.com","email":"randy@instaphp.com","format":"html"} \ No newline at end of file +{ + "copyright": "Randy Sesser", + "url": "http://instaphp.com", + "email": "randy@instaphp.com", + "format": "html" +} diff --git a/users/intergrated.json b/users/intergrated.json index 15156a75..96354c78 100644 --- a/users/intergrated.json +++ b/users/intergrated.json @@ -1 +1,6 @@ -{"copyright":"iNtergrated","url":"http:\/\/intergrated.net","format":"html","theme":"opensans"} \ No newline at end of file +{ + "copyright": "iNtergrated", + "url": "http://intergrated.net", + "format": "html", + "theme": "opensans" +} diff --git a/users/inviz.json b/users/inviz.json index dea46837..e93b5eda 100644 --- a/users/inviz.json +++ b/users/inviz.json @@ -1 +1,7 @@ -{"copyright":"Arthur Khashaev","url":"http:\/\/khashaev.ru","email":"arthur@khashaev.ru","format":"html","gravatar":true} \ No newline at end of file +{ + "copyright": "Arthur Khashaev", + "url": "http://khashaev.ru", + "email": "arthur@khashaev.ru", + "format": "html", + "gravatar": true +} diff --git a/users/ionicabizau.json b/users/ionicabizau.json index 08b384cd..8c800fdc 100644 --- a/users/ionicabizau.json +++ b/users/ionicabizau.json @@ -1 +1,3 @@ -{"copyright":"Ionic\u0103 Biz\u0103u"} \ No newline at end of file +{ + "copyright": "Ionic\u0103 Biz\u0103u" +} diff --git a/users/ionut.json b/users/ionut.json index cbae66b3..1ac6b8ae 100644 --- a/users/ionut.json +++ b/users/ionut.json @@ -1 +1,3 @@ -{"copyright":"Ionut Bajescu"} \ No newline at end of file +{ + "copyright": "Ionut Bajescu" +} diff --git a/users/irex.json b/users/irex.json index b2303160..68668577 100644 --- a/users/irex.json +++ b/users/irex.json @@ -1 +1,6 @@ -{"copyright":"Indiana Real Estate Exchangors, Inc.","url":"http:\/\/irexinc.org","email":"memborsky@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Indiana Real Estate Exchangors, Inc.", + "url": "http://irexinc.org", + "email": "memborsky@gmail.com", + "format": "txt" +} diff --git a/users/is-uz.json b/users/is-uz.json index 6d182745..d634ea2a 100644 --- a/users/is-uz.json +++ b/users/is-uz.json @@ -1 +1,6 @@ -{"copyright":"Leandro Matos","url":"http:\/\/is-uz.com","email":"leandro@is-uz.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Leandro Matos", + "url": "http://is-uz.com", + "email": "leandro@is-uz.com", + "format": "txt" +} diff --git a/users/isekaf.json b/users/isekaf.json index 58ac57e8..17975487 100644 --- a/users/isekaf.json +++ b/users/isekaf.json @@ -1 +1,4 @@ -{"copyright":"isekaf","url":"http:\/\/isekaf.github.com\/"} \ No newline at end of file +{ + "copyright": "isekaf", + "url": "http://isekaf.github.com/" +} diff --git a/users/isekivacenz.json b/users/isekivacenz.json index b5f0066c..364f77fe 100644 --- a/users/isekivacenz.json +++ b/users/isekivacenz.json @@ -1 +1,3 @@ -{"copyright":"isekivacenz"} \ No newline at end of file +{ + "copyright": "isekivacenz" +} diff --git a/users/ishands.json b/users/ishands.json index 5b8f8aad..6d0b3f22 100644 --- a/users/ishands.json +++ b/users/ishands.json @@ -1 +1,6 @@ -{"copyright":"Ishan Das Sharma","url":"https:\/\/ishands.in","email":"hello@ishands.in","format":"txt"} \ No newline at end of file +{ + "copyright": "Ishan Das Sharma", + "url": "https://ishands.in", + "email": "hello@ishands.in", + "format": "txt" +} diff --git a/users/isle.json b/users/isle.json index 449cb4cf..65c26fad 100644 --- a/users/isle.json +++ b/users/isle.json @@ -1 +1,3 @@ -{"copyright":"ISLE Consultants"} \ No newline at end of file +{ + "copyright": "ISLE Consultants" +} diff --git a/users/ismay.json b/users/ismay.json index 0711a1bf..3d047688 100644 --- a/users/ismay.json +++ b/users/ismay.json @@ -1 +1,3 @@ -{"copyright":"Ismay Wolff"} \ No newline at end of file +{ + "copyright": "Ismay Wolff" +} diff --git a/users/isoden.json b/users/isoden.json index abfb8728..3c9870c1 100644 --- a/users/isoden.json +++ b/users/isoden.json @@ -2,4 +2,4 @@ "copyright": "Yu Isoda, http://isoden.me", "url": "http://isoden.me", "theme": "opensans" -} \ No newline at end of file +} diff --git a/users/istanbulphp.json b/users/istanbulphp.json index 211aa855..7603282d 100644 --- a/users/istanbulphp.json +++ b/users/istanbulphp.json @@ -1 +1,6 @@ -{"copyright":"Istanbul PHP UG","url":"http:\/\/istanbulphp.org","email":"mail@istanbulphp.org","format":"txt"} \ No newline at end of file +{ + "copyright": "Istanbul PHP UG", + "url": "http://istanbulphp.org", + "email": "mail@istanbulphp.org", + "format": "txt" +} diff --git a/users/it-ony.json b/users/it-ony.json index 79356f76..4f0dc25f 100644 --- a/users/it-ony.json +++ b/users/it-ony.json @@ -1 +1,6 @@ -{"copyright":"Tony Findeisen","url":"http:\/\/tonyfindeisen.de","email":"license@tonyfindeisen.de","theme":"friendly"} \ No newline at end of file +{ + "copyright": "Tony Findeisen", + "url": "http://tonyfindeisen.de", + "email": "license@tonyfindeisen.de", + "theme": "friendly" +} diff --git a/users/itacirgabral.json b/users/itacirgabral.json index beca98de..c5a12cc0 100644 --- a/users/itacirgabral.json +++ b/users/itacirgabral.json @@ -1,7 +1,7 @@ { - "copyright": "Itacir Gabral, http:\/\/gabral.net", - "url": "http:\/\/github.com/itacirgabral", + "copyright": "Itacir Gabral, http://gabral.net", + "url": "http://github.com/itacirgabral", "email": "itacirgabral@gmail.com", "format": "html", "gravatar": true - } \ No newline at end of file +} diff --git a/users/italoqueiroz.json b/users/italoqueiroz.json index 36d8add3..d899825b 100644 --- a/users/italoqueiroz.json +++ b/users/italoqueiroz.json @@ -1 +1,7 @@ -{"copyright":"\u00cdtalo Queiroz, http:\/\/italoqueiroz.github.io\/","url":"http:\/\/italoqueiroz.github.io\/","email":"italoqueiroz@gmail.com","theme":"afterdark","gravatar":true} \ No newline at end of file +{ + "copyright": "\u00cdtalo Queiroz, http://italoqueiroz.github.io/", + "url": "http://italoqueiroz.github.io/", + "email": "italoqueiroz@gmail.com", + "theme": "afterdark", + "gravatar": true +} diff --git a/users/ithings4u.json b/users/ithings4u.json index 979250c4..1ffc82bd 100644 --- a/users/ithings4u.json +++ b/users/ithings4u.json @@ -1 +1,3 @@ -{"copyright":"iThings4U GmbH"} \ No newline at end of file +{ + "copyright": "iThings4U GmbH" +} diff --git a/users/itscassa.json b/users/itscassa.json index eb1637b2..7dfe2bca 100644 --- a/users/itscassa.json +++ b/users/itscassa.json @@ -1 +1,3 @@ -{"copyright":"Cas de Reuver"} \ No newline at end of file +{ + "copyright": "Cas de Reuver" +} diff --git a/users/ivangaravito.json b/users/ivangaravito.json index 0d2aa39d..37680f67 100644 --- a/users/ivangaravito.json +++ b/users/ivangaravito.json @@ -1 +1,7 @@ -{"copyright":"Ivan Garavito","url":"https:\/\/github.com\/IvanGaravito\/","email":"ivangaravito@gmail.com","theme":"default","gravatar":true} \ No newline at end of file +{ + "copyright": "Ivan Garavito", + "url": "https://github.com/IvanGaravito/", + "email": "ivangaravito@gmail.com", + "theme": "default", + "gravatar": true +} diff --git a/users/iwark.json b/users/iwark.json index 26ae2074..b8209137 100644 --- a/users/iwark.json +++ b/users/iwark.json @@ -1 +1,3 @@ -{"copyright":"Iwark"} \ No newline at end of file +{ + "copyright": "Iwark" +} diff --git a/users/izumin.json b/users/izumin.json index 09bc8211..09844d8d 100644 --- a/users/izumin.json +++ b/users/izumin.json @@ -1 +1,5 @@ -{"copyright":"Masayuki IZUMI","gravatar":true,"theme":"opensans"} \ No newline at end of file +{ + "copyright": "Masayuki IZUMI", + "gravatar": true, + "theme": "opensans" +} diff --git a/users/j.json b/users/j.json index 297bccc6..2ab5cd6f 100644 --- a/users/j.json +++ b/users/j.json @@ -1 +1,5 @@ -{"copyright":"Josue Rodriguez","email":"josue@josuerodriguez.com","url":"http:\/\/josuerodriguez.com"} \ No newline at end of file +{ + "copyright": "Josue Rodriguez", + "email": "josue@josuerodriguez.com", + "url": "http://josuerodriguez.com" +} diff --git a/users/ja.json b/users/ja.json index 432bf5fa..0be5edee 100644 --- a/users/ja.json +++ b/users/ja.json @@ -1 +1,4 @@ -{"copyright":"Jamie Akhtar","url":"http:\/\/jamieakhtar.com"} \ No newline at end of file +{ + "copyright": "Jamie Akhtar", + "url": "http://jamieakhtar.com" +} diff --git a/users/jaanek.json b/users/jaanek.json index f99f2081..92ffdf64 100644 --- a/users/jaanek.json +++ b/users/jaanek.json @@ -1 +1,6 @@ -{"copyright":"Jaanek Oja","url":"http:\/\/oja.me","email":"jaanek@oja.me","format":"txt"} \ No newline at end of file +{ + "copyright": "Jaanek Oja", + "url": "http://oja.me", + "email": "jaanek@oja.me", + "format": "txt" +} diff --git a/users/jabbrwcky.json b/users/jabbrwcky.json index 7b720c32..33025c8e 100644 --- a/users/jabbrwcky.json +++ b/users/jabbrwcky.json @@ -1 +1,6 @@ -{"copyright":"Jens Hausherr","gravatar":true,"email":"jabbrwcky@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Jens Hausherr", + "gravatar": true, + "email": "jabbrwcky@gmail.com", + "format": "txt" +} diff --git a/users/jackfischer.json b/users/jackfischer.json index 491b0f00..49bede50 100644 --- a/users/jackfischer.json +++ b/users/jackfischer.json @@ -1 +1,3 @@ -{"copyright":"Jack Fischer"} \ No newline at end of file +{ + "copyright": "Jack Fischer" +} diff --git a/users/jadn.json b/users/jadn.json index 78c173f8..30bb36c9 100644 --- a/users/jadn.json +++ b/users/jadn.json @@ -1 +1,3 @@ -{"copyright":"Aden Johannson"} \ No newline at end of file +{ + "copyright": "Aden Johannson" +} diff --git a/users/jaeckel.json b/users/jaeckel.json index 4f2b988a..8a169b17 100644 --- a/users/jaeckel.json +++ b/users/jaeckel.json @@ -1 +1,5 @@ -{"copyright":"Steffen Jaeckel","email":"j@eckel.me","format":"txt"} \ No newline at end of file +{ + "copyright": "Steffen Jaeckel", + "email": "j@eckel.me", + "format": "txt" +} diff --git a/users/jaequery.json b/users/jaequery.json index eceba13a..5fa2701d 100644 --- a/users/jaequery.json +++ b/users/jaequery.json @@ -1,4 +1,4 @@ { - "copyright": "Jae Lee, http://jaequery.com", - "url": "http://jaequery.com" + "copyright": "Jae Lee, http://jaequery.com", + "url": "http://jaequery.com" } diff --git a/users/jafnee.json b/users/jafnee.json index 25513764..1d7fac57 100644 --- a/users/jafnee.json +++ b/users/jafnee.json @@ -1 +1,3 @@ -{"copyright":"Jafnee Jesmee"} \ No newline at end of file +{ + "copyright": "Jafnee Jesmee" +} diff --git a/users/jagregory.json b/users/jagregory.json index 263dbbfa..001c2f18 100644 --- a/users/jagregory.json +++ b/users/jagregory.json @@ -1 +1,3 @@ -{"copyright":"James Gregory"} \ No newline at end of file +{ + "copyright": "James Gregory" +} diff --git a/users/jaimeneves.json b/users/jaimeneves.json index 89545457..380a2194 100644 --- a/users/jaimeneves.json +++ b/users/jaimeneves.json @@ -1,5 +1,5 @@ { - "copyright": "Jaime Neves", - "url": "https://jaimeneves.com.br", - "email": "jaimebarrosoneves@gmail.com" + "copyright": "Jaime Neves", + "url": "https://jaimeneves.com.br", + "email": "jaimebarrosoneves@gmail.com" } diff --git a/users/jais.json b/users/jais.json index 122fea28..78f915ce 100644 --- a/users/jais.json +++ b/users/jais.json @@ -1 +1,3 @@ -{"copyright":"Jais Cheema"} \ No newline at end of file +{ + "copyright": "Jais Cheema" +} diff --git a/users/jakebellacera.json b/users/jakebellacera.json index 04397dd9..29af3c2c 100644 --- a/users/jakebellacera.json +++ b/users/jakebellacera.json @@ -1 +1,3 @@ -{"copyright":"Jake Bellacera"} \ No newline at end of file +{ + "copyright": "Jake Bellacera" +} diff --git a/users/jakejohnson.json b/users/jakejohnson.json index 36f409c4..d7ff34d3 100644 --- a/users/jakejohnson.json +++ b/users/jakejohnson.json @@ -1 +1,6 @@ -{"copyright":"Jake Johnson","url":"http:\/\/xyclos.com","email":"jake@xyclos.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Jake Johnson", + "url": "http://xyclos.com", + "email": "jake@xyclos.com", + "format": "txt" +} diff --git a/users/jakemolnar.json b/users/jakemolnar.json index 426fb18d..ecdc45be 100644 --- a/users/jakemolnar.json +++ b/users/jakemolnar.json @@ -1 +1,3 @@ -{"copyright":"Jake Molnar"} \ No newline at end of file +{ + "copyright": "Jake Molnar" +} diff --git a/users/jakschu.json b/users/jakschu.json index 8fff5ae8..457d08fb 100644 --- a/users/jakschu.json +++ b/users/jakschu.json @@ -1,6 +1,6 @@ -{ - "copyright": "Jakob Schurdak", - "email": "i@jakschu.cf", - "gravatar": true, - "theme": "double-windsor" +{ + "copyright": "Jakob Schurdak", + "email": "i@jakschu.cf", + "gravatar": true, + "theme": "double-windsor" } diff --git a/users/jalanb.json b/users/jalanb.json index c792146b..99bc5670 100644 --- a/users/jalanb.json +++ b/users/jalanb.json @@ -1 +1,6 @@ -{"copyright":"J Alan Brogan","url":"http:\/\/www.al-got-rhythm.net","email":"licensing@al-got-rhythm.net","format":"txt"} \ No newline at end of file +{ + "copyright": "J Alan Brogan", + "url": "http://www.al-got-rhythm.net", + "email": "licensing@al-got-rhythm.net", + "format": "txt" +} diff --git a/users/james.json b/users/james.json index 2950a0db..ac20ffda 100644 --- a/users/james.json +++ b/users/james.json @@ -1 +1,5 @@ -{"copyright":"James Liu","url":"http:\/\/g.jamesliu.info","email":"james@jamesliu.info"} \ No newline at end of file +{ + "copyright": "James Liu", + "url": "http://g.jamesliu.info", + "email": "james@jamesliu.info" +} diff --git a/users/jameschen.json b/users/jameschen.json index 7fbf01e0..2288acde 100644 --- a/users/jameschen.json +++ b/users/jameschen.json @@ -1 +1,6 @@ -{"copyright":"James Chen","url":"http:\/\/ashchan.com","email":"ashchan@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "James Chen", + "url": "http://ashchan.com", + "email": "ashchan@gmail.com", + "format": "txt" +} diff --git a/users/jamesclebio.json b/users/jamesclebio.json index dd587b08..340db03c 100644 --- a/users/jamesclebio.json +++ b/users/jamesclebio.json @@ -1 +1,4 @@ -{"copyright":"James Cl\u00e9bio","email":"jamesclebio@gmail.com"} \ No newline at end of file +{ + "copyright": "James Cl\u00e9bio", + "email": "jamesclebio@gmail.com" +} diff --git a/users/jameslawson.json b/users/jameslawson.json index d67427b4..6103c2de 100644 --- a/users/jameslawson.json +++ b/users/jameslawson.json @@ -1,6 +1,6 @@ { - "copyright": "James Lawson", - "url": "https://github.com/jameslawson", - "email": "jameslawson@users.noreply.github.com", - "theme": "plaintext" + "copyright": "James Lawson", + "url": "https://github.com/jameslawson", + "email": "jameslawson@users.noreply.github.com", + "theme": "plaintext" } diff --git a/users/jameswyse.json b/users/jameswyse.json index 70166c1b..d1d45745 100644 --- a/users/jameswyse.json +++ b/users/jameswyse.json @@ -1,6 +1,6 @@ { - "copyright": "James Wyse, http://www.jameswyse.net", - "url": "http://www.jameswyse.net", - "email": "james@wyse.name", - "theme": "flesch" + "copyright": "James Wyse, http://www.jameswyse.net", + "url": "http://www.jameswyse.net", + "email": "james@wyse.name", + "theme": "flesch" } diff --git a/users/jamieh.json b/users/jamieh.json index 01370065..9dfbe5cc 100644 --- a/users/jamieh.json +++ b/users/jamieh.json @@ -1 +1,6 @@ -{"copyright":"Jamie Hankins","url":"http:\/\/jamiehankins.co.uk","email":"jamiehankin@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Jamie Hankins", + "url": "http://jamiehankins.co.uk", + "email": "jamiehankin@gmail.com", + "format": "txt" +} diff --git a/users/jamiemason.json b/users/jamiemason.json index 48a4de7a..a71fba81 100644 --- a/users/jamiemason.json +++ b/users/jamiemason.json @@ -1,4 +1,4 @@ { - "copyright": "Jamie Mason, @GotNoSugarBaby", - "url": "https://github.com/jamiemason" + "copyright": "Jamie Mason, @GotNoSugarBaby", + "url": "https://github.com/jamiemason" } diff --git a/users/jamiesonroberts.json b/users/jamiesonroberts.json index 57a74e86..39e3f0b2 100644 --- a/users/jamiesonroberts.json +++ b/users/jamiesonroberts.json @@ -1 +1,7 @@ -{"copyright":"Jamieson Roberts","url":"http:\/\/jamiesonroberts.ca","email":"hello@jamiesonroberts.ca","gravatar":true,"theme":"friendly"} \ No newline at end of file +{ + "copyright": "Jamieson Roberts", + "url": "http://jamiesonroberts.ca", + "email": "hello@jamiesonroberts.ca", + "gravatar": true, + "theme": "friendly" +} diff --git a/users/jan.json b/users/jan.json index f1160eda..6d9a43d1 100644 --- a/users/jan.json +++ b/users/jan.json @@ -1 +1,5 @@ -{"copyright":"Jan Lelis ","url":"http:\/\/janlelis.com","theme":"friendly"} \ No newline at end of file +{ + "copyright": "Jan Lelis ", + "url": "http://janlelis.com", + "theme": "friendly" +} diff --git a/users/jancbeck.json b/users/jancbeck.json index fb4719b4..8fd1b3a1 100644 --- a/users/jancbeck.json +++ b/users/jancbeck.json @@ -1 +1,6 @@ -{"copyright":"Jan Beck","url":"http:\/\/jancbeck.com","email":"mail@jancbeck.com","format":"html"} \ No newline at end of file +{ + "copyright": "Jan Beck", + "url": "http://jancbeck.com", + "email": "mail@jancbeck.com", + "format": "html" +} diff --git a/users/janders223.json b/users/janders223.json index 85e0343f..35baa7df 100644 --- a/users/janders223.json +++ b/users/janders223.json @@ -1 +1,5 @@ -{"copyright":"Jim Anders","url":"http:\/\/janders223.com","email":"jim@janders223.com"} \ No newline at end of file +{ + "copyright": "Jim Anders", + "url": "http://janders223.com", + "email": "jim@janders223.com" +} diff --git a/users/jaredverdi.json b/users/jaredverdi.json index f361b45a..b24d7153 100644 --- a/users/jaredverdi.json +++ b/users/jaredverdi.json @@ -1 +1,7 @@ -{"copyright":"Jared Verdi","url":"http:\/\/jaredverdi.com","email":"jared@jaredverdi.com","format":"html","gravatar":true} \ No newline at end of file +{ + "copyright": "Jared Verdi", + "url": "http://jaredverdi.com", + "email": "jared@jaredverdi.com", + "format": "html", + "gravatar": true +} diff --git a/users/jas0ncn.json b/users/jas0ncn.json index f5c2c736..f956e715 100644 --- a/users/jas0ncn.json +++ b/users/jas0ncn.json @@ -1,8 +1,8 @@ { - "copyright": "Jason Chen, https://github.com/jas0ncn", - "url": "http://ijason.cc", - "format": "txt", - "email": "jason@iszu.cn", - "gravatar": true, - "theme" : "double-windsor" + "copyright": "Jason Chen, https://github.com/jas0ncn", + "url": "http://ijason.cc", + "format": "txt", + "email": "jason@iszu.cn", + "gravatar": true, + "theme": "double-windsor" } diff --git a/users/jasl.json b/users/jasl.json index dca97da0..5d90f81e 100644 --- a/users/jasl.json +++ b/users/jasl.json @@ -1 +1,4 @@ -{"copyright":"Jun Jiang","email":"jasl9187@hotmail.com"} \ No newline at end of file +{ + "copyright": "Jun Jiang", + "email": "jasl9187@hotmail.com" +} diff --git a/users/jasondavis.json b/users/jasondavis.json index a584fed1..5d6f3760 100644 --- a/users/jasondavis.json +++ b/users/jasondavis.json @@ -1,6 +1,6 @@ { - "copyright": "Kenneth Jason Davis, http://www.codeDevelopr.com", - "url": "http://www.codedevelopr.com", - "email": "jason.davis.fl@gmail.com", - "theme": "flesch" + "copyright": "Kenneth Jason Davis, http://www.codeDevelopr.com", + "url": "http://www.codedevelopr.com", + "email": "jason.davis.fl@gmail.com", + "theme": "flesch" } diff --git a/users/jasondemeuse.json b/users/jasondemeuse.json index 2d594f5a..854c6bc6 100644 --- a/users/jasondemeuse.json +++ b/users/jasondemeuse.json @@ -1 +1,3 @@ -{"copyright":"Jason Demeuse"} \ No newline at end of file +{ + "copyright": "Jason Demeuse" +} diff --git a/users/jasvir.json b/users/jasvir.json index 1af65897..4c1f2315 100644 --- a/users/jasvir.json +++ b/users/jasvir.json @@ -1 +1,3 @@ -{"copyright":"Jasvir Singh Cheema"} \ No newline at end of file +{ + "copyright": "Jasvir Singh Cheema" +} diff --git a/users/jaswinder.json b/users/jaswinder.json index 664ad9a1..edd9ab87 100644 --- a/users/jaswinder.json +++ b/users/jaswinder.json @@ -1,7 +1,7 @@ { - "copyright": "Jaswinder Singh, http://about.me/itsjaswinder", - "url": "http://about.me/itsjaswinder", - "email": "s.jaswinder03@gmail.com", - "gravatar": true, - "theme": "eula-modern" + "copyright": "Jaswinder Singh, http://about.me/itsjaswinder", + "url": "http://about.me/itsjaswinder", + "email": "s.jaswinder03@gmail.com", + "gravatar": true, + "theme": "eula-modern" } diff --git a/users/jautero.json b/users/jautero.json index 05c1ab43..b8e1e2e9 100644 --- a/users/jautero.json +++ b/users/jautero.json @@ -1 +1,5 @@ -{"copyright":"Juha Autero","url":"http:\/\/jautero.net\/","email":"jautero@iki.fi"} \ No newline at end of file +{ + "copyright": "Juha Autero", + "url": "http://jautero.net/", + "email": "jautero@iki.fi" +} diff --git a/users/jay.json b/users/jay.json index 82fb0773..a5f298dd 100644 --- a/users/jay.json +++ b/users/jay.json @@ -1 +1,3 @@ -{"copyright":"Jay Bosamiya"} +{ + "copyright": "Jay Bosamiya" +} diff --git a/users/jaydson.json b/users/jaydson.json index ac3e069f..ef0e086b 100644 --- a/users/jaydson.json +++ b/users/jaydson.json @@ -1 +1,6 @@ -{"copyright":"Jaydson Gomes","url":"http:\/\/jaydson.org","email":"jayalemao@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Jaydson Gomes", + "url": "http://jaydson.org", + "email": "jayalemao@gmail.com", + "format": "txt" +} diff --git a/users/jaylynch.json b/users/jaylynch.json index 9a0da5f9..bb2dc319 100644 --- a/users/jaylynch.json +++ b/users/jaylynch.json @@ -1 +1,5 @@ -{"copyright":"Jay Lynch","url":"http:\/\/jaylyn.ch","theme":"default-dark"} \ No newline at end of file +{ + "copyright": "Jay Lynch", + "url": "http://jaylyn.ch", + "theme": "default-dark" +} diff --git a/users/jaymecd.json b/users/jaymecd.json index 8db4c59f..82d3b413 100644 --- a/users/jaymecd.json +++ b/users/jaymecd.json @@ -1,6 +1,6 @@ -{ - "copyright": "Nikolai Zujev", - "email": "nikolai.zujev@gmail.com", - "theme": "dusk", - "gravatar": true +{ + "copyright": "Nikolai Zujev", + "email": "nikolai.zujev@gmail.com", + "theme": "dusk", + "gravatar": true } diff --git a/users/jballard.json b/users/jballard.json index cb1bc6fc..3fcf5375 100644 --- a/users/jballard.json +++ b/users/jballard.json @@ -1 +1,4 @@ -{"copyright":"Jonathan Ballard","email":"jonathan.ballard@gmail.com"} \ No newline at end of file +{ + "copyright": "Jonathan Ballard", + "email": "jonathan.ballard@gmail.com" +} diff --git a/users/jbb.json b/users/jbb.json index cea6d310..635bcfc9 100644 --- a/users/jbb.json +++ b/users/jbb.json @@ -1 +1,3 @@ -{"copyright":"Joey Blake"} \ No newline at end of file +{ + "copyright": "Joey Blake" +} diff --git a/users/jbenet.json b/users/jbenet.json index 661d9998..cbdeecc0 100644 --- a/users/jbenet.json +++ b/users/jbenet.json @@ -1 +1,3 @@ -{"copyright":"Juan Batiz-Benet"} \ No newline at end of file +{ + "copyright": "Juan Batiz-Benet" +} diff --git a/users/jbonnier.json b/users/jbonnier.json index 2e182477..8c499e1c 100644 --- a/users/jbonnier.json +++ b/users/jbonnier.json @@ -1,8 +1,8 @@ - { - "copyright": "Julien Bonnier, http://julienbonnier.com", - "url": "http://julienbonnier.com", - "format": "txt", - "email": "j.bonnier@gmail.com", - "gravatar": true, - "theme" : "default" +{ + "copyright": "Julien Bonnier, http://julienbonnier.com", + "url": "http://julienbonnier.com", + "format": "txt", + "email": "j.bonnier@gmail.com", + "gravatar": true, + "theme": "default" } diff --git a/users/jbradach.json b/users/jbradach.json index a53198de..fafbac98 100644 --- a/users/jbradach.json +++ b/users/jbradach.json @@ -1,8 +1,8 @@ { - "copyright": "James Bradach, https://jamesbradach.com", - "url": "https://jamesbradach.com", - "email": "heythere@jamesbradach.com", - "format": "html", - "gravatar": true, - "theme": "eula-modern" + "copyright": "James Bradach, https://jamesbradach.com", + "url": "https://jamesbradach.com", + "email": "heythere@jamesbradach.com", + "format": "html", + "gravatar": true, + "theme": "eula-modern" } diff --git a/users/jbrodriguez.json b/users/jbrodriguez.json index 5745d5b2..dbff5b78 100644 --- a/users/jbrodriguez.json +++ b/users/jbrodriguez.json @@ -1 +1,5 @@ -{"copyright":"Juan B. Rodriguez, http:\/\/www.apertoire.net","url":"http:\/\/www.apertoire.net","email":"jbrodriguez@apertoire.net"} \ No newline at end of file +{ + "copyright": "Juan B. Rodriguez, http://www.apertoire.net", + "url": "http://www.apertoire.net", + "email": "jbrodriguez@apertoire.net" +} diff --git a/users/jbrooksuk.json b/users/jbrooksuk.json index e4ec8cca..6c5a5026 100644 --- a/users/jbrooksuk.json +++ b/users/jbrooksuk.json @@ -1 +1,7 @@ -{"copyright":"James Brooks","url":"http:\/\/james-brooks.uk","email":"jbrooksuk@me.com","theme":"white cherry","gravatar":true} +{ + "copyright": "James Brooks", + "url": "http://james-brooks.uk", + "email": "jbrooksuk@me.com", + "theme": "white cherry", + "gravatar": true +} diff --git a/users/jc.json b/users/jc.json index c3d76550..69bbe546 100644 --- a/users/jc.json +++ b/users/jc.json @@ -1 +1,3 @@ -{"copyright":"Jonathan Crooke"} \ No newline at end of file +{ + "copyright": "Jonathan Crooke" +} diff --git a/users/jcarouth.json b/users/jcarouth.json index edfdbcb0..98cd6798 100644 --- a/users/jcarouth.json +++ b/users/jcarouth.json @@ -1 +1,5 @@ -{"copyright":"Jeff Carouth http:\/\/carouth.com","url":"http:\/\/carouth.com","email":"jcarouth@gmail.com"} \ No newline at end of file +{ + "copyright": "Jeff Carouth http://carouth.com", + "url": "http://carouth.com", + "email": "jcarouth@gmail.com" +} diff --git a/users/jcart1666.json b/users/jcart1666.json index d27887d5..8361818d 100644 --- a/users/jcart1666.json +++ b/users/jcart1666.json @@ -1 +1,4 @@ -{"copyright":"Jonathan Cartwright\nThank you","format":"txt"} \ No newline at end of file +{ + "copyright": "Jonathan Cartwright\nThank you", + "format": "txt" +} diff --git a/users/jcfausto.json b/users/jcfausto.json index dabfa6f5..ae0e2bc4 100644 --- a/users/jcfausto.json +++ b/users/jcfausto.json @@ -1,7 +1,7 @@ { - "copyright": "Julio Cesar Fausto", - "url": "http://jcfausto.com", - "email": "jcfausto@gmail.com", - "format": "html", - "theme": "default" + "copyright": "Julio Cesar Fausto", + "url": "http://jcfausto.com", + "email": "jcfausto@gmail.com", + "format": "html", + "theme": "default" } diff --git a/users/jcuri.json b/users/jcuri.json index e9058e68..2536c033 100644 --- a/users/jcuri.json +++ b/users/jcuri.json @@ -1 +1,3 @@ -{"copyright":"J-Curi"} \ No newline at end of file +{ + "copyright": "J-Curi" +} diff --git a/users/jczimm.json b/users/jczimm.json index 390fd7b3..aac6ba6d 100644 --- a/users/jczimm.json +++ b/users/jczimm.json @@ -1 +1,7 @@ -{"copyright":"Jacob Zimmerman","url":"http:\/\/jczimm.com","email":"jczimm@jczimm.com","format":"html","gravatar":true} +{ + "copyright": "Jacob Zimmerman", + "url": "http://jczimm.com", + "email": "jczimm@jczimm.com", + "format": "html", + "gravatar": true +} diff --git a/users/jdalton.json b/users/jdalton.json index fc0c85c8..593689c8 100644 --- a/users/jdalton.json +++ b/users/jdalton.json @@ -1,5 +1,5 @@ { - "copyright": "John-David Dalton", - "url": "http://allyoucanleet.com/", - "theme": "double-windsor" + "copyright": "John-David Dalton", + "url": "http://allyoucanleet.com/", + "theme": "double-windsor" } diff --git a/users/jdavis.json b/users/jdavis.json index 667587b1..1c1c9c08 100644 --- a/users/jdavis.json +++ b/users/jdavis.json @@ -1 +1,6 @@ -{"copyright":"Josh Davis","url":"http:\/\/joshldavis.com","email":"josh@joshldavis.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Josh Davis", + "url": "http://joshldavis.com", + "email": "josh@joshldavis.com", + "format": "txt" +} diff --git a/users/jden.json b/users/jden.json index bac6e5e6..addf2add 100644 --- a/users/jden.json +++ b/users/jden.json @@ -1 +1,6 @@ -{"copyright":"Jason Denizac","url":"http:\/\/jden.us","email":"jason@denizac.org","format":"txt"} \ No newline at end of file +{ + "copyright": "Jason Denizac", + "url": "http://jden.us", + "email": "jason@denizac.org", + "format": "txt" +} diff --git a/users/jdiamond.json b/users/jdiamond.json index 2f52d90b..0482f79b 100644 --- a/users/jdiamond.json +++ b/users/jdiamond.json @@ -1 +1,3 @@ -{"copyright":"Jason Diamond"} \ No newline at end of file +{ + "copyright": "Jason Diamond" +} diff --git a/users/jdrd.json b/users/jdrd.json index 3b7dbbfd..a420440b 100644 --- a/users/jdrd.json +++ b/users/jdrd.json @@ -1 +1,6 @@ -{"copyright":"Joel Ruhland","url":"http:\/\/joelruhland.net","email":"contact@joelruhland.net","format":"txt"} \ No newline at end of file +{ + "copyright": "Joel Ruhland", + "url": "http://joelruhland.net", + "email": "contact@joelruhland.net", + "format": "txt" +} diff --git a/users/jeanperez.json b/users/jeanperez.json index cf70369d..3d223fe0 100644 --- a/users/jeanperez.json +++ b/users/jeanperez.json @@ -1 +1,6 @@ -{"copyright":"Jean Prez","url":"http:\/\/jeanperez.com","email":"contacto@jeanperez.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Jean Prez", + "url": "http://jeanperez.com", + "email": "contacto@jeanperez.com", + "format": "txt" +} diff --git a/users/jeanpimentel.json b/users/jeanpimentel.json index bc0f871c..a2697336 100644 --- a/users/jeanpimentel.json +++ b/users/jeanpimentel.json @@ -1 +1,6 @@ -{"copyright":"Jean Pimentel","url":"http:\/\/www.jeanpimentel.com.br","email":"contato@jeanpimentel.com.br","format":"txt"} \ No newline at end of file +{ + "copyright": "Jean Pimentel", + "url": "http://www.jeanpimentel.com.br", + "email": "contato@jeanpimentel.com.br", + "format": "txt" +} diff --git a/users/jeff.json b/users/jeff.json index fb3c4c71..78ef95a9 100644 --- a/users/jeff.json +++ b/users/jeff.json @@ -1 +1,6 @@ -{"copyright":"Jeffrey Godwyll","url":"http:\/\/jeffgodwyll.com","email":"jeffgodwyll+mit@gmail.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Jeffrey Godwyll", + "url": "http://jeffgodwyll.com", + "email": "jeffgodwyll+mit@gmail.com", + "gravatar": true +} diff --git a/users/jeffdecola.json b/users/jeffdecola.json index 9d7c740f..614ee3d8 100644 --- a/users/jeffdecola.json +++ b/users/jeffdecola.json @@ -1,7 +1,7 @@ { - "copyright": "Jeffry A. DeCola", - "url": "https://github.com/JeffDeCola", - "format": "html", - "theme": "double-windsor", - "gravatar": true + "copyright": "Jeffry A. DeCola", + "url": "https://github.com/JeffDeCola", + "format": "html", + "theme": "double-windsor", + "gravatar": true } diff --git a/users/jeffmccoy.json b/users/jeffmccoy.json index 9d524320..fa90266f 100644 --- a/users/jeffmccoy.json +++ b/users/jeffmccoy.json @@ -1 +1,6 @@ -{"copyright":"Jeff McCoy","url":"http:\/\/jeffm.us","email":"me@jeffm.us","theme":"afterdark"} \ No newline at end of file +{ + "copyright": "Jeff McCoy", + "url": "http://jeffm.us", + "email": "me@jeffm.us", + "theme": "afterdark" +} diff --git a/users/jeffreymeng.json b/users/jeffreymeng.json index 3da3ec09..bb8e7138 100644 --- a/users/jeffreymeng.json +++ b/users/jeffreymeng.json @@ -1,8 +1,8 @@ -{ - "copyright":"Jeffrey Meng", - "url":"https://www.jeffkmeng.com", - "email":"jeffkmeng@gmail.com", - "format":"html", - "gravatar":true, - "theme":"dusk" +{ + "copyright": "Jeffrey Meng", + "url": "https://www.jeffkmeng.com", + "email": "jeffkmeng@gmail.com", + "format": "html", + "gravatar": true, + "theme": "dusk" } diff --git a/users/jefsama.json b/users/jefsama.json index b842615e..10a6e675 100644 --- a/users/jefsama.json +++ b/users/jefsama.json @@ -1,8 +1,8 @@ { - "copyright": "Jeferson Mari", - "url": "https://github.com/JefMari", - "email": "slash.jeferson@gmail.com", - "format": "html", - "gravatar": true, - "theme": "material-cyan" + "copyright": "Jeferson Mari", + "url": "https://github.com/JefMari", + "email": "slash.jeferson@gmail.com", + "format": "html", + "gravatar": true, + "theme": "material-cyan" } diff --git a/users/jellekralt.json b/users/jellekralt.json index 24aa150e..b4415d73 100644 --- a/users/jellekralt.json +++ b/users/jellekralt.json @@ -1,6 +1,6 @@ { - "copyright": "Jelle Kralt, http://jellekralt.nl", - "url": "http://jellekralt.nl", - "theme": "flesch", - "gravatar": true + "copyright": "Jelle Kralt, http://jellekralt.nl", + "url": "http://jellekralt.nl", + "theme": "flesch", + "gravatar": true } diff --git a/users/jelmer.json b/users/jelmer.json index 3d28bbd0..37acf839 100644 --- a/users/jelmer.json +++ b/users/jelmer.json @@ -1,4 +1,4 @@ { - "copyright": "Jelmer de Maat, https://github.com/jelmerdemaat", - "url": "https://github.com/jelmerdemaat/" + "copyright": "Jelmer de Maat, https://github.com/jelmerdemaat", + "url": "https://github.com/jelmerdemaat/" } diff --git a/users/jemos.json b/users/jemos.json index e339d072..c11cd05c 100644 --- a/users/jemos.json +++ b/users/jemos.json @@ -1 +1,3 @@ -{"copyright":"Jean-Fran\u00e7ois Mousinho"} \ No newline at end of file +{ + "copyright": "Jean-Fran\u00e7ois Mousinho" +} diff --git a/users/jenish.json b/users/jenish.json index ae5aa399..451ce881 100644 --- a/users/jenish.json +++ b/users/jenish.json @@ -1 +1,3 @@ -{"copyright":"Rakholiya Jenish"} \ No newline at end of file +{ + "copyright": "Rakholiya Jenish" +} diff --git a/users/jeremy.json b/users/jeremy.json index b07382b7..ee64b75a 100644 --- a/users/jeremy.json +++ b/users/jeremy.json @@ -1,6 +1,6 @@ { - "copyright": "Jeremy Gordon, http://www.jeremyrgordon.com", - "url": "http://www.jeremyrgordon.com", - "email": "onejgordon@gmail.com", - "gravatar": true + "copyright": "Jeremy Gordon, http://www.jeremyrgordon.com", + "url": "http://www.jeremyrgordon.com", + "email": "onejgordon@gmail.com", + "gravatar": true } diff --git a/users/jeremykendall.json b/users/jeremykendall.json index 75c0130d..884d59f2 100644 --- a/users/jeremykendall.json +++ b/users/jeremykendall.json @@ -1,5 +1,5 @@ { - "copyright": "Jeremy Kendall, http://about.me/jeremykendall", - "url": "http://about.me/jeremykendall", - "theme": "flesch" + "copyright": "Jeremy Kendall, http://about.me/jeremykendall", + "url": "http://about.me/jeremykendall", + "theme": "flesch" } diff --git a/users/jericho.json b/users/jericho.json index 71e2ed9e..560d8b3a 100644 --- a/users/jericho.json +++ b/users/jericho.json @@ -1 +1,3 @@ -{"copyright":"Jeremie Desautels"} \ No newline at end of file +{ + "copyright": "Jeremie Desautels" +} diff --git a/users/jermorin.json b/users/jermorin.json index b75cdc5d..65e14355 100644 --- a/users/jermorin.json +++ b/users/jermorin.json @@ -1 +1,6 @@ -{"copyright":"J\u00e9r\u00e9my Morin","url":"http:\/\/jermor.in","email":"hi@jermor.in","theme":"solarized"} \ No newline at end of file +{ + "copyright": "J\u00e9r\u00e9my Morin", + "url": "http://jermor.in", + "email": "hi@jermor.in", + "theme": "solarized" +} diff --git a/users/jeroenvisser.json b/users/jeroenvisser.json index 12633318..25d34688 100644 --- a/users/jeroenvisser.json +++ b/users/jeroenvisser.json @@ -1 +1,7 @@ -{"copyright":"Jeroen Visser","url":"http:\/\/jrnv.nl\/","email":"me@jrnv.nl","format":"html","gravatar":true} \ No newline at end of file +{ + "copyright": "Jeroen Visser", + "url": "http://jrnv.nl/", + "email": "me@jrnv.nl", + "format": "html", + "gravatar": true +} diff --git a/users/jeroenvisser101.json b/users/jeroenvisser101.json index 830ed142..e23a95f6 100644 --- a/users/jeroenvisser101.json +++ b/users/jeroenvisser101.json @@ -1 +1,7 @@ -{"copyright":"Jeroen Visser","url":"http:\/\/jrnv.nl","email":"jeroenvisser101@gmail.com","format":"html","gravatar":true} \ No newline at end of file +{ + "copyright": "Jeroen Visser", + "url": "http://jrnv.nl", + "email": "jeroenvisser101@gmail.com", + "format": "html", + "gravatar": true +} diff --git a/users/jesseflorig.json b/users/jesseflorig.json index dfbef477..e5acabd2 100644 --- a/users/jesseflorig.json +++ b/users/jesseflorig.json @@ -1,6 +1,6 @@ { - "copyright": "Jesse Florig", - "url": "http://jesseflorig.com", - "email": "contact@jesseflorig.com", - "format": "txt" + "copyright": "Jesse Florig", + "url": "http://jesseflorig.com", + "email": "contact@jesseflorig.com", + "format": "txt" } diff --git a/users/jet.json b/users/jet.json index 3ef47e43..592a62be 100644 --- a/users/jet.json +++ b/users/jet.json @@ -1 +1,6 @@ -{"copyright":"Jerrold R Thompson","url":"http:\/\/ironhorserails.com","email":"jet@ironhorserails.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Jerrold R Thompson", + "url": "http://ironhorserails.com", + "email": "jet@ironhorserails.com", + "format": "txt" +} diff --git a/users/jetienne.json b/users/jetienne.json index 8adf4cb5..f0656e2c 100644 --- a/users/jetienne.json +++ b/users/jetienne.json @@ -1,4 +1,4 @@ { - "copyright": "Jerome Etienne, http://jetienne.com", - "url": "http://jetienne.com" + "copyright": "Jerome Etienne, http://jetienne.com", + "url": "http://jetienne.com" } diff --git a/users/jfgodoy.json b/users/jfgodoy.json index 3a4de520..f0c4f8e9 100644 --- a/users/jfgodoy.json +++ b/users/jfgodoy.json @@ -1 +1,5 @@ -{"copyright":"Jorge Godoy","email":"godoy.jf@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Jorge Godoy", + "email": "godoy.jf@gmail.com", + "format": "txt" +} diff --git a/users/jfsiii.json b/users/jfsiii.json index c93d4cc9..4e1e5302 100644 --- a/users/jfsiii.json +++ b/users/jfsiii.json @@ -1 +1,4 @@ -{"copyright":"John Schulz","theme":"flesch"} \ No newline at end of file +{ + "copyright": "John Schulz", + "theme": "flesch" +} diff --git a/users/jgrossi.json b/users/jgrossi.json index 922acec8..04986357 100644 --- a/users/jgrossi.json +++ b/users/jgrossi.json @@ -1 +1,5 @@ -{"copyright":"Junior Grossi","url":"http:\/\/jgrossi.com","email":"juniorgro@gmail.com"} \ No newline at end of file +{ + "copyright": "Junior Grossi", + "url": "http://jgrossi.com", + "email": "juniorgro@gmail.com" +} diff --git a/users/jhink.json b/users/jhink.json index 800bcc85..c9738f70 100644 --- a/users/jhink.json +++ b/users/jhink.json @@ -1,6 +1,6 @@ -{ - "copyright": "Jhink Solutions", - "email": "we@jhink.com", - "format": "html", - "theme": "material-indigo" +{ + "copyright": "Jhink Solutions", + "email": "we@jhink.com", + "format": "html", + "theme": "material-indigo" } diff --git a/users/ji.json b/users/ji.json index 63899ceb..a21562d4 100644 --- a/users/ji.json +++ b/users/ji.json @@ -1 +1,4 @@ -{"copyright":"Jamie Isaacs, http:\/\/jamieisaacs.com","email":"pdt256@gmail.com"} \ No newline at end of file +{ + "copyright": "Jamie Isaacs, http://jamieisaacs.com", + "email": "pdt256@gmail.com" +} diff --git a/users/jimeh.json b/users/jimeh.json index b279709a..2c68c495 100644 --- a/users/jimeh.json +++ b/users/jimeh.json @@ -1,5 +1,5 @@ { - "copyright":"Jim Myhrberg (jimeh).", - "url":"http:\/\/jimeh.me", - "format":"txt" + "copyright": "Jim Myhrberg (jimeh).", + "url": "http://jimeh.me", + "format": "txt" } diff --git a/users/jimjum.json b/users/jimjum.json index 694c1608..34890704 100644 --- a/users/jimjum.json +++ b/users/jimjum.json @@ -1 +1,3 @@ -{"copyright":"HTML23, inc."} \ No newline at end of file +{ + "copyright": "HTML23, inc." +} diff --git a/users/jimmyking.json b/users/jimmyking.json index 2ae078ca..ff5ee6d1 100644 --- a/users/jimmyking.json +++ b/users/jimmyking.json @@ -1 +1,7 @@ -{"copyright":"Jimmy King, http:\/\/jimmyking.me","url":"http:\/\/jimmyking.me","email":"hello@jimmyking.me","gravatar":true,"theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Jimmy King, http://jimmyking.me", + "url": "http://jimmyking.me", + "email": "hello@jimmyking.me", + "gravatar": true, + "theme": "double-windsor" +} diff --git a/users/jin.json b/users/jin.json index 0d7c3e19..cb2f71d3 100644 --- a/users/jin.json +++ b/users/jin.json @@ -1 +1,3 @@ -{"copyright":"JIN YANG"} \ No newline at end of file +{ + "copyright": "JIN YANG" +} diff --git a/users/jinnovation.json b/users/jinnovation.json index d73be284..012b0308 100644 --- a/users/jinnovation.json +++ b/users/jinnovation.json @@ -1 +1,3 @@ -{"copyright":"Jonathan Jin"} \ No newline at end of file +{ + "copyright": "Jonathan Jin" +} diff --git a/users/jitinl.json b/users/jitinl.json index 1ff9a809..57660feb 100644 --- a/users/jitinl.json +++ b/users/jitinl.json @@ -1 +1,3 @@ -{"copyright":"Jitin Luthra"} \ No newline at end of file +{ + "copyright": "Jitin Luthra" +} diff --git a/users/jizoo.json b/users/jizoo.json index f92e784f..2d2e99ac 100644 --- a/users/jizoo.json +++ b/users/jizoo.json @@ -1 +1,5 @@ -{"copyright":"Jizoo","url":"http:\/\/jizoo.net","format":"txt"} \ No newline at end of file +{ + "copyright": "Jizoo", + "url": "http://jizoo.net", + "format": "txt" +} diff --git a/users/jj1bdx.json b/users/jj1bdx.json index 35518e3c..0a8d78cc 100644 --- a/users/jj1bdx.json +++ b/users/jj1bdx.json @@ -1 +1,6 @@ -{"copyright":"Kenji Rikitake","url":"http:\/\/www.k2r.org\/kenji\/","email":"kenji.rikitake@acm.org","format":"txt"} \ No newline at end of file +{ + "copyright": "Kenji Rikitake", + "url": "http://www.k2r.org/kenji/", + "email": "kenji.rikitake@acm.org", + "format": "txt" +} diff --git a/users/jkeyes.json b/users/jkeyes.json index 33309862..94bf724b 100644 --- a/users/jkeyes.json +++ b/users/jkeyes.json @@ -1 +1,5 @@ -{"copyright":"John Keyes","url":"http:\/\/keyes.ie","email":"john@keyes.ie"} \ No newline at end of file +{ + "copyright": "John Keyes", + "url": "http://keyes.ie", + "email": "john@keyes.ie" +} diff --git a/users/jmazz.json b/users/jmazz.json index 1b46992a..c65daafa 100644 --- a/users/jmazz.json +++ b/users/jmazz.json @@ -1 +1,6 @@ -{"copyright":"Julian Mazzitelli","url":"http:\/\/jmazz.me","email":"mazzitelli.julian@gmail.com","theme":"xtansia"} \ No newline at end of file +{ + "copyright": "Julian Mazzitelli", + "url": "http://jmazz.me", + "email": "mazzitelli.julian@gmail.com", + "theme": "xtansia" +} diff --git a/users/jmblog.json b/users/jmblog.json index 1ddd7a2a..85c61034 100644 --- a/users/jmblog.json +++ b/users/jmblog.json @@ -1,4 +1,4 @@ { - "copyright": "Yoshihide Jimbo", - "url": "https://github.com/jmblog/" + "copyright": "Yoshihide Jimbo", + "url": "https://github.com/jmblog/" } diff --git a/users/jmendeth.json b/users/jmendeth.json index ac75b206..613595f2 100644 --- a/users/jmendeth.json +++ b/users/jmendeth.json @@ -1 +1,6 @@ -{"copyright":"Xavier Mendez","url":"http:\/\/jmendeth.com","email":"jmendeth@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Xavier Mendez", + "url": "http://jmendeth.com", + "email": "jmendeth@gmail.com", + "format": "txt" +} diff --git a/users/jmeosbn.json b/users/jmeosbn.json index bd1cfec9..1e7c180f 100644 --- a/users/jmeosbn.json +++ b/users/jmeosbn.json @@ -1 +1,4 @@ -{"copyright":"Jamie Osborne","url":"http:\/\/jmeosbn.github.io"} \ No newline at end of file +{ + "copyright": "Jamie Osborne", + "url": "http://jmeosbn.github.io" +} diff --git a/users/jmhodges.json b/users/jmhodges.json index b1b23bad..a2789aca 100644 --- a/users/jmhodges.json +++ b/users/jmhodges.json @@ -1 +1,6 @@ -{"copyright":"Jeff Hodges","url":"http:\/\/www.somethingsimilar.com","email":"jeff@somethingsimilar.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Jeff Hodges", + "url": "http://www.somethingsimilar.com", + "email": "jeff@somethingsimilar.com", + "format": "txt" +} diff --git a/users/jmiller.json b/users/jmiller.json index 23d83390..d66b8790 100644 --- a/users/jmiller.json +++ b/users/jmiller.json @@ -1 +1,4 @@ -{"copyright":"Jesse Miller","email":"jmiller@jmiller.com"} \ No newline at end of file +{ + "copyright": "Jesse Miller", + "email": "jmiller@jmiller.com" +} diff --git a/users/jmm.json b/users/jmm.json index abbac01e..bdf33786 100644 --- a/users/jmm.json +++ b/users/jmm.json @@ -1 +1,3 @@ -{"copyright":"john muhl"} \ No newline at end of file +{ + "copyright": "john muhl" +} diff --git a/users/jmparsons.json b/users/jmparsons.json index 99469722..2c43f466 100644 --- a/users/jmparsons.json +++ b/users/jmparsons.json @@ -1 +1,3 @@ -{"copyright":"Jonathan Parsons"} \ No newline at end of file +{ + "copyright": "Jonathan Parsons" +} diff --git a/users/jnf.json b/users/jnf.json index 78986dd2..7f6675a5 100644 --- a/users/jnf.json +++ b/users/jnf.json @@ -1 +1,3 @@ -{"copyright":"Jeremy Flores"} \ No newline at end of file +{ + "copyright": "Jeremy Flores" +} diff --git a/users/jnj.json b/users/jnj.json index e3d59763..cfe5b772 100644 --- a/users/jnj.json +++ b/users/jnj.json @@ -1 +1,7 @@ -{"copyright":"jake johns ","url":"http:\/\/jakejohns.net","email":"jake@jakejohns.net","gravatar":true,"theme":"black-beauty"} \ No newline at end of file +{ + "copyright": "jake johns ", + "url": "http://jakejohns.net", + "email": "jake@jakejohns.net", + "gravatar": true, + "theme": "black-beauty" +} diff --git a/users/jnjosh.json b/users/jnjosh.json index 855ee216..9dee0baa 100644 --- a/users/jnjosh.json +++ b/users/jnjosh.json @@ -1 +1,5 @@ -{"copyright":"Josh Johnson","url":"http:\/\/jnjosh.com","email":"jnjosh@jnjosh.com"} \ No newline at end of file +{ + "copyright": "Josh Johnson", + "url": "http://jnjosh.com", + "email": "jnjosh@jnjosh.com" +} diff --git a/users/jnw.json b/users/jnw.json index 4448017e..dcd705cc 100644 --- a/users/jnw.json +++ b/users/jnw.json @@ -1 +1,6 @@ -{"copyright":"JNW, http:\/\/jnw.io\/","url":"http:\/\/jnw.io\/","email":"william@jnw.io","gravatar":true} \ No newline at end of file +{ + "copyright": "JNW, http://jnw.io/", + "url": "http://jnw.io/", + "email": "william@jnw.io", + "gravatar": true +} diff --git a/users/joaos.json b/users/joaos.json index 52772956..317eb62e 100644 --- a/users/joaos.json +++ b/users/joaos.json @@ -1,8 +1,8 @@ { - "copyright":"João Santana", - "url":"http://www.lonedevsoftware.xyz", - "email":"joaosantana@outlook.com", - "format":"html", - "gravatar":true, - "theme":"eula-modern" + "copyright": "Jo\u00c3\u00a3o Santana", + "url": "http://www.lonedevsoftware.xyz", + "email": "joaosantana@outlook.com", + "format": "html", + "gravatar": true, + "theme": "eula-modern" } diff --git a/users/jobquest.json b/users/jobquest.json index 49e3e9da..39e6891d 100644 --- a/users/jobquest.json +++ b/users/jobquest.json @@ -1 +1,7 @@ -{"copyright":"JobQuest","url":"http:\/\/jobquest.heroku.com","email":"thisisjobquest@.com","format":"txt","theme":"white cherry"} \ No newline at end of file +{ + "copyright": "JobQuest", + "url": "http://jobquest.heroku.com", + "email": "thisisjobquest@.com", + "format": "txt", + "theme": "white cherry" +} diff --git a/users/jody.json b/users/jody.json index f85d3774..6999e7ef 100644 --- a/users/jody.json +++ b/users/jody.json @@ -1 +1,4 @@ -{"copyright":"Jody Mickey","url":"http:\/\/jodymickey.com"} \ No newline at end of file +{ + "copyright": "Jody Mickey", + "url": "http://jodymickey.com" +} diff --git a/users/joe.json b/users/joe.json index 1de521d4..ff032bb1 100644 --- a/users/joe.json +++ b/users/joe.json @@ -1 +1,5 @@ -{"copyright":"Joe Presbrey","url":"http:\/\/presbrey.mit.edu\/","email":"joepresbrey@mit.edu"} \ No newline at end of file +{ + "copyright": "Joe Presbrey", + "url": "http://presbrey.mit.edu/", + "email": "joepresbrey@mit.edu" +} diff --git a/users/joelambert.json b/users/joelambert.json index 19b99b98..8fb14af1 100644 --- a/users/joelambert.json +++ b/users/joelambert.json @@ -1,3 +1,3 @@ { - "copyright": "Joe Lambert, http://joelambert.co.uk/" + "copyright": "Joe Lambert, http://joelambert.co.uk/" } diff --git a/users/joelbladt.json b/users/joelbladt.json index 4fd40d74..4fc38aaa 100644 --- a/users/joelbladt.json +++ b/users/joelbladt.json @@ -1,7 +1,7 @@ { - "copyright": "Joel Bladt, https:\/\/www.joelbladt.de", - "url": "https:\/\/www.joelbladt.de", - "email": "hello@joelbladt.de", - "gravatar": true, - "theme": "opensans" + "copyright": "Joel Bladt, https://www.joelbladt.de", + "url": "https://www.joelbladt.de", + "email": "hello@joelbladt.de", + "gravatar": true, + "theme": "opensans" } diff --git a/users/joelpurra.json b/users/joelpurra.json index 1cfc1534..75e298aa 100644 --- a/users/joelpurra.json +++ b/users/joelpurra.json @@ -1 +1,6 @@ -{"copyright":"Joel Purra","url":"http:\/\/joelpurra.com\/","email":"code@joelpurra.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Joel Purra", + "url": "http://joelpurra.com/", + "email": "code@joelpurra.com", + "gravatar": true +} diff --git a/users/joelself.json b/users/joelself.json index cea3e7ac..91a14d4b 100644 --- a/users/joelself.json +++ b/users/joelself.json @@ -1 +1,3 @@ -{"copyright":"Joel Self"} \ No newline at end of file +{ + "copyright": "Joel Self" +} diff --git a/users/joelwalters.json b/users/joelwalters.json index ac0c3ffc..11ef4f0c 100644 --- a/users/joelwalters.json +++ b/users/joelwalters.json @@ -1 +1,3 @@ -{"copyright":"Joel Walters"} \ No newline at end of file +{ + "copyright": "Joel Walters" +} diff --git a/users/joeyblake.json b/users/joeyblake.json index 57a9bf38..42f30f5b 100644 --- a/users/joeyblake.json +++ b/users/joeyblake.json @@ -1,5 +1,5 @@ { - "copyright": "Joey Blake, http://codenimbus.com", - "url": "http://codenimbus.com", - "theme": "double-windsor" + "copyright": "Joey Blake, http://codenimbus.com", + "url": "http://codenimbus.com", + "theme": "double-windsor" } diff --git a/users/joeyespo.json b/users/joeyespo.json index 6faa3a04..62e14c82 100644 --- a/users/joeyespo.json +++ b/users/joeyespo.json @@ -1 +1,6 @@ -{"copyright":"Joe Esposito","url":"http:\/\/joeyespo.com","email":"joe@joeyespo.com","format":"html"} \ No newline at end of file +{ + "copyright": "Joe Esposito", + "url": "http://joeyespo.com", + "email": "joe@joeyespo.com", + "format": "html" +} diff --git a/users/jogy.json b/users/jogy.json index c20420a1..110d119e 100644 --- a/users/jogy.json +++ b/users/jogy.json @@ -1,4 +1,4 @@ { - "copyright": "Johann Gyger", - "url": "https://github.com/jogy/" + "copyright": "Johann Gyger", + "url": "https://github.com/jogy/" } diff --git a/users/johan.json b/users/johan.json index 872b14b9..26877d63 100644 --- a/users/johan.json +++ b/users/johan.json @@ -1,4 +1,4 @@ { - "copyright": "Johan Brook, http://johanbrook.com", - "url": "http://johanbrook.com" -} \ No newline at end of file + "copyright": "Johan Brook, http://johanbrook.com", + "url": "http://johanbrook.com" +} diff --git a/users/johanekhager.json b/users/johanekhager.json index 4b413683..ad3d4fc5 100644 --- a/users/johanekhager.json +++ b/users/johanekhager.json @@ -1,5 +1,6 @@ -{ "copyright": "Johan Ekhager", - "url": "http://johanekhager.com", - "format": "html", - "theme": "magic-mint" - } \ No newline at end of file +{ + "copyright": "Johan Ekhager", + "url": "http://johanekhager.com", + "format": "html", + "theme": "magic-mint" +} diff --git a/users/johanhalse.json b/users/johanhalse.json index 9553c750..26a8231b 100644 --- a/users/johanhalse.json +++ b/users/johanhalse.json @@ -1 +1,6 @@ -{"copyright":"Johan Halse, https:\/\/twitter.com\/hejsna","url":"http:\/\/www.varvet.se","email":"johan@varvet.se","gravatar":true} \ No newline at end of file +{ + "copyright": "Johan Halse, https://twitter.com/hejsna", + "url": "http://www.varvet.se", + "email": "johan@varvet.se", + "gravatar": true +} diff --git a/users/john.json b/users/john.json index 09ba3778..80882fae 100644 --- a/users/john.json +++ b/users/john.json @@ -1 +1,3 @@ -{"copyright":"John Barton"} \ No newline at end of file +{ + "copyright": "John Barton" +} diff --git a/users/johnathanjenkins.json b/users/johnathanjenkins.json index 7cfd4064..740eea35 100644 --- a/users/johnathanjenkins.json +++ b/users/johnathanjenkins.json @@ -1 +1,3 @@ -{"copyright":"Johnathan Jenkins"} \ No newline at end of file +{ + "copyright": "Johnathan Jenkins" +} diff --git a/users/johndyer.json b/users/johndyer.json index 28284f9f..5efd6c8c 100644 --- a/users/johndyer.json +++ b/users/johndyer.json @@ -1 +1,3 @@ -{"copyright":"John Dyer"} \ No newline at end of file +{ + "copyright": "John Dyer" +} diff --git a/users/johnjensen.json b/users/johnjensen.json index 483575b8..8e52e0c9 100644 --- a/users/johnjensen.json +++ b/users/johnjensen.json @@ -1 +1,3 @@ -{"copyright":"John Jensen"} \ No newline at end of file +{ + "copyright": "John Jensen" +} diff --git a/users/johnmcc.json b/users/johnmcc.json index af72b7e3..58eee17f 100644 --- a/users/johnmcc.json +++ b/users/johnmcc.json @@ -1,3 +1,3 @@ { - "copyright": "John McCollum, http://johnmc.co/llum" + "copyright": "John McCollum, http://johnmc.co/llum" } diff --git a/users/johnmdonahue.json b/users/johnmdonahue.json index 6916130d..a28bfa1d 100644 --- a/users/johnmdonahue.json +++ b/users/johnmdonahue.json @@ -1,4 +1,4 @@ { - "copyright": "John Donahue, http://johnmdonahue.com", - "url": "http://johnmdonahue.com" + "copyright": "John Donahue, http://johnmdonahue.com", + "url": "http://johnmdonahue.com" } diff --git a/users/johnny.json b/users/johnny.json index 0da6f3aa..737adcce 100644 --- a/users/johnny.json +++ b/users/johnny.json @@ -1,4 +1,4 @@ { - "copyright": "文强 宋", - "theme": "double-windsor" + "copyright": "\u00e6\u2013\u2021\u00e5\u00bc\u00ba \u00e5\u00ae\u2039", + "theme": "double-windsor" } diff --git a/users/johnschult.json b/users/johnschult.json index 25031262..95a9a1ef 100644 --- a/users/johnschult.json +++ b/users/johnschult.json @@ -1,6 +1,6 @@ { - "copyright": "John Schult, https://github.com/johnschult", - "email": "johnschult@icloud.com", - "gravatar": true, - "theme" : "default" + "copyright": "John Schult, https://github.com/johnschult", + "email": "johnschult@icloud.com", + "gravatar": true, + "theme": "default" } diff --git a/users/johnsullivan.json b/users/johnsullivan.json index 8d01517a..36860700 100644 --- a/users/johnsullivan.json +++ b/users/johnsullivan.json @@ -1 +1,4 @@ -{"copyright":"John Sullivan","email":"jsull003@ucr.edu"} \ No newline at end of file +{ + "copyright": "John Sullivan", + "email": "jsull003@ucr.edu" +} diff --git a/users/johntfoster.json b/users/johntfoster.json index 718db2ab..5f04c3c8 100644 --- a/users/johntfoster.json +++ b/users/johntfoster.json @@ -1 +1,6 @@ -{"copyright":"John T. Foster","url":"http:\/\/johntfoster.github.io","email":"johntfosterjr@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "John T. Foster", + "url": "http://johntfoster.github.io", + "email": "johntfosterjr@gmail.com", + "format": "txt" +} diff --git a/users/jonas.json b/users/jonas.json index 5922b584..0ba4ef11 100644 --- a/users/jonas.json +++ b/users/jonas.json @@ -1 +1,6 @@ -{"copyright":"Jonas Skovmand","url":"http:\/\/xn--stf-qla.se","email":"jonas@satf.se","format":"txt"} \ No newline at end of file +{ + "copyright": "Jonas Skovmand", + "url": "http://xn--stf-qla.se", + "email": "jonas@satf.se", + "format": "txt" +} diff --git a/users/jonathanheaven.json b/users/jonathanheaven.json index 82eb08c5..1165dc14 100644 --- a/users/jonathanheaven.json +++ b/users/jonathanheaven.json @@ -1 +1,6 @@ -{"copyright":"Jonathan Heaven","url":"http:\/\/jonathanheaven.com","email":"jheaven@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Jonathan Heaven", + "url": "http://jonathanheaven.com", + "email": "jheaven@gmail.com", + "format": "txt" +} diff --git a/users/jonathanwiesel.json b/users/jonathanwiesel.json index 90c10b08..441dbef7 100644 --- a/users/jonathanwiesel.json +++ b/users/jonathanwiesel.json @@ -1 +1,7 @@ -{"copyright":"Jonathan Wiesel","url":"http:\/\/jonathanwiesel.com\/","email":"jonathanwiesel@gmail.com","gravatar":true,"theme":"black-beauty"} +{ + "copyright": "Jonathan Wiesel", + "url": "http://jonathanwiesel.com/", + "email": "jonathanwiesel@gmail.com", + "gravatar": true, + "theme": "black-beauty" +} diff --git a/users/jongretar.json b/users/jongretar.json index f27ed805..25ca65ce 100644 --- a/users/jongretar.json +++ b/users/jongretar.json @@ -1 +1,6 @@ -{"copyright":"J\u00f3n Gr\u00e9tar Borg\u00fe\u00f3rsson","url":"http:\/\/jongretar.com","email":"jongretar@jongretar.com","gravatar":true} \ No newline at end of file +{ + "copyright": "J\u00f3n Gr\u00e9tar Borg\u00fe\u00f3rsson", + "url": "http://jongretar.com", + "email": "jongretar@jongretar.com", + "gravatar": true +} diff --git a/users/jonmcpherson.json b/users/jonmcpherson.json index 1f1f9c38..54b5438e 100644 --- a/users/jonmcpherson.json +++ b/users/jonmcpherson.json @@ -1 +1,5 @@ -{"copyright":"Jon McPherson","url":"http://jonmcpherson.com","email":"contact@jonmcpherson.com"} +{ + "copyright": "Jon McPherson", + "url": "http://jonmcpherson.com", + "email": "contact@jonmcpherson.com" +} diff --git a/users/jonnung-grp.json b/users/jonnung-grp.json index abc89505..d823994b 100644 --- a/users/jonnung-grp.json +++ b/users/jonnung-grp.json @@ -1 +1,3 @@ -{"copyright":"jonnung, http:\/\/jonnung-grp.appspot.com\/"} \ No newline at end of file +{ + "copyright": "jonnung, http://jonnung-grp.appspot.com/" +} diff --git a/users/jonscottclark.json b/users/jonscottclark.json index 4356bb86..e79968cf 100644 --- a/users/jonscottclark.json +++ b/users/jonscottclark.json @@ -1 +1,5 @@ -{"copyright":"Jon Scott Clark, http:\/\/jclark.io","url":"http:\/\/jclark.io","email":"me@jclark.io"} \ No newline at end of file +{ + "copyright": "Jon Scott Clark, http://jclark.io", + "url": "http://jclark.io", + "email": "me@jclark.io" +} diff --git a/users/jonstites.json b/users/jonstites.json index 046cb6a0..fad04044 100644 --- a/users/jonstites.json +++ b/users/jonstites.json @@ -1,5 +1,5 @@ { - "copyright": "Jonathan Stites", + "copyright": "Jonathan Stites", "email": "contact@jonstites.com", "format": "html", "theme": "eula-modern" diff --git a/users/joom.json b/users/joom.json index 6c1751f9..53da8c18 100644 --- a/users/joom.json +++ b/users/joom.json @@ -1 +1,6 @@ -{"copyright":"Cumhur Korkut","url":"http:\/\/joom.im","email":"cumhurkorkut@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Cumhur Korkut", + "url": "http://joom.im", + "email": "cumhurkorkut@gmail.com", + "format": "txt" +} diff --git a/users/joostlawerman.json b/users/joostlawerman.json index 5ed3ab3e..83697b7c 100644 --- a/users/joostlawerman.json +++ b/users/joostlawerman.json @@ -1,7 +1,7 @@ { - "copyright": "Joost Lawerman", - "url": "https://joost.lawerman.me", - "email": "joost@lawerman.me", - "theme": "material-red", - "gravatar": false + "copyright": "Joost Lawerman", + "url": "https://joost.lawerman.me", + "email": "joost@lawerman.me", + "theme": "material-red", + "gravatar": false } diff --git a/users/jordimorillo.json b/users/jordimorillo.json index 94e02bf3..9c5778fc 100644 --- a/users/jordimorillo.json +++ b/users/jordimorillo.json @@ -1,5 +1,5 @@ { - "copyright": "Jordi Morillo Sells, http://www.programador-web.com", - "url": "http://www.programador-web.com", - "email": "jordi.morillo@programador-web.com" + "copyright": "Jordi Morillo Sells, http://www.programador-web.com", + "url": "http://www.programador-web.com", + "email": "jordi.morillo@programador-web.com" } diff --git a/users/joren.json b/users/joren.json index 89d62ca0..7f6aab4f 100644 --- a/users/joren.json +++ b/users/joren.json @@ -1 +1,5 @@ -{"copyright":"Joren Van Hee, http:\/\/joren.co","url":"http:\/\/joren.co","theme":"plaintext"} \ No newline at end of file +{ + "copyright": "Joren Van Hee, http://joren.co", + "url": "http://joren.co", + "theme": "plaintext" +} diff --git a/users/jorge-matricali.json b/users/jorge-matricali.json index 655b601d..1d15cd78 100644 --- a/users/jorge-matricali.json +++ b/users/jorge-matricali.json @@ -1,8 +1,8 @@ { - "copyright": "Jorge Matricali", - "url": "https://github.com/matricali", - "email": "jorgematricali@gmail.com", - "format": "html", - "theme": "8bits-monochrome-amber", - "gravatar": true + "copyright": "Jorge Matricali", + "url": "https://github.com/matricali", + "email": "jorgematricali@gmail.com", + "format": "html", + "theme": "8bits-monochrome-amber", + "gravatar": true } diff --git a/users/jorge.json b/users/jorge.json index 4ce489d3..7e09f00a 100644 --- a/users/jorge.json +++ b/users/jorge.json @@ -1 +1,3 @@ -{"copyright":"Jorge Gonzalez"} \ No newline at end of file +{ + "copyright": "Jorge Gonzalez" +} diff --git a/users/joseandro.json b/users/joseandro.json index af263228..d802b69a 100644 --- a/users/joseandro.json +++ b/users/joseandro.json @@ -1 +1,6 @@ -{"copyright":"Joseandro Luiz","url":"https:\/\/github.com\/joseandro","email":"joseandro.luiz@gmail.com","gravatar":true} +{ + "copyright": "Joseandro Luiz", + "url": "https://github.com/joseandro", + "email": "joseandro.luiz@gmail.com", + "gravatar": true +} diff --git a/users/josh.json b/users/josh.json index 7943b9d4..f2f81e91 100644 --- a/users/josh.json +++ b/users/josh.json @@ -1,5 +1,5 @@ { - "copyright": "Josh Perez, http://www.goatslacker.com", - "url": "http://www.goatslacker.com", - "theme": "flesch" + "copyright": "Josh Perez, http://www.goatslacker.com", + "url": "http://www.goatslacker.com", + "theme": "flesch" } diff --git a/users/joshboehm.json b/users/joshboehm.json index d9e0b2ad..76351021 100644 --- a/users/joshboehm.json +++ b/users/joshboehm.json @@ -1 +1,3 @@ -{"copyright":"Josh Boehm"} \ No newline at end of file +{ + "copyright": "Josh Boehm" +} diff --git a/users/joshbuhler.json b/users/joshbuhler.json index 374f4086..00b8d236 100644 --- a/users/joshbuhler.json +++ b/users/joshbuhler.json @@ -1 +1,3 @@ -{"copyright":"Joshua Buhler"} \ No newline at end of file +{ + "copyright": "Joshua Buhler" +} diff --git a/users/joshje.json b/users/joshje.json index bb1ec75c..133cddbc 100644 --- a/users/joshje.json +++ b/users/joshje.json @@ -1 +1,3 @@ -{"copyright":"Josh Emerson"} \ No newline at end of file +{ + "copyright": "Josh Emerson" +} diff --git a/users/joshua.json b/users/joshua.json index 1b64b354..562368e8 100644 --- a/users/joshua.json +++ b/users/joshua.json @@ -1,7 +1,7 @@ { - "copyright": "Joshua Kendall", - "email": "me@joshuakendall.com", + "copyright": "Joshua Kendall", + "email": "me@joshuakendall.com", "format": "html", - "theme": "blackwood", + "theme": "blackwood", "url": "http://joshuakendall.com" } diff --git a/users/joshuacanfield.json b/users/joshuacanfield.json index 843a541a..75b91697 100644 --- a/users/joshuacanfield.json +++ b/users/joshuacanfield.json @@ -1 +1,6 @@ -{"copyright":"Joshua Canfield, http:\/\/icodeclarity.com","url":"http:\/\/www.icodeclarity.com","email":"support@icodeclarity.com","theme":"plaintext"} \ No newline at end of file +{ + "copyright": "Joshua Canfield, http://icodeclarity.com", + "url": "http://www.icodeclarity.com", + "email": "support@icodeclarity.com", + "theme": "plaintext" +} diff --git a/users/joshuaptfan.json b/users/joshuaptfan.json index 1a397c75..200b3e65 100644 --- a/users/joshuaptfan.json +++ b/users/joshuaptfan.json @@ -1,6 +1,6 @@ { - "copyright": "Joshua Fan", - "url": "https://github.com/joshuaptfan", - "email": "joshuaptfan@gmail.com", - "theme": "material" + "copyright": "Joshua Fan", + "url": "https://github.com/joshuaptfan", + "email": "joshuaptfan@gmail.com", + "theme": "material" } diff --git a/users/joslyn.json b/users/joslyn.json index c4588a7f..65938b6f 100644 --- a/users/joslyn.json +++ b/users/joslyn.json @@ -1 +1,3 @@ -{"copyright":"Joslyn Rosbrook"} \ No newline at end of file +{ + "copyright": "Joslyn Rosbrook" +} diff --git a/users/josue.json b/users/josue.json index 5bf038ae..f5f225d0 100644 --- a/users/josue.json +++ b/users/josue.json @@ -1 +1,3 @@ -{"copyright":"Josue Rodriguez"} \ No newline at end of file +{ + "copyright": "Josue Rodriguez" +} diff --git a/users/josuer.json b/users/josuer.json index 297bccc6..2ab5cd6f 100644 --- a/users/josuer.json +++ b/users/josuer.json @@ -1 +1,5 @@ -{"copyright":"Josue Rodriguez","email":"josue@josuerodriguez.com","url":"http:\/\/josuerodriguez.com"} \ No newline at end of file +{ + "copyright": "Josue Rodriguez", + "email": "josue@josuerodriguez.com", + "url": "http://josuerodriguez.com" +} diff --git a/users/josuerodriguez.json b/users/josuerodriguez.json index 297bccc6..2ab5cd6f 100644 --- a/users/josuerodriguez.json +++ b/users/josuerodriguez.json @@ -1 +1,5 @@ -{"copyright":"Josue Rodriguez","email":"josue@josuerodriguez.com","url":"http:\/\/josuerodriguez.com"} \ No newline at end of file +{ + "copyright": "Josue Rodriguez", + "email": "josue@josuerodriguez.com", + "url": "http://josuerodriguez.com" +} diff --git a/users/jotschi.json b/users/jotschi.json index 9cbf11fe..62de93b0 100644 --- a/users/jotschi.json +++ b/users/jotschi.json @@ -1 +1,6 @@ -{"copyright":"Johannes Sch\u00fcth","url":"http:\/\/jotschi.de","email":"code@jotschi.de","format":"txt"} \ No newline at end of file +{ + "copyright": "Johannes Sch\u00fcth", + "url": "http://jotschi.de", + "email": "code@jotschi.de", + "format": "txt" +} diff --git a/users/joyce.json b/users/joyce.json index 5f645b59..f4e14441 100644 --- a/users/joyce.json +++ b/users/joyce.json @@ -1 +1,6 @@ -{"copyright":"Joyce Chan","url":"http:\/\/joyceschan.posterous.com","email":"joyce.sz.chan@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Joyce Chan", + "url": "http://joyceschan.posterous.com", + "email": "joyce.sz.chan@gmail.com", + "format": "txt" +} diff --git a/users/joyceschan.json b/users/joyceschan.json index 8ab9ba8a..f79178e3 100644 --- a/users/joyceschan.json +++ b/users/joyceschan.json @@ -1 +1,6 @@ -{"copyright":"Joyce Chan","url":"http:\/\/joyceschan.posterous.com","email":"","format":"txt"} \ No newline at end of file +{ + "copyright": "Joyce Chan", + "url": "http://joyceschan.posterous.com", + "email": "", + "format": "txt" +} diff --git a/users/jp.json b/users/jp.json index 57c79280..6dbf1c75 100644 --- a/users/jp.json +++ b/users/jp.json @@ -1 +1,3 @@ -{"copyright":"JP Smith"} \ No newline at end of file +{ + "copyright": "JP Smith" +} diff --git a/users/jprice.json b/users/jprice.json index a5cc64fb..5858b1be 100644 --- a/users/jprice.json +++ b/users/jprice.json @@ -1 +1,7 @@ -{"copyright": "Josh Price, http://jprice.io","url": "http://jprice.io","email": "josh@jprice.io","gravatar": true,"theme": "black-beauty"} +{ + "copyright": "Josh Price, http://jprice.io", + "url": "http://jprice.io", + "email": "josh@jprice.io", + "gravatar": true, + "theme": "black-beauty" +} diff --git a/users/jpsirois.json b/users/jpsirois.json index e28b84c2..d2845174 100644 --- a/users/jpsirois.json +++ b/users/jpsirois.json @@ -1 +1,6 @@ -{"copyright":"Jean-Philippe Sirois","url":"http:\/\/jpsirois.com","email":"email@jpsirois.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Jean-Philippe Sirois", + "url": "http://jpsirois.com", + "email": "email@jpsirois.com", + "format": "txt" +} diff --git a/users/jquery-client.json b/users/jquery-client.json index b229fb09..6eecf9e7 100644 --- a/users/jquery-client.json +++ b/users/jquery-client.json @@ -1 +1,6 @@ -{"copyright":"jquery-client maintainers and other contributors","url":"https:\/\/github.com\/wikimedia\/jquery-client","format":"html","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "jquery-client maintainers and other contributors", + "url": "https://github.com/wikimedia/jquery-client", + "format": "html", + "theme": "double-windsor" +} diff --git a/users/jr.json b/users/jr.json index 68518a96..438c881e 100644 --- a/users/jr.json +++ b/users/jr.json @@ -1,4 +1,4 @@ { - "copyright": "Johannes Röttger, http://johannes.roettger.us", - "url": "http://johannes.roettger.us" + "copyright": "Johannes R\u00c3\u00b6ttger, http://johannes.roettger.us", + "url": "http://johannes.roettger.us" } diff --git a/users/jrattanpal.json b/users/jrattanpal.json index 5cc4cee7..0b340af9 100644 --- a/users/jrattanpal.json +++ b/users/jrattanpal.json @@ -1 +1,5 @@ -{"copyright":"Jaswinder Singh Rattanpal","url":"http:\/\/www.rattanpal.com","email":"rattanpal@rattanpal.com"} +{ + "copyright": "Jaswinder Singh Rattanpal", + "url": "http://www.rattanpal.com", + "email": "rattanpal@rattanpal.com" +} diff --git a/users/jre.json b/users/jre.json index 614587c4..09cc75ad 100644 --- a/users/jre.json +++ b/users/jre.json @@ -1 +1,3 @@ -{"copyright":"Julian Reyes Escrigas"} \ No newline at end of file +{ + "copyright": "Julian Reyes Escrigas" +} diff --git a/users/jrudenstam.json b/users/jrudenstam.json index bbb1c66a..c2d06636 100644 --- a/users/jrudenstam.json +++ b/users/jrudenstam.json @@ -1 +1,6 @@ -{"copyright":"Jacob Rudenstam","url":"http:\/\/typisktmig.se","email":"jrudenstam@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Jacob Rudenstam", + "url": "http://typisktmig.se", + "email": "jrudenstam@gmail.com", + "format": "txt" +} diff --git a/users/jruhland.json b/users/jruhland.json index 409b4b16..f619247c 100644 --- a/users/jruhland.json +++ b/users/jruhland.json @@ -1 +1,7 @@ -{"copyright":"Joel Ruhland","url":"http:\/\/joelruhland.net","email":"contact@joelruhland.net","format":"txt","theme":"open-sans"} \ No newline at end of file +{ + "copyright": "Joel Ruhland", + "url": "http://joelruhland.net", + "email": "contact@joelruhland.net", + "format": "txt", + "theme": "open-sans" +} diff --git a/users/jryans.json b/users/jryans.json index 6be6e7e5..24cfa24d 100644 --- a/users/jryans.json +++ b/users/jryans.json @@ -1 +1,6 @@ -{"copyright":"J. Ryan Stinnett","url":"https:\/\/github.com\/jryans","email":"jryans@gmail.com","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "J. Ryan Stinnett", + "url": "https://github.com/jryans", + "email": "jryans@gmail.com", + "theme": "double-windsor" +} diff --git a/users/js.json b/users/js.json index 4a43841f..93669106 100644 --- a/users/js.json +++ b/users/js.json @@ -1 +1,7 @@ -{"copyright":"Joshua Suggs","url":"http:\/\/joshsuggs.com","email":"joshsuggs@gmail.com","format":"html","theme":"flesch"} \ No newline at end of file +{ + "copyright": "Joshua Suggs", + "url": "http://joshsuggs.com", + "email": "joshsuggs@gmail.com", + "format": "html", + "theme": "flesch" +} diff --git a/users/jsbin.json b/users/jsbin.json index a9ec245a..7d8c491b 100644 --- a/users/jsbin.json +++ b/users/jsbin.json @@ -1 +1,4 @@ -{"copyright":"JS Bin Ltd","url":"http:\/\/jsbin.com"} \ No newline at end of file +{ + "copyright": "JS Bin Ltd", + "url": "http://jsbin.com" +} diff --git a/users/jseppi.json b/users/jseppi.json index a6a50671..c9574ab6 100644 --- a/users/jseppi.json +++ b/users/jseppi.json @@ -1 +1,6 @@ -{"copyright":"James Seppi","url":"http:\/\/coseppi.com","email":"james.seppi@gmail.com","format":"html"} \ No newline at end of file +{ + "copyright": "James Seppi", + "url": "http://coseppi.com", + "email": "james.seppi@gmail.com", + "format": "html" +} diff --git a/users/jsumners.json b/users/jsumners.json index b617f25c..ead0f670 100644 --- a/users/jsumners.json +++ b/users/jsumners.json @@ -1 +1,7 @@ -{"copyright":"James Sumners","url":"http:\/\/jrfom.com","email":"james.sumners@gmail.com","gravatar":true,"theme":"friendly"} \ No newline at end of file +{ + "copyright": "James Sumners", + "url": "http://jrfom.com", + "email": "james.sumners@gmail.com", + "gravatar": true, + "theme": "friendly" +} diff --git a/users/jtb.json b/users/jtb.json index 7e92235d..61540729 100644 --- a/users/jtb.json +++ b/users/jtb.json @@ -1 +1,3 @@ -{"copyright":"Justin Buchanan"} \ No newline at end of file +{ + "copyright": "Justin Buchanan" +} diff --git a/users/jtkendall.json b/users/jtkendall.json index 03bda74b..bd030a6a 100644 --- a/users/jtkendall.json +++ b/users/jtkendall.json @@ -1,7 +1,7 @@ { - "copyright": "Joshua Kendall (jtkendall)", - "email": "me@joshuakendall.com", - "format": "html", - "theme": "blackwood", + "copyright": "Joshua Kendall (jtkendall)", + "email": "me@joshuakendall.com", + "format": "html", + "theme": "blackwood", "url": "http://twitter.com/jtkendall" } diff --git a/users/jtr.json b/users/jtr.json index 8e90bb01..e20c0bbd 100644 --- a/users/jtr.json +++ b/users/jtr.json @@ -1 +1,3 @@ -{"copyright":"Jeroen Trappers"} \ No newline at end of file +{ + "copyright": "Jeroen Trappers" +} diff --git a/users/jtwalters.json b/users/jtwalters.json index 60db328b..6cc48ba7 100644 --- a/users/jtwalters.json +++ b/users/jtwalters.json @@ -1 +1,5 @@ -{"copyright":"Joel Walters","url":"http:\/\/joelwalters.com","email":"jtwalters@gmail.com"} \ No newline at end of file +{ + "copyright": "Joel Walters", + "url": "http://joelwalters.com", + "email": "jtwalters@gmail.com" +} diff --git a/users/jtyost2.json b/users/jtyost2.json index 5c4438de..d23fbc22 100644 --- a/users/jtyost2.json +++ b/users/jtyost2.json @@ -1 +1,6 @@ -{"copyright":"Justin Yost","url":"https:\/\/www.yostivanic.com\/","email":"justin.yost@yostivanich.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Justin Yost", + "url": "https://www.yostivanic.com/", + "email": "justin.yost@yostivanich.com", + "format": "txt" +} diff --git a/users/juanitofatas.json b/users/juanitofatas.json index ad399843..5ea727f5 100644 --- a/users/juanitofatas.json +++ b/users/juanitofatas.json @@ -1 +1,6 @@ -{"copyright": "Juanito Fatas", "url": "http://lisp.es/", "email":"katehuang0320@gmail.com", "format": "html"} \ No newline at end of file +{ + "copyright": "Juanito Fatas", + "url": "http://lisp.es/", + "email": "katehuang0320@gmail.com", + "format": "html" +} diff --git a/users/julesj.json b/users/julesj.json index c4657777..d8c88004 100644 --- a/users/julesj.json +++ b/users/julesj.json @@ -1 +1,6 @@ -{"copyright":"Jules Janssen","url":"http:\/\/julesj.nl","email":"jules@julesj.nl","format":"html"} \ No newline at end of file +{ + "copyright": "Jules Janssen", + "url": "http://julesj.nl", + "email": "jules@julesj.nl", + "format": "html" +} diff --git a/users/julien-breux.json b/users/julien-breux.json index 8ef6a3f7..71886a44 100644 --- a/users/julien-breux.json +++ b/users/julien-breux.json @@ -1 +1,3 @@ -{"copyright":"Julien Breux"} +{ + "copyright": "Julien Breux" +} diff --git a/users/julienw.json b/users/julienw.json index 07e3ac28..0cbab47d 100644 --- a/users/julienw.json +++ b/users/julienw.json @@ -1 +1,5 @@ -{"copyright":"Julien Wajsberg","url":"http:\/\/everlong.org\/","theme":"flesch"} \ No newline at end of file +{ + "copyright": "Julien Wajsberg", + "url": "http://everlong.org/", + "theme": "flesch" +} diff --git a/users/justin.json b/users/justin.json index 0bec7b9e..fe67c3e1 100644 --- a/users/justin.json +++ b/users/justin.json @@ -1,4 +1,4 @@ { - "copyright": "Justin Sisley", - "url": "http://justinsisley.com" -} \ No newline at end of file + "copyright": "Justin Sisley", + "url": "http://justinsisley.com" +} diff --git a/users/justinian.json b/users/justinian.json index f86c5a1d..5bbad092 100644 --- a/users/justinian.json +++ b/users/justinian.json @@ -1,7 +1,7 @@ { - "copyright": "Justin C. Miller, http://devjustinian.com", - "email": "justin@devjustinian.com", - "url": "http://devjustinian.com", - "theme": "friendly", - "gravatar": true + "copyright": "Justin C. Miller, http://devjustinian.com", + "email": "justin@devjustinian.com", + "url": "http://devjustinian.com", + "theme": "friendly", + "gravatar": true } diff --git a/users/justinm.json b/users/justinm.json index 68b7d1e0..1a0fce59 100644 --- a/users/justinm.json +++ b/users/justinm.json @@ -1,5 +1,5 @@ { - "copyright":"Justin McManus", - "url":"http://jmcman.us", - "email":"jmcmanu@gmail.com" + "copyright": "Justin McManus", + "url": "http://jmcman.us", + "email": "jmcmanu@gmail.com" } diff --git a/users/justinrainbow.json b/users/justinrainbow.json index 97da3076..e856f292 100644 --- a/users/justinrainbow.json +++ b/users/justinrainbow.json @@ -1 +1,4 @@ -{"copyright":"Justin Rainbow","email":"justin.rainbow@gmail.com"} \ No newline at end of file +{ + "copyright": "Justin Rainbow", + "email": "justin.rainbow@gmail.com" +} diff --git a/users/justmarkup.json b/users/justmarkup.json index c81a79c8..d456a2a4 100644 --- a/users/justmarkup.json +++ b/users/justmarkup.json @@ -1 +1,6 @@ -{"copyright":"Michael Scharnagl","url":"http:\/\/justmarkup.com","email":"hallo@justmarkup.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Michael Scharnagl", + "url": "http://justmarkup.com", + "email": "hallo@justmarkup.com", + "format": "txt" +} diff --git a/users/justmoon.json b/users/justmoon.json index 9e6398c4..2436a7c2 100644 --- a/users/justmoon.json +++ b/users/justmoon.json @@ -1 +1,3 @@ -{"copyright":"Stefan Thomas"} \ No newline at end of file +{ + "copyright": "Stefan Thomas" +} diff --git a/users/jwark.json b/users/jwark.json index 31c20018..085bee14 100644 --- a/users/jwark.json +++ b/users/jwark.json @@ -1 +1,3 @@ -{"copyright":"Justin Wark"} \ No newline at end of file +{ + "copyright": "Justin Wark" +} diff --git a/users/jwathen.json b/users/jwathen.json index c685b92a..9d8ccd4b 100644 --- a/users/jwathen.json +++ b/users/jwathen.json @@ -1 +1,4 @@ -{"copyright":"John Wathen","email":"john.s.wathen@gmail.com"} \ No newline at end of file +{ + "copyright": "John Wathen", + "email": "john.s.wathen@gmail.com" +} diff --git a/users/jwehrman.json b/users/jwehrman.json index eca16988..9fcc51ac 100644 --- a/users/jwehrman.json +++ b/users/jwehrman.json @@ -1 +1,3 @@ -{"copyright":"Justin Wehrman"} \ No newline at end of file +{ + "copyright": "Justin Wehrman" +} diff --git a/users/jwngr.json b/users/jwngr.json index 7c7d910e..8ae03474 100644 --- a/users/jwngr.json +++ b/users/jwngr.json @@ -1 +1,3 @@ -{"copyright":"Jacob Wenger"} \ No newline at end of file +{ + "copyright": "Jacob Wenger" +} diff --git a/users/jxck.json b/users/jxck.json index fbe12ba1..621631ca 100644 --- a/users/jxck.json +++ b/users/jxck.json @@ -1 +1,5 @@ -{"copyright":"Jxck","url":"https:\/\/jxck.io","email":"block.rxckin.beats@gmail.com"} \ No newline at end of file +{ + "copyright": "Jxck", + "url": "https://jxck.io", + "email": "block.rxckin.beats@gmail.com" +} diff --git a/users/jxson.json b/users/jxson.json index aa94d8f8..b3470b34 100644 --- a/users/jxson.json +++ b/users/jxson.json @@ -1 +1,3 @@ -{"copyright":"Jason Campbell"} \ No newline at end of file +{ + "copyright": "Jason Campbell" +} diff --git a/users/jylhis.json b/users/jylhis.json index 2aef832b..3b081e47 100644 --- a/users/jylhis.json +++ b/users/jylhis.json @@ -1 +1,4 @@ -{"copyright":"Markus Jylh\u00e4nkangas","email":"markus@jylhis.com"} +{ + "copyright": "Markus Jylh\u00e4nkangas", + "email": "markus@jylhis.com" +} diff --git a/users/k-yoshida.json b/users/k-yoshida.json index e97248c5..0f1d399e 100644 --- a/users/k-yoshida.json +++ b/users/k-yoshida.json @@ -1 +1,6 @@ -{"copyright":"Kohei YOSHIDA","url":"http:\/\/yosida95.com","email":"kohei@yosida95.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Kohei YOSHIDA", + "url": "http://yosida95.com", + "email": "kohei@yosida95.com", + "format": "txt" +} diff --git a/users/k2wanko.json b/users/k2wanko.json index 348eeb26..701395fb 100644 --- a/users/k2wanko.json +++ b/users/k2wanko.json @@ -1 +1,4 @@ -{"copyright":"Kazuhiro Kubota","url":"https:\/\/github.com\/k2wanko"} \ No newline at end of file +{ + "copyright": "Kazuhiro Kubota", + "url": "https://github.com/k2wanko" +} diff --git a/users/k33nice.json b/users/k33nice.json index e56ed7b7..c56b1e3e 100644 --- a/users/k33nice.json +++ b/users/k33nice.json @@ -1,6 +1,6 @@ { - "copyright": "Alexandr Krykovliuk", - "url": "http://k33nice.com", - "email": "k33nice@gmail.com", - "theme": "flesch" -} \ No newline at end of file + "copyright": "Alexandr Krykovliuk", + "url": "http://k33nice.com", + "email": "k33nice@gmail.com", + "theme": "flesch" +} diff --git a/users/ka2n.json b/users/ka2n.json index 323704b3..9bb5e386 100644 --- a/users/ka2n.json +++ b/users/ka2n.json @@ -1 +1,3 @@ -{"copyright":"Katsuma Ito"} \ No newline at end of file +{ + "copyright": "Katsuma Ito" +} diff --git a/users/kabuku-inc.json b/users/kabuku-inc.json index 7a7d14fe..5afd2ad0 100644 --- a/users/kabuku-inc.json +++ b/users/kabuku-inc.json @@ -1 +1,5 @@ -{"copyright":"kabuku Inc.","url":"http:\/\/www.kabuku.co.jp","email":"contact@kabuku.co.jp"} \ No newline at end of file +{ + "copyright": "kabuku Inc.", + "url": "http://www.kabuku.co.jp", + "email": "contact@kabuku.co.jp" +} diff --git a/users/kabuku.json b/users/kabuku.json index c9e628f0..0aa52583 100644 --- a/users/kabuku.json +++ b/users/kabuku.json @@ -1 +1,5 @@ -{"copyright":"kabuku Inc.","url":"http:\/\/www.kabuku.com\/en","email":"contact@kabuku.com"} \ No newline at end of file +{ + "copyright": "kabuku Inc.", + "url": "http://www.kabuku.com/en", + "email": "contact@kabuku.com" +} diff --git a/users/kafene.json b/users/kafene.json index 8ceaccdb..5222143f 100644 --- a/users/kafene.json +++ b/users/kafene.json @@ -1 +1,3 @@ -{"copyright":"Kafene Software"} \ No newline at end of file +{ + "copyright": "Kafene Software" +} diff --git a/users/kagee.json b/users/kagee.json index 13f0c687..297a0b9d 100644 --- a/users/kagee.json +++ b/users/kagee.json @@ -1 +1,4 @@ -{"copyright":"Anders Einar Hilden","email":"hildenae@gmail.com"} \ No newline at end of file +{ + "copyright": "Anders Einar Hilden", + "email": "hildenae@gmail.com" +} diff --git a/users/kai.json b/users/kai.json index 6a12cca6..c07d08f2 100644 --- a/users/kai.json +++ b/users/kai.json @@ -1 +1,6 @@ -{"copyright":"Kai Wang","url":"http:\/\/openbioinformatics.org","email":"kai@openbioinformatics.org","format":"txt"} \ No newline at end of file +{ + "copyright": "Kai Wang", + "url": "http://openbioinformatics.org", + "email": "kai@openbioinformatics.org", + "format": "txt" +} diff --git a/users/kaichop.json b/users/kaichop.json index dcd91736..935fb4f9 100644 --- a/users/kaichop.json +++ b/users/kaichop.json @@ -1 +1,3 @@ -{"copyright":"Kai Wang"} \ No newline at end of file +{ + "copyright": "Kai Wang" +} diff --git a/users/kakehashi.json b/users/kakehashi.json index f88f1ce2..ea73408d 100644 --- a/users/kakehashi.json +++ b/users/kakehashi.json @@ -1 +1,4 @@ -{"copyright":"KAKEHASHI, Inc.","url":"http:\/\/kakehashi.life"} +{ + "copyright": "KAKEHASHI, Inc.", + "url": "http://kakehashi.life" +} diff --git a/users/kale.json b/users/kale.json index 9240cf2e..23230679 100644 --- a/users/kale.json +++ b/users/kale.json @@ -1 +1,4 @@ -{"copyright":"Kale Davis","url":"http:\/\/kaledavis.com"} \ No newline at end of file +{ + "copyright": "Kale Davis", + "url": "http://kaledavis.com" +} diff --git a/users/kanade.json b/users/kanade.json index d83d7498..7e3e9ab3 100644 --- a/users/kanade.json +++ b/users/kanade.json @@ -1 +1,3 @@ -{"copyright":"Kanade"} \ No newline at end of file +{ + "copyright": "Kanade" +} diff --git a/users/kandoi.json b/users/kandoi.json index 9de24078..946acb03 100644 --- a/users/kandoi.json +++ b/users/kandoi.json @@ -1 +1,6 @@ -{"copyright":"Abhishek Kandoi","url":"http:\/\/abhikandoi.in","email":"abhikandoi2000@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Abhishek Kandoi", + "url": "http://abhikandoi.in", + "email": "abhikandoi2000@gmail.com", + "format": "txt" +} diff --git a/users/kaneel.json b/users/kaneel.json index 087e6a94..f8226e3f 100644 --- a/users/kaneel.json +++ b/users/kaneel.json @@ -1 +1,5 @@ -{"copyright":"Guillaume kaneel Richard, http:\/\/mynameiskaneel.com","url":"http:\/\/mynameiskaneel.com","email":"mynameiskaneel@gmail.com"} \ No newline at end of file +{ + "copyright": "Guillaume kaneel Richard, http://mynameiskaneel.com", + "url": "http://mynameiskaneel.com", + "email": "mynameiskaneel@gmail.com" +} diff --git a/users/kaneshin.json b/users/kaneshin.json index 337bb4b3..7c6eb4c6 100644 --- a/users/kaneshin.json +++ b/users/kaneshin.json @@ -1 +1,7 @@ -{"copyright":"Shintaro Kaneko","url":"http:\/\/www.kaneshinth.com","email":"kaneshin0120@gmail.com","gravatar":true,"theme":"flesch"} \ No newline at end of file +{ + "copyright": "Shintaro Kaneko", + "url": "http://www.kaneshinth.com", + "email": "kaneshin0120@gmail.com", + "gravatar": true, + "theme": "flesch" +} diff --git a/users/kaos.json b/users/kaos.json index e5a5078b..1902c9b2 100644 --- a/users/kaos.json +++ b/users/kaos.json @@ -1 +1,5 @@ -{"copyright":"Andreas Stenius","url":"http:\/\/blog.astekk.se","email":"git@astekk.se"} \ No newline at end of file +{ + "copyright": "Andreas Stenius", + "url": "http://blog.astekk.se", + "email": "git@astekk.se" +} diff --git a/users/karami.json b/users/karami.json index 0b1070a3..b1ce8774 100644 --- a/users/karami.json +++ b/users/karami.json @@ -1 +1,8 @@ -{"copyright":"Hossein Karami","url":"http:\/\/hosseinkarami.com","email":"hi@hosseinkarami.com","format":"html","gravatar": true,"theme": "material-indigo"} +{ + "copyright": "Hossein Karami", + "url": "http://hosseinkarami.com", + "email": "hi@hosseinkarami.com", + "format": "html", + "gravatar": true, + "theme": "material-indigo" +} diff --git a/users/karbassi.json b/users/karbassi.json index 6faff789..9b2d387c 100644 --- a/users/karbassi.json +++ b/users/karbassi.json @@ -1,5 +1,5 @@ { - "copyright": "Ali Karbassi, http://karbassi.com", - "url": "http://karbassi.com", - "theme": "flesch" + "copyright": "Ali Karbassi, http://karbassi.com", + "url": "http://karbassi.com", + "theme": "flesch" } diff --git a/users/karimsa.json b/users/karimsa.json index 35be1d31..62b72b15 100644 --- a/users/karimsa.json +++ b/users/karimsa.json @@ -1 +1,8 @@ -{"copyright":"KarimSa Networks","url":"http:\/\/karimsa.net","email":"me@karimsa.net","format":"html","gravatar":true,"theme":"eula-modern"} \ No newline at end of file +{ + "copyright": "KarimSa Networks", + "url": "http://karimsa.net", + "email": "me@karimsa.net", + "format": "html", + "gravatar": true, + "theme": "eula-modern" +} diff --git a/users/karl-sjogren.json b/users/karl-sjogren.json index 0751fbda..610edcc0 100644 --- a/users/karl-sjogren.json +++ b/users/karl-sjogren.json @@ -1 +1,6 @@ -{"copyright":"Karl-Johan Sjogren","url":"http:\/\/github.com\/karl-sjogren","email":"karl.sjogren@gmail.com","format":"html"} \ No newline at end of file +{ + "copyright": "Karl-Johan Sjogren", + "url": "http://github.com/karl-sjogren", + "email": "karl.sjogren@gmail.com", + "format": "html" +} diff --git a/users/karl.json b/users/karl.json index 5ac5a357..8beda787 100644 --- a/users/karl.json +++ b/users/karl.json @@ -1 +1,6 @@ -{"copyright":"Karl-Johan Sj\u00f6gren","url":"http:\/\/www.shorthand.se\/","email":"karl.sjogren@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Karl-Johan Sj\u00f6gren", + "url": "http://www.shorthand.se/", + "email": "karl.sjogren@gmail.com", + "format": "txt" +} diff --git a/users/karlc.json b/users/karlc.json index 36a57f01..364c7e5d 100644 --- a/users/karlc.json +++ b/users/karlc.json @@ -1 +1,5 @@ -{"copyright":"Karl Coelho","url":"http:\/\/karlcoelho.com","format":"html"} \ No newline at end of file +{ + "copyright": "Karl Coelho", + "url": "http://karlcoelho.com", + "format": "html" +} diff --git a/users/karlcoelho.json b/users/karlcoelho.json index 3c9dd64e..bc8e2a6c 100644 --- a/users/karlcoelho.json +++ b/users/karlcoelho.json @@ -1 +1,6 @@ -{"copyright":"Karl Coelho","url":"http:\/\/karlcoelho.com","email":"karl.coelho@icloud.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Karl Coelho", + "url": "http://karlcoelho.com", + "email": "karl.coelho@icloud.com", + "format": "txt" +} diff --git a/users/karteek.json b/users/karteek.json index 9761c389..061a3053 100644 --- a/users/karteek.json +++ b/users/karteek.json @@ -1 +1,6 @@ -{"copyright":"Karteek Edamadaka","url":"http:\/\/karteek.net","email":"me@karteek.net","format":"txt"} \ No newline at end of file +{ + "copyright": "Karteek Edamadaka", + "url": "http://karteek.net", + "email": "me@karteek.net", + "format": "txt" +} diff --git a/users/karupanerura.json b/users/karupanerura.json index 2c3c7536..1ec260a1 100644 --- a/users/karupanerura.json +++ b/users/karupanerura.json @@ -1 +1,6 @@ -{"copyright":"karupanerura","url":"http:\/\/karupas.org","email":"karupa@cpan.org","gravatar":true} \ No newline at end of file +{ + "copyright": "karupanerura", + "url": "http://karupas.org", + "email": "karupa@cpan.org", + "gravatar": true +} diff --git a/users/kataring.json b/users/kataring.json index 54cd6f05..c47b0938 100644 --- a/users/kataring.json +++ b/users/kataring.json @@ -1 +1,3 @@ -{"copyright":"Noriaki Katayama"} \ No newline at end of file +{ + "copyright": "Noriaki Katayama" +} diff --git a/users/katsuma.json b/users/katsuma.json index 24526510..095aa412 100644 --- a/users/katsuma.json +++ b/users/katsuma.json @@ -1 +1,3 @@ -{"copyright":"Ryo Katsuma"} \ No newline at end of file +{ + "copyright": "Ryo Katsuma" +} diff --git a/users/katsyoshi.json b/users/katsyoshi.json index eb49089f..a918c103 100644 --- a/users/katsyoshi.json +++ b/users/katsyoshi.json @@ -1 +1,3 @@ -{"copyright":"MATSUMOTO, Katsuyoshi"} \ No newline at end of file +{ + "copyright": "MATSUMOTO, Katsuyoshi" +} diff --git a/users/kaukeb.json b/users/kaukeb.json index bd01a37a..b3659f85 100644 --- a/users/kaukeb.json +++ b/users/kaukeb.json @@ -1 +1,4 @@ -{"copyright":"Brian L Kauke","format":"txt"} \ No newline at end of file +{ + "copyright": "Brian L Kauke", + "format": "txt" +} diff --git a/users/kawakawaritsuki.json b/users/kawakawaritsuki.json index 754a7fc0..b11480f7 100644 --- a/users/kawakawaritsuki.json +++ b/users/kawakawaritsuki.json @@ -1,7 +1,7 @@ { - "copyright": "Ritsuki Goto, http://www.mizucoffee.net/", - "url": "http://www.mizucoffee.net/", - "email": "develop@mizucoffee.net", - "theme": "material-indigo", - "gravatar": true + "copyright": "Ritsuki Goto, http://www.mizucoffee.net/", + "url": "http://www.mizucoffee.net/", + "email": "develop@mizucoffee.net", + "theme": "material-indigo", + "gravatar": true } diff --git a/users/kawanet.json b/users/kawanet.json index c2a70c69..b50453b7 100644 --- a/users/kawanet.json +++ b/users/kawanet.json @@ -1 +1,4 @@ -{"copyright":"Yusuke Kawasaki","url":"https:\/\/github.com\/kawanet"} \ No newline at end of file +{ + "copyright": "Yusuke Kawasaki", + "url": "https://github.com/kawanet" +} diff --git a/users/kawaz.json b/users/kawaz.json index 4f5d6ae2..b6147f24 100644 --- a/users/kawaz.json +++ b/users/kawaz.json @@ -1,6 +1,6 @@ { - "copyright": "Yoshiaki Kawazu, https://twitter.com/kawaz", - "url": "https://twitter.com/kawaz", - "email": "kawazzz@gmail.com", - "gravatar": true + "copyright": "Yoshiaki Kawazu, https://twitter.com/kawaz", + "url": "https://twitter.com/kawaz", + "email": "kawazzz@gmail.com", + "gravatar": true } diff --git a/users/kaxla.json b/users/kaxla.json index d3464a4b..daf35448 100644 --- a/users/kaxla.json +++ b/users/kaxla.json @@ -1 +1,3 @@ -{"copyright":"Kayla Morrison"} \ No newline at end of file +{ + "copyright": "Kayla Morrison" +} diff --git a/users/kayframework.json b/users/kayframework.json index bf23fc91..3fa31335 100644 --- a/users/kayframework.json +++ b/users/kayframework.json @@ -1 +1,6 @@ -{"copyright":"Kay Framework","url":"http:\/\/kayframework.org\/","email":"hello@kayframework.org","theme":"opensans"} \ No newline at end of file +{ + "copyright": "Kay Framework", + "url": "http://kayframework.org/", + "email": "hello@kayframework.org", + "theme": "opensans" +} diff --git a/users/kb.json b/users/kb.json index e365e7cf..7b212d3b 100644 --- a/users/kb.json +++ b/users/kb.json @@ -1 +1,7 @@ -{"copyright":"Kjell Bublitz","url":"http:\/\/m3nt0r.github.io\/","email":"m3nt0r.de@gmail.com","format":"html","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Kjell Bublitz", + "url": "http://m3nt0r.github.io/", + "email": "m3nt0r.de@gmail.com", + "format": "html", + "theme": "double-windsor" +} diff --git a/users/kbond.json b/users/kbond.json index f4fa7f0b..fa22f7b6 100644 --- a/users/kbond.json +++ b/users/kbond.json @@ -1 +1,5 @@ -{"copyright":"Kevin Bond","url":"http:\/\/zenstruck.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Kevin Bond", + "url": "http://zenstruck.com", + "format": "txt" +} diff --git a/users/kcak11.json b/users/kcak11.json index 10a5d12a..32af3d93 100644 --- a/users/kcak11.json +++ b/users/kcak11.json @@ -1,7 +1,7 @@ { - "copyright": "K.C.Ashish Kumar, https://kcak11.com", - "url": "https://kcak11.com", - "email": "kcak11@gmail.com", - "theme": "material-blue", - "gravatar": true + "copyright": "K.C.Ashish Kumar, https://kcak11.com", + "url": "https://kcak11.com", + "email": "kcak11@gmail.com", + "theme": "material-blue", + "gravatar": true } diff --git a/users/kcj.json b/users/kcj.json index 1357db3d..5360fd26 100644 --- a/users/kcj.json +++ b/users/kcj.json @@ -1,5 +1,5 @@ { - "copyright": "Kurt Jacobson", - "email": "kurtcjacobson@gmail.com", - "theme": "default" + "copyright": "Kurt Jacobson", + "email": "kurtcjacobson@gmail.com", + "theme": "default" } diff --git a/users/kclarke.json b/users/kclarke.json index 17c8ed74..e13b60a1 100644 --- a/users/kclarke.json +++ b/users/kclarke.json @@ -1,5 +1,5 @@ { - "copyright": "Kenzie Clarke", - "email": "kenzie.clarke@tcu.edu", - "theme": "double-windsor" + "copyright": "Kenzie Clarke", + "email": "kenzie.clarke@tcu.edu", + "theme": "double-windsor" } diff --git a/users/kdy.json b/users/kdy.json index a8c6a6f2..17ea6765 100644 --- a/users/kdy.json +++ b/users/kdy.json @@ -1 +1,7 @@ -{"copyright":"Andr\u00e9 Kody Fernandes","url":"https:\/\/kdy.ch","email":"im@kdy.ch","gravatar":true,"theme":"black-beauty"} \ No newline at end of file +{ + "copyright": "Andr\u00e9 Kody Fernandes", + "url": "https://kdy.ch", + "email": "im@kdy.ch", + "gravatar": true, + "theme": "black-beauty" +} diff --git a/users/ke.json b/users/ke.json index 31242fdb..b3b596b3 100644 --- a/users/ke.json +++ b/users/ke.json @@ -1 +1,7 @@ -{ "copyright": "Koch Essen Kommunikation + Design GmbH, http://koch-essen.de/", "url": "http://koch-essen.de/", "email": "online@koch-essen.de", "format": "html", "theme": "xtansia" } +{ + "copyright": "Koch Essen Kommunikation + Design GmbH, http://koch-essen.de/", + "url": "http://koch-essen.de/", + "email": "online@koch-essen.de", + "format": "html", + "theme": "xtansia" +} diff --git a/users/keegoid.json b/users/keegoid.json index ca7db36e..fac95ec4 100644 --- a/users/keegoid.json +++ b/users/keegoid.json @@ -1 +1,7 @@ -{"copyright":"Keegan Mullaney, http:\/\/keegoid.com","url":"http:\/\/keegoid.com","email":"keeganmullaney@gmail.com","gravatar":true,"theme":"material-teal"} \ No newline at end of file +{ + "copyright": "Keegan Mullaney, http://keegoid.com", + "url": "http://keegoid.com", + "email": "keeganmullaney@gmail.com", + "gravatar": true, + "theme": "material-teal" +} diff --git a/users/keifukuda.json b/users/keifukuda.json index f0bb496d..70ec39cd 100644 --- a/users/keifukuda.json +++ b/users/keifukuda.json @@ -1 +1,4 @@ -{"copyright":"Kei Fukuda","url":"https:\/\/github.com\/keifukuda"} \ No newline at end of file +{ + "copyright": "Kei Fukuda", + "url": "https://github.com/keifukuda" +} diff --git a/users/keita.json b/users/keita.json index 27312260..3fab1f3d 100644 --- a/users/keita.json +++ b/users/keita.json @@ -1 +1,3 @@ -{"copyright":"Keita Yamaguchi"} \ No newline at end of file +{ + "copyright": "Keita Yamaguchi" +} diff --git a/users/keithamus.json b/users/keithamus.json index 35e4c434..16039643 100644 --- a/users/keithamus.json +++ b/users/keithamus.json @@ -1,4 +1,4 @@ { - "copyright": "Keith Cirkel, http://keithcirkel.co.uk", - "url": "http://keithcirkel.co.uk" + "copyright": "Keith Cirkel, http://keithcirkel.co.uk", + "url": "http://keithcirkel.co.uk" } diff --git a/users/keithcirkel.json b/users/keithcirkel.json index 35e4c434..16039643 100644 --- a/users/keithcirkel.json +++ b/users/keithcirkel.json @@ -1,4 +1,4 @@ { - "copyright": "Keith Cirkel, http://keithcirkel.co.uk", - "url": "http://keithcirkel.co.uk" + "copyright": "Keith Cirkel, http://keithcirkel.co.uk", + "url": "http://keithcirkel.co.uk" } diff --git a/users/kenjiyamamoto.json b/users/kenjiyamamoto.json index 9cafb3e8..97b25ad0 100644 --- a/users/kenjiyamamoto.json +++ b/users/kenjiyamamoto.json @@ -1 +1,6 @@ -{"copyright":"Kenji Yamamoto","url":"http:\/\/kenjiyamamoto.com","email":"mail@kenjiyamamoto.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Kenji Yamamoto", + "url": "http://kenjiyamamoto.com", + "email": "mail@kenjiyamamoto.com", + "format": "txt" +} diff --git a/users/kenta.json b/users/kenta.json index 252449bf..072edfd1 100644 --- a/users/kenta.json +++ b/users/kenta.json @@ -1 +1,6 @@ -{"copyright":"Kenta Yoshikawa","url":"http:\/\/kenta.cc","format":"txt","gravatar":true} +{ + "copyright": "Kenta Yoshikawa", + "url": "http://kenta.cc", + "format": "txt", + "gravatar": true +} diff --git a/users/kentaro.json b/users/kentaro.json index 5fe9feff..88bc96b8 100644 --- a/users/kentaro.json +++ b/users/kentaro.json @@ -1 +1,5 @@ -{"copyright":"Kentaro Kuribayashi","url":"http:\/\/kentarok.org\/","email":"kentarok@gmail.com"} \ No newline at end of file +{ + "copyright": "Kentaro Kuribayashi", + "url": "http://kentarok.org/", + "email": "kentarok@gmail.com" +} diff --git a/users/kerem.json b/users/kerem.json index 31d5623f..b8ecd048 100644 --- a/users/kerem.json +++ b/users/kerem.json @@ -1,5 +1,5 @@ { - "copyright": "Kerem Bozdas, kerembozdas.com", - "url": "http://kerembozdas.com", - "theme": "double-windsor" + "copyright": "Kerem Bozdas, kerembozdas.com", + "url": "http://kerembozdas.com", + "theme": "double-windsor" } diff --git a/users/ketchum.json b/users/ketchum.json index 03aac484..0abcb305 100644 --- a/users/ketchum.json +++ b/users/ketchum.json @@ -1 +1,3 @@ -{"copyright":"Ash Ketchum"} \ No newline at end of file +{ + "copyright": "Ash Ketchum" +} diff --git a/users/kevin.json b/users/kevin.json index 0c294c84..ca71072a 100644 --- a/users/kevin.json +++ b/users/kevin.json @@ -1 +1,6 @@ -{"copyright":"Kevin Richardson","url":"http:\/\/magically.us","email":"kevin@magically.us","format":"txt"} \ No newline at end of file +{ + "copyright": "Kevin Richardson", + "url": "http://magically.us", + "email": "kevin@magically.us", + "format": "txt" +} diff --git a/users/kevinaloys.json b/users/kevinaloys.json index 5f5d4f97..13b604ff 100644 --- a/users/kevinaloys.json +++ b/users/kevinaloys.json @@ -1 +1,7 @@ -{"copyright":"Kevin Aloysius","url":"http:\/\/kevinaloysius.org","email":"kevinaloysius25@gmail.com","format":"txt", "theme":"default"} \ No newline at end of file +{ + "copyright": "Kevin Aloysius", + "url": "http://kevinaloysius.org", + "email": "kevinaloysius25@gmail.com", + "format": "txt", + "theme": "default" +} diff --git a/users/kevinfling.json b/users/kevinfling.json index 1892d3b7..e57be1b6 100644 --- a/users/kevinfling.json +++ b/users/kevinfling.json @@ -1 +1,3 @@ -{"copyright":"Kevin Fling"} \ No newline at end of file +{ + "copyright": "Kevin Fling" +} diff --git a/users/kevinmmarlow.json b/users/kevinmmarlow.json index 343648d7..29730ada 100644 --- a/users/kevinmmarlow.json +++ b/users/kevinmmarlow.json @@ -1 +1,3 @@ -{"copyright":"Kevin Marlow"} \ No newline at end of file +{ + "copyright": "Kevin Marlow" +} diff --git a/users/key.json b/users/key.json index f1e8a938..535001f4 100644 --- a/users/key.json +++ b/users/key.json @@ -1 +1,8 @@ -{"copyright":"Mitsukuni Sato","url":"http:\/\/mitsukuni.org","email":"mitsukuni.sato@gmail.com","format":"html","gravatar":true,"theme":"preview"} \ No newline at end of file +{ + "copyright": "Mitsukuni Sato", + "url": "http://mitsukuni.org", + "email": "mitsukuni.sato@gmail.com", + "format": "html", + "gravatar": true, + "theme": "preview" +} diff --git a/users/keyup.json b/users/keyup.json index c10c278d..8cc9416c 100644 --- a/users/keyup.json +++ b/users/keyup.json @@ -1 +1,5 @@ -{"copyright":"Keyup IT Services","url":"http:\/\/www.keyup.eu","theme":"default"} \ No newline at end of file +{ + "copyright": "Keyup IT Services", + "url": "http://www.keyup.eu", + "theme": "default" +} diff --git a/users/kezho.json b/users/kezho.json index 290602da..1c38974d 100644 --- a/users/kezho.json +++ b/users/kezho.json @@ -1 +1,4 @@ -{"copyright":"Maxime Fran\u00e7ois","url":"http:\/\/www.kezho.com"} \ No newline at end of file +{ + "copyright": "Maxime Fran\u00e7ois", + "url": "http://www.kezho.com" +} diff --git a/users/kgarg.json b/users/kgarg.json index 91cd7564..d2e815bd 100644 --- a/users/kgarg.json +++ b/users/kgarg.json @@ -1,6 +1,6 @@ { - "copyright": "Kunal Garg", - "url": "http://kunalgarg2100.github.io", - "email": "kunalgarg2100@gmail.com", - "gravatar": true + "copyright": "Kunal Garg", + "url": "http://kunalgarg2100.github.io", + "email": "kunalgarg2100@gmail.com", + "gravatar": true } diff --git a/users/kgisl.json b/users/kgisl.json index 8e4d307f..462465a5 100644 --- a/users/kgisl.json +++ b/users/kgisl.json @@ -1,5 +1,5 @@ { - "copyright": "Ashok Bakthavathsalam, http://kgisl.com", - "url": "http://kgisl.com", - "theme": "flesch" + "copyright": "Ashok Bakthavathsalam, http://kgisl.com", + "url": "http://kgisl.com", + "theme": "flesch" } diff --git a/users/khanio.json b/users/khanio.json index a6fb5c1d..0cefbb6e 100644 --- a/users/khanio.json +++ b/users/khanio.json @@ -1 +1,6 @@ -{"copyright":"Zakiullah Khan Mohammed","url":"http:\/\/khanio.com","email":"mail@khanio.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Zakiullah Khan Mohammed", + "url": "http://khanio.com", + "email": "mail@khanio.com", + "format": "txt" +} diff --git a/users/khushraj.json b/users/khushraj.json index b9b310c9..3b5b81d2 100644 --- a/users/khushraj.json +++ b/users/khushraj.json @@ -1,5 +1,5 @@ { - "copyright": "Khushraj Rathod", - "email": "khushraj2005@gmail.com", - "theme": "material-pink" + "copyright": "Khushraj Rathod", + "email": "khushraj2005@gmail.com", + "theme": "material-pink" } diff --git a/users/khuxkm.json b/users/khuxkm.json index 03fe69df..ed8bcfd4 100644 --- a/users/khuxkm.json +++ b/users/khuxkm.json @@ -1,7 +1,7 @@ { - "copyright": "Robert 'khuxkm' Miles, https://khuxkm.tilde.team", - "url": "http://khuxkm.tilde.team", - "email": "khuxkm@tilde.team", - "theme": "8bits-monochrome", - "gravatar": true + "copyright": "Robert 'khuxkm' Miles, https://khuxkm.tilde.team", + "url": "http://khuxkm.tilde.team", + "email": "khuxkm@tilde.team", + "theme": "8bits-monochrome", + "gravatar": true } diff --git a/users/kieranties.json b/users/kieranties.json index e9edc031..a6e58bf8 100644 --- a/users/kieranties.json +++ b/users/kieranties.json @@ -1,7 +1,7 @@ { - "copyright": "Kieran Marron, http://Kieranties.com", - "url": "http://Kieranties.com", - "email": "Kieran@Kieranties.com", - "gravatar": true, - "theme": "black-beauty" + "copyright": "Kieran Marron, http://Kieranties.com", + "url": "http://Kieranties.com", + "email": "Kieran@Kieranties.com", + "gravatar": true, + "theme": "black-beauty" } diff --git a/users/kilian.json b/users/kilian.json index f8cc9648..423595d8 100644 --- a/users/kilian.json +++ b/users/kilian.json @@ -1 +1,6 @@ -{"copyright":"Kilian Ciuffolo","url":"http:\/\/nailik.org","email":"me@nailik.org","format":"txt"} \ No newline at end of file +{ + "copyright": "Kilian Ciuffolo", + "url": "http://nailik.org", + "email": "me@nailik.org", + "format": "txt" +} diff --git a/users/kilokahn.json b/users/kilokahn.json index c87dcb91..a8dc520e 100644 --- a/users/kilokahn.json +++ b/users/kilokahn.json @@ -1 +1,6 @@ -{"copyright":"Mukarram Baig","url":"http:\/\/thekilokahn.blogspot.com","email":"mukarram[dot]baig[at]gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Mukarram Baig", + "url": "http://thekilokahn.blogspot.com", + "email": "mukarram[dot]baig[at]gmail.com", + "format": "txt" +} diff --git a/users/kimiamania.json b/users/kimiamania.json index 31a4dcb9..5d9d7100 100644 --- a/users/kimiamania.json +++ b/users/kimiamania.json @@ -1 +1,7 @@ -{"copyright":"Rezha Julio","url":"http:\/\/rezhajulio.web.id","email":"contact@rezhajulio.web.id","format":"html","theme":"afterdark"} \ No newline at end of file +{ + "copyright": "Rezha Julio", + "url": "http://rezhajulio.web.id", + "email": "contact@rezhajulio.web.id", + "format": "html", + "theme": "afterdark" +} diff --git a/users/kindy.json b/users/kindy.json index a7902d11..fabd5fc8 100644 --- a/users/kindy.json +++ b/users/kindy.json @@ -1 +1,5 @@ -{"copyright":"Kindy Lin","email":"kindy61@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Kindy Lin", + "email": "kindy61@gmail.com", + "format": "txt" +} diff --git a/users/kinetik.json b/users/kinetik.json index b78c87cd..5b3e9054 100644 --- a/users/kinetik.json +++ b/users/kinetik.json @@ -1,8 +1,8 @@ { - "copyright": "Kinetik, http:\/\/kinetik.la", - "url": "http:\/\/kinetik.la", - "theme": "8bits-monochrome", - "email": "dev@kinetik.la", - "gravatar": false, - "format": "html" + "copyright": "Kinetik, http://kinetik.la", + "url": "http://kinetik.la", + "theme": "8bits-monochrome", + "email": "dev@kinetik.la", + "gravatar": false, + "format": "html" } diff --git a/users/kishorm23.json b/users/kishorm23.json index 71becab0..6640556b 100644 --- a/users/kishorm23.json +++ b/users/kishorm23.json @@ -1 +1,3 @@ -{"copyright":"Kishor Mohite"} \ No newline at end of file +{ + "copyright": "Kishor Mohite" +} diff --git a/users/kit.json b/users/kit.json index aaba5917..1090e593 100644 --- a/users/kit.json +++ b/users/kit.json @@ -1,5 +1,5 @@ { - "copyright": "Kit Cambridge", - "url": "http://kitcambridge.github.com", - "theme": "double-windsor" -} \ No newline at end of file + "copyright": "Kit Cambridge", + "url": "http://kitcambridge.github.com", + "theme": "double-windsor" +} diff --git a/users/kitak.json b/users/kitak.json index 3b4176bf..78330fa1 100644 --- a/users/kitak.json +++ b/users/kitak.json @@ -1 +1,4 @@ -{"copyright":"Keisuke KITA","url":"https:\/\/github.com\/kitak"} \ No newline at end of file +{ + "copyright": "Keisuke KITA", + "url": "https://github.com/kitak" +} diff --git a/users/kiwigrid.json b/users/kiwigrid.json index 99e7125e..18c60541 100644 --- a/users/kiwigrid.json +++ b/users/kiwigrid.json @@ -1 +1,3 @@ -{"copyright":"Kiwigrid GmbH"} \ No newline at end of file +{ + "copyright": "Kiwigrid GmbH" +} diff --git a/users/kjirou.json b/users/kjirou.json index 4afe9412..d339f2d4 100644 --- a/users/kjirou.json +++ b/users/kjirou.json @@ -1 +1,4 @@ -{"copyright":"Koujirou Ishii","url":"https:\/\/github.com\/kjirou"} \ No newline at end of file +{ + "copyright": "Koujirou Ishii", + "url": "https://github.com/kjirou" +} diff --git a/users/kjohnston.json b/users/kjohnston.json index 7d91ca02..14f6b4c1 100644 --- a/users/kjohnston.json +++ b/users/kjohnston.json @@ -1 +1,3 @@ -{"copyright":"Kenny Johnston"} \ No newline at end of file +{ + "copyright": "Kenny Johnston" +} diff --git a/users/kkung.json b/users/kkung.json index 2f9e2678..7fb1aec5 100644 --- a/users/kkung.json +++ b/users/kkung.json @@ -1 +1,6 @@ -{"copyright":"Minyoung Jeong","url":"http:\/\/kkung.net","email":"kkungkkung@gmail.com","theme":"afterdark"} +{ + "copyright": "Minyoung Jeong", + "url": "http://kkung.net", + "email": "kkungkkung@gmail.com", + "theme": "afterdark" +} diff --git a/users/kloptops.json b/users/kloptops.json index a997dc68..291bb6b1 100644 --- a/users/kloptops.json +++ b/users/kloptops.json @@ -1 +1,5 @@ -{"copyright":"Jacob Smith","email":"kloptops@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Jacob Smith", + "email": "kloptops@gmail.com", + "format": "txt" +} diff --git a/users/kma.json b/users/kma.json index 3b9fdbd4..c9a5a0a5 100644 --- a/users/kma.json +++ b/users/kma.json @@ -1 +1,5 @@ -{"copyright":"KM Authorized LLC","url":"http:\/\/kmauthorized.com","email":"license@kmauthorized.com"} \ No newline at end of file +{ + "copyright": "KM Authorized LLC", + "url": "http://kmauthorized.com", + "email": "license@kmauthorized.com" +} diff --git a/users/kmix.json b/users/kmix.json index 355765b8..26cf90f0 100644 --- a/users/kmix.json +++ b/users/kmix.json @@ -1,4 +1,4 @@ { - "copyright": "Ken Mix", - "email": "ken@mix.co" + "copyright": "Ken Mix", + "email": "ken@mix.co" } diff --git a/users/kmonsoor.json b/users/kmonsoor.json index a054f550..84f152f4 100644 --- a/users/kmonsoor.json +++ b/users/kmonsoor.json @@ -1 +1,7 @@ -{"copyright":"Khaled Monsoor","url":"http:\/\/kmonsoor.com","email":"k@kmonsoor.com","format":"html","gravatar":true} \ No newline at end of file +{ + "copyright": "Khaled Monsoor", + "url": "http://kmonsoor.com", + "email": "k@kmonsoor.com", + "format": "html", + "gravatar": true +} diff --git a/users/knagano.json b/users/knagano.json index 50119340..d7cd337c 100644 --- a/users/knagano.json +++ b/users/knagano.json @@ -1 +1,3 @@ -{"copyright":"Keiichiro Nagano"} \ No newline at end of file +{ + "copyright": "Keiichiro Nagano" +} diff --git a/users/knakayama.json b/users/knakayama.json index 45a8516c..70ebf5ee 100644 --- a/users/knakayama.json +++ b/users/knakayama.json @@ -1,7 +1,7 @@ { - "copyright": "knakayama, https://github.com/knakayama", - "format": "txt", - "email": "knakayama@gmail.com", - "gravatar": true, - "theme" : "default" + "copyright": "knakayama, https://github.com/knakayama", + "format": "txt", + "email": "knakayama@gmail.com", + "gravatar": true, + "theme": "default" } diff --git a/users/knimon-software.json b/users/knimon-software.json index b336f4fc..58ce6f7c 100644 --- a/users/knimon-software.json +++ b/users/knimon-software.json @@ -1 +1,3 @@ -{"copyright":"Knimon software"} \ No newline at end of file +{ + "copyright": "Knimon software" +} diff --git a/users/knockout-components.json b/users/knockout-components.json index d12a4745..5b58982c 100644 --- a/users/knockout-components.json +++ b/users/knockout-components.json @@ -1 +1,5 @@ -{"copyright":"Knockout Components, https:\/\/github.com\/knockout-components","url":"https:\/\/github.com\/knockout-components","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Knockout Components, https://github.com/knockout-components", + "url": "https://github.com/knockout-components", + "theme": "double-windsor" +} diff --git a/users/knutwalker.json b/users/knutwalker.json index 38430891..3f79111b 100644 --- a/users/knutwalker.json +++ b/users/knutwalker.json @@ -1 +1,6 @@ -{"url":"http:\/\/knutwalker.de\/","format":"text","copyright":"Paul Horn, http:\/\/knutwalker.de\/","email":"knutwalker+mit@gmail.com"} \ No newline at end of file +{ + "url": "http://knutwalker.de/", + "format": "text", + "copyright": "Paul Horn, http://knutwalker.de/", + "email": "knutwalker+mit@gmail.com" +} diff --git a/users/koba789.json b/users/koba789.json index 9974fbd8..d4a81fc4 100644 --- a/users/koba789.json +++ b/users/koba789.json @@ -1 +1,4 @@ -{"copyright":"Hidekazu Kobayashi","url":"http:\/\/koba789.com\/"} \ No newline at end of file +{ + "copyright": "Hidekazu Kobayashi", + "url": "http://koba789.com/" +} diff --git a/users/koeberle.json b/users/koeberle.json index 9319b5e6..8b26a067 100644 --- a/users/koeberle.json +++ b/users/koeberle.json @@ -1 +1,3 @@ -{"copyright":"Andreas K\u00f6berle"} \ No newline at end of file +{ + "copyright": "Andreas K\u00f6berle" +} diff --git a/users/kohenkatz.json b/users/kohenkatz.json index de80f6bc..47c8e7fe 100644 --- a/users/kohenkatz.json +++ b/users/kohenkatz.json @@ -1 +1,7 @@ -{"copyright":"Moshe M. Katz","url":"http:\/\/www.ymkatz.net","email":"moshe@ymkatz.net","gravatar":true,"theme":"black-beauty"} \ No newline at end of file +{ + "copyright": "Moshe M. Katz", + "url": "http://www.ymkatz.net", + "email": "moshe@ymkatz.net", + "gravatar": true, + "theme": "black-beauty" +} diff --git a/users/kojiwakayama.json b/users/kojiwakayama.json index 8189a2ca..451a3b03 100644 --- a/users/kojiwakayama.json +++ b/users/kojiwakayama.json @@ -1 +1,6 @@ -{"copyright":"Koji Wakayama","url":"http:\/\/kojiwakayama.com","email":"info@kojiwakayama.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Koji Wakayama", + "url": "http://kojiwakayama.com", + "email": "info@kojiwakayama.com", + "format": "txt" +} diff --git a/users/konsumer.json b/users/konsumer.json index e14361de..8fb25390 100644 --- a/users/konsumer.json +++ b/users/konsumer.json @@ -1 +1,6 @@ -{"copyright":"David Konsumer, https:\/\/keybase.io\/konsumer","url":"https:\/\/keybase.io\/konsumer","gravatar":true,"theme":"black-beauty"} \ No newline at end of file +{ + "copyright": "David Konsumer, https://keybase.io/konsumer", + "url": "https://keybase.io/konsumer", + "gravatar": true, + "theme": "black-beauty" +} diff --git a/users/kopplin.json b/users/kopplin.json index 281e2a99..8b9f2b81 100644 --- a/users/kopplin.json +++ b/users/kopplin.json @@ -1 +1,3 @@ -{"copyright":"Sergio Kopplin"} \ No newline at end of file +{ + "copyright": "Sergio Kopplin" +} diff --git a/users/koshigoe.json b/users/koshigoe.json index 85939024..45519aa7 100644 --- a/users/koshigoe.json +++ b/users/koshigoe.json @@ -1 +1,3 @@ -{"copyright":"koshigoe, https:\/\/github.com\/koshigoe"} \ No newline at end of file +{ + "copyright": "koshigoe, https://github.com/koshigoe" +} diff --git a/users/kossnocorp.json b/users/kossnocorp.json index 45a21710..94c351d7 100644 --- a/users/kossnocorp.json +++ b/users/kossnocorp.json @@ -1 +1,3 @@ -{"copyright":"Sasha Koss"} \ No newline at end of file +{ + "copyright": "Sasha Koss" +} diff --git a/users/kothawale.json b/users/kothawale.json index e8b6e576..d055215c 100644 --- a/users/kothawale.json +++ b/users/kothawale.json @@ -1 +1,5 @@ -{"copyright":"Akash Kothawale","url":"https:\/\/decached.com","email":"akash@decached.com"} \ No newline at end of file +{ + "copyright": "Akash Kothawale", + "url": "https://decached.com", + "email": "akash@decached.com" +} diff --git a/users/koustuvs.json b/users/koustuvs.json index 13cfc0fb..241d9025 100644 --- a/users/koustuvs.json +++ b/users/koustuvs.json @@ -1,5 +1,5 @@ { - "copyright" : "Koustuv Sinha", - "url" : "http://koustuvsinha.github.io", - "format" : "txt" + "copyright": "Koustuv Sinha", + "url": "http://koustuvsinha.github.io", + "format": "txt" } diff --git a/users/kozakky.json b/users/kozakky.json index 1655d78e..287c1496 100644 --- a/users/kozakky.json +++ b/users/kozakky.json @@ -1 +1,3 @@ -{"copyright":"Sotaro Kozaki"} \ No newline at end of file +{ + "copyright": "Sotaro Kozaki" +} diff --git a/users/kpeatt.json b/users/kpeatt.json index 2659c12f..25108390 100644 --- a/users/kpeatt.json +++ b/users/kpeatt.json @@ -1 +1,7 @@ -{"copyright":"Kyle Peatt","url":"http:\/\/kylepeatt.com","email":"kpeatt@gmail.com","format":"html","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Kyle Peatt", + "url": "http://kylepeatt.com", + "email": "kpeatt@gmail.com", + "format": "html", + "theme": "double-windsor" +} diff --git a/users/kraga.json b/users/kraga.json index 710d11dc..25425b60 100644 --- a/users/kraga.json +++ b/users/kraga.json @@ -1,8 +1,8 @@ { - "copyright": "KRAGA spol. s r.o.", - "url": "https://kraga.sk", - "email": "software@kraga.sk", - "gravatar": false, - "theme": "hmt-blue", - "format": "html" + "copyright": "KRAGA spol. s r.o.", + "url": "https://kraga.sk", + "email": "software@kraga.sk", + "gravatar": false, + "theme": "hmt-blue", + "format": "html" } diff --git a/users/krinkle.json b/users/krinkle.json index f77316cf..16939031 100644 --- a/users/krinkle.json +++ b/users/krinkle.json @@ -1,6 +1,6 @@ { - "copyright": "Timo Tijhof", - "url": "https://github.com/Krinkle", - "format": "html", - "theme": "material" + "copyright": "Timo Tijhof", + "url": "https://github.com/Krinkle", + "format": "html", + "theme": "material" } diff --git a/users/kris.json b/users/kris.json index aac06ab6..c6f4dcf9 100644 --- a/users/kris.json +++ b/users/kris.json @@ -1 +1,5 @@ -{"copyright":"Kristopher Ives","url":"http:\/\/krisives.github.io\/","email":"kristopher.ives@gmail.com"} \ No newline at end of file +{ + "copyright": "Kristopher Ives", + "url": "http://krisives.github.io/", + "email": "kristopher.ives@gmail.com" +} diff --git a/users/kristoffer.json b/users/kristoffer.json index 94a41564..6a5a08c6 100644 --- a/users/kristoffer.json +++ b/users/kristoffer.json @@ -1 +1,3 @@ -{"copyright":"Kristoffer Sachse"} \ No newline at end of file +{ + "copyright": "Kristoffer Sachse" +} diff --git a/users/kristopher.json b/users/kristopher.json index bf8b255f..deae7bd5 100644 --- a/users/kristopher.json +++ b/users/kristopher.json @@ -1 +1,7 @@ -{"copyright":"kristopher tate","location":"Kyoto, Japan","url":"http:\/\/kristopher.jp\/","email":"kris.tate+licensing@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "kristopher tate", + "location": "Kyoto, Japan", + "url": "http://kristopher.jp/", + "email": "kris.tate+licensing@gmail.com", + "format": "txt" +} diff --git a/users/kriwil.json b/users/kriwil.json index 42739d6a..80708d8e 100644 --- a/users/kriwil.json +++ b/users/kriwil.json @@ -1 +1,3 @@ -{"copyright":"Aldiantoro Nugroho"} \ No newline at end of file +{ + "copyright": "Aldiantoro Nugroho" +} diff --git a/users/kroisse.json b/users/kroisse.json index 9c03e5e2..8bd5dc9c 100644 --- a/users/kroisse.json +++ b/users/kroisse.json @@ -1 +1,5 @@ -{"copyright":"Eunchong Yu","url":"http:\/\/krois.se\/","email":"kroisse@gmail.com"} +{ + "copyright": "Eunchong Yu", + "url": "http://krois.se/", + "email": "kroisse@gmail.com" +} diff --git a/users/krolow.json b/users/krolow.json index bc6889aa..a645302a 100644 --- a/users/krolow.json +++ b/users/krolow.json @@ -1 +1,6 @@ -{"copyright":"Vin\u00edcius Krolow","url":"http:\/\/krolow.com.br","email":"krolow@gmail.com", "gravatar" : "true"} +{ + "copyright": "Vin\u00edcius Krolow", + "url": "http://krolow.com.br", + "email": "krolow@gmail.com", + "gravatar": "true" +} diff --git a/users/krrrr38.json b/users/krrrr38.json index a5db3615..934a8443 100644 --- a/users/krrrr38.json +++ b/users/krrrr38.json @@ -1 +1,3 @@ -{"copyright":"Ken KAIZU"} \ No newline at end of file +{ + "copyright": "Ken KAIZU" +} diff --git a/users/ksomemo.json b/users/ksomemo.json index d728f139..c2f3cc9f 100644 --- a/users/ksomemo.json +++ b/users/ksomemo.json @@ -1 +1,3 @@ -{"copyright":"ksomemo"} \ No newline at end of file +{ + "copyright": "ksomemo" +} diff --git a/users/kswedberg.json b/users/kswedberg.json index d1ad9f4d..c6ad4f79 100644 --- a/users/kswedberg.json +++ b/users/kswedberg.json @@ -1 +1,5 @@ -{"copyright":"Karl Swedberg","url":"http:\/\/karlswedberg.com","email":"kswedberg@gmail.com"} \ No newline at end of file +{ + "copyright": "Karl Swedberg", + "url": "http://karlswedberg.com", + "email": "kswedberg@gmail.com" +} diff --git a/users/kt3k.json b/users/kt3k.json index 4295ba65..dd4802ae 100644 --- a/users/kt3k.json +++ b/users/kt3k.json @@ -1 +1,3 @@ -{"copyright":"Yosiya Hinosawa ( @kt3k )"} \ No newline at end of file +{ + "copyright": "Yosiya Hinosawa ( @kt3k )" +} diff --git a/users/ktat.json b/users/ktat.json index dded6d2c..5bea929d 100644 --- a/users/ktat.json +++ b/users/ktat.json @@ -1,6 +1,6 @@ { - "copyright": "Atsushi Kato, http://www.rwds.net/", - "url": "http://www.rwds.net/", - "email": "ktat.is@gmail.com", - "theme": "material-grey" + "copyright": "Atsushi Kato, http://www.rwds.net/", + "url": "http://www.rwds.net/", + "email": "ktat.is@gmail.com", + "theme": "material-grey" } diff --git a/users/ktravis.json b/users/ktravis.json index a867d7b3..60e5faff 100644 --- a/users/ktravis.json +++ b/users/ktravis.json @@ -1 +1,3 @@ -{"copyright":"Kyle Travis"} \ No newline at end of file +{ + "copyright": "Kyle Travis" +} diff --git a/users/ktrysmt.json b/users/ktrysmt.json index 672cced0..b5e8a716 100644 --- a/users/ktrysmt.json +++ b/users/ktrysmt.json @@ -1,7 +1,7 @@ { - "copyright": "Kotaro Yoshimatsu", - "url": "https://ktrysmt.github.io/", - "email": "kotaro.yoshimatsu@gmail.com", - "theme": "opensans", - "gravatar": true + "copyright": "Kotaro Yoshimatsu", + "url": "https://ktrysmt.github.io/", + "email": "kotaro.yoshimatsu@gmail.com", + "theme": "opensans", + "gravatar": true } diff --git a/users/kucoe.json b/users/kucoe.json index 492e44fe..3afe35bd 100644 --- a/users/kucoe.json +++ b/users/kucoe.json @@ -1 +1,5 @@ -{"copyright":"Wolf Bas","url":"http:\/\/kucoe.net","email":"becevka@kucoe.net"} \ No newline at end of file +{ + "copyright": "Wolf Bas", + "url": "http://kucoe.net", + "email": "becevka@kucoe.net" +} diff --git a/users/kuenishi.json b/users/kuenishi.json index 40de7b60..4a8cfef4 100644 --- a/users/kuenishi.json +++ b/users/kuenishi.json @@ -1 +1,4 @@ -{"copyright":"Kota UENISHI","url":"http:\/\/kuenishi.github.com"} \ No newline at end of file +{ + "copyright": "Kota UENISHI", + "url": "http://kuenishi.github.com" +} diff --git a/users/kujohnln.json b/users/kujohnln.json index ff92dba8..bdb2bb42 100644 --- a/users/kujohnln.json +++ b/users/kujohnln.json @@ -1 +1,8 @@ -{"gravatar":true,"copyright":"KUJOHNLN","theme":"material-pink","url":"https:\/\/ikuyman.pub","email":"kujohnln@gmail.com","format":"txt"} +{ + "gravatar": true, + "copyright": "KUJOHNLN", + "theme": "material-pink", + "url": "https://ikuyman.pub", + "email": "kujohnln@gmail.com", + "format": "txt" +} diff --git a/users/kumatch.json b/users/kumatch.json index 2039fd6a..fa41d6ad 100644 --- a/users/kumatch.json +++ b/users/kumatch.json @@ -1 +1,4 @@ -{"copyright":"Yosuke Kumakura","url":"https:\/\/github.com\/kumatch"} \ No newline at end of file +{ + "copyright": "Yosuke Kumakura", + "url": "https://github.com/kumatch" +} diff --git a/users/kuni-uec-takada-lab.json b/users/kuni-uec-takada-lab.json index 44e455cf..bbcde423 100644 --- a/users/kuni-uec-takada-lab.json +++ b/users/kuni-uec-takada-lab.json @@ -1 +1,5 @@ -{"copyright":"Yuki Kokubun (2012 UEC Tokyo Japan, Takada.Lab)","email":"uec.takada.lab@hotmail.co.jp","url":"http:\/\/www.az.inf.uec.ac.jp\/"} \ No newline at end of file +{ + "copyright": "Yuki Kokubun (2012 UEC Tokyo Japan, Takada.Lab)", + "email": "uec.takada.lab@hotmail.co.jp", + "url": "http://www.az.inf.uec.ac.jp/" +} diff --git a/users/kuniwak.json b/users/kuniwak.json index d51337bc..7ebcaccb 100644 --- a/users/kuniwak.json +++ b/users/kuniwak.json @@ -1 +1,3 @@ -{"copyright":"Kuniwak"} \ No newline at end of file +{ + "copyright": "Kuniwak" +} diff --git a/users/kurmis.json b/users/kurmis.json index ceb7ee44..a8b4f476 100644 --- a/users/kurmis.json +++ b/users/kurmis.json @@ -1 +1,6 @@ -{"copyright":"Oliver Kurmis","url":"https:\/\/www.kurmis.com","email":"oliver@kurmis.com","format":"html"} \ No newline at end of file +{ + "copyright": "Oliver Kurmis", + "url": "https://www.kurmis.com", + "email": "oliver@kurmis.com", + "format": "html" +} diff --git a/users/kuronekomichael.json b/users/kuronekomichael.json index d9d35fdd..3bc7608b 100644 --- a/users/kuronekomichael.json +++ b/users/kuronekomichael.json @@ -1 +1,4 @@ -{"copyright":"Kuroneko Michael","url":"https:\/\/github.com\/kuronekomichael"} \ No newline at end of file +{ + "copyright": "Kuroneko Michael", + "url": "https://github.com/kuronekomichael" +} diff --git a/users/kvz.json b/users/kvz.json index 64896c9c..67c2295f 100644 --- a/users/kvz.json +++ b/users/kvz.json @@ -1 +1,3 @@ -{"copyright":"Kevin van Zonneveld"} \ No newline at end of file +{ + "copyright": "Kevin van Zonneveld" +} diff --git a/users/kvz2.json b/users/kvz2.json index 57fe684e..abbe9a00 100644 --- a/users/kvz2.json +++ b/users/kvz2.json @@ -1 +1,6 @@ -{"copyright":"Kevin van Zonneveld","url":"http:\/\/kvz.io","email":"kevin@vanzonneveld.net","format":"txt"} \ No newline at end of file +{ + "copyright": "Kevin van Zonneveld", + "url": "http://kvz.io", + "email": "kevin@vanzonneveld.net", + "format": "txt" +} diff --git a/users/kyanny.json b/users/kyanny.json index dd050654..1f5375c2 100644 --- a/users/kyanny.json +++ b/users/kyanny.json @@ -1 +1,3 @@ -{"copyright":"Kensuke Nagae"} \ No newline at end of file +{ + "copyright": "Kensuke Nagae" +} diff --git a/users/kyle.json b/users/kyle.json index 97b4cfbf..d63a7652 100644 --- a/users/kyle.json +++ b/users/kyle.json @@ -1 +1,6 @@ -{"copyright":"Kyle Isom","url":"http:\/\/kyleisom.net","email":"kyle@kyleisom.net","format":"txt"} \ No newline at end of file +{ + "copyright": "Kyle Isom", + "url": "http://kyleisom.net", + "email": "kyle@kyleisom.net", + "format": "txt" +} diff --git a/users/kylebaker.json b/users/kylebaker.json index 31bac407..27e999b9 100644 --- a/users/kylebaker.json +++ b/users/kylebaker.json @@ -1 +1,5 @@ -{"copyright":"Kyle Baker","email":"mr.sapientia@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Kyle Baker", + "email": "mr.sapientia@gmail.com", + "format": "txt" +} diff --git a/users/kylebshr.json b/users/kylebshr.json index 0d4c5633..46a8a5da 100644 --- a/users/kylebshr.json +++ b/users/kylebshr.json @@ -1 +1,5 @@ -{"copyright":"Kyle Bashour","url":"http:\/\/kylebashour.com","email":"kylebshr@me.com"} \ No newline at end of file +{ + "copyright": "Kyle Bashour", + "url": "http://kylebashour.com", + "email": "kylebshr@me.com" +} diff --git a/users/kylestev.json b/users/kylestev.json index f3808506..b842f465 100644 --- a/users/kylestev.json +++ b/users/kylestev.json @@ -1 +1,6 @@ -{"copyright":"Kyle Stevenson","url":"http:\/\/kylestev.io","email":"kyle@kylestevenson.me","format":"txt"} \ No newline at end of file +{ + "copyright": "Kyle Stevenson", + "url": "http://kylestev.io", + "email": "kyle@kylestevenson.me", + "format": "txt" +} diff --git a/users/kylewelsby.json b/users/kylewelsby.json index 17a7da82..65781a4e 100644 --- a/users/kylewelsby.json +++ b/users/kylewelsby.json @@ -1,7 +1,7 @@ { - "copyright": "Kyle Welsby, https://mekyle.com", - "email": "kyle@mekyle.com", - "gravatar": true, - "theme": "material-red", - "url": "https://mekyle.com" + "copyright": "Kyle Welsby, https://mekyle.com", + "email": "kyle@mekyle.com", + "gravatar": true, + "theme": "material-red", + "url": "https://mekyle.com" } diff --git a/users/kyrias.json b/users/kyrias.json index 821be417..b6186d57 100644 --- a/users/kyrias.json +++ b/users/kyrias.json @@ -1 +1,5 @@ -{"copyright":"Johannes L\u00f6thberg","url":"https:\/\/theos.kyriasis.com\/~kyrias","email":"johannes@kyriasis.com"} \ No newline at end of file +{ + "copyright": "Johannes L\u00f6thberg", + "url": "https://theos.kyriasis.com/~kyrias", + "email": "johannes@kyriasis.com" +} diff --git a/users/kyungw00k.json b/users/kyungw00k.json index 906bf258..57a90c7a 100644 --- a/users/kyungw00k.json +++ b/users/kyungw00k.json @@ -1,8 +1,8 @@ { - "copyright": "Kyungwook Park", - "url": "https://kyungw00k.github.io", - "format": "html", - "email": "parksama@gmail.com", - "theme": "material-red", - "gravatar": true + "copyright": "Kyungwook Park", + "url": "https://kyungw00k.github.io", + "format": "html", + "email": "parksama@gmail.com", + "theme": "material-red", + "gravatar": true } diff --git a/users/l04m33.json b/users/l04m33.json index d0fcb45e..26bc3023 100644 --- a/users/l04m33.json +++ b/users/l04m33.json @@ -1 +1,6 @@ -{"copyright":"Kay Zheng","url":"http:\/\/blog.theerrorlog.com","email":"l04m33@gmail.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Kay Zheng", + "url": "http://blog.theerrorlog.com", + "email": "l04m33@gmail.com", + "gravatar": true +} diff --git a/users/laka.json b/users/laka.json index 5f02d86f..fa5968b8 100644 --- a/users/laka.json +++ b/users/laka.json @@ -1 +1,5 @@ -{"copyright":"Alex Lakatos","url":"http:\/\/alexlakatos.com","email":"alex.lakatos.qa+mit@gmail.com"} \ No newline at end of file +{ + "copyright": "Alex Lakatos", + "url": "http://alexlakatos.com", + "email": "alex.lakatos.qa+mit@gmail.com" +} diff --git a/users/lalit.json b/users/lalit.json index d84f2b14..6e036b3b 100644 --- a/users/lalit.json +++ b/users/lalit.json @@ -1 +1,6 @@ -{"copyright":"Goodybag, Inc.","url":"http:\/\/www.goodybag.com","email":"lalit@goodybag.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Goodybag, Inc.", + "url": "http://www.goodybag.com", + "email": "lalit@goodybag.com", + "format": "txt" +} diff --git a/users/laradic.json b/users/laradic.json index 80149b8f..c7697c0b 100644 --- a/users/laradic.json +++ b/users/laradic.json @@ -1 +1,6 @@ -{ "copyright": "Robin Radic", "url": "https://la.radic.nl", "email": "robin@radic.nl", "format": "html" } \ No newline at end of file +{ + "copyright": "Robin Radic", + "url": "https://la.radic.nl", + "email": "robin@radic.nl", + "format": "html" +} diff --git a/users/lareg.json b/users/lareg.json index 84b4c01d..3a917e2d 100644 --- a/users/lareg.json +++ b/users/lareg.json @@ -1 +1,3 @@ -{"copyright":"Lare Grodzicki"} \ No newline at end of file +{ + "copyright": "Lare Grodzicki" +} diff --git a/users/larrybotha.json b/users/larrybotha.json index 3d09d313..a967fec4 100644 --- a/users/larrybotha.json +++ b/users/larrybotha.json @@ -1,5 +1,5 @@ { - "copyright": "Larry Botha, http://larrybotha.github.com/", - "url": "http://larrybotha.github.com/", - "theme": "double-windsor" -} \ No newline at end of file + "copyright": "Larry Botha, http://larrybotha.github.com/", + "url": "http://larrybotha.github.com/", + "theme": "double-windsor" +} diff --git a/users/lars.json b/users/lars.json index 17b9f59f..f3e36c98 100644 --- a/users/lars.json +++ b/users/lars.json @@ -1 +1,6 @@ -{"copyright":"Lars Steen","url":"http:\/\/lars.io","email":"larste@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Lars Steen", + "url": "http://lars.io", + "email": "larste@gmail.com", + "format": "txt" +} diff --git a/users/larste.json b/users/larste.json index 98681084..0260e9fb 100644 --- a/users/larste.json +++ b/users/larste.json @@ -1 +1,3 @@ -{"copyright":"Lars Steen "} \ No newline at end of file +{ + "copyright": "Lars Steen " +} diff --git a/users/lavoie-sl.json b/users/lavoie-sl.json index 24b607ce..195b08e0 100644 --- a/users/lavoie-sl.json +++ b/users/lavoie-sl.json @@ -1 +1,7 @@ -{"copyright":"S\u00e9bastien Lavoie","url":"http:\/\/blog.lavoie.sl\/","email":"mit@lavoie.sl","gravatar":true,"theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "S\u00e9bastien Lavoie", + "url": "http://blog.lavoie.sl/", + "email": "mit@lavoie.sl", + "gravatar": true, + "theme": "double-windsor" +} diff --git a/users/layer7tech.json b/users/layer7tech.json index 4655f568..fdb2ef0b 100644 --- a/users/layer7tech.json +++ b/users/layer7tech.json @@ -1 +1,6 @@ -{"copyright":"Layer 7 Technologies, Inc.","url":"http:\/\/layer7tech.com","email":"services@layer7tech.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Layer 7 Technologies, Inc.", + "url": "http://layer7tech.com", + "email": "services@layer7tech.com", + "format": "txt" +} diff --git a/users/lbesson.json b/users/lbesson.json index 8ec31a5d..6e91ef25 100644 --- a/users/lbesson.json +++ b/users/lbesson.json @@ -1 +1,7 @@ -{"copyright":"Lilian Besson (Naereen), https:\/\/bitbucket.org\/lbesson\/","url":"https:\/\/bitbucket.org\/lbesson\/","email":"naereen at crans dot org","format":"html","gravatar":false} \ No newline at end of file +{ + "copyright": "Lilian Besson (Naereen), https://bitbucket.org/lbesson/", + "url": "https://bitbucket.org/lbesson/", + "email": "naereen at crans dot org", + "format": "html", + "gravatar": false +} diff --git a/users/lbuell.json b/users/lbuell.json index c6c37835..bebddd29 100644 --- a/users/lbuell.json +++ b/users/lbuell.json @@ -1 +1,6 @@ -{"copyright":"Liam Buel","url":"http:\/\/www.liambuell.com","email":"liamcbuell@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Liam Buel", + "url": "http://www.liambuell.com", + "email": "liamcbuell@gmail.com", + "format": "txt" +} diff --git a/users/leandromatos.json b/users/leandromatos.json index 6d182745..d634ea2a 100644 --- a/users/leandromatos.json +++ b/users/leandromatos.json @@ -1 +1,6 @@ -{"copyright":"Leandro Matos","url":"http:\/\/is-uz.com","email":"leandro@is-uz.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Leandro Matos", + "url": "http://is-uz.com", + "email": "leandro@is-uz.com", + "format": "txt" +} diff --git a/users/leanix.json b/users/leanix.json index e84ee3be..5444a15e 100644 --- a/users/leanix.json +++ b/users/leanix.json @@ -1 +1,6 @@ -{"copyright":"LeanIX GmbH, https:\/\/leanix.net","url":"https:\/\/leanix.net", "email": "support@leanix.net", "format": "txt"} +{ + "copyright": "LeanIX GmbH, https://leanix.net", + "url": "https://leanix.net", + "email": "support@leanix.net", + "format": "txt" +} diff --git a/users/ledsun.json b/users/ledsun.json index 1948b861..f68543da 100644 --- a/users/ledsun.json +++ b/users/ledsun.json @@ -1 +1,4 @@ -{"copyright":"Shigeru Nakajima","url":"https:\/\/github.com\/ledsun"} \ No newline at end of file +{ + "copyright": "Shigeru Nakajima", + "url": "https://github.com/ledsun" +} diff --git a/users/leeym.json b/users/leeym.json index 9bda5d3a..f1edfbac 100644 --- a/users/leeym.json +++ b/users/leeym.json @@ -1 +1,3 @@ -{"copyright":"Yen-Ming Lee"} \ No newline at end of file +{ + "copyright": "Yen-Ming Lee" +} diff --git a/users/leftlogic.json b/users/leftlogic.json index c73f44cb..bb3a59dd 100644 --- a/users/leftlogic.json +++ b/users/leftlogic.json @@ -1,4 +1,4 @@ { - "copyright": "Left Logic Ltd, http://leftlogic.com", - "url": "http://leftlogic.com" + "copyright": "Left Logic Ltd, http://leftlogic.com", + "url": "http://leftlogic.com" } diff --git a/users/legato.json b/users/legato.json index 5e29a7ae..77126175 100644 --- a/users/legato.json +++ b/users/legato.json @@ -1,5 +1,5 @@ { - "copyright": "Legato Network, http://legatonetwork.com", - "url": "http://legatonetwork.com", - "email": "hello@legatonetwork.com" -} \ No newline at end of file + "copyright": "Legato Network, http://legatonetwork.com", + "url": "http://legatonetwork.com", + "email": "hello@legatonetwork.com" +} diff --git a/users/legraphista.json b/users/legraphista.json index 43aacc07..fca459e1 100644 --- a/users/legraphista.json +++ b/users/legraphista.json @@ -1 +1,8 @@ -{"copyright":"Stefan-Gabriel Muscalu","url":"https:\/\/my.corneroftheinternet.rocks\/","email":"stefan.gabriel.muscalu@gmail.com","format":"html","gravatar":true,"theme":"black-beauty"} \ No newline at end of file +{ + "copyright": "Stefan-Gabriel Muscalu", + "url": "https://my.corneroftheinternet.rocks/", + "email": "stefan.gabriel.muscalu@gmail.com", + "format": "html", + "gravatar": true, + "theme": "black-beauty" +} diff --git a/users/lehmannro.json b/users/lehmannro.json index f9cff760..4b4f7c8d 100644 --- a/users/lehmannro.json +++ b/users/lehmannro.json @@ -1 +1,5 @@ -{"copyright":"Robert Lehmann","url":"http:\/\/robertlehmann.de\/","email":"mail@robertlehmann.de"} \ No newline at end of file +{ + "copyright": "Robert Lehmann", + "url": "http://robertlehmann.de/", + "email": "mail@robertlehmann.de" +} diff --git a/users/lemieux.json b/users/lemieux.json index 0a421c3b..a8539cec 100644 --- a/users/lemieux.json +++ b/users/lemieux.json @@ -1,6 +1,6 @@ { - "copyright" : "Marc-Antoine Lemieux, http://marcantoinelemieux.com", - "url" : "http://marcantoinelemieux.com", - "email" : "marc@marcantoinelemieux.com", - "theme" : "afterdark" -} \ No newline at end of file + "copyright": "Marc-Antoine Lemieux, http://marcantoinelemieux.com", + "url": "http://marcantoinelemieux.com", + "email": "marc@marcantoinelemieux.com", + "theme": "afterdark" +} diff --git a/users/lemolsoft.json b/users/lemolsoft.json index f023a43e..edc9b11c 100644 --- a/users/lemolsoft.json +++ b/users/lemolsoft.json @@ -1,6 +1,6 @@ { - "copyright": "Leza Morais Lutonda (Lemol-C Software)", - "url": "http://lemolsoft.webs.com", - "email": "lemol-c@hotmail.com", - "theme": "double-windsor" + "copyright": "Leza Morais Lutonda (Lemol-C Software)", + "url": "http://lemolsoft.webs.com", + "email": "lemol-c@hotmail.com", + "theme": "double-windsor" } diff --git a/users/lemurs.json b/users/lemurs.json index 8dd40d90..79902ed8 100644 --- a/users/lemurs.json +++ b/users/lemurs.json @@ -1 +1,5 @@ -{"copyright":"FRINKnet and the Expatriated Lemurs of Borneo","url":"http:\/\/frinknet.com","theme":"double-winsor"} \ No newline at end of file +{ + "copyright": "FRINKnet and the Expatriated Lemurs of Borneo", + "url": "http://frinknet.com", + "theme": "double-winsor" +} diff --git a/users/len.json b/users/len.json index d0d5ba34..e639f6b8 100644 --- a/users/len.json +++ b/users/len.json @@ -1 +1,4 @@ -{"copyright":"Len","url":"http:\/\/len-ch.com"} \ No newline at end of file +{ + "copyright": "Len", + "url": "http://len-ch.com" +} diff --git a/users/lenet.json b/users/lenet.json index 6b600455..3782ebe0 100644 --- a/users/lenet.json +++ b/users/lenet.json @@ -1 +1,4 @@ -{"copyright":"LENetworks","url":"http:\/\/len-ch.com"} \ No newline at end of file +{ + "copyright": "LENetworks", + "url": "http://len-ch.com" +} diff --git a/users/leniglo.json b/users/leniglo.json index a15c6053..1ee1c3fe 100644 --- a/users/leniglo.json +++ b/users/leniglo.json @@ -1,8 +1,8 @@ { - "copyright":"Guillaume \"LeNiglo\" Lefrant", - "url":"http://lefrantguillaume.com?ref=mit", - "email":"lefrantguillaume@gmail.com", - "format":"html", - "gravatar":true, - "theme":"flesch" + "copyright": "Guillaume \"LeNiglo\" Lefrant", + "url": "http://lefrantguillaume.com?ref=mit", + "email": "lefrantguillaume@gmail.com", + "format": "html", + "gravatar": true, + "theme": "flesch" } diff --git a/users/lenilson.json b/users/lenilson.json index a7622e10..d3a50eb8 100644 --- a/users/lenilson.json +++ b/users/lenilson.json @@ -1 +1,6 @@ -{"copyright":"Lenilson Jose Dias","url":"http:\/\/nixusr.com","email":"lenilson@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Lenilson Jose Dias", + "url": "http://nixusr.com", + "email": "lenilson@gmail.com", + "format": "txt" +} diff --git a/users/leonardomerlin.json b/users/leonardomerlin.json index 2eee2530..22ed73d5 100644 --- a/users/leonardomerlin.json +++ b/users/leonardomerlin.json @@ -1 +1,5 @@ -{"copyright":"Leonardo Merlin","url":"http:\/\/leonardomerlin.com.br","email":"hi@leonardomerlin.com.br"} +{ + "copyright": "Leonardo Merlin", + "url": "http://leonardomerlin.com.br", + "email": "hi@leonardomerlin.com.br" +} diff --git a/users/leonardorifeli.json b/users/leonardorifeli.json index 9e611531..81e562b0 100644 --- a/users/leonardorifeli.json +++ b/users/leonardorifeli.json @@ -1 +1,5 @@ -{"copyright":"Leonardo Rifeli","url":"http:\/\/leonardorifeli.com","email":"leonardorifeli@gmail.com"} +{ + "copyright": "Leonardo Rifeli", + "url": "http://leonardorifeli.com", + "email": "leonardorifeli@gmail.com" +} diff --git a/users/leonardosoares.json b/users/leonardosoares.json index b2de6978..7f15b49a 100644 --- a/users/leonardosoares.json +++ b/users/leonardosoares.json @@ -1 +1,7 @@ -{"copyright": "Leonardo Soares, http://www.leonardosoares.org","url": "http://www.leonardosoares.org","email": "ping@leonardosoares.org","gravatar": true,"theme": "double-windsor"} +{ + "copyright": "Leonardo Soares, http://www.leonardosoares.org", + "url": "http://www.leonardosoares.org", + "email": "ping@leonardosoares.org", + "gravatar": true, + "theme": "double-windsor" +} diff --git a/users/lepture.json b/users/lepture.json index 858429e4..678d7132 100644 --- a/users/lepture.json +++ b/users/lepture.json @@ -1 +1,6 @@ -{"copyright":"Hsiaoming Yang","url":"http:\/\/lepture.com","email":"me@lepture.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Hsiaoming Yang", + "url": "http://lepture.com", + "email": "me@lepture.com", + "format": "txt" +} diff --git a/users/lequioscreative.json b/users/lequioscreative.json index 6575d620..bd9c4043 100644 --- a/users/lequioscreative.json +++ b/users/lequioscreative.json @@ -1 +1,3 @@ -{"copyright":"Lequios Creative"} \ No newline at end of file +{ + "copyright": "Lequios Creative" +} diff --git a/users/levelup.json b/users/levelup.json index a973b5ab..7a3d100e 100644 --- a/users/levelup.json +++ b/users/levelup.json @@ -1,3 +1,3 @@ { - "copyright": "Level Up (Scotland) Limited, http://www.thisislevelup.com" + "copyright": "Level Up (Scotland) Limited, http://www.thisislevelup.com" } diff --git a/users/lgalfaso.json b/users/lgalfaso.json index 627d7028..cc3199af 100644 --- a/users/lgalfaso.json +++ b/users/lgalfaso.json @@ -1 +1,3 @@ -{"copyright":"Lucas Galfas\u00f3"} \ No newline at end of file +{ + "copyright": "Lucas Galfas\u00f3" +} diff --git a/users/lgn21st.json b/users/lgn21st.json index de856650..9b472242 100644 --- a/users/lgn21st.json +++ b/users/lgn21st.json @@ -1 +1,5 @@ -{"copyright":"Daniel Lv, http://lvguoning.com","url":"http://lvguoning.com","email":"lgn21st@gmail.com"} +{ + "copyright": "Daniel Lv, http://lvguoning.com", + "url": "http://lvguoning.com", + "email": "lgn21st@gmail.com" +} diff --git a/users/lh.json b/users/lh.json index bed4a2ab..9d2eed4e 100644 --- a/users/lh.json +++ b/users/lh.json @@ -1 +1,6 @@ -{"copyright":"Louis L","url":"https:\/\/luuhuy.com\/","email":"admin@luuhuy.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Louis L", + "url": "https://luuhuy.com/", + "email": "admin@luuhuy.com", + "format": "txt" +} diff --git a/users/lhl.json b/users/lhl.json index 3872ef1d..06f2644c 100644 --- a/users/lhl.json +++ b/users/lhl.json @@ -1 +1,3 @@ -{"copyright":"Leonard Lin"} \ No newline at end of file +{ + "copyright": "Leonard Lin" +} diff --git a/users/li.json b/users/li.json index 0aeca093..affa818c 100644 --- a/users/li.json +++ b/users/li.json @@ -1,7 +1,7 @@ { - "copyright": "Runze Li", - "url": "https://lirunze.xyz", - "email": "me@lirunze.xyz", - "gravatar": true, - "theme": "material-lime" + "copyright": "Runze Li", + "url": "https://lirunze.xyz", + "email": "me@lirunze.xyz", + "gravatar": true, + "theme": "material-lime" } diff --git a/users/liam-kerr.json b/users/liam-kerr.json index 65bd6bfe..f8023651 100644 --- a/users/liam-kerr.json +++ b/users/liam-kerr.json @@ -1 +1,3 @@ -{"copyright":"Liam Kerr"} \ No newline at end of file +{ + "copyright": "Liam Kerr" +} diff --git a/users/lidonghua.json b/users/lidonghua.json index 9794d5d2..586873bd 100644 --- a/users/lidonghua.json +++ b/users/lidonghua.json @@ -1 +1,4 @@ -{"copyright":"Donghua Li","url":"https:\/\/github.com\/lidonghua"} \ No newline at end of file +{ + "copyright": "Donghua Li", + "url": "https://github.com/lidonghua" +} diff --git a/users/likerrr.json b/users/likerrr.json index 90fa7eea..4aa872ff 100644 --- a/users/likerrr.json +++ b/users/likerrr.json @@ -1 +1,7 @@ -{"copyright":"Alexey Lizurchik, http:\/\/likerrr.ru","url":"http:\/\/likerrr.ru","email":"al.lizurchik@gmail.com","gravatar":true,"format":"html"} \ No newline at end of file +{ + "copyright": "Alexey Lizurchik, http://likerrr.ru", + "url": "http://likerrr.ru", + "email": "al.lizurchik@gmail.com", + "gravatar": true, + "format": "html" +} diff --git a/users/lindsayevans.json b/users/lindsayevans.json index 9ef1c8c7..d73070cd 100644 --- a/users/lindsayevans.json +++ b/users/lindsayevans.json @@ -1,4 +1,4 @@ { - "copyright": "Lindsay Evans ", - "url": "http://linz.id.au/" + "copyright": "Lindsay Evans ", + "url": "http://linz.id.au/" } diff --git a/users/lionel-m.json b/users/lionel-m.json index c2ae547a..73905ab7 100644 --- a/users/lionel-m.json +++ b/users/lionel-m.json @@ -1,4 +1,4 @@ { - "copyright": "Lionel Maccaud", - "theme": "double-windsor" + "copyright": "Lionel Maccaud", + "theme": "double-windsor" } diff --git a/users/lira.json b/users/lira.json index 2e7b5ae2..c89efd87 100644 --- a/users/lira.json +++ b/users/lira.json @@ -1,7 +1,7 @@ { - "copyright": "Fernando Lira, http://fernandolira.com", - "url": "http://fernandolira.com", - "email": "oi@fernandolira.com", - "gravatar": true, - "theme": "material-green" + "copyright": "Fernando Lira, http://fernandolira.com", + "url": "http://fernandolira.com", + "email": "oi@fernandolira.com", + "gravatar": true, + "theme": "material-green" } diff --git a/users/lishiyu.json b/users/lishiyu.json index 0d94d23e..365b187a 100644 --- a/users/lishiyu.json +++ b/users/lishiyu.json @@ -1 +1,4 @@ -{"copyright":"lishiyu","url":"http:\/\/lishiyu.com"} +{ + "copyright": "lishiyu", + "url": "http://lishiyu.com" +} diff --git a/users/litenjacob.json b/users/litenjacob.json index dee9e440..0be9f57d 100644 --- a/users/litenjacob.json +++ b/users/litenjacob.json @@ -1 +1,3 @@ -{"copyright":"Jacob Waller"} \ No newline at end of file +{ + "copyright": "Jacob Waller" +} diff --git a/users/liuderchi.json b/users/liuderchi.json index b36ef67b..f4ccd446 100644 --- a/users/liuderchi.json +++ b/users/liuderchi.json @@ -1 +1,7 @@ -{"copyright":"Te-Chi Liu","url":"https://github.com/liuderchi","email":"liuderchi@gmail.com","theme":"material-orange","gravatar":true} +{ + "copyright": "Te-Chi Liu", + "url": "https://github.com/liuderchi", + "email": "liuderchi@gmail.com", + "theme": "material-orange", + "gravatar": true +} diff --git a/users/livebreathedigital.json b/users/livebreathedigital.json index 733e2b75..2f1b863f 100644 --- a/users/livebreathedigital.json +++ b/users/livebreathedigital.json @@ -1 +1,6 @@ -{"copyright":"Kevin Fling","url":"http:\/\/livebreathedigital.net","email":"k@livebreathedigital.net","format":"opensans"} \ No newline at end of file +{ + "copyright": "Kevin Fling", + "url": "http://livebreathedigital.net", + "email": "k@livebreathedigital.net", + "format": "opensans" +} diff --git a/users/liz.json b/users/liz.json index 09712d73..8498b15e 100644 --- a/users/liz.json +++ b/users/liz.json @@ -1 +1,6 @@ -{"copyright":"Serendipity","url":"https:\/\/lizzie.github.io\/","email":"shengyan1985@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Serendipity", + "url": "https://lizzie.github.io/", + "email": "shengyan1985@gmail.com", + "format": "txt" +} diff --git a/users/lizzie.json b/users/lizzie.json index 09712d73..8498b15e 100644 --- a/users/lizzie.json +++ b/users/lizzie.json @@ -1 +1,6 @@ -{"copyright":"Serendipity","url":"https:\/\/lizzie.github.io\/","email":"shengyan1985@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Serendipity", + "url": "https://lizzie.github.io/", + "email": "shengyan1985@gmail.com", + "format": "txt" +} diff --git a/users/ljos.json b/users/ljos.json index 93d094f9..09af9a65 100644 --- a/users/ljos.json +++ b/users/ljos.json @@ -1 +1,6 @@ -{"copyright":"Bjarte Johansen","theme":"double-windsor","url":"https://github.com\/ljos","email":"Bjarte.Johansen@gmail.com"} +{ + "copyright": "Bjarte Johansen", + "theme": "double-windsor", + "url": "https://github.com/ljos", + "email": "Bjarte.Johansen@gmail.com" +} diff --git a/users/llaraujo.json b/users/llaraujo.json index f41d9aa5..c1ac6968 100644 --- a/users/llaraujo.json +++ b/users/llaraujo.json @@ -1 +1,5 @@ -{"copyright":"Leonardo Lima Araujo","url":"http:\/\/llaraujo.com","email":"leonardo@llaraujo.com"} \ No newline at end of file +{ + "copyright": "Leonardo Lima Araujo", + "url": "http://llaraujo.com", + "email": "leonardo@llaraujo.com" +} diff --git a/users/llun.json b/users/llun.json index 43b89f86..116f1d70 100644 --- a/users/llun.json +++ b/users/llun.json @@ -1 +1,4 @@ -{"copyright":"Maythee Anegboonlap","email":"null@llun.in.th"} \ No newline at end of file +{ + "copyright": "Maythee Anegboonlap", + "email": "null@llun.in.th" +} diff --git a/users/lmarburger.json b/users/lmarburger.json index e7d46ed3..f745a0a6 100644 --- a/users/lmarburger.json +++ b/users/lmarburger.json @@ -1 +1,6 @@ -{"copyright":"Larry Marburger Jr, http:\/\/developmentastic.com","url":"http:\/\/developmentastic.com","email":"larry@marburger.cc","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Larry Marburger Jr, http://developmentastic.com", + "url": "http://developmentastic.com", + "email": "larry@marburger.cc", + "theme": "double-windsor" +} diff --git a/users/lmullen.json b/users/lmullen.json index 45b12aeb..347f5e32 100644 --- a/users/lmullen.json +++ b/users/lmullen.json @@ -1 +1,6 @@ -{"copyright":"Lincoln A. Mullen","url":"http:\/\/lincolnmullen.com","email":"lincoln@lincolnmullen.com","format":"html"} \ No newline at end of file +{ + "copyright": "Lincoln A. Mullen", + "url": "http://lincolnmullen.com", + "email": "lincoln@lincolnmullen.com", + "format": "html" +} diff --git a/users/lng.json b/users/lng.json index 4e89591a..5929659e 100644 --- a/users/lng.json +++ b/users/lng.json @@ -1 +1,3 @@ -{"copyright":"Lillian Ng"} \ No newline at end of file +{ + "copyright": "Lillian Ng" +} diff --git a/users/lnmunhoz.json b/users/lnmunhoz.json index 8ebab435..72ffb0eb 100644 --- a/users/lnmunhoz.json +++ b/users/lnmunhoz.json @@ -1 +1,5 @@ -{"copyright":"Lucas N. Munhoz","email":"ln.munhoz@gmail.com","url":"lnmunhoz.github.io"} \ No newline at end of file +{ + "copyright": "Lucas N. Munhoz", + "email": "ln.munhoz@gmail.com", + "url": "lnmunhoz.github.io" +} diff --git a/users/lo.json b/users/lo.json index ba32241d..585b5808 100644 --- a/users/lo.json +++ b/users/lo.json @@ -1 +1,3 @@ -{"copyright":"Carlo Flores"} \ No newline at end of file +{ + "copyright": "Carlo Flores" +} diff --git a/users/localhost.json b/users/localhost.json index 633f98f5..66dda92d 100644 --- a/users/localhost.json +++ b/users/localhost.json @@ -1,8 +1,8 @@ { - "copyright": "Richie Bendall, https://www.richie-bendall.ml", - "url": "https://www.richie-bendall.ml", - "email": "richiebendall@gmail.com", - "format": "html", - "gravatar": true, - "theme": "material-indigo" + "copyright": "Richie Bendall, https://www.richie-bendall.ml", + "url": "https://www.richie-bendall.ml", + "email": "richiebendall@gmail.com", + "format": "html", + "gravatar": true, + "theme": "material-indigo" } diff --git a/users/localpcguy.json b/users/localpcguy.json index 685ce034..57e8de5c 100644 --- a/users/localpcguy.json +++ b/users/localpcguy.json @@ -1,5 +1,5 @@ { - "copyright": "Mike Behnke, http://www.local-pc-guy.com", - "url": "http://www.local-pc-guy.com", - "theme": "flesch" + "copyright": "Mike Behnke, http://www.local-pc-guy.com", + "url": "http://www.local-pc-guy.com", + "theme": "flesch" } diff --git a/users/lolcat.json b/users/lolcat.json index 24031c5e..7c7cafc8 100644 --- a/users/lolcat.json +++ b/users/lolcat.json @@ -1 +1,3 @@ -{"copyright":"Lolcat"} \ No newline at end of file +{ + "copyright": "Lolcat" +} diff --git a/users/longsl.json b/users/longsl.json index bbeda4c8..181eb715 100644 --- a/users/longsl.json +++ b/users/longsl.json @@ -1 +1,6 @@ -{"copyright":"Long ShiLin","url":"http:\/\/longshilin.com","email":"583297550@qq.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Long ShiLin", + "url": "http://longshilin.com", + "email": "583297550@qq.com", + "gravatar": true +} diff --git a/users/loopj.json b/users/loopj.json index 7c301de7..0f4e0208 100644 --- a/users/loopj.json +++ b/users/loopj.json @@ -1,5 +1,5 @@ { - "copyright": "James Smith, http://loopj.com", - "url": "http://loopj.com", - "theme": "default" + "copyright": "James Smith, http://loopj.com", + "url": "http://loopj.com", + "theme": "default" } diff --git a/users/lorenz-lo-sauer.json b/users/lorenz-lo-sauer.json index 64a5c0fb..d7bad24a 100644 --- a/users/lorenz-lo-sauer.json +++ b/users/lorenz-lo-sauer.json @@ -1,8 +1,8 @@ { - "copyright": "Lorenz Lo Sauer, https://www.lsauer.com", - "url": "http://www.lsauer.com", - "format": "html", - "email": "lorenz.lo.sauer@gmail.com", - "gravatar": true, - "theme": "eula-modern" + "copyright": "Lorenz Lo Sauer, https://www.lsauer.com", + "url": "http://www.lsauer.com", + "format": "html", + "email": "lorenz.lo.sauer@gmail.com", + "gravatar": true, + "theme": "eula-modern" } diff --git a/users/louisremi.json b/users/louisremi.json index 7a9a8d3c..aed5e11f 100644 --- a/users/louisremi.json +++ b/users/louisremi.json @@ -1 +1,4 @@ -{"copyright":"Louis-R\u00e9mi Bab\u00e9","url":"http:\/\/twitter.com\/louis_remi"} \ No newline at end of file +{ + "copyright": "Louis-R\u00e9mi Bab\u00e9", + "url": "http://twitter.com/louis_remi" +} diff --git a/users/louist.json b/users/louist.json index 6ad009bb..4c385181 100644 --- a/users/louist.json +++ b/users/louist.json @@ -1,8 +1,8 @@ { - "copyright": "Louis T., https:\/\/lou.ist", - "url": "https:\/\/lou.ist", - "theme": "default-dark", - "email": "louist@lou.ist", - "gravatar": true, - "format": "html" + "copyright": "Louis T., https://lou.ist", + "url": "https://lou.ist", + "theme": "default-dark", + "email": "louist@lou.ist", + "gravatar": true, + "format": "html" } diff --git a/users/lp.json b/users/lp.json index 9c48477b..4816d7ee 100644 --- a/users/lp.json +++ b/users/lp.json @@ -1 +1,5 @@ -{"copyright": "Luke Thomas Plaster", "url": "http:\/\/lukep.org", "email": "notatestuser@gmail.com"} \ No newline at end of file +{ + "copyright": "Luke Thomas Plaster", + "url": "http://lukep.org", + "email": "notatestuser@gmail.com" +} diff --git a/users/lpa.json b/users/lpa.json index 91b34866..018b4ecb 100644 --- a/users/lpa.json +++ b/users/lpa.json @@ -1,5 +1,5 @@ { - "copyright": "Little Polar Apps, http://littlepolarapps.com", - "url": "http://littlepolarapps.com", - "theme": "flesch" + "copyright": "Little Polar Apps, http://littlepolarapps.com", + "url": "http://littlepolarapps.com", + "theme": "flesch" } diff --git a/users/lpg.json b/users/lpg.json index 685ce034..57e8de5c 100644 --- a/users/lpg.json +++ b/users/lpg.json @@ -1,5 +1,5 @@ { - "copyright": "Mike Behnke, http://www.local-pc-guy.com", - "url": "http://www.local-pc-guy.com", - "theme": "flesch" + "copyright": "Mike Behnke, http://www.local-pc-guy.com", + "url": "http://www.local-pc-guy.com", + "theme": "flesch" } diff --git a/users/lpghatguy.json b/users/lpghatguy.json index 536daebe..c8ecd35b 100644 --- a/users/lpghatguy.json +++ b/users/lpghatguy.json @@ -1 +1,6 @@ -{"copyright":"Lucien Greathouse","url":"http:\/\/lpghatguy.com","email":"me@lpghatguy.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Lucien Greathouse", + "url": "http://lpghatguy.com", + "email": "me@lpghatguy.com", + "format": "txt" +} diff --git a/users/lqez.json b/users/lqez.json index 7bfd2930..a1a028d7 100644 --- a/users/lqez.json +++ b/users/lqez.json @@ -1 +1,3 @@ -{"copyright":"Park Hyunwoo"} \ No newline at end of file +{ + "copyright": "Park Hyunwoo" +} diff --git a/users/lqian.json b/users/lqian.json index cc17f7f6..8d8a008e 100644 --- a/users/lqian.json +++ b/users/lqian.json @@ -1 +1,6 @@ -{"copyright":"Li Qian","url":"http:\/\/gushingach.tk","email":"pkuphenix@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Li Qian", + "url": "http://gushingach.tk", + "email": "pkuphenix@gmail.com", + "format": "txt" +} diff --git a/users/lrenhrda.json b/users/lrenhrda.json index 021aa9d9..c7ce54af 100644 --- a/users/lrenhrda.json +++ b/users/lrenhrda.json @@ -1 +1,3 @@ -{"copyright":"Lauren Herda"} \ No newline at end of file +{ + "copyright": "Lauren Herda" +} diff --git a/users/lsauer.json b/users/lsauer.json index 7a590acc..3c5a1778 100644 --- a/users/lsauer.json +++ b/users/lsauer.json @@ -1,8 +1,8 @@ { - "copyright": "Lorenz Lo Sauer, https://www.lsauer.com", - "url": "http://www.lsauer.com", - "format": "html", - "email": "lorenz.lo.sauer@gmail.com", - "gravatar": false, - "theme": "eula-modern" + "copyright": "Lorenz Lo Sauer, https://www.lsauer.com", + "url": "http://www.lsauer.com", + "format": "html", + "email": "lorenz.lo.sauer@gmail.com", + "gravatar": false, + "theme": "eula-modern" } diff --git a/users/lsh.json b/users/lsh.json index 1dc0dd3c..f9fb10cd 100644 --- a/users/lsh.json +++ b/users/lsh.json @@ -1 +1,7 @@ -{"copyright":"Leander Harding","url":"http:\/\/lsh.io","email":"lsh@lsh.io","format":"txt","gravatar":true} \ No newline at end of file +{ + "copyright": "Leander Harding", + "url": "http://lsh.io", + "email": "lsh@lsh.io", + "format": "txt", + "gravatar": true +} diff --git a/users/lsong.json b/users/lsong.json index 88820623..48c6c386 100644 --- a/users/lsong.json +++ b/users/lsong.json @@ -1 +1,5 @@ -{"copyright":"Lsong","url":"https:\/\/lsong.org","email":"i@lsong.org"} \ No newline at end of file +{ + "copyright": "Lsong", + "url": "https://lsong.org", + "email": "i@lsong.org" +} diff --git a/users/ltej.json b/users/ltej.json index f4ee0ddd..c2ce9645 100644 --- a/users/ltej.json +++ b/users/ltej.json @@ -1 +1,3 @@ -{"copyright":"Leandra Tejedor"} \ No newline at end of file +{ + "copyright": "Leandra Tejedor" +} diff --git a/users/luanmuniz.json b/users/luanmuniz.json index c2578c81..1045a297 100644 --- a/users/luanmuniz.json +++ b/users/luanmuniz.json @@ -1,5 +1,5 @@ { - "copyright": "Luan Muniz", - "email": "luan@luanmuniz.com.br", - "url": "http://luanmuniz.com.br" -} \ No newline at end of file + "copyright": "Luan Muniz", + "email": "luan@luanmuniz.com.br", + "url": "http://luanmuniz.com.br" +} diff --git a/users/lucasgreen.json b/users/lucasgreen.json index 38328fd4..3fb92df2 100644 --- a/users/lucasgreen.json +++ b/users/lucasgreen.json @@ -1 +1,3 @@ -{"copyright":"Lucas M Green"} \ No newline at end of file +{ + "copyright": "Lucas M Green" +} diff --git a/users/luis.json b/users/luis.json index e429fe5e..4cc18885 100644 --- a/users/luis.json +++ b/users/luis.json @@ -1 +1,3 @@ -{"copyright":"Luis Nell"} \ No newline at end of file +{ + "copyright": "Luis Nell" +} diff --git a/users/luisdalmolin.json b/users/luisdalmolin.json index d4fd227d..cd26523f 100644 --- a/users/luisdalmolin.json +++ b/users/luisdalmolin.json @@ -1 +1,3 @@ -{"copyright":"Luis Dalmolin"} \ No newline at end of file +{ + "copyright": "Luis Dalmolin" +} diff --git a/users/luizbills.json b/users/luizbills.json index 5c4f564b..e91ea44e 100644 --- a/users/luizbills.json +++ b/users/luizbills.json @@ -1 +1,6 @@ -{"copyright":"Luiz \"Bills\"","url":"https:\/\/twitter.com\/luizbills","email":"luizpbills@gmail.com","format":"html"} \ No newline at end of file +{ + "copyright": "Luiz \"Bills\"", + "url": "https://twitter.com/luizbills", + "email": "luizpbills@gmail.com", + "format": "html" +} diff --git a/users/luizpicolo.json b/users/luizpicolo.json index 319f3ca6..d9c23a69 100644 --- a/users/luizpicolo.json +++ b/users/luizpicolo.json @@ -1,8 +1,8 @@ { - "copyright" : "Luiz Picolo", - "url" : "http://www.luizpicolo.com.br", - "format" : "html", - "email" : "luizpicolo@gmail.com", - "gravatar" : false, - "theme" : "rokkitt" + "copyright": "Luiz Picolo", + "url": "http://www.luizpicolo.com.br", + "format": "html", + "email": "luizpicolo@gmail.com", + "gravatar": false, + "theme": "rokkitt" } diff --git a/users/luke.json b/users/luke.json index 5bc3dd72..214ff8f3 100644 --- a/users/luke.json +++ b/users/luke.json @@ -1,6 +1,6 @@ { - "copyright": "Luke Holder", - "email": "lukemh@gmail.com", - "url": "https://lukeholder.net", - "theme": "plaintext" + "copyright": "Luke Holder", + "email": "lukemh@gmail.com", + "url": "https://lukeholder.net", + "theme": "plaintext" } diff --git a/users/lukeed.json b/users/lukeed.json index c59e18e3..0e1486df 100644 --- a/users/lukeed.json +++ b/users/lukeed.json @@ -1 +1,6 @@ -{"copyright":"Luke Edwards","url":"http:\/\/lukeed.com","email":"luke@lukeed.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Luke Edwards", + "url": "http://lukeed.com", + "email": "luke@lukeed.com", + "format": "txt" +} diff --git a/users/lukew.json b/users/lukew.json index b99465f6..7d2d0b25 100644 --- a/users/lukew.json +++ b/users/lukew.json @@ -1,6 +1,6 @@ { - "copyright": "Luke Whrit", - "url": "https://lukewhrit.xyz", - "email": "me@lukewhrit.xyz", - "gravatar": false + "copyright": "Luke Whrit", + "url": "https://lukewhrit.xyz", + "email": "me@lukewhrit.xyz", + "gravatar": false } diff --git a/users/lukmdo.json b/users/lukmdo.json index 3f734b6c..a44168a0 100644 --- a/users/lukmdo.json +++ b/users/lukmdo.json @@ -1 +1,6 @@ -{"copyright":"Lukasz Dobrzanski","url":"http:\/\/www.lukmdo.com","email":"me@lukmdo.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Lukasz Dobrzanski", + "url": "http://www.lukmdo.com", + "email": "me@lukmdo.com", + "format": "txt" +} diff --git a/users/lulalachen.json b/users/lulalachen.json index 3257e18d..80395a08 100644 --- a/users/lulalachen.json +++ b/users/lulalachen.json @@ -1,7 +1,7 @@ { - "copyright": "LulalaChen, lulalachen@gmail.com", - "url": "https://lulalachen.info", - "email": "lulalachen@gmail.com", - "gravatar": true, - "theme": "material-teal" + "copyright": "LulalaChen, lulalachen@gmail.com", + "url": "https://lulalachen.info", + "email": "lulalachen@gmail.com", + "gravatar": true, + "theme": "material-teal" } diff --git a/users/lussier.json b/users/lussier.json index 7fbf770c..7ced1a56 100644 --- a/users/lussier.json +++ b/users/lussier.json @@ -1 +1,3 @@ -{"copyright":"Gregory A. Lussier"} \ No newline at end of file +{ + "copyright": "Gregory A. Lussier" +} diff --git a/users/luwes.json b/users/luwes.json index 9683f98b..eade99dc 100644 --- a/users/luwes.json +++ b/users/luwes.json @@ -1 +1,4 @@ -{"copyright":"Wesley Luyten, http:\/\/luwes.co","url":"http:\/\/luwes.co"} \ No newline at end of file +{ + "copyright": "Wesley Luyten, http://luwes.co", + "url": "http://luwes.co" +} diff --git a/users/lvillani.json b/users/lvillani.json index 76bc1408..7192a290 100644 --- a/users/lvillani.json +++ b/users/lvillani.json @@ -1 +1,3 @@ -{"copyright":"Lorenzo Villani"} \ No newline at end of file +{ + "copyright": "Lorenzo Villani" +} diff --git a/users/lynn.json b/users/lynn.json index 93fccbc8..20d3d463 100644 --- a/users/lynn.json +++ b/users/lynn.json @@ -1 +1,5 @@ -{"copyright":"Lynn Lin","email":"lynn80827@hotmail.com","theme":"friendly"} \ No newline at end of file +{ + "copyright": "Lynn Lin", + "email": "lynn80827@hotmail.com", + "theme": "friendly" +} diff --git a/users/lynnwallenstein.json b/users/lynnwallenstein.json index 5eb6ab5d..43cc54b5 100644 --- a/users/lynnwallenstein.json +++ b/users/lynnwallenstein.json @@ -1 +1,3 @@ -{"copyright":"Lynn Wallenstein"} \ No newline at end of file +{ + "copyright": "Lynn Wallenstein" +} diff --git a/users/m.json b/users/m.json index 12fcc2be..5ec49449 100644 --- a/users/m.json +++ b/users/m.json @@ -1 +1,6 @@ -{"copyright":"Martin Pitt","url":"http:\/\/martinpitt.co.uk","email":"martin.r.pitt+mit@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Martin Pitt", + "url": "http://martinpitt.co.uk", + "email": "martin.r.pitt+mit@gmail.com", + "format": "txt" +} diff --git a/users/m0s.json b/users/m0s.json index ab9d2053..56481d7e 100644 --- a/users/m0s.json +++ b/users/m0s.json @@ -1,6 +1,6 @@ { - "copyright":"Sergey Balbeko, http://balbeko.com/", - "email": "sergey@balbeko.com", - "url": "http://balbeko.com/", - "theme": "double-windsor" + "copyright": "Sergey Balbeko, http://balbeko.com/", + "email": "sergey@balbeko.com", + "url": "http://balbeko.com/", + "theme": "double-windsor" } diff --git a/users/m42e.json b/users/m42e.json index 93607519..be2a1e0c 100644 --- a/users/m42e.json +++ b/users/m42e.json @@ -1 +1,5 @@ -{"copyright":"Matthias Bilger", "url": "https://bilger.info", "email": "matthias@bilger.info"} +{ + "copyright": "Matthias Bilger", + "url": "https://bilger.info", + "email": "matthias@bilger.info" +} diff --git a/users/m4i.json b/users/m4i.json index 00b688bf..97b1259b 100644 --- a/users/m4i.json +++ b/users/m4i.json @@ -1,4 +1,4 @@ { - "copyright": "Masaki Takeuchi, http://m4i.jp", - "url": "http://m4i.jp" + "copyright": "Masaki Takeuchi, http://m4i.jp", + "url": "http://m4i.jp" } diff --git a/users/ma.json b/users/ma.json index 306bb538..0e988155 100644 --- a/users/ma.json +++ b/users/ma.json @@ -1 +1,3 @@ -{"copyright":"Marcus Andr\u00e9"} \ No newline at end of file +{ + "copyright": "Marcus Andr\u00e9" +} diff --git a/users/mach3.json b/users/mach3.json index 8f6f8b53..013deb92 100644 --- a/users/mach3.json +++ b/users/mach3.json @@ -1 +1,3 @@ -{"copyright":"mach3"} \ No newline at end of file +{ + "copyright": "mach3" +} diff --git a/users/maciejczyzewski.json b/users/maciejczyzewski.json index d76a9689..44a78a3a 100644 --- a/users/maciejczyzewski.json +++ b/users/maciejczyzewski.json @@ -1 +1,5 @@ -{"copyright":"Maciej A. Czyzewski","email":"maciejanthonyczyzewski@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Maciej A. Czyzewski", + "email": "maciejanthonyczyzewski@gmail.com", + "format": "txt" +} diff --git a/users/macobo.json b/users/macobo.json index f97f2251..89838f0d 100644 --- a/users/macobo.json +++ b/users/macobo.json @@ -1 +1,4 @@ -{"copyright":"Karl-Aksel Puulmann","email":"oxymaccy@gmail.com"} \ No newline at end of file +{ + "copyright": "Karl-Aksel Puulmann", + "email": "oxymaccy@gmail.com" +} diff --git a/users/mactkg.json b/users/mactkg.json index c673d6f4..2b7765f7 100644 --- a/users/mactkg.json +++ b/users/mactkg.json @@ -1 +1,6 @@ -{"copyright":"Kenta Hara, http:\/\/makerbox.net","url":"http:\/\/makerbox.net","email":"mactkg@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Kenta Hara, http://makerbox.net", + "url": "http://makerbox.net", + "email": "mactkg@gmail.com", + "format": "txt" +} diff --git a/users/maddes.json b/users/maddes.json index 8a11d783..7c2ff1cd 100644 --- a/users/maddes.json +++ b/users/maddes.json @@ -1 +1,6 @@ -{"copyright":"Daniel Scholtus","url":"http:\/\/www.maddes.com.ar","email":"sdeonline@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Daniel Scholtus", + "url": "http://www.maddes.com.ar", + "email": "sdeonline@gmail.com", + "format": "txt" +} diff --git a/users/madethemes.json b/users/madethemes.json index 17d25f30..0455a8ef 100644 --- a/users/madethemes.json +++ b/users/madethemes.json @@ -1 +1,6 @@ -{"copyright":"Made Themes","url":"http:\/\/www.madethemes.com","email":"support@madethemes.com","format":"html"} +{ + "copyright": "Made Themes", + "url": "http://www.madethemes.com", + "email": "support@madethemes.com", + "format": "html" +} diff --git a/users/madrona-labs.json b/users/madrona-labs.json index 75e940e0..f597d392 100644 --- a/users/madrona-labs.json +++ b/users/madrona-labs.json @@ -1 +1,3 @@ -{"copyright":"Madrona Labs LLC"} \ No newline at end of file +{ + "copyright": "Madrona Labs LLC" +} diff --git a/users/magarcia-mail.json b/users/magarcia-mail.json index 5bc5c23a..e6c6df57 100644 --- a/users/magarcia-mail.json +++ b/users/magarcia-mail.json @@ -1 +1,3 @@ -{"copyright":"Martin Garcia "} \ No newline at end of file +{ + "copyright": "Martin Garcia " +} diff --git a/users/magarcia.json b/users/magarcia.json index 0ce96297..848c45c1 100644 --- a/users/magarcia.json +++ b/users/magarcia.json @@ -1 +1,3 @@ -{"copyright":"Martin Garcia"} \ No newline at end of file +{ + "copyright": "Martin Garcia" +} diff --git a/users/magicdawn.json b/users/magicdawn.json index 7770f7ad..ff7e18ee 100644 --- a/users/magicdawn.json +++ b/users/magicdawn.json @@ -1 +1,7 @@ -{"copyright":"Magicdawn","url":"http:\/\/magicdawn.ml","email":"magicdawn@qq.com","format":"html","gravatar":true} \ No newline at end of file +{ + "copyright": "Magicdawn", + "url": "http://magicdawn.ml", + "email": "magicdawn@qq.com", + "format": "html", + "gravatar": true +} diff --git a/users/magno.json b/users/magno.json index f2f7ab9d..84bad7af 100644 --- a/users/magno.json +++ b/users/magno.json @@ -1,6 +1,6 @@ { - "copyright": "Magno Biét", - "url": "https:\/\/magnobiet.com\/", - "email": "me@magnobiet.com", - "theme": "material" + "copyright": "Magno Bi\u00c3\u00a9t", + "url": "https://magnobiet.com/", + "email": "me@magnobiet.com", + "theme": "material" } diff --git a/users/magnus.json b/users/magnus.json index 8a702e01..a323d830 100644 --- a/users/magnus.json +++ b/users/magnus.json @@ -1 +1,3 @@ -{"copyright":"Magnus Dahlstrand"} \ No newline at end of file +{ + "copyright": "Magnus Dahlstrand" +} diff --git a/users/mahdaen.json b/users/mahdaen.json index 2d59c448..da447930 100644 --- a/users/mahdaen.json +++ b/users/mahdaen.json @@ -1 +1,6 @@ -{"copyright":"Nanang Mahdaen El Agung","url":"http:\/\/mahdaen.name","email":"nanang@mahdaen.name","format":"txt"} \ No newline at end of file +{ + "copyright": "Nanang Mahdaen El Agung", + "url": "http://mahdaen.name", + "email": "nanang@mahdaen.name", + "format": "txt" +} diff --git a/users/majd.json b/users/majd.json index 46f3f0cf..c077018b 100644 --- a/users/majd.json +++ b/users/majd.json @@ -1,6 +1,6 @@ { - "copyright": "Majd Alhaj", - "url": "http://facebook.com/majd.latif", - "email": "majdelhaj@gmail.com", - "gravatar": true -} \ No newline at end of file + "copyright": "Majd Alhaj", + "url": "http://facebook.com/majd.latif", + "email": "majdelhaj@gmail.com", + "gravatar": true +} diff --git a/users/majodev.json b/users/majodev.json index f6ed5c10..dcfa956b 100644 --- a/users/majodev.json +++ b/users/majodev.json @@ -1 +1,5 @@ -{"copyright":"Mario Ranftl | majodev","url":"http:\/\/ranf.tl","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Mario Ranftl | majodev", + "url": "http://ranf.tl", + "theme": "double-windsor" +} diff --git a/users/makenowjust.json b/users/makenowjust.json index 1444648d..e80bb577 100644 --- a/users/makenowjust.json +++ b/users/makenowjust.json @@ -1 +1,7 @@ -{"copyright":"TSUYUSATO Kitsune","email":"make.just.on@gmail.com","format":"html","gravatar":true,"theme":"friendly"} \ No newline at end of file +{ + "copyright": "TSUYUSATO Kitsune", + "email": "make.just.on@gmail.com", + "format": "html", + "gravatar": true, + "theme": "friendly" +} diff --git a/users/makimoto.json b/users/makimoto.json index 2f30a444..384daf19 100644 --- a/users/makimoto.json +++ b/users/makimoto.json @@ -1 +1,3 @@ -{"copyright":"Shimpei Makimoto"} \ No newline at end of file +{ + "copyright": "Shimpei Makimoto" +} diff --git a/users/malayaleecoder.json b/users/malayaleecoder.json index 7a1b204c..9196e36a 100644 --- a/users/malayaleecoder.json +++ b/users/malayaleecoder.json @@ -1 +1,3 @@ -{"copyright":"malayaleecoder"} +{ + "copyright": "malayaleecoder" +} diff --git a/users/mallim.json b/users/mallim.json index 823d34b2..3a4ae828 100644 --- a/users/mallim.json +++ b/users/mallim.json @@ -1 +1,7 @@ -{"copyright":"Ian Lim, http:\/\/mallimxf3.blogspot.sg","url":"http:\/\/mallimxf3.blogspot.sg","email":"mallim.ink@gmail.com","format":"html","gravatar":true} \ No newline at end of file +{ + "copyright": "Ian Lim, http://mallimxf3.blogspot.sg", + "url": "http://mallimxf3.blogspot.sg", + "email": "mallim.ink@gmail.com", + "format": "html", + "gravatar": true +} diff --git a/users/mamund.json b/users/mamund.json index 2d261089..e8e55b25 100644 --- a/users/mamund.json +++ b/users/mamund.json @@ -1 +1,6 @@ -{"copyright":"amundsen.com, Inc.","url":"http:\/\/amundsen.com","email":"copyright@amundsen.com","format":"txt"} \ No newline at end of file +{ + "copyright": "amundsen.com, Inc.", + "url": "http://amundsen.com", + "email": "copyright@amundsen.com", + "format": "txt" +} diff --git a/users/managenet.json b/users/managenet.json index aa604fbc..5198eeb0 100644 --- a/users/managenet.json +++ b/users/managenet.json @@ -1,5 +1,5 @@ { - "copyright": "Jacob Marshall, https://manage.net.nz", - "url": "https://manage.net.nz", - "email": "support@manage.net.nz" + "copyright": "Jacob Marshall, https://manage.net.nz", + "url": "https://manage.net.nz", + "email": "support@manage.net.nz" } diff --git a/users/mandre.json b/users/mandre.json index 306bb538..0e988155 100644 --- a/users/mandre.json +++ b/users/mandre.json @@ -1 +1,3 @@ -{"copyright":"Marcus Andr\u00e9"} \ No newline at end of file +{ + "copyright": "Marcus Andr\u00e9" +} diff --git a/users/manish.json b/users/manish.json index c99058a0..0942dd30 100644 --- a/users/manish.json +++ b/users/manish.json @@ -1 +1,3 @@ -{"copyright":"Manish Gill"} \ No newline at end of file +{ + "copyright": "Manish Gill" +} diff --git a/users/manparvesh.json b/users/manparvesh.json index 8d6499df..4735ea5e 100644 --- a/users/manparvesh.json +++ b/users/manparvesh.json @@ -1,7 +1,7 @@ { - "copyright": "Man Parvesh Singh Randhawa", - "url": "http://manparvesh.com", - "email": "manparveshsinghrandhawa@gmail.com", - "theme": "material-teal", - "gravatar": true + "copyright": "Man Parvesh Singh Randhawa", + "url": "http://manparvesh.com", + "email": "manparveshsinghrandhawa@gmail.com", + "theme": "material-teal", + "gravatar": true } diff --git a/users/manual.json b/users/manual.json index ebf42b8c..ceb69c63 100644 --- a/users/manual.json +++ b/users/manual.json @@ -1 +1,4 @@ -{"copyright":"Manual design","url":"http:\/\/manualdesign.no"} \ No newline at end of file +{ + "copyright": "Manual design", + "url": "http://manualdesign.no" +} diff --git a/users/manuel.json b/users/manuel.json index fc1b4b3f..bc671664 100644 --- a/users/manuel.json +++ b/users/manuel.json @@ -1 +1,6 @@ -{"copyright":"Manuel van Rijn","url":"http:\/\/manuel.manuelles.nl","email":"manuel@manuelles.nl","format":"txt"} \ No newline at end of file +{ + "copyright": "Manuel van Rijn", + "url": "http://manuel.manuelles.nl", + "email": "manuel@manuelles.nl", + "format": "txt" +} diff --git a/users/manuglez.json b/users/manuglez.json index c07426c5..10acf9d7 100644 --- a/users/manuglez.json +++ b/users/manuglez.json @@ -1,8 +1,8 @@ -{ - "copyright": "Manuel Glez", - "url": "https://mglopez.com", - "email": "mglopez@me.com", - "format": "html", - "theme": "material-light-blue", +{ + "copyright": "Manuel Glez", + "url": "https://mglopez.com", + "email": "mglopez@me.com", + "format": "html", + "theme": "material-light-blue", "gravatar": true - } +} diff --git a/users/maoo.json b/users/maoo.json index aaa8b154..2cc08212 100644 --- a/users/maoo.json +++ b/users/maoo.json @@ -1 +1,6 @@ -{"copyright":"Marco Orellana O.","url":"http:\/\/morellana.wordpress.com\/","email":"morello.cl@outlook.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Marco Orellana O.", + "url": "http://morellana.wordpress.com/", + "email": "morello.cl@outlook.com", + "format": "txt" +} diff --git a/users/mapjam.json b/users/mapjam.json index 1b746f78..96e229d5 100644 --- a/users/mapjam.json +++ b/users/mapjam.json @@ -1 +1,5 @@ -{"copyright":"MapJam, Inc.","email":"hello@mapjam.com","url":"http:\/\/mapjam.com"} \ No newline at end of file +{ + "copyright": "MapJam, Inc.", + "email": "hello@mapjam.com", + "url": "http://mapjam.com" +} diff --git a/users/mapjam1.json b/users/mapjam1.json index 268d0fe4..5ee32fe3 100644 --- a/users/mapjam1.json +++ b/users/mapjam1.json @@ -1 +1,4 @@ -{"copyright":"MapJam, Inc.","email":"hello@mapjam.com"} \ No newline at end of file +{ + "copyright": "MapJam, Inc.", + "email": "hello@mapjam.com" +} diff --git a/users/mapjam2.json b/users/mapjam2.json index 1b746f78..96e229d5 100644 --- a/users/mapjam2.json +++ b/users/mapjam2.json @@ -1 +1,5 @@ -{"copyright":"MapJam, Inc.","email":"hello@mapjam.com","url":"http:\/\/mapjam.com"} \ No newline at end of file +{ + "copyright": "MapJam, Inc.", + "email": "hello@mapjam.com", + "url": "http://mapjam.com" +} diff --git a/users/maqina.json b/users/maqina.json index 248efd2f..71909b1e 100644 --- a/users/maqina.json +++ b/users/maqina.json @@ -1 +1,5 @@ -{"copyright":"M\u00e1qina Internet","url":"http:\/\/maqinainternet.com.br","email":"contato@maqina.com.br"} \ No newline at end of file +{ + "copyright": "M\u00e1qina Internet", + "url": "http://maqinainternet.com.br", + "email": "contato@maqina.com.br" +} diff --git a/users/marc.json b/users/marc.json index 4695037a..ddc6e2c0 100644 --- a/users/marc.json +++ b/users/marc.json @@ -1,4 +1,4 @@ { - "copyright": "Marc Smith, http://marcsm.it/", - "url": "http://marcsm.it/" + "copyright": "Marc Smith, http://marcsm.it/", + "url": "http://marcsm.it/" } diff --git a/users/marcastel.json b/users/marcastel.json index 7964ad98..b194a305 100644 --- a/users/marcastel.json +++ b/users/marcastel.json @@ -1 +1,3 @@ -{"copyright":"JM Marcastel (ISLE Consultants)"} \ No newline at end of file +{ + "copyright": "JM Marcastel (ISLE Consultants)" +} diff --git a/users/marceloboeira.json b/users/marceloboeira.json index 51eeed9d..e3bccb60 100644 --- a/users/marceloboeira.json +++ b/users/marceloboeira.json @@ -1 +1,6 @@ -{"copyright":"Marcelo Boeira","url":"http:\/\/marceloboeira.com","email":"contact@marceloboeira.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Marcelo Boeira", + "url": "http://marceloboeira.com", + "email": "contact@marceloboeira.com", + "format": "txt" +} diff --git a/users/marcelobrito.json b/users/marcelobrito.json index 4a53c93d..bd0d28d4 100644 --- a/users/marcelobrito.json +++ b/users/marcelobrito.json @@ -1,5 +1,5 @@ { - "copyright": "Marcelo Brito", - "url": "http://marcelobritowd.com", - "email": "hey@marcelobritowd.com" -} \ No newline at end of file + "copyright": "Marcelo Brito", + "url": "http://marcelobritowd.com", + "email": "hey@marcelobritowd.com" +} diff --git a/users/marco-loche.json b/users/marco-loche.json index 5b77ca87..ba42d58d 100644 --- a/users/marco-loche.json +++ b/users/marco-loche.json @@ -1 +1,6 @@ -{"copyright":"Marco Loche","url":"http:\/\/marcoloche.com","email":"marco@marcoloche.com","format":"html"} \ No newline at end of file +{ + "copyright": "Marco Loche", + "url": "http://marcoloche.com", + "email": "marco@marcoloche.com", + "format": "html" +} diff --git a/users/marco.json b/users/marco.json index 4b6790d6..d125020b 100644 --- a/users/marco.json +++ b/users/marco.json @@ -1,4 +1,4 @@ { - "copyright": "Marco Krage, https://my-azur.de", - "url": "https://my-azur.de" + "copyright": "Marco Krage, https://my-azur.de", + "url": "https://my-azur.de" } diff --git a/users/marcoagner.json b/users/marcoagner.json index f0494bfd..8f3e6cd2 100644 --- a/users/marcoagner.json +++ b/users/marcoagner.json @@ -1 +1,6 @@ -{"copyright":"Marco Agner","url":"http:\/\/marcoagner.com.com","email":"marco.agner@live.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Marco Agner", + "url": "http://marcoagner.com.com", + "email": "marco.agner@live.com", + "format": "txt" +} diff --git a/users/marcocanc.json b/users/marcocanc.json index 9131906c..28c52f49 100644 --- a/users/marcocanc.json +++ b/users/marcocanc.json @@ -1 +1,6 @@ -{"copyright":"Marco Cancellieri","url":"https:\/\/clever-apps.com","email":"marco@clever-apps.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Marco Cancellieri", + "url": "https://clever-apps.com", + "email": "marco@clever-apps.com", + "format": "txt" +} diff --git a/users/marconi.json b/users/marconi.json index a4c16109..f8dee410 100644 --- a/users/marconi.json +++ b/users/marconi.json @@ -1 +1,6 @@ -{"copyright":"Marconi Moreto","url":"http:\/\/marconijr.com","email":"me@marconijr.com","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Marconi Moreto", + "url": "http://marconijr.com", + "email": "me@marconijr.com", + "theme": "double-windsor" +} diff --git a/users/marcqualie.json b/users/marcqualie.json index b486b1dc..d7ce843e 100644 --- a/users/marcqualie.json +++ b/users/marcqualie.json @@ -2,4 +2,4 @@ "copyright": "Marc Qualie, https://marcqualie.com", "url": "https://marcqualie.com", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/marcroberts.json b/users/marcroberts.json index ef015585..5bb96cdf 100644 --- a/users/marcroberts.json +++ b/users/marcroberts.json @@ -1,4 +1,4 @@ { - "copyright": "Marc Roberts, http://marcroberts.info", - "url": "http://marcroberts.info" + "copyright": "Marc Roberts, http://marcroberts.info", + "url": "http://marcroberts.info" } diff --git a/users/marcusw.json b/users/marcusw.json index 625414d8..01fb6d2f 100644 --- a/users/marcusw.json +++ b/users/marcusw.json @@ -1,7 +1,7 @@ { - "copyright": "Marcus Wichelmann", - "url": "https://marcusw.de", - "email": "mail@marcusw.de", - "gravatar": true, - "theme": "double-windsor" + "copyright": "Marcus Wichelmann", + "url": "https://marcusw.de", + "email": "mail@marcusw.de", + "gravatar": true, + "theme": "double-windsor" } diff --git a/users/marebucks.json b/users/marebucks.json index 8fb2782e..ac589490 100644 --- a/users/marebucks.json +++ b/users/marebucks.json @@ -1 +1,6 @@ -{"copyright":"Marebucks","url":"https:\/\/marebucks.com","email":"contact@marebucks.com","theme":"eula-modern"} \ No newline at end of file +{ + "copyright": "Marebucks", + "url": "https://marebucks.com", + "email": "contact@marebucks.com", + "theme": "eula-modern" +} diff --git a/users/marek-saji.json b/users/marek-saji.json index c9e52ca3..88f61d2f 100644 --- a/users/marek-saji.json +++ b/users/marek-saji.json @@ -1,6 +1,6 @@ { - "copyright": "Marek Augustynowicz", - "email": "marek.aug@gmail.com", - "url": "https://github.com/marek-saji", - "theme": "double-windsor" + "copyright": "Marek Augustynowicz", + "email": "marek.aug@gmail.com", + "url": "https://github.com/marek-saji", + "theme": "double-windsor" } diff --git a/users/marek.json b/users/marek.json index 201de3d0..33c050b1 100644 --- a/users/marek.json +++ b/users/marek.json @@ -1 +1,6 @@ -{"copyright":"Marek Hrabe, http:\/\/marekhrabe.com\/","url":"http:\/\/marekhrabe.com\/","email":"marekhrabe@me.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Marek Hrabe, http://marekhrabe.com/", + "url": "http://marekhrabe.com/", + "email": "marekhrabe@me.com", + "gravatar": true +} diff --git a/users/marge.json b/users/marge.json index b3bbce23..9dbb0c66 100644 --- a/users/marge.json +++ b/users/marge.json @@ -1 +1,6 @@ -{"copyright":"Marge Rosen","url":"http://margerosen.com","email":"marge@margerosen.com","theme":"double-windsor"} +{ + "copyright": "Marge Rosen", + "url": "http://margerosen.com", + "email": "marge@margerosen.com", + "theme": "double-windsor" +} diff --git a/users/mario-chavez.json b/users/mario-chavez.json index a1d96af8..e50c17aa 100644 --- a/users/mario-chavez.json +++ b/users/mario-chavez.json @@ -1 +1,3 @@ -{"copyright":"Mario Alberto Ch\u00e1vez"} \ No newline at end of file +{ + "copyright": "Mario Alberto Ch\u00e1vez" +} diff --git a/users/mark.json b/users/mark.json index 029a7643..834ceddf 100644 --- a/users/mark.json +++ b/users/mark.json @@ -1 +1,6 @@ -{"copyright":"Mark Rendle","url":"https:\/\/github.com\/markrendle","email":"mark@markrendle.net","gravatar":true} \ No newline at end of file +{ + "copyright": "Mark Rendle", + "url": "https://github.com/markrendle", + "email": "mark@markrendle.net", + "gravatar": true +} diff --git a/users/markdalgleish.json b/users/markdalgleish.json index 0d38a12f..4b336e2f 100644 --- a/users/markdalgleish.json +++ b/users/markdalgleish.json @@ -1,4 +1,4 @@ { - "copyright": "Mark Dalgleish", - "url": "http://markdalgleish.com" + "copyright": "Mark Dalgleish", + "url": "http://markdalgleish.com" } diff --git a/users/marksteve.json b/users/marksteve.json index 471cabfc..8c953ede 100644 --- a/users/marksteve.json +++ b/users/marksteve.json @@ -1,4 +1,4 @@ { - "copyright": "Mark Steve Samson, http://marksteve.com", - "url": "https://marksteve.com" + "copyright": "Mark Steve Samson, http://marksteve.com", + "url": "https://marksteve.com" } diff --git a/users/marnulombard.json b/users/marnulombard.json index ab25b6af..7b0d5dd5 100644 --- a/users/marnulombard.json +++ b/users/marnulombard.json @@ -1 +1,6 @@ -{"copyright":"Marnu Lombard","url":"http:\/\/marnulombard.com","email":"marnu@marnulombard.com","format":"html"} \ No newline at end of file +{ + "copyright": "Marnu Lombard", + "url": "http://marnulombard.com", + "email": "marnu@marnulombard.com", + "format": "html" +} diff --git a/users/marshall.json b/users/marshall.json index 7330a413..d6990dbf 100644 --- a/users/marshall.json +++ b/users/marshall.json @@ -1 +1,5 @@ -{"copyright":"Marshall Culpepper","url":"http:\/\/arcaner.com","email":"marshall@culpepper.net"} \ No newline at end of file +{ + "copyright": "Marshall Culpepper", + "url": "http://arcaner.com", + "email": "marshall@culpepper.net" +} diff --git a/users/martinblech.json b/users/martinblech.json index 0e8aa766..209e5376 100644 --- a/users/martinblech.json +++ b/users/martinblech.json @@ -1 +1,6 @@ -{"copyright":"Martin Blech","url":"http:\/\/martinblech.com","email":"martinblech@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Martin Blech", + "url": "http://martinblech.com", + "email": "martinblech@gmail.com", + "format": "txt" +} diff --git a/users/marucc.json b/users/marucc.json index 8bac9a64..583c51c8 100644 --- a/users/marucc.json +++ b/users/marucc.json @@ -1 +1,4 @@ -{"copyright":"maru_cc","url":"https:\/\/github.com\/marucc"} \ No newline at end of file +{ + "copyright": "maru_cc", + "url": "https://github.com/marucc" +} diff --git a/users/marvinede.json b/users/marvinede.json index c97c7a8e..d7c7944a 100644 --- a/users/marvinede.json +++ b/users/marvinede.json @@ -1,5 +1,5 @@ { - "copyright": "Marvin Ede", - "email": "marvinede@gmx.net", - "format": "txt" + "copyright": "Marvin Ede", + "email": "marvinede@gmx.net", + "format": "txt" } diff --git a/users/masch.json b/users/masch.json index 4a8a16a2..c0b2b6de 100644 --- a/users/masch.json +++ b/users/masch.json @@ -1 +1,6 @@ -{"copyright":"Mark Schmale","url":"http:\/\/masch.it","email":"masch@masch.it","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Mark Schmale", + "url": "http://masch.it", + "email": "masch@masch.it", + "theme": "double-windsor" +} diff --git a/users/mashihua.json b/users/mashihua.json index 0986f5b3..536f8ccf 100644 --- a/users/mashihua.json +++ b/users/mashihua.json @@ -1 +1,5 @@ -{"copyright":"Shihua Ma, http:\/\/f2eskills.com.com","url":"http:\/\/f2eskills.com","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Shihua Ma, http://f2eskills.com.com", + "url": "http://f2eskills.com", + "theme": "double-windsor" +} diff --git a/users/mast.json b/users/mast.json index 15e2fb22..c3d6a0ed 100644 --- a/users/mast.json +++ b/users/mast.json @@ -1 +1,3 @@ -{"copyright":"Mike McNeil"} \ No newline at end of file +{ + "copyright": "Mike McNeil" +} diff --git a/users/masutaka.json b/users/masutaka.json index 1d0737ca..b1bb3626 100644 --- a/users/masutaka.json +++ b/users/masutaka.json @@ -1,5 +1,5 @@ { - "copyright": "Takashi Masuda", - "url": "http://masutaka.net", - "theme": "flesch" + "copyright": "Takashi Masuda", + "url": "http://masutaka.net", + "theme": "flesch" } diff --git a/users/mateusortiz.json b/users/mateusortiz.json index 9f25a771..7b6f0e24 100644 --- a/users/mateusortiz.json +++ b/users/mateusortiz.json @@ -1 +1,3 @@ -{"copyright":"Mateus Ortiz"} \ No newline at end of file +{ + "copyright": "Mateus Ortiz" +} diff --git a/users/matheus.json b/users/matheus.json index d1f24cd2..564b81f3 100644 --- a/users/matheus.json +++ b/users/matheus.json @@ -1 +1,6 @@ -{"copyright":"Matheus Fernandes","url":"https:\/\/github.com\/matheuss","email":"me@mysite.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Matheus Fernandes", + "url": "https://github.com/matheuss", + "email": "me@mysite.com", + "format": "txt" +} diff --git a/users/mathias.json b/users/mathias.json index 70fa53af..87fa64db 100644 --- a/users/mathias.json +++ b/users/mathias.json @@ -1,4 +1,4 @@ { - "copyright": "Mathias Bynens, http://mathiasbynens.be/", - "url": "http://mathiasbynens.be/" + "copyright": "Mathias Bynens, http://mathiasbynens.be/", + "url": "http://mathiasbynens.be/" } diff --git a/users/mathieu.json b/users/mathieu.json index f4495138..047a9a3e 100644 --- a/users/mathieu.json +++ b/users/mathieu.json @@ -1,7 +1,7 @@ { - "copyright": "Mathieu Dutour", - "url": "http:\/\/mathieu.dutour.me" -, "email": "mathieu@dutour.me" -, "theme": "material-blue" -, "gravatar": true + "copyright": "Mathieu Dutour", + "url": "http://mathieu.dutour.me", + "email": "mathieu@dutour.me", + "theme": "material-blue", + "gravatar": true } diff --git a/users/matin.json b/users/matin.json index 25cf377e..224e9a1a 100644 --- a/users/matin.json +++ b/users/matin.json @@ -1 +1,3 @@ -{"copyright":"Fouad Matin"} \ No newline at end of file +{ + "copyright": "Fouad Matin" +} diff --git a/users/matsukaz.json b/users/matsukaz.json index e624d322..fd958b59 100644 --- a/users/matsukaz.json +++ b/users/matsukaz.json @@ -1 +1,3 @@ -{"copyright":"Masakazu Matsushita"} \ No newline at end of file +{ + "copyright": "Masakazu Matsushita" +} diff --git a/users/matt-deacalion.json b/users/matt-deacalion.json index bdc57a60..e72ace5a 100644 --- a/users/matt-deacalion.json +++ b/users/matt-deacalion.json @@ -1 +1,5 @@ -{"copyright":"Matt Deacalion Stevens","url":"http:\/\/dirtymonkey.co.uk","email":"matt@dirtymonkey.co.uk"} \ No newline at end of file +{ + "copyright": "Matt Deacalion Stevens", + "url": "http://dirtymonkey.co.uk", + "email": "matt@dirtymonkey.co.uk" +} diff --git a/users/matt.json b/users/matt.json index 282b2b49..ad86d56c 100644 --- a/users/matt.json +++ b/users/matt.json @@ -1,4 +1,4 @@ { - "copyright": "Matthew Vaccaro", - "url": "http://matthewvaccaro.com" -} \ No newline at end of file + "copyright": "Matthew Vaccaro", + "url": "http://matthewvaccaro.com" +} diff --git a/users/mattaimonetti.json b/users/mattaimonetti.json index 68d7c309..c9d50709 100644 --- a/users/mattaimonetti.json +++ b/users/mattaimonetti.json @@ -1 +1,6 @@ -{"copyright":"Matt Aimonetti","url":"http:\/\/matt.aimonetti.net","email":"matt.aimonetti@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Matt Aimonetti", + "url": "http://matt.aimonetti.net", + "email": "matt.aimonetti@gmail.com", + "format": "txt" +} diff --git a/users/mattcg.json b/users/mattcg.json index 94e60796..f6b39688 100644 --- a/users/mattcg.json +++ b/users/mattcg.json @@ -1,5 +1,5 @@ { - "copyright": "Matthew Caruana Galizia, http://m.cg", - "url": "http://m.cg", - "email": "m@m.cg" + "copyright": "Matthew Caruana Galizia, http://m.cg", + "url": "http://m.cg", + "email": "m@m.cg" } diff --git a/users/mattclements.json b/users/mattclements.json index fcbcb68d..4b8ef1bf 100644 --- a/users/mattclements.json +++ b/users/mattclements.json @@ -1,5 +1,5 @@ { - "copyright": "Matt Clements", - "url": "http://www.mattclements.co.uk/", - "email": "matt@mattclements.co.uk" + "copyright": "Matt Clements", + "url": "http://www.mattclements.co.uk/", + "email": "matt@mattclements.co.uk" } diff --git a/users/mattetti.json b/users/mattetti.json index 68d7c309..c9d50709 100644 --- a/users/mattetti.json +++ b/users/mattetti.json @@ -1 +1,6 @@ -{"copyright":"Matt Aimonetti","url":"http:\/\/matt.aimonetti.net","email":"matt.aimonetti@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Matt Aimonetti", + "url": "http://matt.aimonetti.net", + "email": "matt.aimonetti@gmail.com", + "format": "txt" +} diff --git a/users/mattgauf.json b/users/mattgauf.json index e922035e..5602c8c1 100644 --- a/users/mattgauf.json +++ b/users/mattgauf.json @@ -1 +1,4 @@ -{"copyright":"Matt Gauf","email":"mattgauf@gmail.com"} \ No newline at end of file +{ + "copyright": "Matt Gauf", + "email": "mattgauf@gmail.com" +} diff --git a/users/mattgoucher.json b/users/mattgoucher.json index 63530851..4ac59e71 100644 --- a/users/mattgoucher.json +++ b/users/mattgoucher.json @@ -1 +1,6 @@ -{"copyright":"Matt Goucher","url":"http:\/\/mattgoucher.com","email":"info@mattgoucher.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Matt Goucher", + "url": "http://mattgoucher.com", + "email": "info@mattgoucher.com", + "format": "txt" +} diff --git a/users/mattgross.json b/users/mattgross.json index bf8cbc3c..3411632d 100644 --- a/users/mattgross.json +++ b/users/mattgross.json @@ -1,3 +1,3 @@ { - "copyright": "Matthew Gross, http://mattgross.net" + "copyright": "Matthew Gross, http://mattgross.net" } diff --git a/users/matth.json b/users/matth.json index d3f6164e..b762be72 100644 --- a/users/matth.json +++ b/users/matth.json @@ -1 +1,6 @@ -{"copyright":"Matt Harrison","url":"http:\/\/matth.co","email":"matt@matth.co","gravatar":true} \ No newline at end of file +{ + "copyright": "Matt Harrison", + "url": "http://matth.co", + "email": "matt@matth.co", + "gravatar": true +} diff --git a/users/matthew-campbell.json b/users/matthew-campbell.json index 5c948bb6..89f29d2a 100644 --- a/users/matthew-campbell.json +++ b/users/matthew-campbell.json @@ -1 +1,4 @@ -{"copyright":"Matthew Campbell", "url":"http://www.matthewcampbell.org/"} +{ + "copyright": "Matthew Campbell", + "url": "http://www.matthewcampbell.org/" +} diff --git a/users/matthew.json b/users/matthew.json index 956d65ab..47832e6c 100644 --- a/users/matthew.json +++ b/users/matthew.json @@ -1,7 +1,7 @@ { - "copyright":"Matthew Bentley", - "url":"http:\/\/mtbentley.us", - "theme":"default", - "gravatar":false, - "email":"matthew.t.bentley@gmail.com" + "copyright": "Matthew Bentley", + "url": "http://mtbentley.us", + "theme": "default", + "gravatar": false, + "email": "matthew.t.bentley@gmail.com" } diff --git a/users/matthewdavies.json b/users/matthewdavies.json index 28b8248b..b87a4f44 100644 --- a/users/matthewdavies.json +++ b/users/matthewdavies.json @@ -1,7 +1,7 @@ { - "copyright":"Matthew Davies", - "url": "http://daviesgeek.github.io", - "theme": "double-windsor", - "email": "daviesgeek@icloud.com", - "gravatar": true + "copyright": "Matthew Davies", + "url": "http://daviesgeek.github.io", + "theme": "double-windsor", + "email": "daviesgeek@icloud.com", + "gravatar": true } diff --git a/users/matthewmcvickar.json b/users/matthewmcvickar.json index c0828fdf..92145571 100644 --- a/users/matthewmcvickar.json +++ b/users/matthewmcvickar.json @@ -1 +1,6 @@ -{"copyright":"Matthew McVickar","url":"http:\/\/matthewmcvickar.com","email":"matthew@matthewmcvickar.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Matthew McVickar", + "url": "http://matthewmcvickar.com", + "email": "matthew@matthewmcvickar.com", + "format": "txt" +} diff --git a/users/matthieuaussaguel.json b/users/matthieuaussaguel.json index 6b3521b3..d74a111b 100644 --- a/users/matthieuaussaguel.json +++ b/users/matthieuaussaguel.json @@ -1,5 +1,5 @@ -{ - "copyright": "Matthieu Aussaguel", - "url": "http://mynameismatthieu.com", - "email": "matthieu.aussaaguel@gmail.com" -} \ No newline at end of file +{ + "copyright": "Matthieu Aussaguel", + "url": "http://mynameismatthieu.com", + "email": "matthieu.aussaaguel@gmail.com" +} diff --git a/users/mattn.json b/users/mattn.json index dc652aeb..6e099149 100644 --- a/users/mattn.json +++ b/users/mattn.json @@ -1,6 +1,6 @@ { - "copyright": "Yasuhiro Matsumoto, http://mattn.kaoriya.net", - "email": "mattn.jp@gmail.com", - "url": "http://mattn.kaoriya.net", - "theme": "orange" + "copyright": "Yasuhiro Matsumoto, http://mattn.kaoriya.net", + "email": "mattn.jp@gmail.com", + "url": "http://mattn.kaoriya.net", + "theme": "orange" } diff --git a/users/mattstevens.json b/users/mattstevens.json index 66b42347..53efff19 100644 --- a/users/mattstevens.json +++ b/users/mattstevens.json @@ -1 +1,3 @@ -{"copyright":"Matt Stevens"} \ No newline at end of file +{ + "copyright": "Matt Stevens" +} diff --git a/users/mavidser.json b/users/mavidser.json index 1752bd5e..b598b2b4 100644 --- a/users/mavidser.json +++ b/users/mavidser.json @@ -1 +1,6 @@ -{"copyright":"Siddhartha Verma","url":"http:\/\/sidverma.net","email":"sid@sidverma.net","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Siddhartha Verma", + "url": "http://sidverma.net", + "email": "sid@sidverma.net", + "theme": "double-windsor" +} diff --git a/users/max.json b/users/max.json index c2c64770..6de0406d 100644 --- a/users/max.json +++ b/users/max.json @@ -1 +1,3 @@ -{"copyright":"Max Hauser"} \ No newline at end of file +{ + "copyright": "Max Hauser" +} diff --git a/users/maximz.json b/users/maximz.json index 02fd1ac8..1e071297 100644 --- a/users/maximz.json +++ b/users/maximz.json @@ -1,5 +1,5 @@ { - "copyright": "Maxim Zaslavsky, http://maximzaslavsky.com", - "url": "http://maximzaslavsky.com", - "email": "maxim@maximzaslavsky.com" -} \ No newline at end of file + "copyright": "Maxim Zaslavsky, http://maximzaslavsky.com", + "url": "http://maximzaslavsky.com", + "email": "maxim@maximzaslavsky.com" +} diff --git a/users/maxmanders.json b/users/maxmanders.json index 043e472f..289bec50 100644 --- a/users/maxmanders.json +++ b/users/maxmanders.json @@ -1 +1,3 @@ -{"copyright":"Max Manders"} \ No newline at end of file +{ + "copyright": "Max Manders" +} diff --git a/users/maxroecker.json b/users/maxroecker.json index 3b884d25..c02ea1c3 100644 --- a/users/maxroecker.json +++ b/users/maxroecker.json @@ -1,5 +1,5 @@ { - "copyright": "Max Naegeler Roecker", - "url": "http://maxroecker.github.io/", - "theme": "material-pink" + "copyright": "Max Naegeler Roecker", + "url": "http://maxroecker.github.io/", + "theme": "material-pink" } diff --git a/users/maxwell.json b/users/maxwell.json index c4b5ea6b..2967d240 100644 --- a/users/maxwell.json +++ b/users/maxwell.json @@ -1 +1,3 @@ -{"copyright":"Max Bernstein"} \ No newline at end of file +{ + "copyright": "Max Bernstein" +} diff --git a/users/maxx.json b/users/maxx.json index b955cda4..94553093 100644 --- a/users/maxx.json +++ b/users/maxx.json @@ -1 +1,6 @@ -{"copyright":"Remy Sharp","url":"http:\/\/remysharp.com","email":"me@mysite.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Remy Sharp", + "url": "http://remysharp.com", + "email": "me@mysite.com", + "format": "txt" +} diff --git a/users/mayankjha.json b/users/mayankjha.json index 1e5cb0c7..02640a19 100644 --- a/users/mayankjha.json +++ b/users/mayankjha.json @@ -1,6 +1,6 @@ { - "copyright": "Mayank Jha, https://mayankjha.herokuapp.com", - "url": "https://mayankjha.herokuapp.com", - "email": "mayankjha7722@gmail.com", - "theme": "8bits-monochrome-blue-white" + "copyright": "Mayank Jha, https://mayankjha.herokuapp.com", + "url": "https://mayankjha.herokuapp.com", + "email": "mayankjha7722@gmail.com", + "theme": "8bits-monochrome-blue-white" } diff --git a/users/mb.json b/users/mb.json index 2975c959..112f5b55 100644 --- a/users/mb.json +++ b/users/mb.json @@ -1 +1,3 @@ -{"copyright":"Matthew Bischoff"} \ No newline at end of file +{ + "copyright": "Matthew Bischoff" +} diff --git a/users/mbasanta.json b/users/mbasanta.json index 76fdf148..9815c084 100644 --- a/users/mbasanta.json +++ b/users/mbasanta.json @@ -1,5 +1,5 @@ { - "copyright": "Matthew Basanta", - "url": "http://matthewbasanta.com", - "theme": "eula-modern" + "copyright": "Matthew Basanta", + "url": "http://matthewbasanta.com", + "theme": "eula-modern" } diff --git a/users/mbilbillee.json b/users/mbilbillee.json index b9de4b6b..5604df91 100644 --- a/users/mbilbillee.json +++ b/users/mbilbillee.json @@ -1 +1,3 @@ -{"copyright":"Matthieu Bilbille"} \ No newline at end of file +{ + "copyright": "Matthieu Bilbille" +} diff --git a/users/mbo.json b/users/mbo.json index d9013e6d..ccf45c03 100644 --- a/users/mbo.json +++ b/users/mbo.json @@ -1 +1,3 @@ -{"copyright":"Marko Bonaci"} \ No newline at end of file +{ + "copyright": "Marko Bonaci" +} diff --git a/users/mbs.json b/users/mbs.json index a0ea0db7..e3cb46a1 100644 --- a/users/mbs.json +++ b/users/mbs.json @@ -1 +1,3 @@ -{"copyright":"Matthew Sperry"} \ No newline at end of file +{ + "copyright": "Matthew Sperry" +} diff --git a/users/mc2.json b/users/mc2.json index 1219c24f..17e526de 100644 --- a/users/mc2.json +++ b/users/mc2.json @@ -1,6 +1,6 @@ { - "copyright": "MC2", - "url": "http://mc2.com.tr", - "email": "contact@mc2.com.tr", - "gravatar": true + "copyright": "MC2", + "url": "http://mc2.com.tr", + "email": "contact@mc2.com.tr", + "gravatar": true } diff --git a/users/mckamey.json b/users/mckamey.json index 671cc434..e1b0cc31 100644 --- a/users/mckamey.json +++ b/users/mckamey.json @@ -1 +1,3 @@ -{"copyright":"Stephen M. McKamey"} \ No newline at end of file +{ + "copyright": "Stephen M. McKamey" +} diff --git a/users/mckay.json b/users/mckay.json index ea07541f..16761538 100644 --- a/users/mckay.json +++ b/users/mckay.json @@ -1 +1,5 @@ -{"copyright":"McKay Software","url":"http:\/\/mckay.co.nz","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "McKay Software", + "url": "http://mckay.co.nz", + "theme": "double-windsor" +} diff --git a/users/mckelvaney.json b/users/mckelvaney.json index 7fbb30bb..ff1fc11a 100644 --- a/users/mckelvaney.json +++ b/users/mckelvaney.json @@ -1 +1,5 @@ -{"copyright":"Michael McKelvaney","url":"http:\/\/mckelvaney.co.uk","format":"txt"} \ No newline at end of file +{ + "copyright": "Michael McKelvaney", + "url": "http://mckelvaney.co.uk", + "format": "txt" +} diff --git a/users/mckomo.json b/users/mckomo.json index 1db3f9b1..bfd683d5 100644 --- a/users/mckomo.json +++ b/users/mckomo.json @@ -1 +1,6 @@ -{"copyright":"Maciej Komorowski","url":"http:\/\/komorowski.info","email":"mckomo@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Maciej Komorowski", + "url": "http://komorowski.info", + "email": "mckomo@gmail.com", + "format": "txt" +} diff --git a/users/mdag.json b/users/mdag.json index 24020df5..27315a5e 100644 --- a/users/mdag.json +++ b/users/mdag.json @@ -1,8 +1,8 @@ { - "copyright": "MDAG Consultancy, http://mdag.my", - "url": "http://mdag.my", - "email": "info+mitlicense@mdag.my", - "format": "html", - "theme": "double-windsor", - "version": "a526bf7ad1" -} \ No newline at end of file + "copyright": "MDAG Consultancy, http://mdag.my", + "url": "http://mdag.my", + "email": "info+mitlicense@mdag.my", + "format": "html", + "theme": "double-windsor", + "version": "a526bf7ad1" +} diff --git a/users/mdd.json b/users/mdd.json index 3e74256b..290025d5 100644 --- a/users/mdd.json +++ b/users/mdd.json @@ -1 +1,3 @@ -{"copyright":"Moreno Di Domenico"} \ No newline at end of file +{ + "copyright": "Moreno Di Domenico" +} diff --git a/users/mdhheydari.json b/users/mdhheydari.json index c4c5c2c6..08f82a2f 100644 --- a/users/mdhheydari.json +++ b/users/mdhheydari.json @@ -1 +1,7 @@ -{"copyright":"Mohammad Heydari","url":"http:\/\/mohammadheydari.me","email":"mdh.heydari@gmail.com","theme":"friendly","gravatar":true} \ No newline at end of file +{ + "copyright": "Mohammad Heydari", + "url": "http://mohammadheydari.me", + "email": "mdh.heydari@gmail.com", + "theme": "friendly", + "gravatar": true +} diff --git a/users/mdibaiee.json b/users/mdibaiee.json index f5736768..1453a573 100644 --- a/users/mdibaiee.json +++ b/users/mdibaiee.json @@ -1 +1,6 @@ -{"copyright":"Mahdi Dibaiee, http:\/\/dibaiee.ir","url":"http:\/\/dibaiee.ir","email":"mdibaiee@aol.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Mahdi Dibaiee, http://dibaiee.ir", + "url": "http://dibaiee.ir", + "email": "mdibaiee@aol.com", + "gravatar": true +} diff --git a/users/mdt.json b/users/mdt.json index 0d6941be..42bb4bc9 100644 --- a/users/mdt.json +++ b/users/mdt.json @@ -1,7 +1,7 @@ { - "copyright": "Marco Del Tongo, http://marcodeltongo.com", - "url": "http://marcodeltongo.com", - "email": "oss@marcodeltongo.com", - "theme": "dusk", - "gravatar": true -} \ No newline at end of file + "copyright": "Marco Del Tongo, http://marcodeltongo.com", + "url": "http://marcodeltongo.com", + "email": "oss@marcodeltongo.com", + "theme": "dusk", + "gravatar": true +} diff --git a/users/meetparikh7.json b/users/meetparikh7.json index f243ef9a..ad7067df 100644 --- a/users/meetparikh7.json +++ b/users/meetparikh7.json @@ -1,5 +1,5 @@ { - "copyright": "Meet Parikh", - "url": "https://meetparikh7.github.io", - "email": "meetparikh7@gmail.com" + "copyright": "Meet Parikh", + "url": "https://meetparikh7.github.io", + "email": "meetparikh7@gmail.com" } diff --git a/users/meghprkh.json b/users/meghprkh.json index b96fa61a..b3c1ff39 100644 --- a/users/meghprkh.json +++ b/users/meghprkh.json @@ -1,5 +1,5 @@ { - "copyright": "Megh Parikh", - "url": "https://meghprkh.github.io", - "email": "meghprkh@gmail.com" + "copyright": "Megh Parikh", + "url": "https://meghprkh.github.io", + "email": "meghprkh@gmail.com" } diff --git a/users/memega.json b/users/memega.json index a9d97463..22b501ef 100644 --- a/users/memega.json +++ b/users/memega.json @@ -1 +1,3 @@ -{"copyright":"Yuriy Panfyorov"} \ No newline at end of file +{ + "copyright": "Yuriy Panfyorov" +} diff --git a/users/memph1s.json b/users/memph1s.json index 149a3b31..a7caf00f 100644 --- a/users/memph1s.json +++ b/users/memph1s.json @@ -1 +1,6 @@ -{"copyright":"Vadim Golub","url":"http:\/\/vadimgolub.com","email":"vdm.golub@gmail.com","format":"txt"} +{ + "copyright": "Vadim Golub", + "url": "http://vadimgolub.com", + "email": "vdm.golub@gmail.com", + "format": "txt" +} diff --git a/users/mestes.json b/users/mestes.json index 767be321..6a13f61a 100644 --- a/users/mestes.json +++ b/users/mestes.json @@ -1,7 +1,7 @@ { - "copyright": "Morgan Estes, http://morganestes.me", - "url": "http://morganestes.me", - "email": "me@morganestes.me", - "gravatar": true, - "theme": "opensans" -} \ No newline at end of file + "copyright": "Morgan Estes, http://morganestes.me", + "url": "http://morganestes.me", + "email": "me@morganestes.me", + "gravatar": true, + "theme": "opensans" +} diff --git a/users/mestrada.json b/users/mestrada.json index cf15afd6..39a7921b 100644 --- a/users/mestrada.json +++ b/users/mestrada.json @@ -1,6 +1,6 @@ { - "copyright": "Miguel Estrada", - "url": "https://miguelestrada.dev", - "email": "mae829@gmail.com", - "theme": "material-light-blue" + "copyright": "Miguel Estrada", + "url": "https://miguelestrada.dev", + "email": "mae829@gmail.com", + "theme": "material-light-blue" } diff --git a/users/mf.json b/users/mf.json index bf31fd37..3916852e 100644 --- a/users/mf.json +++ b/users/mf.json @@ -1,8 +1,8 @@ { - "copyright": "Mihail Fedorov (Kolo)", - "url": "https://fedorov.net", - "email": "mit-license@fedorov.net", - "gravatar": true, - "format": "html", - "theme": "double-windsor" + "copyright": "Mihail Fedorov (Kolo)", + "url": "https://fedorov.net", + "email": "mit-license@fedorov.net", + "gravatar": true, + "format": "html", + "theme": "double-windsor" } diff --git a/users/mfah.json b/users/mfah.json index c2b77f29..0e18822f 100644 --- a/users/mfah.json +++ b/users/mfah.json @@ -1,6 +1,6 @@ { - "copyright": "The Museum of Fine Arts, Houston", - "url": "https://www.mfah.org", - "email": "cpratt@mfah.org", - "theme": "material-blue" + "copyright": "The Museum of Fine Arts, Houston", + "url": "https://www.mfah.org", + "email": "cpratt@mfah.org", + "theme": "material-blue" } diff --git a/users/mfmer.json b/users/mfmer.json index 4ab3349e..e642f15a 100644 --- a/users/mfmer.json +++ b/users/mfmer.json @@ -1 +1,3 @@ -{"copyright":"Mayo Foundation for Medical Education and Research"} +{ + "copyright": "Mayo Foundation for Medical Education and Research" +} diff --git a/users/mgonto.json b/users/mgonto.json index e47b2913..2954313e 100644 --- a/users/mgonto.json +++ b/users/mgonto.json @@ -1 +1,4 @@ -{"copyright":"Martin Gontovnikas","url":"http:\/\/gon.to"} \ No newline at end of file +{ + "copyright": "Martin Gontovnikas", + "url": "http://gon.to" +} diff --git a/users/mhaidarh.json b/users/mhaidarh.json index d613ba31..7ae46b91 100644 --- a/users/mhaidarh.json +++ b/users/mhaidarh.json @@ -1,7 +1,7 @@ { - "copyright": "M Haidar Hanif, http://mhaidarhanif.com", - "url": "http://mhaidarhanif.com", - "email": "email@mhaidarhanif.com", - "theme": "material-cyan", - "gravatar": true + "copyright": "M Haidar Hanif, http://mhaidarhanif.com", + "url": "http://mhaidarhanif.com", + "email": "email@mhaidarhanif.com", + "theme": "material-cyan", + "gravatar": true } diff --git a/users/mheap.json b/users/mheap.json index d2b54140..8b1197f2 100644 --- a/users/mheap.json +++ b/users/mheap.json @@ -1,5 +1,5 @@ { - "copyright": "Michael Heap, http://michaelheap.com", - "url": "http://michaelheap.com", - "theme": "default" + "copyright": "Michael Heap, http://michaelheap.com", + "url": "http://michaelheap.com", + "theme": "default" } diff --git a/users/mhenry.json b/users/mhenry.json index e27b303f..ad249334 100644 --- a/users/mhenry.json +++ b/users/mhenry.json @@ -1 +1,5 @@ -{"copyright":"Michael Henry","email":"mhenry@drexel.edu","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Michael Henry", + "email": "mhenry@drexel.edu", + "theme": "double-windsor" +} diff --git a/users/mhm5000.json b/users/mhm5000.json index e407cb75..5a222e55 100644 --- a/users/mhm5000.json +++ b/users/mhm5000.json @@ -1 +1,8 @@ -{"copyright":"Mohammad Hossein Mojtahedi","url":"https:\/\/mojtahedi.com/","email":"mhm5000@gmail.com","format":"html","gravatar": true, "theme": "material-teal"} +{ + "copyright": "Mohammad Hossein Mojtahedi", + "url": "https://mojtahedi.com/", + "email": "mhm5000@gmail.com", + "format": "html", + "gravatar": true, + "theme": "material-teal" +} diff --git a/users/mhweiner.json b/users/mhweiner.json index 284b2a42..4b76f4bb 100644 --- a/users/mhweiner.json +++ b/users/mhweiner.json @@ -1 +1,6 @@ -{"copyright":"Marc H. Weiner","url":"http:\/\/www.wizardlogic.com","email":"mhweiner234@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Marc H. Weiner", + "url": "http://www.wizardlogic.com", + "email": "mhweiner234@gmail.com", + "format": "txt" +} diff --git a/users/mi-roh.json b/users/mi-roh.json index bd571b50..a67c82af 100644 --- a/users/mi-roh.json +++ b/users/mi-roh.json @@ -1,4 +1,4 @@ { - "copyright": "Micha Rohde", - "url": "http://mi-roh.de" + "copyright": "Micha Rohde", + "url": "http://mi-roh.de" } diff --git a/users/micaelbergeron.json b/users/micaelbergeron.json index 5f6216a1..cf6f8aae 100644 --- a/users/micaelbergeron.json +++ b/users/micaelbergeron.json @@ -1 +1,3 @@ -{"copyright":"Mica\u00ebl Bergeron"} \ No newline at end of file +{ + "copyright": "Mica\u00ebl Bergeron" +} diff --git a/users/micalevisk.json b/users/micalevisk.json index 72f864b3..eb56a9e2 100644 --- a/users/micalevisk.json +++ b/users/micalevisk.json @@ -1,8 +1,8 @@ { - "copyright": "Micael Levi L. C.", - "url": "https://micalevisk.github.io", - "email": "mllc@icomp.ufam.edu.br", - "gravatar": true, - "theme": "dusk", - "format": "html" + "copyright": "Micael Levi L. C.", + "url": "https://micalevisk.github.io", + "email": "mllc@icomp.ufam.edu.br", + "gravatar": true, + "theme": "dusk", + "format": "html" } diff --git a/users/michael.json b/users/michael.json index 93abde2f..177bdefd 100644 --- a/users/michael.json +++ b/users/michael.json @@ -1 +1,3 @@ -{"copyright":"Michael Siddi"} \ No newline at end of file +{ + "copyright": "Michael Siddi" +} diff --git a/users/michaeldanilov.json b/users/michaeldanilov.json index 008bacb1..0cb9005f 100644 --- a/users/michaeldanilov.json +++ b/users/michaeldanilov.json @@ -1 +1,6 @@ -{"copyright":"Michael Danilov","url":"https:\/\/danilov.me","email":"michael@danilov.me","format":"txt"} \ No newline at end of file +{ + "copyright": "Michael Danilov", + "url": "https://danilov.me", + "email": "michael@danilov.me", + "format": "txt" +} diff --git a/users/michaelhsu.json b/users/michaelhsu.json index d9715484..d2600ed7 100644 --- a/users/michaelhsu.json +++ b/users/michaelhsu.json @@ -1 +1,7 @@ -{"copyright":"Michael Hsu, http:\/\/michaelhsu.tw","url":"http:\/\/michaelhsu.tw","email":"evenchange4@gmail.com","theme":"material-indigo","gravatar":true} \ No newline at end of file +{ + "copyright": "Michael Hsu, http://michaelhsu.tw", + "url": "http://michaelhsu.tw", + "email": "evenchange4@gmail.com", + "theme": "material-indigo", + "gravatar": true +} diff --git a/users/michaelhsutw.json b/users/michaelhsutw.json index 595c8b58..9a76f2a6 100644 --- a/users/michaelhsutw.json +++ b/users/michaelhsutw.json @@ -1 +1,7 @@ -{"copyright":"Michael Hsu, http:\/\/michaelhsu.tw","url":"http:\/\/michaelhsu.tw","email":"evenchange4@gmail.com","theme":"default","gravatar":true} \ No newline at end of file +{ + "copyright": "Michael Hsu, http://michaelhsu.tw", + "url": "http://michaelhsu.tw", + "email": "evenchange4@gmail.com", + "theme": "default", + "gravatar": true +} diff --git a/users/michaelobi.json b/users/michaelobi.json index 45471d6d..6bccea9a 100644 --- a/users/michaelobi.json +++ b/users/michaelobi.json @@ -1 +1,3 @@ -{"copyright":"Michael Obi"} \ No newline at end of file +{ + "copyright": "Michael Obi" +} diff --git a/users/michaelstanden.json b/users/michaelstanden.json index e91960b3..ffd77891 100644 --- a/users/michaelstanden.json +++ b/users/michaelstanden.json @@ -1,7 +1,7 @@ { - "copyright": "Michael Standen, https://michael.standen.link", - "url": "https://michael.standen.link", - "email": "michael@standen.link", - "theme": "material-pink", - "gravatar": false + "copyright": "Michael Standen, https://michael.standen.link", + "url": "https://michael.standen.link", + "email": "michael@standen.link", + "theme": "material-pink", + "gravatar": false } diff --git a/users/michaeltaranto.json b/users/michaeltaranto.json index b797cd6a..e4509601 100644 --- a/users/michaeltaranto.json +++ b/users/michaeltaranto.json @@ -1 +1,5 @@ -{"copyright":"Michael Taranto","url":"https://github.com/michaeltaranto","theme":"material-cyan"} +{ + "copyright": "Michael Taranto", + "url": "https://github.com/michaeltaranto", + "theme": "material-cyan" +} diff --git a/users/micromvc.json b/users/micromvc.json index 3b8bc910..e21f5414 100644 --- a/users/micromvc.json +++ b/users/micromvc.json @@ -1 +1,3 @@ -{"copyright":"David Pennington"} \ No newline at end of file +{ + "copyright": "David Pennington" +} diff --git a/users/microsoft.json b/users/microsoft.json index 2020b9aa..017d202d 100644 --- a/users/microsoft.json +++ b/users/microsoft.json @@ -1 +1,4 @@ -{"copyright":"Microsoft","url":"http:\/\/microsoft.com"} \ No newline at end of file +{ + "copyright": "Microsoft", + "url": "http://microsoft.com" +} diff --git a/users/micxer.json b/users/micxer.json index bc8360b2..ea00ec42 100644 --- a/users/micxer.json +++ b/users/micxer.json @@ -1,7 +1,7 @@ { - "copyright": "micxer, http:\/\/micxer.de/blog", - "url": "http:\/\/micxer.de/blog", - "email": "micxer@micxer.de", - "format": "html", - "theme": "material-light-blue" + "copyright": "micxer, http://micxer.de/blog", + "url": "http://micxer.de/blog", + "email": "micxer@micxer.de", + "format": "html", + "theme": "material-light-blue" } diff --git a/users/midupuis.json b/users/midupuis.json index 3e727c16..1e3415a0 100644 --- a/users/midupuis.json +++ b/users/midupuis.json @@ -1 +1,5 @@ -{"copyright":"Michael Dupuis","email":"midupuis@zigabittech.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Michael Dupuis", + "email": "midupuis@zigabittech.com", + "format": "txt" +} diff --git a/users/mignev.json b/users/mignev.json index 7ba748b0..09936b80 100644 --- a/users/mignev.json +++ b/users/mignev.json @@ -1 +1,6 @@ -{"copyright":"Marian Ignev","url":"http:\/\/m.ignev.net","email":"m.ignev@gmail.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Marian Ignev", + "url": "http://m.ignev.net", + "email": "m.ignev@gmail.com", + "gravatar": true +} diff --git a/users/miguelfrde.json b/users/miguelfrde.json index 56c26514..91d1d9dd 100644 --- a/users/miguelfrde.json +++ b/users/miguelfrde.json @@ -1 +1,6 @@ -{"copyright":"Miguel Flores Ruiz de Eguino","url":"http:\/\/miguelfrde.com","email":"miguel.frde@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Miguel Flores Ruiz de Eguino", + "url": "http://miguelfrde.com", + "email": "miguel.frde@gmail.com", + "format": "txt" +} diff --git a/users/miguelmota.json b/users/miguelmota.json index 7cca03ae..13166ced 100644 --- a/users/miguelmota.json +++ b/users/miguelmota.json @@ -1,7 +1,6 @@ { - "copyright": "Miguel Mota, https://miguelmota.com/", - "url": "https://miguelmota.com/", - "email": "hello@miguelmota.com", - "format": "txt" + "copyright": "Miguel Mota, https://miguelmota.com/", + "url": "https://miguelmota.com/", + "email": "hello@miguelmota.com", + "format": "txt" } - diff --git a/users/mikael.json b/users/mikael.json index 9ed07b0d..143e66be 100644 --- a/users/mikael.json +++ b/users/mikael.json @@ -1 +1,3 @@ -{"copyright":"Mikael Karon"} \ No newline at end of file +{ + "copyright": "Mikael Karon" +} diff --git a/users/mikaeljorhult.json b/users/mikaeljorhult.json index c66ce03e..e6657195 100644 --- a/users/mikaeljorhult.json +++ b/users/mikaeljorhult.json @@ -1,4 +1,4 @@ { - "copyright": "Mikael Jorhult, http://jorhult.se", - "url": "http://jorhult.se" -} \ No newline at end of file + "copyright": "Mikael Jorhult, http://jorhult.se", + "url": "http://jorhult.se" +} diff --git a/users/mike.json b/users/mike.json index f8d3e0da..700b3736 100644 --- a/users/mike.json +++ b/users/mike.json @@ -1 +1,3 @@ -{"copyright":"Remy Sharp"} \ No newline at end of file +{ + "copyright": "Remy Sharp" +} diff --git a/users/mike2duo.json b/users/mike2duo.json index 93abde2f..177bdefd 100644 --- a/users/mike2duo.json +++ b/users/mike2duo.json @@ -1 +1,3 @@ -{"copyright":"Michael Siddi"} \ No newline at end of file +{ + "copyright": "Michael Siddi" +} diff --git a/users/mikeanthony.json b/users/mikeanthony.json index 7dbe2b22..e6dbf739 100644 --- a/users/mikeanthony.json +++ b/users/mikeanthony.json @@ -1 +1,4 @@ -{"copyright":"Mike Anthony","theme":"plaintext"} \ No newline at end of file +{ + "copyright": "Mike Anthony", + "theme": "plaintext" +} diff --git a/users/mikejolley.json b/users/mikejolley.json index 44f54b78..6966038d 100644 --- a/users/mikejolley.json +++ b/users/mikejolley.json @@ -1 +1,5 @@ -{"copyright":"Mike Jolley","url":"https:\/\/github.com\/mikejolley","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Mike Jolley", + "url": "https://github.com/mikejolley", + "theme": "double-windsor" +} diff --git a/users/mikejolly.json b/users/mikejolly.json index 649230e7..9c9a3074 100644 --- a/users/mikejolly.json +++ b/users/mikejolly.json @@ -1 +1,5 @@ -{"copyright":"Mike Jolly","url":"https:\/\/github.com\/mikejolly","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Mike Jolly", + "url": "https://github.com/mikejolly", + "theme": "double-windsor" +} diff --git a/users/mikelyons.json b/users/mikelyons.json index 94a55016..84b9a4e2 100644 --- a/users/mikelyons.json +++ b/users/mikelyons.json @@ -1 +1,3 @@ -{"copyright":"Mike Lyons"} \ No newline at end of file +{ + "copyright": "Mike Lyons" +} diff --git a/users/mikl.json b/users/mikl.json index 24ee5923..a48adbe4 100644 --- a/users/mikl.json +++ b/users/mikl.json @@ -1,4 +1,4 @@ { - "copyright": "Daniel Knell, http://danielknell.co.uk", - "url": "http://danielknell.co.uk" + "copyright": "Daniel Knell, http://danielknell.co.uk", + "url": "http://danielknell.co.uk" } diff --git a/users/mikuiro.json b/users/mikuiro.json index 96554a37..cb3c84d2 100644 --- a/users/mikuiro.json +++ b/users/mikuiro.json @@ -1,5 +1,5 @@ { - "copyright": "Mikuiro", - "url": "https://mikuiro.com", - "theme": "material-pink" + "copyright": "Mikuiro", + "url": "https://mikuiro.com", + "theme": "material-pink" } diff --git a/users/milosgavrilovic.json b/users/milosgavrilovic.json index 99cc04aa..d4715a58 100644 --- a/users/milosgavrilovic.json +++ b/users/milosgavrilovic.json @@ -1 +1,6 @@ -{"copyright":"Milo\u0161 Gavrilovi\u0107","url":"http:\/\/milos.gavrilovic.rs\/","email":"milos@gavrilovic.rs","format":"txt"} \ No newline at end of file +{ + "copyright": "Milo\u0161 Gavrilovi\u0107", + "url": "http://milos.gavrilovic.rs/", + "email": "milos@gavrilovic.rs", + "format": "txt" +} diff --git a/users/minhee.json b/users/minhee.json index f36e691d..0c7d5a87 100644 --- a/users/minhee.json +++ b/users/minhee.json @@ -1 +1,5 @@ -{"copyright":"Hong Minhee, http:\/\/hongminhee.org\/","url":"http:\/\/hongminhee.org\/","email":"hongminhee@member.fsf.org"} +{ + "copyright": "Hong Minhee, http://hongminhee.org/", + "url": "http://hongminhee.org/", + "email": "hongminhee@member.fsf.org" +} diff --git a/users/minidfx.json b/users/minidfx.json index 670bb381..bbaf552c 100644 --- a/users/minidfx.json +++ b/users/minidfx.json @@ -1,8 +1,8 @@ { - "copyright": "MiniDfx, https://github.com/minidfx", - "url": "http://blog.couloir42.ch", - "format": "txt", - "email": "minidfx@gmail.com", - "gravatar": true, - "theme" : "default" + "copyright": "MiniDfx, https://github.com/minidfx", + "url": "http://blog.couloir42.ch", + "format": "txt", + "email": "minidfx@gmail.com", + "gravatar": true, + "theme": "default" } diff --git a/users/miro.json b/users/miro.json index 981fc021..f75f0c56 100644 --- a/users/miro.json +++ b/users/miro.json @@ -1,7 +1,7 @@ { - "copyright" : "Miroslav Hibler, http://miro.hibler.me", - "url" : "http://miro.hibler.me", - "email" : "miro@hibler.me", - "theme" : "flesch", - "gravatar" : true + "copyright": "Miroslav Hibler, http://miro.hibler.me", + "url": "http://miro.hibler.me", + "email": "miro@hibler.me", + "theme": "flesch", + "gravatar": true } diff --git a/users/mislav.json b/users/mislav.json index ab0a0a31..bee7468f 100644 --- a/users/mislav.json +++ b/users/mislav.json @@ -1 +1,3 @@ -{"copyright":"Mislav Marohni\u0107"} \ No newline at end of file +{ + "copyright": "Mislav Marohni\u0107" +} diff --git a/users/miszo.json b/users/miszo.json index cf253377..31787184 100644 --- a/users/miszo.json +++ b/users/miszo.json @@ -1 +1,4 @@ -{"copyright": "Miszo Radomski", "url": "https://github.com/miszo"} \ No newline at end of file +{ + "copyright": "Miszo Radomski", + "url": "https://github.com/miszo" +} diff --git a/users/mizzy.json b/users/mizzy.json index 4e1841d7..9485e1f4 100644 --- a/users/mizzy.json +++ b/users/mizzy.json @@ -1 +1,3 @@ -{"copyright":"Gosuke Miyashita, http:\/\/mizzy.org\/"} \ No newline at end of file +{ + "copyright": "Gosuke Miyashita, http://mizzy.org/" +} diff --git a/users/mjf.json b/users/mjf.json index 2095e317..a975eb9b 100644 --- a/users/mjf.json +++ b/users/mjf.json @@ -1 +1,3 @@ -{"copyright":"Matthew F"} \ No newline at end of file +{ + "copyright": "Matthew F" +} diff --git a/users/mk.json b/users/mk.json index 236e6550..c63870bf 100644 --- a/users/mk.json +++ b/users/mk.json @@ -1 +1,4 @@ -{"copyright":"Max Kueng, http:\/\/maxkueng.com\/","url":"http:\/\/maxkueng.com\/"} \ No newline at end of file +{ + "copyright": "Max Kueng, http://maxkueng.com/", + "url": "http://maxkueng.com/" +} diff --git a/users/mk23.json b/users/mk23.json index 425e9a01..de7c26d7 100644 --- a/users/mk23.json +++ b/users/mk23.json @@ -1 +1,5 @@ -{"copyright":"Max Kalika","url":"https:\/\/github.com\/mk23","email":"max.kalika+projects@gmail.com"} \ No newline at end of file +{ + "copyright": "Max Kalika", + "url": "https://github.com/mk23", + "email": "max.kalika+projects@gmail.com" +} diff --git a/users/mkhl.json b/users/mkhl.json index 7ba9b6b2..3c1af771 100644 --- a/users/mkhl.json +++ b/users/mkhl.json @@ -1,5 +1,5 @@ { - "copyright": "Martin Kühl", - "url": "https://purl.org/net/mkhl", - "theme": "plaintext" + "copyright": "Martin K\u00c3\u00bchl", + "url": "https://purl.org/net/mkhl", + "theme": "plaintext" } diff --git a/users/mlxy.json b/users/mlxy.json index 4f6cb4ea..dd34ae87 100644 --- a/users/mlxy.json +++ b/users/mlxy.json @@ -1,7 +1,7 @@ { - "copyright": "Habana Chihane, https://mlxy.github.io", - "url": "https://mlxy.github.io", - "format": "html", - "email": "chihane@yeah.net", - "theme": "opensans" + "copyright": "Habana Chihane, https://mlxy.github.io", + "url": "https://mlxy.github.io", + "format": "html", + "email": "chihane@yeah.net", + "theme": "opensans" } diff --git a/users/mm.json b/users/mm.json index 6743e4da..3429762e 100644 --- a/users/mm.json +++ b/users/mm.json @@ -1 +1,3 @@ -{"copyright":"Masanori Matsumoto"} \ No newline at end of file +{ + "copyright": "Masanori Matsumoto" +} diff --git a/users/mnicnc404.json b/users/mnicnc404.json index 3e51a204..4bdd76c0 100644 --- a/users/mnicnc404.json +++ b/users/mnicnc404.json @@ -1 +1,3 @@ -{"copyright":"Ching-Ning Chen"} \ No newline at end of file +{ + "copyright": "Ching-Ning Chen" +} diff --git a/users/moacirosa.json b/users/moacirosa.json index 73fa3c57..ac0b22a8 100644 --- a/users/moacirosa.json +++ b/users/moacirosa.json @@ -1 +1,8 @@ -{"copyright":"Moacir Rosa","url":"http:\/\/moacir.me","email":"paulomoacir.junior@gmail.com","format":"html","gravatar":true,"theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Moacir Rosa", + "url": "http://moacir.me", + "email": "paulomoacir.junior@gmail.com", + "format": "html", + "gravatar": true, + "theme": "double-windsor" +} diff --git a/users/mohan.json b/users/mohan.json index ac179e73..62e194c5 100644 --- a/users/mohan.json +++ b/users/mohan.json @@ -1 +1,3 @@ -{"copyright":"Mohan G"} \ No newline at end of file +{ + "copyright": "Mohan G" +} diff --git a/users/mohayonao.json b/users/mohayonao.json index da0cc594..0c417d45 100644 --- a/users/mohayonao.json +++ b/users/mohayonao.json @@ -1 +1,4 @@ -{"copyright":"Nao Yonamine","url":"https:\/\/github.com\/mohayonao"} \ No newline at end of file +{ + "copyright": "Nao Yonamine", + "url": "https://github.com/mohayonao" +} diff --git a/users/mohebifar.json b/users/mohebifar.json index 52b04601..17f15cfb 100644 --- a/users/mohebifar.json +++ b/users/mohebifar.json @@ -1 +1,7 @@ -{"copyright":"Mohamad Mohebifar,http:\/\/mohebifar.ir","url":"http:\/\/mohebifar.ir","email":"netfars@gmail.com","gravatar":true,"theme":"flesch"} \ No newline at end of file +{ + "copyright": "Mohamad Mohebifar,http://mohebifar.ir", + "url": "http://mohebifar.ir", + "email": "netfars@gmail.com", + "gravatar": true, + "theme": "flesch" +} diff --git a/users/mohnish.json b/users/mohnish.json index ab89e48e..5ae20337 100644 --- a/users/mohnish.json +++ b/users/mohnish.json @@ -1 +1,3 @@ -{"copyright":"Mohnish Thallavajhula"} \ No newline at end of file +{ + "copyright": "Mohnish Thallavajhula" +} diff --git a/users/mohsend.json b/users/mohsend.json index 8c32db8d..c7ef525b 100644 --- a/users/mohsend.json +++ b/users/mohsend.json @@ -1 +1,6 @@ -{"copyright":"Mohsen Dastjerdi Zade","url":"http:\/\/dstjrd.ir","email":"mail@dstjrd.ir","format":"txt"} \ No newline at end of file +{ + "copyright": "Mohsen Dastjerdi Zade", + "url": "http://dstjrd.ir", + "email": "mail@dstjrd.ir", + "format": "txt" +} diff --git a/users/mokemokechicken.json b/users/mokemokechicken.json index a7813940..fef9deac 100644 --- a/users/mokemokechicken.json +++ b/users/mokemokechicken.json @@ -1 +1,3 @@ -{"copyright":"Ken Morishita"} \ No newline at end of file +{ + "copyright": "Ken Morishita" +} diff --git a/users/mollifier.json b/users/mollifier.json index aca29f3a..33843055 100644 --- a/users/mollifier.json +++ b/users/mollifier.json @@ -1 +1,3 @@ -{"copyright":"Hideaki Miyake"} \ No newline at end of file +{ + "copyright": "Hideaki Miyake" +} diff --git a/users/mongorito.json b/users/mongorito.json index 19a66626..432498dd 100644 --- a/users/mongorito.json +++ b/users/mongorito.json @@ -1 +1,6 @@ -{"copyright":"Vadim Demedes","url":"http:\/\/mongorito.com","email":"vdemedes@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Vadim Demedes", + "url": "http://mongorito.com", + "email": "vdemedes@gmail.com", + "format": "txt" +} diff --git a/users/monkey.json b/users/monkey.json index 0b4026f8..56bf961a 100644 --- a/users/monkey.json +++ b/users/monkey.json @@ -1 +1,6 @@ -{"copyright":"Lars Steen","url":"https:\/\/bitbucket.org\/larste\/monkey","email":"larste@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Lars Steen", + "url": "https://bitbucket.org/larste/monkey", + "email": "larste@gmail.com", + "format": "txt" +} diff --git a/users/monks.json b/users/monks.json index 10a9b96c..449bafdb 100644 --- a/users/monks.json +++ b/users/monks.json @@ -1 +1,5 @@ -{"copyright":"Andrew Monks","url":"http:\/\/monks.co","email":"a@monks.co"} \ No newline at end of file +{ + "copyright": "Andrew Monks", + "url": "http://monks.co", + "email": "a@monks.co" +} diff --git a/users/monmon.json b/users/monmon.json index 9fa1e189..549088f0 100644 --- a/users/monmon.json +++ b/users/monmon.json @@ -1 +1,4 @@ -{"copyright":"monmon","url":"https:\/\/github.com\/monmon"} \ No newline at end of file +{ + "copyright": "monmon", + "url": "https://github.com/monmon" +} diff --git a/users/moongift.json b/users/moongift.json index ddf6e3b1..2e84b46b 100644 --- a/users/moongift.json +++ b/users/moongift.json @@ -1 +1,4 @@ -{"copyright":"Atsushi Nakatsugawa","url":"http:\/\/www.moongift.jp"} \ No newline at end of file +{ + "copyright": "Atsushi Nakatsugawa", + "url": "http://www.moongift.jp" +} diff --git a/users/moore.json b/users/moore.json index 84180f59..68131435 100644 --- a/users/moore.json +++ b/users/moore.json @@ -1 +1,3 @@ -{"copyright":"Jared Moore"} \ No newline at end of file +{ + "copyright": "Jared Moore" +} diff --git a/users/mootoh.json b/users/mootoh.json index 2f5ff9f2..2f4f65ee 100644 --- a/users/mootoh.json +++ b/users/mootoh.json @@ -1 +1,3 @@ -{"copyright":"Motohiro Takayama"} \ No newline at end of file +{ + "copyright": "Motohiro Takayama" +} diff --git a/users/moox.json b/users/moox.json index 40b13e7c..ac4e3e2a 100644 --- a/users/moox.json +++ b/users/moox.json @@ -1 +1,3 @@ -{"copyright":"Maxime Thirouin"} \ No newline at end of file +{ + "copyright": "Maxime Thirouin" +} diff --git a/users/mooyoul.json b/users/mooyoul.json index 496add04..6ee650b8 100644 --- a/users/mooyoul.json +++ b/users/mooyoul.json @@ -1 +1,6 @@ -{"copyright":"MooYeol Prescott Lee, http://debug.so","url":"http://debug.so","email":"mooyoul@gmail.com","gravatar":true} +{ + "copyright": "MooYeol Prescott Lee, http://debug.so", + "url": "http://debug.so", + "email": "mooyoul@gmail.com", + "gravatar": true +} diff --git a/users/moqada.json b/users/moqada.json index 767df95e..26a4f970 100644 --- a/users/moqada.json +++ b/users/moqada.json @@ -1 +1,5 @@ -{"copyright":"Masahiko Okada","url":"https:\/\/github.com\/moqada","theme":"plaintext"} \ No newline at end of file +{ + "copyright": "Masahiko Okada", + "url": "https://github.com/moqada", + "theme": "plaintext" +} diff --git a/users/moroshko.json b/users/moroshko.json index caa44bcb..c6860699 100644 --- a/users/moroshko.json +++ b/users/moroshko.json @@ -1 +1,3 @@ -{"copyright":"Misha Moroshko"} \ No newline at end of file +{ + "copyright": "Misha Moroshko" +} diff --git a/users/mortdeus.json b/users/mortdeus.json index 48364db9..45eb246b 100644 --- a/users/mortdeus.json +++ b/users/mortdeus.json @@ -1,7 +1,7 @@ { - "copyright": "mortdeus", - "url": "https://github.com/mortdeus", - "email": "mortdeus@gocos2d.org", - "format": "html", - "theme": "double-windsor" - } \ No newline at end of file + "copyright": "mortdeus", + "url": "https://github.com/mortdeus", + "email": "mortdeus@gocos2d.org", + "format": "html", + "theme": "double-windsor" +} diff --git a/users/morteza.json b/users/morteza.json index 5c16415e..67c76bb1 100644 --- a/users/morteza.json +++ b/users/morteza.json @@ -1 +1,8 @@ -{"copyright":"Morteza Ziaeemehr, http:\/\/mort3za.ir","url":"http:\/\/mort3za.ir","email":"m.ziaeemehr@gmail.com","gravatar":true,"format":"html","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Morteza Ziaeemehr, http://mort3za.ir", + "url": "http://mort3za.ir", + "email": "m.ziaeemehr@gmail.com", + "gravatar": true, + "format": "html", + "theme": "double-windsor" +} diff --git a/users/mostly-magic.json b/users/mostly-magic.json index 8e953f7b..6b6efd84 100644 --- a/users/mostly-magic.json +++ b/users/mostly-magic.json @@ -1,5 +1,5 @@ { - "copyright": "Mitchell Cowie, http://mostlymagic.ca", - "url": "http://mostlymagic.ca", - "theme": "afterdark" + "copyright": "Mitchell Cowie, http://mostlymagic.ca", + "url": "http://mostlymagic.ca", + "theme": "afterdark" } diff --git a/users/motemen.json b/users/motemen.json index 587e6912..15ec4397 100644 --- a/users/motemen.json +++ b/users/motemen.json @@ -1 +1,3 @@ -{"copyright":"motemen"} \ No newline at end of file +{ + "copyright": "motemen" +} diff --git a/users/motss.json b/users/motss.json index 6e37f63a..b8fe86c0 100644 --- a/users/motss.json +++ b/users/motss.json @@ -1 +1,5 @@ -{"copyright":"Rong Sen Ng","format":"html","email":"wes.ngrongsen@gmail.com"} +{ + "copyright": "Rong Sen Ng", + "format": "html", + "email": "wes.ngrongsen@gmail.com" +} diff --git a/users/moyashiki.json b/users/moyashiki.json index 490da16e..6e116907 100644 --- a/users/moyashiki.json +++ b/users/moyashiki.json @@ -1,3 +1,3 @@ { - "copyright":"Tomoya Yashiki, http://yayahayo.me" + "copyright": "Tomoya Yashiki, http://yayahayo.me" } diff --git a/users/mp.json b/users/mp.json index 6617f182..53d54fca 100644 --- a/users/mp.json +++ b/users/mp.json @@ -1,5 +1,5 @@ { - "copyright":"Marcos Paulo", - "email":"marcosisocram@gmail.com", - "gravatar": true + "copyright": "Marcos Paulo", + "email": "marcosisocram@gmail.com", + "gravatar": true } diff --git a/users/mpd.json b/users/mpd.json index 14b76788..8094d68f 100644 --- a/users/mpd.json +++ b/users/mpd.json @@ -1 +1,3 @@ -{"copyright":"Michael Dippery"} \ No newline at end of file +{ + "copyright": "Michael Dippery" +} diff --git a/users/mpdreamz.json b/users/mpdreamz.json index 6f7f7d3e..6f80661a 100644 --- a/users/mpdreamz.json +++ b/users/mpdreamz.json @@ -1 +1,5 @@ -{"copyright":"Martijn Laarman","url":"https:\/\/github.com\/Mpdreamz","theme":"blackwood"} \ No newline at end of file +{ + "copyright": "Martijn Laarman", + "url": "https://github.com/Mpdreamz", + "theme": "blackwood" +} diff --git a/users/mpogoda.json b/users/mpogoda.json index 43e93135..a586ea16 100644 --- a/users/mpogoda.json +++ b/users/mpogoda.json @@ -1 +1,3 @@ -{"copyright":"Michael Pogoda"} \ No newline at end of file +{ + "copyright": "Michael Pogoda" +} diff --git a/users/mressex.json b/users/mressex.json index a94a1f59..c9dea5e4 100644 --- a/users/mressex.json +++ b/users/mressex.json @@ -1,7 +1,7 @@ { - "copyright": "Kyle Essex, http://github.com/mressex", - "url": "http://github.com/mressex", - "email": "kylegavinessex@hotmail.com", - "theme": "default", - "gravatar": true + "copyright": "Kyle Essex, http://github.com/mressex", + "url": "http://github.com/mressex", + "email": "kylegavinessex@hotmail.com", + "theme": "default", + "gravatar": true } diff --git a/users/mrgnrdrck.json b/users/mrgnrdrck.json index c2ee359e..daf5e940 100644 --- a/users/mrgnrdrck.json +++ b/users/mrgnrdrck.json @@ -1,5 +1,5 @@ { - "copyright": "Morgan Roderick, http://roderick.dk/", - "url": "http://roderick.dk/", - "email": "morgan@roderick.dk" + "copyright": "Morgan Roderick, http://roderick.dk/", + "url": "http://roderick.dk/", + "email": "morgan@roderick.dk" } diff --git a/users/mrinaljain17.json b/users/mrinaljain17.json index 1c755ce6..cad128fe 100644 --- a/users/mrinaljain17.json +++ b/users/mrinaljain17.json @@ -1,6 +1,6 @@ { - "copyright": "Mrinal Jain", - "url": "https://mrinaljain17.github.io", - "email": "mrinaljain007@gmail.com", - "gravatar": true + "copyright": "Mrinal Jain", + "url": "https://mrinaljain17.github.io", + "email": "mrinaljain007@gmail.com", + "gravatar": true } diff --git a/users/mrkn.json b/users/mrkn.json index 854bb308..41c05c8e 100644 --- a/users/mrkn.json +++ b/users/mrkn.json @@ -1 +1,3 @@ -{"copyright":"Kenta Murata"} \ No newline at end of file +{ + "copyright": "Kenta Murata" +} diff --git a/users/mrmarbles.json b/users/mrmarbles.json index 0b544afc..d9cf90f7 100644 --- a/users/mrmarbles.json +++ b/users/mrmarbles.json @@ -1 +1,4 @@ -{"copyright":"Brian Carr","email":"bcarr14@gmail.com"} \ No newline at end of file +{ + "copyright": "Brian Carr", + "email": "bcarr14@gmail.com" +} diff --git a/users/mrsiir.json b/users/mrsiir.json index b8127bbf..9e161c0f 100644 --- a/users/mrsiir.json +++ b/users/mrsiir.json @@ -1 +1,3 @@ -{"copyright":"MrSiir"} \ No newline at end of file +{ + "copyright": "MrSiir" +} diff --git a/users/mschaer.json b/users/mschaer.json index 241805a2..5f45f81a 100644 --- a/users/mschaer.json +++ b/users/mschaer.json @@ -1 +1,4 @@ -{"copyright":"Marc Schaer","email":"marc.r.schaer@gmail.com"} +{ + "copyright": "Marc Schaer", + "email": "marc.r.schaer@gmail.com" +} diff --git a/users/mseri.json b/users/mseri.json index 76daddb7..fac4ec4e 100644 --- a/users/mseri.json +++ b/users/mseri.json @@ -1 +1,5 @@ -{"copyright":"Marcello Seri","url":"http:\/\/mseri.me","email":"mseri@mseri.me"} \ No newline at end of file +{ + "copyright": "Marcello Seri", + "url": "http://mseri.me", + "email": "mseri@mseri.me" +} diff --git a/users/mshertzberg.json b/users/mshertzberg.json index c976440c..515df173 100644 --- a/users/mshertzberg.json +++ b/users/mshertzberg.json @@ -1 +1,3 @@ -{"copyright":"Michael Scott Hertzberg"} \ No newline at end of file +{ + "copyright": "Michael Scott Hertzberg" +} diff --git a/users/msmosso.json b/users/msmosso.json index 00f724cd..2d3467ce 100644 --- a/users/msmosso.json +++ b/users/msmosso.json @@ -1,5 +1,5 @@ { - "copyright": "Matheus Mósso", - "url": "http://msmosso.com/", - "email": "msmosso@gmail.com" + "copyright": "Matheus M\u00c3\u00b3sso", + "url": "http://msmosso.com/", + "email": "msmosso@gmail.com" } diff --git a/users/msmprojects.json b/users/msmprojects.json index 687a506c..8248943e 100644 --- a/users/msmprojects.json +++ b/users/msmprojects.json @@ -1 +1,6 @@ -{"copyright":"MSM Projects, LLC","url":"http:\/\/msmprojects.com","email":"admin@msmprojects.com","format":"txt"} \ No newline at end of file +{ + "copyright": "MSM Projects, LLC", + "url": "http://msmprojects.com", + "email": "admin@msmprojects.com", + "format": "txt" +} diff --git a/users/mstade.json b/users/mstade.json index 9a951a96..9a8d5593 100644 --- a/users/mstade.json +++ b/users/mstade.json @@ -1 +1,3 @@ -{"copyright":"Marcus Stade"} \ No newline at end of file +{ + "copyright": "Marcus Stade" +} diff --git a/users/mstum.json b/users/mstum.json index 8a4dd9b5..c2efbb64 100644 --- a/users/mstum.json +++ b/users/mstum.json @@ -1,6 +1,6 @@ { - "copyright": "Michael Stum, http://www.Stum.de", - "url": "http://www.Stum.de", - "email": "opensource@stum.de", - "theme": "default" + "copyright": "Michael Stum, http://www.Stum.de", + "url": "http://www.Stum.de", + "email": "opensource@stum.de", + "theme": "default" } diff --git a/users/msudgh.json b/users/msudgh.json index e258fe70..1e96b720 100644 --- a/users/msudgh.json +++ b/users/msudgh.json @@ -1 +1,7 @@ -{"copyright":"Masoud Ghorbani","url":"http:\/\/msud.ir","email":"msud.ghorbani@gmail.com","format":"html","gravatar": true} +{ + "copyright": "Masoud Ghorbani", + "url": "http://msud.ir", + "email": "msud.ghorbani@gmail.com", + "format": "html", + "gravatar": true +} diff --git a/users/mteckert.json b/users/mteckert.json index bbed4a81..35de1801 100644 --- a/users/mteckert.json +++ b/users/mteckert.json @@ -1 +1,3 @@ -{"copyright":"Matthew Eckert"} \ No newline at end of file +{ + "copyright": "Matthew Eckert" +} diff --git a/users/mtsagias.json b/users/mtsagias.json index 617b3030..aba4d618 100644 --- a/users/mtsagias.json +++ b/users/mtsagias.json @@ -1 +1,6 @@ -{"copyright":"Manolis Tsagias","url":"http:\/\/www.tsagias.com","email":"manolis@tsagias.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Manolis Tsagias", + "url": "http://www.tsagias.com", + "email": "manolis@tsagias.com", + "gravatar": true +} diff --git a/users/mtsmfm.json b/users/mtsmfm.json index 1c0d5c25..edda9256 100644 --- a/users/mtsmfm.json +++ b/users/mtsmfm.json @@ -1 +1,6 @@ -{"copyright":"Fumiaki MATSUSHIMA","url":"https:\/\/mtsmfm.github.io","email":"mtsmfm@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Fumiaki MATSUSHIMA", + "url": "https://mtsmfm.github.io", + "email": "mtsmfm@gmail.com", + "format": "txt" +} diff --git a/users/mturcotte.json b/users/mturcotte.json index 8c3e9546..c008a837 100644 --- a/users/mturcotte.json +++ b/users/mturcotte.json @@ -1,4 +1,4 @@ { - "copyright": "Mathieu Turcotte, http://mathieuturcotte.ca", - "url": "http://mathieuturcotte.ca" + "copyright": "Mathieu Turcotte, http://mathieuturcotte.ca", + "url": "http://mathieuturcotte.ca" } diff --git a/users/muet.json b/users/muet.json index 422870a4..bf8447dd 100644 --- a/users/muet.json +++ b/users/muet.json @@ -1 +1,6 @@ -{"copyright":"Markus Muetschard","url":"http:\/\/muet.com","email":"markus@muet.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Markus Muetschard", + "url": "http://muet.com", + "email": "markus@muet.com", + "format": "txt" +} diff --git a/users/mullen.json b/users/mullen.json index 9a394c45..5cac9efc 100644 --- a/users/mullen.json +++ b/users/mullen.json @@ -1 +1,6 @@ -{"copyright":"Lincoln A. Mullen","url":"http:\/\/lincolnmullen.com","email":"lincoln@lincolnmullen.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Lincoln A. Mullen", + "url": "http://lincolnmullen.com", + "email": "lincoln@lincolnmullen.com", + "format": "txt" +} diff --git a/users/muratk.json b/users/muratk.json index e177cfbd..f14c9641 100644 --- a/users/muratk.json +++ b/users/muratk.json @@ -1 +1,3 @@ -{"copyright":"Murat Knecht"} \ No newline at end of file +{ + "copyright": "Murat Knecht" +} diff --git a/users/murphy.json b/users/murphy.json index 1438cdcd..56f02621 100644 --- a/users/murphy.json +++ b/users/murphy.json @@ -1 +1,5 @@ -{"copyright":"Murphy, http:\/\/murphy.metafnord.org","url":"http:\/\/murphy.metafnord.org","email":"moerphy@googlemail.com"} \ No newline at end of file +{ + "copyright": "Murphy, http://murphy.metafnord.org", + "url": "http://murphy.metafnord.org", + "email": "moerphy@googlemail.com" +} diff --git a/users/musicgig.json b/users/musicgig.json index fee8c877..0eccb967 100644 --- a/users/musicgig.json +++ b/users/musicgig.json @@ -1 +1,5 @@ -{"copyright":"Music Gig","url":"http:\/\/musicgig.herokuapp.com","email":"ikangiec@gmail.com"} \ No newline at end of file +{ + "copyright": "Music Gig", + "url": "http://musicgig.herokuapp.com", + "email": "ikangiec@gmail.com" +} diff --git a/users/mustafa.json b/users/mustafa.json index e8528dfb..b425e182 100644 --- a/users/mustafa.json +++ b/users/mustafa.json @@ -1,5 +1,5 @@ { - "copyright": "Mustafa Kurtuldu, http://mustafa.im", - "url": "http://mustafa.im", - "theme": "default" + "copyright": "Mustafa Kurtuldu, http://mustafa.im", + "url": "http://mustafa.im", + "theme": "default" } diff --git a/users/mutedsolutions.json b/users/mutedsolutions.json index da27b304..93b7ae4e 100644 --- a/users/mutedsolutions.json +++ b/users/mutedsolutions.json @@ -1 +1,5 @@ -{"copyright":"Muted Solutions, LLC","url":"http:\/\/mutedsolutions.com","email":"derick@mutedsolutions.com"} \ No newline at end of file +{ + "copyright": "Muted Solutions, LLC", + "url": "http://mutedsolutions.com", + "email": "derick@mutedsolutions.com" +} diff --git a/users/mutlicorp.json b/users/mutlicorp.json index b955cda4..94553093 100644 --- a/users/mutlicorp.json +++ b/users/mutlicorp.json @@ -1 +1,6 @@ -{"copyright":"Remy Sharp","url":"http:\/\/remysharp.com","email":"me@mysite.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Remy Sharp", + "url": "http://remysharp.com", + "email": "me@mysite.com", + "format": "txt" +} diff --git a/users/mutoso.json b/users/mutoso.json index 8a9d596b..921254b2 100644 --- a/users/mutoso.json +++ b/users/mutoso.json @@ -1 +1,7 @@ -{"copyright":"Alastair Stuart Feille","url":"http:\/\/muto.so","email":"alastair@muto.so","gravatar":true,"theme":"black-beauty"} \ No newline at end of file +{ + "copyright": "Alastair Stuart Feille", + "url": "http://muto.so", + "email": "alastair@muto.so", + "gravatar": true, + "theme": "black-beauty" +} diff --git a/users/muyuu.json b/users/muyuu.json index 2d231e33..150ed99f 100644 --- a/users/muyuu.json +++ b/users/muyuu.json @@ -1 +1,4 @@ -{"copyright":"Muyuu Fujita","url":"https:\/\/github.com\/muyuu"} \ No newline at end of file +{ + "copyright": "Muyuu Fujita", + "url": "https://github.com/muyuu" +} diff --git a/users/mvdnes.json b/users/mvdnes.json index 01f23f65..238d1b5f 100644 --- a/users/mvdnes.json +++ b/users/mvdnes.json @@ -1 +1,3 @@ -{"copyright":"Mathijs van de Nes"} \ No newline at end of file +{ + "copyright": "Mathijs van de Nes" +} diff --git a/users/mvr.json b/users/mvr.json index ec491c28..3056bd3f 100644 --- a/users/mvr.json +++ b/users/mvr.json @@ -1 +1,5 @@ -{"copyright":"Mathias Rasmussen","email":"mathiasvr@gmail.com","theme":"material-light-blue"} \ No newline at end of file +{ + "copyright": "Mathias Rasmussen", + "email": "mathiasvr@gmail.com", + "theme": "material-light-blue" +} diff --git a/users/mw.json b/users/mw.json index dc07cb10..68ea33bb 100644 --- a/users/mw.json +++ b/users/mw.json @@ -1 +1,3 @@ -{"copyright":"Matthew Westrik"} \ No newline at end of file +{ + "copyright": "Matthew Westrik" +} diff --git a/users/mway.json b/users/mway.json index d22bd681..f919fe2d 100644 --- a/users/mway.json +++ b/users/mway.json @@ -1 +1,6 @@ -{"copyright":"Matt Way","url":"http:\/\/mway.co\/","email":"matt.way@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Matt Way", + "url": "http://mway.co/", + "email": "matt.way@gmail.com", + "format": "txt" +} diff --git a/users/mwm.json b/users/mwm.json index b15ade4f..4bf9e64a 100644 --- a/users/mwm.json +++ b/users/mwm.json @@ -1 +1,6 @@ -{"copyright":"Matthew Meyer","url":"http:\/\/www.mwmeyer.com","email":"matthewwilliammeyer@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Matthew Meyer", + "url": "http://www.mwmeyer.com", + "email": "matthewwilliammeyer@gmail.com", + "format": "txt" +} diff --git a/users/mwmeyer.json b/users/mwmeyer.json index 77642ec3..85d43c95 100644 --- a/users/mwmeyer.json +++ b/users/mwmeyer.json @@ -1 +1,5 @@ -{"copyright":"Matthew Meyer","url":"http:\/\/www.mwmeyer.com","email":"matthewwilliammeyer@gmail.com"} \ No newline at end of file +{ + "copyright": "Matthew Meyer", + "url": "http://www.mwmeyer.com", + "email": "matthewwilliammeyer@gmail.com" +} diff --git a/users/mwmnj.json b/users/mwmnj.json index 77642ec3..85d43c95 100644 --- a/users/mwmnj.json +++ b/users/mwmnj.json @@ -1 +1,5 @@ -{"copyright":"Matthew Meyer","url":"http:\/\/www.mwmeyer.com","email":"matthewwilliammeyer@gmail.com"} \ No newline at end of file +{ + "copyright": "Matthew Meyer", + "url": "http://www.mwmeyer.com", + "email": "matthewwilliammeyer@gmail.com" +} diff --git a/users/myles.json b/users/myles.json index 88cffcc0..09e8d260 100644 --- a/users/myles.json +++ b/users/myles.json @@ -1 +1,6 @@ -{"copyright":"Myles Braithwaite","url":"http:\/\/mylesbraithwaite.com","email":"me@mylesbraithwaite.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Myles Braithwaite", + "url": "http://mylesbraithwaite.com", + "email": "me@mylesbraithwaite.com", + "format": "txt" +} diff --git a/users/mynetx.json b/users/mynetx.json index 943ba023..d9bd6596 100644 --- a/users/mynetx.json +++ b/users/mynetx.json @@ -1 +1,5 @@ -{"copyright":"J.M.","url":"http:\/\/mynetx.net\/","email":"mynetx@users.sf.net"} \ No newline at end of file +{ + "copyright": "J.M.", + "url": "http://mynetx.net/", + "email": "mynetx@users.sf.net" +} diff --git a/users/mysticatea.json b/users/mysticatea.json index 7b5bd063..9043cce5 100644 --- a/users/mysticatea.json +++ b/users/mysticatea.json @@ -1 +1,4 @@ -{"copyright":"Toru Nagashima","url":"https:\/\/github.com\/mysticatea"} \ No newline at end of file +{ + "copyright": "Toru Nagashima", + "url": "https://github.com/mysticatea" +} diff --git a/users/n.json b/users/n.json index 7dbf49c7..bca9b9fc 100644 --- a/users/n.json +++ b/users/n.json @@ -1 +1,4 @@ -{"copyright":"Nex Zhu","url":"https:\/\/github.com\/NexZhu"} \ No newline at end of file +{ + "copyright": "Nex Zhu", + "url": "https://github.com/NexZhu" +} diff --git a/users/n0nick.json b/users/n0nick.json index e0493d30..77bc0adb 100644 --- a/users/n0nick.json +++ b/users/n0nick.json @@ -1 +1,3 @@ -{"copyright":"Sagie Maoz"} \ No newline at end of file +{ + "copyright": "Sagie Maoz" +} diff --git a/users/nacyot.json b/users/nacyot.json index 2044ac11..9d75f439 100644 --- a/users/nacyot.json +++ b/users/nacyot.json @@ -1 +1,6 @@ -{"copyright":"Daekwon Kim","url":"http:\/\/naycot.com","email":"propellerheaven@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Daekwon Kim", + "url": "http://naycot.com", + "email": "propellerheaven@gmail.com", + "format": "txt" +} diff --git a/users/nadeemkhan.json b/users/nadeemkhan.json index 6d301325..84218e76 100644 --- a/users/nadeemkhan.json +++ b/users/nadeemkhan.json @@ -1,6 +1,6 @@ { -"copyright":"Nadeem Khan", -"email": "nadeem7khan@gmail.com", -"theme": "double-windsor", -"gravatar": true + "copyright": "Nadeem Khan", + "email": "nadeem7khan@gmail.com", + "theme": "double-windsor", + "gravatar": true } diff --git a/users/nadi.json b/users/nadi.json index 8d736197..77b2ff52 100644 --- a/users/nadi.json +++ b/users/nadi.json @@ -1 +1,6 @@ -{"copyright":"Nadi Dikun","url":"http:\/\/nadikun.com","email":"dikunn@gmail.com","theme":"flesch"} \ No newline at end of file +{ + "copyright": "Nadi Dikun", + "url": "http://nadikun.com", + "email": "dikunn@gmail.com", + "theme": "flesch" +} diff --git a/users/naereen.json b/users/naereen.json index 8ec31a5d..6e91ef25 100644 --- a/users/naereen.json +++ b/users/naereen.json @@ -1 +1,7 @@ -{"copyright":"Lilian Besson (Naereen), https:\/\/bitbucket.org\/lbesson\/","url":"https:\/\/bitbucket.org\/lbesson\/","email":"naereen at crans dot org","format":"html","gravatar":false} \ No newline at end of file +{ + "copyright": "Lilian Besson (Naereen), https://bitbucket.org/lbesson/", + "url": "https://bitbucket.org/lbesson/", + "email": "naereen at crans dot org", + "format": "html", + "gravatar": false +} diff --git a/users/nak2k.json b/users/nak2k.json index 2a89c8f8..05c989b0 100644 --- a/users/nak2k.json +++ b/users/nak2k.json @@ -1 +1,4 @@ -{"copyright":"Kengo Nakatsuka","url":"http:\/\/nak2k.jp\/"} \ No newline at end of file +{ + "copyright": "Kengo Nakatsuka", + "url": "http://nak2k.jp/" +} diff --git a/users/nanahositento.json b/users/nanahositento.json index 124d2e76..55c68ecf 100644 --- a/users/nanahositento.json +++ b/users/nanahositento.json @@ -1,5 +1,5 @@ { - "copyright": "nanahositento", - "url": "http://nanahositento.github.com/", - "theme": "flesch" + "copyright": "nanahositento", + "url": "http://nanahositento.github.com/", + "theme": "flesch" } diff --git a/users/nanha.json b/users/nanha.json index 25e5c6ce..8760575d 100644 --- a/users/nanha.json +++ b/users/nanha.json @@ -1 +1,4 @@ -{"copyright":"nanha park","url":"http:\/\/nanha.com"} \ No newline at end of file +{ + "copyright": "nanha park", + "url": "http://nanha.com" +} diff --git a/users/nanotaboada.json b/users/nanotaboada.json index 31b1c6a1..72c6433a 100644 --- a/users/nanotaboada.json +++ b/users/nanotaboada.json @@ -1,5 +1,5 @@ { - "copyright": "Nano Taboada, http://nanotaboada.com.ar", - "url": "http://nanotaboada.com.ar", - "theme": "flesch" -} \ No newline at end of file + "copyright": "Nano Taboada, http://nanotaboada.com.ar", + "url": "http://nanotaboada.com.ar", + "theme": "flesch" +} diff --git a/users/naota.json b/users/naota.json index 94baa8ed..6a51002b 100644 --- a/users/naota.json +++ b/users/naota.json @@ -1 +1,3 @@ -{"copyright":"Naohiro Aota"} \ No newline at end of file +{ + "copyright": "Naohiro Aota" +} diff --git a/users/nat.json b/users/nat.json index 206729bb..39b113e7 100644 --- a/users/nat.json +++ b/users/nat.json @@ -1 +1,3 @@ -{"copyright":"Nat Zimmermann"} \ No newline at end of file +{ + "copyright": "Nat Zimmermann" +} diff --git a/users/nate.json b/users/nate.json index 1829ed32..bc366a5d 100644 --- a/users/nate.json +++ b/users/nate.json @@ -1 +1,4 @@ -{"copyright":"Nathan Rugg","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Nathan Rugg", + "theme": "double-windsor" +} diff --git a/users/natevw.json b/users/natevw.json index 7381e53b..e13fbc0a 100644 --- a/users/natevw.json +++ b/users/natevw.json @@ -1 +1,4 @@ -{"copyright":"Nathan Vander Wilt","url":"http:\/\/exts.ch"} \ No newline at end of file +{ + "copyright": "Nathan Vander Wilt", + "url": "http://exts.ch" +} diff --git a/users/nathan.json b/users/nathan.json index aec948af..664e2b25 100644 --- a/users/nathan.json +++ b/users/nathan.json @@ -1 +1,5 @@ -{"copyright":"Nathan Herald","url":"http:\/\/nathanherald.com","email":"me@nathanherald.com"} +{ + "copyright": "Nathan Herald", + "url": "http://nathanherald.com", + "email": "me@nathanherald.com" +} diff --git a/users/nathan7.json b/users/nathan7.json index b340d69f..3c208fce 100644 --- a/users/nathan7.json +++ b/users/nathan7.json @@ -1 +1,3 @@ -{"copyright":"Nathan Zadoks"} \ No newline at end of file +{ + "copyright": "Nathan Zadoks" +} diff --git a/users/nathanallen.json b/users/nathanallen.json index 34098ee2..83cb23b1 100644 --- a/users/nathanallen.json +++ b/users/nathanallen.json @@ -1 +1,5 @@ -{"copyright":"Nathan Allen, http:\/\/nathan.codes\/","url":"http:\/\/nathan.codes\/","theme":"plaintext"} \ No newline at end of file +{ + "copyright": "Nathan Allen, http://nathan.codes/", + "url": "http://nathan.codes/", + "theme": "plaintext" +} diff --git a/users/natzim.json b/users/natzim.json index 206729bb..39b113e7 100644 --- a/users/natzim.json +++ b/users/natzim.json @@ -1 +1,3 @@ -{"copyright":"Nat Zimmermann"} \ No newline at end of file +{ + "copyright": "Nat Zimmermann" +} diff --git a/users/naufraghi.json b/users/naufraghi.json index 75913421..4e7d42e9 100644 --- a/users/naufraghi.json +++ b/users/naufraghi.json @@ -1 +1,3 @@ -{"copyright":"Matteo Bertini"} \ No newline at end of file +{ + "copyright": "Matteo Bertini" +} diff --git a/users/navarr.json b/users/navarr.json index e1772ada..f6f5e550 100644 --- a/users/navarr.json +++ b/users/navarr.json @@ -1,4 +1,4 @@ { - "copyright": "Navarr Barnier", - "url": "http://navarr.me" + "copyright": "Navarr Barnier", + "url": "http://navarr.me" } diff --git a/users/nblackburn.json b/users/nblackburn.json index d727e594..19c012e1 100644 --- a/users/nblackburn.json +++ b/users/nblackburn.json @@ -1 +1,8 @@ -{"copyright":"Nathaniel Blackburn","url":"http:\/\/nblackburn.co.uk","email":"support@nblackburn.co.uk","format":"txt","theme":"plaintext","gravatar":true} \ No newline at end of file +{ + "copyright": "Nathaniel Blackburn", + "url": "http://nblackburn.co.uk", + "email": "support@nblackburn.co.uk", + "format": "txt", + "theme": "plaintext", + "gravatar": true +} diff --git a/users/ncb000gt.json b/users/ncb000gt.json index 02068c88..4b971883 100644 --- a/users/ncb000gt.json +++ b/users/ncb000gt.json @@ -1 +1,5 @@ -{"copyright":"Nicholas Campbell","email":"nicholas.j.campbell@gmail.com","theme":"flesch"} \ No newline at end of file +{ + "copyright": "Nicholas Campbell", + "email": "nicholas.j.campbell@gmail.com", + "theme": "flesch" +} diff --git a/users/nctg.json b/users/nctg.json index 59893559..6184c189 100644 --- a/users/nctg.json +++ b/users/nctg.json @@ -1,4 +1,4 @@ { - "copyright": "North Coast Technology Group", - "url": "http://nctechgroup.com/" + "copyright": "North Coast Technology Group", + "url": "http://nctechgroup.com/" } diff --git a/users/ndw.json b/users/ndw.json index 367ee4a6..afba8e83 100644 --- a/users/ndw.json +++ b/users/ndw.json @@ -1,5 +1,5 @@ { - "copyright": "Norman Walsh, http://nwalsh.com/", - "url": "http://nwalsh.com/", - "theme": "flesch" + "copyright": "Norman Walsh, http://nwalsh.com/", + "url": "http://nwalsh.com/", + "theme": "flesch" } diff --git a/users/nectktar.json b/users/nectktar.json index 27e9be96..50f38b7e 100644 --- a/users/nectktar.json +++ b/users/nectktar.json @@ -1 +1,4 @@ -{"copyright":"Nectktar","format":"txt"} \ No newline at end of file +{ + "copyright": "Nectktar", + "format": "txt" +} diff --git a/users/neil.json b/users/neil.json index c1be258c..9c560859 100644 --- a/users/neil.json +++ b/users/neil.json @@ -1 +1,3 @@ -{"copyright":"Neil Cowburn"} \ No newline at end of file +{ + "copyright": "Neil Cowburn" +} diff --git a/users/nemo.json b/users/nemo.json index 609973c2..bc4c834b 100644 --- a/users/nemo.json +++ b/users/nemo.json @@ -1,7 +1,7 @@ { - "copyright": "Abhay Rana", - "email":"me@captnemo.in", - "url":"https://captnemo.in/", - "gravatar":"true", - "theme":"double-windsor" + "copyright": "Abhay Rana", + "email": "me@captnemo.in", + "url": "https://captnemo.in/", + "gravatar": "true", + "theme": "double-windsor" } diff --git a/users/neo.json b/users/neo.json index b9a6d59e..cb8c164d 100644 --- a/users/neo.json +++ b/users/neo.json @@ -1 +1,6 @@ -{"copyright":"Neo Melonas","url":"http:\/\/neomelonas.com","email":"neo@neomelonas.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Neo Melonas", + "url": "http://neomelonas.com", + "email": "neo@neomelonas.com", + "format": "txt" +} diff --git a/users/neodevelop.json b/users/neodevelop.json index f6b5bf9b..13f96777 100644 --- a/users/neodevelop.json +++ b/users/neodevelop.json @@ -1 +1,7 @@ -{ "copyright":"Neodevelop", "url":"http://neodevelop.org", "email":"rashwell@gmail.com", "format":"html", "theme": "solarized"} \ No newline at end of file +{ + "copyright": "Neodevelop", + "url": "http://neodevelop.org", + "email": "rashwell@gmail.com", + "format": "html", + "theme": "solarized" +} diff --git a/users/neos21.json b/users/neos21.json index f3d87302..47977b46 100644 --- a/users/neos21.json +++ b/users/neos21.json @@ -1,7 +1,7 @@ { - "copyright": "Neo (@Neos21)", - "url": "http://neo.s21.xrea.com/", - "email": "neos21@gmail.com", - "gravatar": true, - "theme": "cherry" + "copyright": "Neo (@Neos21)", + "url": "http://neo.s21.xrea.com/", + "email": "neos21@gmail.com", + "gravatar": true, + "theme": "cherry" } diff --git a/users/nerdfiles.json b/users/nerdfiles.json index 1deab7fc..df69a6c6 100644 --- a/users/nerdfiles.json +++ b/users/nerdfiles.json @@ -1 +1,3 @@ -{"copyright":"nerdfiles"} \ No newline at end of file +{ + "copyright": "nerdfiles" +} diff --git a/users/nerdsec.json b/users/nerdsec.json index 61419167..17c32473 100644 --- a/users/nerdsec.json +++ b/users/nerdsec.json @@ -1 +1,6 @@ -{"copyright":"NerdSec, LLC","url":"http:\/\/nerdsec.org","email":"license@nerdsec.org","format":"txt"} \ No newline at end of file +{ + "copyright": "NerdSec, LLC", + "url": "http://nerdsec.org", + "email": "license@nerdsec.org", + "format": "txt" +} diff --git a/users/nergal.json b/users/nergal.json index ac8af4f3..0d7a0f91 100644 --- a/users/nergal.json +++ b/users/nergal.json @@ -1 +1,6 @@ -{"copyright":"Artem Polyukhovich ","url":"http:\/\/2mio.com","email":"me@2mio.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Artem Polyukhovich ", + "url": "http://2mio.com", + "email": "me@2mio.com", + "format": "txt" +} diff --git a/users/nethru.json b/users/nethru.json index baf84d89..b24f9785 100644 --- a/users/nethru.json +++ b/users/nethru.json @@ -1 +1,6 @@ -{"copyright":"Nethru Limited","url":"http:\/\/nethru.com","email":"info@nethru.com","theme":"friendly"} \ No newline at end of file +{ + "copyright": "Nethru Limited", + "url": "http://nethru.com", + "email": "info@nethru.com", + "theme": "friendly" +} diff --git a/users/neutroncreations.json b/users/neutroncreations.json index a0d262a2..3353e501 100644 --- a/users/neutroncreations.json +++ b/users/neutroncreations.json @@ -1,4 +1,4 @@ { - "copyright": "Neutron Creations, http://neutroncreations.com", - "url": "http://neutroncreations.com" + "copyright": "Neutron Creations, http://neutroncreations.com", + "url": "http://neutroncreations.com" } diff --git a/users/nevir.json b/users/nevir.json index 200b3d27..022e9c85 100644 --- a/users/nevir.json +++ b/users/nevir.json @@ -1 +1,3 @@ -{"copyright":"Ian MacLeod"} \ No newline at end of file +{ + "copyright": "Ian MacLeod" +} diff --git a/users/newleaders.json b/users/newleaders.json index d1478529..8fa26c9a 100644 --- a/users/newleaders.json +++ b/users/newleaders.json @@ -1 +1,7 @@ -{"copyright":"New Leaders","url":"http:\/\/newleaders.com","email":"opensource@newleaders.com","format":"html","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "New Leaders", + "url": "http://newleaders.com", + "email": "opensource@newleaders.com", + "format": "html", + "theme": "double-windsor" +} diff --git a/users/nex.json b/users/nex.json index 7dbf49c7..bca9b9fc 100644 --- a/users/nex.json +++ b/users/nex.json @@ -1 +1,4 @@ -{"copyright":"Nex Zhu","url":"https:\/\/github.com\/NexZhu"} \ No newline at end of file +{ + "copyright": "Nex Zhu", + "url": "https://github.com/NexZhu" +} diff --git a/users/nexzhu.json b/users/nexzhu.json index 7dbf49c7..bca9b9fc 100644 --- a/users/nexzhu.json +++ b/users/nexzhu.json @@ -1 +1,4 @@ -{"copyright":"Nex Zhu","url":"https:\/\/github.com\/NexZhu"} \ No newline at end of file +{ + "copyright": "Nex Zhu", + "url": "https://github.com/NexZhu" +} diff --git a/users/nfreear.json b/users/nfreear.json index d07244b2..963d1f93 100644 --- a/users/nfreear.json +++ b/users/nfreear.json @@ -1 +1,5 @@ -{"copyright":"Nick Freear","url":"http:\/\/freear.org.uk","theme":"flesch"} \ No newline at end of file +{ + "copyright": "Nick Freear", + "url": "http://freear.org.uk", + "theme": "flesch" +} diff --git a/users/ngenerio.json b/users/ngenerio.json index f2bd1c5e..014a126c 100644 --- a/users/ngenerio.json +++ b/users/ngenerio.json @@ -1 +1,5 @@ -{"copyright":"Eugene Asiedu","email":"ngene84@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Eugene Asiedu", + "email": "ngene84@gmail.com", + "format": "txt" +} diff --git a/users/ngoldman.json b/users/ngoldman.json index 8d4ddfbe..f1245ec0 100644 --- a/users/ngoldman.json +++ b/users/ngoldman.json @@ -1 +1,3 @@ -{"copyright":"Nathaniel Goldman"} \ No newline at end of file +{ + "copyright": "Nathaniel Goldman" +} diff --git a/users/ngtk.json b/users/ngtk.json index 1c7e06e1..5509b6c8 100644 --- a/users/ngtk.json +++ b/users/ngtk.json @@ -1 +1,3 @@ -{"copyright":"Kent Nagata"} \ No newline at end of file +{ + "copyright": "Kent Nagata" +} diff --git a/users/ngyuki.json b/users/ngyuki.json index e4f11cb7..449f0cb8 100644 --- a/users/ngyuki.json +++ b/users/ngyuki.json @@ -1 +1,4 @@ -{"copyright":"Toshiyuki Goto","url":"https:\/\/github.com\/ngyuki"} \ No newline at end of file +{ + "copyright": "Toshiyuki Goto", + "url": "https://github.com/ngyuki" +} diff --git a/users/nhan.json b/users/nhan.json index 4550fc66..5d499656 100644 --- a/users/nhan.json +++ b/users/nhan.json @@ -1,7 +1,7 @@ { - "copyright": "Nhan Doan, http://nhan.me", - "url": "http://nhan.me", - "format": "html", - "gravatar": false, - "theme": "default" + "copyright": "Nhan Doan, http://nhan.me", + "url": "http://nhan.me", + "format": "html", + "gravatar": false, + "theme": "default" } diff --git a/users/nhanderu.json b/users/nhanderu.json index 66323552..dfb06daf 100644 --- a/users/nhanderu.json +++ b/users/nhanderu.json @@ -1,5 +1,5 @@ { - "copyright": "Rafael Escobar", - "url": "http://nhanderu.com", - "email": "rafael.bze@gmail.com" + "copyright": "Rafael Escobar", + "url": "http://nhanderu.com", + "email": "rafael.bze@gmail.com" } diff --git a/users/nhayato.json b/users/nhayato.json index 576712cc..62332d04 100644 --- a/users/nhayato.json +++ b/users/nhayato.json @@ -1 +1,3 @@ -{"copyright":"Hayato Nishimura"} \ No newline at end of file +{ + "copyright": "Hayato Nishimura" +} diff --git a/users/nhoizey.json b/users/nhoizey.json index 012a0751..dc6892d2 100644 --- a/users/nhoizey.json +++ b/users/nhoizey.json @@ -1 +1,4 @@ -{"copyright":"Nicolas Hoizey","url":"http:\/\/gasteroprod.com\/"} \ No newline at end of file +{ + "copyright": "Nicolas Hoizey", + "url": "http://gasteroprod.com/" +} diff --git a/users/nichom.json b/users/nichom.json index 0f122dc7..67976e00 100644 --- a/users/nichom.json +++ b/users/nichom.json @@ -1,6 +1,6 @@ { - "copyright": "Nick Martinelli, http://nickmartinelli.com", - "url": "http://nickmartinelli.com", - "email": "nicho.m@gmail.com", - "theme": "plaintext" -} \ No newline at end of file + "copyright": "Nick Martinelli, http://nickmartinelli.com", + "url": "http://nickmartinelli.com", + "email": "nicho.m@gmail.com", + "theme": "plaintext" +} diff --git a/users/nickmanos.json b/users/nickmanos.json index fbf93d95..7b907cb0 100644 --- a/users/nickmanos.json +++ b/users/nickmanos.json @@ -1 +1,4 @@ -{"copyright":"Nick Manos","email":"manos.nick@gmail.com"} \ No newline at end of file +{ + "copyright": "Nick Manos", + "email": "manos.nick@gmail.com" +} diff --git a/users/nicksp.json b/users/nicksp.json index fab8c917..a982b6ef 100644 --- a/users/nicksp.json +++ b/users/nicksp.json @@ -1,7 +1,7 @@ -{ - "copyright": "Nick S. Plekhanov", - "email": "nickatgit@yandex.com", - "format": "html", - "theme": "material-indigo", - "gravatar": true +{ + "copyright": "Nick S. Plekhanov", + "email": "nickatgit@yandex.com", + "format": "html", + "theme": "material-indigo", + "gravatar": true } diff --git a/users/nico.json b/users/nico.json index 7f343bb7..b1765bd6 100644 --- a/users/nico.json +++ b/users/nico.json @@ -1,4 +1,4 @@ { - "copyright":"Nicolas Chaulet", - "email":"nicolas.chaulet@gmail.com" + "copyright": "Nicolas Chaulet", + "email": "nicolas.chaulet@gmail.com" } diff --git a/users/niftylettuce.json b/users/niftylettuce.json index 14677dbf..e5ab4609 100644 --- a/users/niftylettuce.json +++ b/users/niftylettuce.json @@ -1 +1,6 @@ -{"copyright":"Nick Baugh","url":"http:\/\/niftylettuce.com","email":"niftylettuce@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Nick Baugh", + "url": "http://niftylettuce.com", + "email": "niftylettuce@gmail.com", + "format": "txt" +} diff --git a/users/nightw.json b/users/nightw.json index 3d856480..023c19ee 100644 --- a/users/nightw.json +++ b/users/nightw.json @@ -1 +1,5 @@ -{"copyright":"Pal David Gergely","email":"nightw17@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Pal David Gergely", + "email": "nightw17@gmail.com", + "format": "txt" +} diff --git a/users/nik.json b/users/nik.json index 58f0bb4c..5edaf4b6 100644 --- a/users/nik.json +++ b/users/nik.json @@ -1 +1,3 @@ -{"copyright":"Nikolas Weger"} \ No newline at end of file +{ + "copyright": "Nikolas Weger" +} diff --git a/users/nikbobo.json b/users/nikbobo.json index 9fd11f63..c3800f76 100644 --- a/users/nikbobo.json +++ b/users/nikbobo.json @@ -1,6 +1,6 @@ { - "copyright": "Nikbobo, http:\/\/www.nikbobo.net", - "url": "http:\/\/www.nikbobo.net", - "email": "nikbobos@gmail.com", - "theme": "default" + "copyright": "Nikbobo, http://www.nikbobo.net", + "url": "http://www.nikbobo.net", + "email": "nikbobos@gmail.com", + "theme": "default" } diff --git a/users/nikhilgohil11.json b/users/nikhilgohil11.json index f0de0119..19fb34cd 100644 --- a/users/nikhilgohil11.json +++ b/users/nikhilgohil11.json @@ -1 +1,3 @@ -{"copyright":"Nikhil Gohil"} \ No newline at end of file +{ + "copyright": "Nikhil Gohil" +} diff --git a/users/nikolay.json b/users/nikolay.json index 890b9236..f9b949d7 100644 --- a/users/nikolay.json +++ b/users/nikolay.json @@ -1,8 +1,8 @@ { - "copyright": "Nikolay Kolev", - "url": "https://nikolay.com", - "email": "me@nikolay.com", - "gravatar": true, - "format": "html", - "theme": "default" + "copyright": "Nikolay Kolev", + "url": "https://nikolay.com", + "email": "me@nikolay.com", + "gravatar": true, + "format": "html", + "theme": "default" } diff --git a/users/nil.json b/users/nil.json index 5f4db9a7..66e277c1 100644 --- a/users/nil.json +++ b/users/nil.json @@ -1 +1,6 @@ -{"copyright":"Nil K\u00e9sede","url":"http:\/\/ksde.pw","email":"nil@ksde.pw","format":"txt"} +{ + "copyright": "Nil K\u00e9sede", + "url": "http://ksde.pw", + "email": "nil@ksde.pw", + "format": "txt" +} diff --git a/users/nilesh.json b/users/nilesh.json index 28e66274..da5a5aef 100644 --- a/users/nilesh.json +++ b/users/nilesh.json @@ -1 +1,6 @@ -{"copyright":"Nilesh Londhe","url":"http:\/\/nilesh.londhe.com","email":"nilesh@londhe.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Nilesh Londhe", + "url": "http://nilesh.londhe.com", + "email": "nilesh@londhe.com", + "format": "txt" +} diff --git a/users/nilkesede.json b/users/nilkesede.json index 5f4db9a7..66e277c1 100644 --- a/users/nilkesede.json +++ b/users/nilkesede.json @@ -1 +1,6 @@ -{"copyright":"Nil K\u00e9sede","url":"http:\/\/ksde.pw","email":"nil@ksde.pw","format":"txt"} +{ + "copyright": "Nil K\u00e9sede", + "url": "http://ksde.pw", + "email": "nil@ksde.pw", + "format": "txt" +} diff --git a/users/nilswloka.json b/users/nilswloka.json index 216697c9..bca492f3 100644 --- a/users/nilswloka.json +++ b/users/nilswloka.json @@ -1 +1,3 @@ -{"copyright":"Nils Wloka"} \ No newline at end of file +{ + "copyright": "Nils Wloka" +} diff --git a/users/niltoncms.json b/users/niltoncms.json index f939869e..e2ee0bcb 100644 --- a/users/niltoncms.json +++ b/users/niltoncms.json @@ -1 +1,7 @@ -{"copyright":"Nilton, @niltoncms","url":"http:\/\/niltoncms.flavors.me\/","email":"niltoncms@gmail.com","gravatar":false,"theme":"opensans"} \ No newline at end of file +{ + "copyright": "Nilton, @niltoncms", + "url": "http://niltoncms.flavors.me/", + "email": "niltoncms@gmail.com", + "gravatar": false, + "theme": "opensans" +} diff --git a/users/nima.json b/users/nima.json index b4502688..ddc9ac7d 100644 --- a/users/nima.json +++ b/users/nima.json @@ -1 +1,7 @@ -{"copyright":"Nima Amini, http:\/\/nima.pro","url":"http:\/\/nima.pro\/","format":"html","gravatar":false,"theme":"plaintext"} \ No newline at end of file +{ + "copyright": "Nima Amini, http://nima.pro", + "url": "http://nima.pro/", + "format": "html", + "gravatar": false, + "theme": "plaintext" +} diff --git a/users/nimbu.json b/users/nimbu.json index ff84a9b6..d91666d3 100644 --- a/users/nimbu.json +++ b/users/nimbu.json @@ -1 +1,6 @@ -{"copyright":"Nimbu","url":"http:\/\/www.nimbu.io","email":"opensource@nimbu.io","theme":"flesch"} \ No newline at end of file +{ + "copyright": "Nimbu", + "url": "http://www.nimbu.io", + "email": "opensource@nimbu.io", + "theme": "flesch" +} diff --git a/users/nisargrthakkar.json b/users/nisargrthakkar.json index 17d7cb33..d348496c 100644 --- a/users/nisargrthakkar.json +++ b/users/nisargrthakkar.json @@ -1,7 +1,7 @@ -{ - "copyright": "Nisarg R Thakkar", - "email": "nisargthakkar113@gmail.com", - "format": "html", - "theme": "material-indigo", - "gravatar": true +{ + "copyright": "Nisarg R Thakkar", + "email": "nisargthakkar113@gmail.com", + "format": "html", + "theme": "material-indigo", + "gravatar": true } diff --git a/users/nishanths.json b/users/nishanths.json index 559b9464..96c37b4d 100644 --- a/users/nishanths.json +++ b/users/nishanths.json @@ -1 +1,3 @@ -{"copyright":"Nishanth Shanmugham"} \ No newline at end of file +{ + "copyright": "Nishanth Shanmugham" +} diff --git a/users/nitori.json b/users/nitori.json index 884b3caf..37f08ea9 100644 --- a/users/nitori.json +++ b/users/nitori.json @@ -1 +1,3 @@ -{"copyright":"Nitori Kawashiro"} \ No newline at end of file +{ + "copyright": "Nitori Kawashiro" +} diff --git a/users/nitriques.json b/users/nitriques.json index 0bef689d..d94888d6 100644 --- a/users/nitriques.json +++ b/users/nitriques.json @@ -1,6 +1,6 @@ { - "copyright": "Nicolas Brassard, http://nicolasbrassard.com", - "url": "http://nicolasbrassard.com", - "theme": "flesch", - "gravatar": true + "copyright": "Nicolas Brassard, http://nicolasbrassard.com", + "url": "http://nicolasbrassard.com", + "theme": "flesch", + "gravatar": true } diff --git a/users/njordon.json b/users/njordon.json index 86f6b3db..d368d260 100644 --- a/users/njordon.json +++ b/users/njordon.json @@ -1,6 +1,6 @@ { - "copyright": "Nicholas Jordon", - "url": "https://github.com/ProjectCleverWeb", - "email": "projectcleverweb@gmail.com", - "theme": "material-blue" -} \ No newline at end of file + "copyright": "Nicholas Jordon", + "url": "https://github.com/ProjectCleverWeb", + "email": "projectcleverweb@gmail.com", + "theme": "material-blue" +} diff --git a/users/nk.json b/users/nk.json index 0effb2c1..2850b22f 100644 --- a/users/nk.json +++ b/users/nk.json @@ -1 +1,6 @@ -{"copyright":"Nadeem Khan","url":"https:\/\/about.me\/nadeeemkhan7","email":"nadeem7khan@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Nadeem Khan", + "url": "https://about.me/nadeeemkhan7", + "email": "nadeem7khan@gmail.com", + "format": "txt" +} diff --git a/users/nks.json b/users/nks.json index b4328447..88e7517b 100644 --- a/users/nks.json +++ b/users/nks.json @@ -1,6 +1,6 @@ { - "copyright": "Nikhil Soni", - "url": "https://twitter.com/krsoninikhil", - "email": "krsoninikhil@gmail.com", - "gravatar": true + "copyright": "Nikhil Soni", + "url": "https://twitter.com/krsoninikhil", + "email": "krsoninikhil@gmail.com", + "gravatar": true } diff --git a/users/nlr.json b/users/nlr.json index 91f2e42b..7fbff02a 100644 --- a/users/nlr.json +++ b/users/nlr.json @@ -1,8 +1,8 @@ { - "copyright": "Lanicia, MKody, https://newlunarrepublic.fr", - "url": "https://newlunarrepublic.fr", - "email": "royalguard@newlunarrepublic.fr", - "format": "html", - "theme": "xtansia", - "gravatar": false + "copyright": "Lanicia, MKody, https://newlunarrepublic.fr", + "url": "https://newlunarrepublic.fr", + "email": "royalguard@newlunarrepublic.fr", + "format": "html", + "theme": "xtansia", + "gravatar": false } diff --git a/users/nm.json b/users/nm.json index e152930e..7b1cd12e 100644 --- a/users/nm.json +++ b/users/nm.json @@ -1 +1,3 @@ -{"copyright":"NixonMcInnes"} \ No newline at end of file +{ + "copyright": "NixonMcInnes" +} diff --git a/users/nmanos.json b/users/nmanos.json index 3789937d..37d28e17 100644 --- a/users/nmanos.json +++ b/users/nmanos.json @@ -1 +1,5 @@ -{"copyright":"Nick Manos","email":"manos.nick@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Nick Manos", + "email": "manos.nick@gmail.com", + "format": "txt" +} diff --git a/users/nnexus.json b/users/nnexus.json index be08ea88..d4097a60 100644 --- a/users/nnexus.json +++ b/users/nnexus.json @@ -1 +1,3 @@ -{"copyright":"Aaron Krowne and James Gardner and Deyan Ginev"} \ No newline at end of file +{ + "copyright": "Aaron Krowne and James Gardner and Deyan Ginev" +} diff --git a/users/nntoan.json b/users/nntoan.json index 4adafeef..163ec80b 100644 --- a/users/nntoan.json +++ b/users/nntoan.json @@ -1,6 +1,6 @@ { - "copyright": "Toan Nguyen", - "url": "https://nntoan.com", - "email": "me@nntoan.com", - "gravatar": true + "copyright": "Toan Nguyen", + "url": "https://nntoan.com", + "email": "me@nntoan.com", + "gravatar": true } diff --git a/users/no.json b/users/no.json index 8ebc4f1d..799dbf3f 100644 --- a/users/no.json +++ b/users/no.json @@ -1 +1,6 @@ -{"copyright":"pingrat","url":"https:\/\/github.com\/pingrat","email":"pingrat@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "pingrat", + "url": "https://github.com/pingrat", + "email": "pingrat@gmail.com", + "format": "txt" +} diff --git a/users/nodaguti.json b/users/nodaguti.json index 0edd337a..0ea0be2d 100644 --- a/users/nodaguti.json +++ b/users/nodaguti.json @@ -1 +1,4 @@ -{"copyright":"nodaguti","url":"https:\/\/github.com\/nodaguti"} \ No newline at end of file +{ + "copyright": "nodaguti", + "url": "https://github.com/nodaguti" +} diff --git a/users/nodejsbrasil.json b/users/nodejsbrasil.json index c7129edf..0ef4c0af 100644 --- a/users/nodejsbrasil.json +++ b/users/nodejsbrasil.json @@ -1,6 +1,6 @@ { - "copyright":"NodeJS Brasil", - "url":"https://github.com/NodeJS-Brasil", - "email":"jnascimento@gmail.com", - "theme": "double-windsor" -} \ No newline at end of file + "copyright": "NodeJS Brasil", + "url": "https://github.com/NodeJS-Brasil", + "email": "jnascimento@gmail.com", + "theme": "double-windsor" +} diff --git a/users/noeldavies.json b/users/noeldavies.json index b3a8579d..8ed93e76 100644 --- a/users/noeldavies.json +++ b/users/noeldavies.json @@ -1 +1,3 @@ -{"copyright":"Daniel Noel-Davies"} \ No newline at end of file +{ + "copyright": "Daniel Noel-Davies" +} diff --git a/users/nojb.json b/users/nojb.json index e62696a6..904a0b6c 100644 --- a/users/nojb.json +++ b/users/nojb.json @@ -1 +1,3 @@ -{"copyright":"Nicol\u00e1s Ojeda B\u00e4r"} \ No newline at end of file +{ + "copyright": "Nicol\u00e1s Ojeda B\u00e4r" +} diff --git a/users/nooblad.json b/users/nooblad.json index 2f0a370d..dcf2ac53 100644 --- a/users/nooblad.json +++ b/users/nooblad.json @@ -1 +1,3 @@ -{"copyright":"Ludovic Lafole"} \ No newline at end of file +{ + "copyright": "Ludovic Lafole" +} diff --git a/users/noodlehaus.json b/users/noodlehaus.json index 9a1221b0..8e1df1fa 100644 --- a/users/noodlehaus.json +++ b/users/noodlehaus.json @@ -1 +1,5 @@ -{"copyright":"Jesus A. Domingo","url":"http:\/\/jesusdomingo.com","email":"jesus.domingo@gmail.com"} \ No newline at end of file +{ + "copyright": "Jesus A. Domingo", + "url": "http://jesusdomingo.com", + "email": "jesus.domingo@gmail.com" +} diff --git a/users/norcross.json b/users/norcross.json index e06dbe48..099f5bc6 100644 --- a/users/norcross.json +++ b/users/norcross.json @@ -1 +1,6 @@ -{"copyright":"Andrew Norcross","url":"http:\/\/andrewnorcross.com","email":"andrew@andrewnorcross.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Andrew Norcross", + "url": "http://andrewnorcross.com", + "email": "andrew@andrewnorcross.com", + "format": "txt" +} diff --git a/users/noriaki.json b/users/noriaki.json index 75298a19..a1268921 100644 --- a/users/noriaki.json +++ b/users/noriaki.json @@ -1,7 +1,7 @@ { - "copyright": "Noriaki Uchiyama", - "url": "https://github.com/noriaki", - "theme": "material-indigo", - "email": "uchiyama.noriaki@gmail.com", - "gravatar": true + "copyright": "Noriaki Uchiyama", + "url": "https://github.com/noriaki", + "theme": "material-indigo", + "email": "uchiyama.noriaki@gmail.com", + "gravatar": true } diff --git a/users/noromanba.json b/users/noromanba.json index 72bf35df..44f735d4 100644 --- a/users/noromanba.json +++ b/users/noromanba.json @@ -1 +1,5 @@ -{"copyright":"noromanba","url":"http:\/\/d.hatena.ne.jp\/noromanba\/","theme":"afterdark"} \ No newline at end of file +{ + "copyright": "noromanba", + "url": "http://d.hatena.ne.jp/noromanba/", + "theme": "afterdark" +} diff --git a/users/norris.json b/users/norris.json index fb6a2087..c7afd008 100644 --- a/users/norris.json +++ b/users/norris.json @@ -1 +1,5 @@ -{"copyright":"Nauris Pukis","url":"http:\/\/justnorris.com","email":"im@justnorris.com"} +{ + "copyright": "Nauris Pukis", + "url": "http://justnorris.com", + "email": "im@justnorris.com" +} diff --git a/users/noty.json b/users/noty.json index a225babd..2c4fd0b7 100644 --- a/users/noty.json +++ b/users/noty.json @@ -1 +1,3 @@ -{"copyright":"Nedim Arabac\u0131"} \ No newline at end of file +{ + "copyright": "Nedim Arabac\u0131" +} diff --git a/users/novalagung.json b/users/novalagung.json index 6326b4c0..d60b9cfa 100644 --- a/users/novalagung.json +++ b/users/novalagung.json @@ -1,7 +1,7 @@ { - "copyright": "Noval Agung Prayogo", - "url": "http://novalagung.com", - "email": "caknopal@gmail.com", - "theme": "double-windsor", - "gravatar": true + "copyright": "Noval Agung Prayogo", + "url": "http://novalagung.com", + "email": "caknopal@gmail.com", + "theme": "double-windsor", + "gravatar": true } diff --git a/users/nqngo.json b/users/nqngo.json index 07e871a0..bc6c558c 100644 --- a/users/nqngo.json +++ b/users/nqngo.json @@ -1,5 +1,5 @@ { - "copyright": "Nhat Q. Ngo", - "email": "phuquoc2001@gmail.com", - "gravatar": true + "copyright": "Nhat Q. Ngo", + "email": "phuquoc2001@gmail.com", + "gravatar": true } diff --git a/users/nrakochy.json b/users/nrakochy.json index 54564401..ecb4a2bb 100644 --- a/users/nrakochy.json +++ b/users/nrakochy.json @@ -1 +1,5 @@ -{ "copyright": "Nick Rakochy", "url": "nickrakochy.com", "theme": "friendly" } +{ + "copyright": "Nick Rakochy", + "url": "nickrakochy.com", + "theme": "friendly" +} diff --git a/users/nrm.json b/users/nrm.json index 8e49e1ab..bab5f481 100644 --- a/users/nrm.json +++ b/users/nrm.json @@ -1 +1,4 @@ -{"copyright":"noromanba","url":"http:\/\/d.hatena.ne.jp\/noromanba\/"} \ No newline at end of file +{ + "copyright": "noromanba", + "url": "http://d.hatena.ne.jp/noromanba/" +} diff --git a/users/ns.json b/users/ns.json index 4f10c3e8..8a425280 100644 --- a/users/ns.json +++ b/users/ns.json @@ -1 +1,6 @@ -{"copyright":"Naksion W","url":"https:\/\/naksion.com","email":"naksions@gmail.com","format":"html"} \ No newline at end of file +{ + "copyright": "Naksion W", + "url": "https://naksion.com", + "email": "naksions@gmail.com", + "format": "html" +} diff --git a/users/nsisodiya.json b/users/nsisodiya.json index 93b687ee..bb141f5f 100644 --- a/users/nsisodiya.json +++ b/users/nsisodiya.json @@ -1 +1,6 @@ -{"copyright":"Narendra Sisodiya","url":"http:\/\/narendrasisodiya.com","email":"narendra@narendrasisodiya.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Narendra Sisodiya", + "url": "http://narendrasisodiya.com", + "email": "narendra@narendrasisodiya.com", + "format": "txt" +} diff --git a/users/numediaweb.json b/users/numediaweb.json index 8c519ea2..f16db6a0 100644 --- a/users/numediaweb.json +++ b/users/numediaweb.json @@ -1 +1,6 @@ -{"copyright":"Abdessamad Idrissi","url":"http:\/\/numediaweb.com","email":"abdel@numediaweb.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Abdessamad Idrissi", + "url": "http://numediaweb.com", + "email": "abdel@numediaweb.com", + "format": "txt" +} diff --git a/users/nuri.json b/users/nuri.json index 22e09f8b..fcffd080 100644 --- a/users/nuri.json +++ b/users/nuri.json @@ -1 +1,3 @@ -{"copyright":"Nuri Hodges"} \ No newline at end of file +{ + "copyright": "Nuri Hodges" +} diff --git a/users/nv.json b/users/nv.json index f08d4d06..21ea7572 100644 --- a/users/nv.json +++ b/users/nv.json @@ -1 +1,6 @@ -{"copyright":"Nicolae Vartolomei","url":"http:\/\/nvartolomei.com","email":"me@nvartolomei.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Nicolae Vartolomei", + "url": "http://nvartolomei.com", + "email": "me@nvartolomei.com", + "format": "txt" +} diff --git a/users/nvcnvn.json b/users/nvcnvn.json index 47a9e950..dc1fd425 100644 --- a/users/nvcnvn.json +++ b/users/nvcnvn.json @@ -1 +1,3 @@ -{"copyright":"Nguy\u1ec5n V\u0103n Cao Nguy\u00ean"} \ No newline at end of file +{ + "copyright": "Nguy\u1ec5n V\u0103n Cao Nguy\u00ean" +} diff --git a/users/nyarla.json b/users/nyarla.json index f2329046..907a7acb 100644 --- a/users/nyarla.json +++ b/users/nyarla.json @@ -1 +1,7 @@ -{"copyright":"Naoki OKAMURA (Nyarla)","url":"http:\/\/nyarla.net\/","email":"nyarla@thotep.net","gravatar":true,"theme":"flesch"} \ No newline at end of file +{ + "copyright": "Naoki OKAMURA (Nyarla)", + "url": "http://nyarla.net/", + "email": "nyarla@thotep.net", + "gravatar": true, + "theme": "flesch" +} diff --git a/users/o.json b/users/o.json index 4e86d104..74d63999 100644 --- a/users/o.json +++ b/users/o.json @@ -1 +1,6 @@ -{"copyright":"Osman Ungur","url":"http:\/\/ungur.org","email":"osmanungur@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Osman Ungur", + "url": "http://ungur.org", + "email": "osmanungur@gmail.com", + "format": "txt" +} diff --git a/users/oaeide.json b/users/oaeide.json index 8e745c37..6a539cee 100644 --- a/users/oaeide.json +++ b/users/oaeide.json @@ -1 +1,3 @@ -{"copyright":"\u00d8yvind Andreas Eide"} \ No newline at end of file +{ + "copyright": "\u00d8yvind Andreas Eide" +} diff --git a/users/obihann.json b/users/obihann.json index 5704bb52..4d45a546 100644 --- a/users/obihann.json +++ b/users/obihann.json @@ -1 +1,5 @@ -{"copyright":"Jeffrey Hann","url":"http:\/\/jeffreyhann.ca","email":"jeffhann@gmail.com"} +{ + "copyright": "Jeffrey Hann", + "url": "http://jeffreyhann.ca", + "email": "jeffhann@gmail.com" +} diff --git a/users/object505.json b/users/object505.json index 215bdbb9..95e35718 100644 --- a/users/object505.json +++ b/users/object505.json @@ -1 +1,5 @@ -{"copyright":"Bojan Petkovski, https:\/\/github.com\/object505","url":"http:\/\/object505.com","email":"pbeluent@gmail.com"} \ No newline at end of file +{ + "copyright": "Bojan Petkovski, https://github.com/object505", + "url": "http://object505.com", + "email": "pbeluent@gmail.com" +} diff --git a/users/oc.json b/users/oc.json index da5edfc8..0bab85c0 100644 --- a/users/oc.json +++ b/users/oc.json @@ -1 +1,5 @@ -{"copyright":"\u9ea6\u5f53\u82d7\u513f, ONECMF.COM","url":"http:\/\/www.onecmf.com","format":"html"} \ No newline at end of file +{ + "copyright": "\u9ea6\u5f53\u82d7\u513f, ONECMF.COM", + "url": "http://www.onecmf.com", + "format": "html" +} diff --git a/users/octavioturra.json b/users/octavioturra.json index eb7cdeb2..ef8ed6f4 100644 --- a/users/octavioturra.json +++ b/users/octavioturra.json @@ -1 +1,6 @@ -{"copyright":"Octavio Turra, http:\/\/fraguto.com.br","url":"http:\/\/fraguto.com.br","email":"octo@fraguto.com.br", "theme":"friendly"} +{ + "copyright": "Octavio Turra, http://fraguto.com.br", + "url": "http://fraguto.com.br", + "email": "octo@fraguto.com.br", + "theme": "friendly" +} diff --git a/users/odsod.json b/users/odsod.json index 5575d02d..54d76efd 100644 --- a/users/odsod.json +++ b/users/odsod.json @@ -1 +1,3 @@ -{"copyright":"Oscar S\u00f6derlund"} \ No newline at end of file +{ + "copyright": "Oscar S\u00f6derlund" +} diff --git a/users/ofer-shaham.json b/users/ofer-shaham.json index 66e23372..50b7ea2e 100644 --- a/users/ofer-shaham.json +++ b/users/ofer-shaham.json @@ -1 +1,6 @@ -{"copyright":"Ofer Shaham","url":"http:\/\/brownman.github.io","email":"ofer.shaham@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Ofer Shaham", + "url": "http://brownman.github.io", + "email": "ofer.shaham@gmail.com", + "format": "txt" +} diff --git a/users/ofer.json b/users/ofer.json index 859d9f09..3c04eef2 100644 --- a/users/ofer.json +++ b/users/ofer.json @@ -1 +1,3 @@ -{"copyright":"Ofer Shaham"} \ No newline at end of file +{ + "copyright": "Ofer Shaham" +} diff --git a/users/oguching.json b/users/oguching.json index d4731284..07e9a6e9 100644 --- a/users/oguching.json +++ b/users/oguching.json @@ -1,5 +1,5 @@ { - "copyright" : "Oguchi Nzekwe, http://oguching.com", - "url" : "http://oguching.com", - "theme" : "opensans" + "copyright": "Oguchi Nzekwe, http://oguching.com", + "url": "http://oguching.com", + "theme": "opensans" } diff --git a/users/ohtomi.json b/users/ohtomi.json index 3168efd4..5d0bcc5c 100644 --- a/users/ohtomi.json +++ b/users/ohtomi.json @@ -1 +1,4 @@ -{"copyright":"Kenichi Ohtomi","url":"https://github.com/ohtomi"} \ No newline at end of file +{ + "copyright": "Kenichi Ohtomi", + "url": "https://github.com/ohtomi" +} diff --git a/users/oidong1.json b/users/oidong1.json index 0f53dc29..4414cd8b 100644 --- a/users/oidong1.json +++ b/users/oidong1.json @@ -1 +1,3 @@ -{"copyright":"oidong"} \ No newline at end of file +{ + "copyright": "oidong" +} diff --git a/users/ojoaofernandes.json b/users/ojoaofernandes.json index 00aa8aa7..93caa69c 100644 --- a/users/ojoaofernandes.json +++ b/users/ojoaofernandes.json @@ -1 +1,3 @@ -{"copyright":"Jo\u00e3o Pedro Fernandes"} \ No newline at end of file +{ + "copyright": "Jo\u00e3o Pedro Fernandes" +} diff --git a/users/ok.json b/users/ok.json index 0264dd25..3bfadfb3 100644 --- a/users/ok.json +++ b/users/ok.json @@ -1 +1,4 @@ -{"copyright":"Olli Kankare","email":"olli@salaliitto.com"} \ No newline at end of file +{ + "copyright": "Olli Kankare", + "email": "olli@salaliitto.com" +} diff --git a/users/okeyaki.json b/users/okeyaki.json index 9aefafab..ee97396a 100644 --- a/users/okeyaki.json +++ b/users/okeyaki.json @@ -1 +1,3 @@ -{"copyright":"Okeyaki"} \ No newline at end of file +{ + "copyright": "Okeyaki" +} diff --git a/users/ol.json b/users/ol.json index 253aea76..25334095 100644 --- a/users/ol.json +++ b/users/ol.json @@ -1 +1,6 @@ -{"copyright":"Oliver Lumby","url":"http:\/\/oliverlumby.com","email":"me@oliverlumby.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Oliver Lumby", + "url": "http://oliverlumby.com", + "email": "me@oliverlumby.com", + "format": "txt" +} diff --git a/users/olalonde.json b/users/olalonde.json index 1f637494..c9784dc2 100644 --- a/users/olalonde.json +++ b/users/olalonde.json @@ -1 +1,5 @@ -{"copyright":"Olivier Lalonde","url":"http:\/\/www.syskall.com","email":"olalonde@gmail.com"} \ No newline at end of file +{ + "copyright": "Olivier Lalonde", + "url": "http://www.syskall.com", + "email": "olalonde@gmail.com" +} diff --git a/users/olav.json b/users/olav.json index f85336b0..fb17d5aa 100644 --- a/users/olav.json +++ b/users/olav.json @@ -1 +1,6 @@ -{"copyright":"Olav Schettler","url":"http:\/\/olav.net","email":"mit-license@schettler.net","format":"txt"} \ No newline at end of file +{ + "copyright": "Olav Schettler", + "url": "http://olav.net", + "email": "mit-license@schettler.net", + "format": "txt" +} diff --git a/users/olgabot.json b/users/olgabot.json index b67426e0..ddf3be9b 100644 --- a/users/olgabot.json +++ b/users/olgabot.json @@ -1 +1,3 @@ -{"copyright":"Olga Botvinnik"} \ No newline at end of file +{ + "copyright": "Olga Botvinnik" +} diff --git a/users/oliciv.json b/users/oliciv.json index 57fb8e5d..1304647d 100644 --- a/users/oliciv.json +++ b/users/oliciv.json @@ -1 +1,5 @@ -{"copyright":"Oli Allen","url":"http:\/\/www.oliallen.com","email":"oli@oliallen.com"} \ No newline at end of file +{ + "copyright": "Oli Allen", + "url": "http://www.oliallen.com", + "email": "oli@oliallen.com" +} diff --git a/users/olivere.json b/users/olivere.json index 3a866887..9b3cdfad 100644 --- a/users/olivere.json +++ b/users/olivere.json @@ -1 +1,3 @@ -{"copyright":"Oliver Eilhard"} \ No newline at end of file +{ + "copyright": "Oliver Eilhard" +} diff --git a/users/olivernn.json b/users/olivernn.json index 557bb17f..61cf44d3 100644 --- a/users/olivernn.json +++ b/users/olivernn.json @@ -1 +1,3 @@ -{"copyright":"Oliver Nightingale"} \ No newline at end of file +{ + "copyright": "Oliver Nightingale" +} diff --git a/users/olivier.json b/users/olivier.json index 1e910767..63ae617e 100644 --- a/users/olivier.json +++ b/users/olivier.json @@ -1 +1,6 @@ -{"copyright":"Olivier Lacan","url":"http:\/\/olivierlacan.com","email":"hi@olivierlacan.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Olivier Lacan", + "url": "http://olivierlacan.com", + "email": "hi@olivierlacan.com", + "format": "txt" +} diff --git a/users/ollej.json b/users/ollej.json index 2c26c2fb..6f2a2de5 100644 --- a/users/ollej.json +++ b/users/ollej.json @@ -1 +1,7 @@ -{"copyright":"Olle Johansson","url":"http:\/\/www.jxdevelopment.com","email":"Olle@Johansson.com","format":"html","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Olle Johansson", + "url": "http://www.jxdevelopment.com", + "email": "Olle@Johansson.com", + "format": "html", + "theme": "double-windsor" +} diff --git a/users/olly.json b/users/olly.json index a8d96732..e893db04 100644 --- a/users/olly.json +++ b/users/olly.json @@ -1 +1,3 @@ -{"copyright":"Oliver Legg"} \ No newline at end of file +{ + "copyright": "Oliver Legg" +} diff --git a/users/olmokramer.json b/users/olmokramer.json index b178174f..8e1ef1b8 100644 --- a/users/olmokramer.json +++ b/users/olmokramer.json @@ -1 +1,3 @@ -{"copyright":"Olmo Kramer"} \ No newline at end of file +{ + "copyright": "Olmo Kramer" +} diff --git a/users/omarithawi.json b/users/omarithawi.json index ef57aa5b..ec24bef3 100644 --- a/users/omarithawi.json +++ b/users/omarithawi.json @@ -1 +1,3 @@ -{"copyright":"Omar Al-Ithawi"} \ No newline at end of file +{ + "copyright": "Omar Al-Ithawi" +} diff --git a/users/omg.json b/users/omg.json index 92ad1835..37e7d902 100644 --- a/users/omg.json +++ b/users/omg.json @@ -1,8 +1,8 @@ { - "copyright": "Omid Gharib, https://github.com/omidgharib", - "url": "http://omidgharib.ir", - "format": "txt", - "email": "omidgharib@yahoo.com", - "gravatar": true, - "theme" : "default" -} \ No newline at end of file + "copyright": "Omid Gharib, https://github.com/omidgharib", + "url": "http://omidgharib.ir", + "format": "txt", + "email": "omidgharib@yahoo.com", + "gravatar": true, + "theme": "default" +} diff --git a/users/omi.json b/users/omi.json index 96c6f315..574fe678 100644 --- a/users/omi.json +++ b/users/omi.json @@ -1 +1,6 @@ -{"copyright":"OMI A\/S","url":"http:\/\/omi.dk","email":"support@omi.dk","format":"txt"} \ No newline at end of file +{ + "copyright": "OMI A/S", + "url": "http://omi.dk", + "email": "support@omi.dk", + "format": "txt" +} diff --git a/users/omidgharib.json b/users/omidgharib.json index 92ad1835..37e7d902 100644 --- a/users/omidgharib.json +++ b/users/omidgharib.json @@ -1,8 +1,8 @@ { - "copyright": "Omid Gharib, https://github.com/omidgharib", - "url": "http://omidgharib.ir", - "format": "txt", - "email": "omidgharib@yahoo.com", - "gravatar": true, - "theme" : "default" -} \ No newline at end of file + "copyright": "Omid Gharib, https://github.com/omidgharib", + "url": "http://omidgharib.ir", + "format": "txt", + "email": "omidgharib@yahoo.com", + "gravatar": true, + "theme": "default" +} diff --git a/users/omtinez.json b/users/omtinez.json index da7548f4..3e54264e 100644 --- a/users/omtinez.json +++ b/users/omtinez.json @@ -1 +1,3 @@ -{"copyright":"Oscar Martinez"} \ No newline at end of file +{ + "copyright": "Oscar Martinez" +} diff --git a/users/onarray.json b/users/onarray.json index d6ab2acd..09956cf3 100644 --- a/users/onarray.json +++ b/users/onarray.json @@ -1 +1,4 @@ -{"copyright":"onarray","url":"http:\/\/www.onarray.com"} \ No newline at end of file +{ + "copyright": "onarray", + "url": "http://www.onarray.com" +} diff --git a/users/onecmf.json b/users/onecmf.json index c0ada7ba..e3175148 100644 --- a/users/onecmf.json +++ b/users/onecmf.json @@ -1 +1,6 @@ -{"copyright":"\u9ea6\u5f53\u82d7\u513f\uff0cONECMF.COM","url":"http:\/\/www.onecmf.com","email":"zuojiazi@vip.qq.com","format":"html"} \ No newline at end of file +{ + "copyright": "\u9ea6\u5f53\u82d7\u513f\uff0cONECMF.COM", + "url": "http://www.onecmf.com", + "email": "zuojiazi@vip.qq.com", + "format": "html" +} diff --git a/users/onedge.json b/users/onedge.json index 11feab4f..a1e2e8fd 100644 --- a/users/onedge.json +++ b/users/onedge.json @@ -1 +1,3 @@ -{"copyright":"On Edge"} \ No newline at end of file +{ + "copyright": "On Edge" +} diff --git a/users/onenorth.json b/users/onenorth.json index 4ba6cf0c..9fa34000 100644 --- a/users/onenorth.json +++ b/users/onenorth.json @@ -1 +1,5 @@ -{"copyright":"One North Interactive","url":"http:\/\/onenorth.com","email":"support@onenorth.com"} \ No newline at end of file +{ + "copyright": "One North Interactive", + "url": "http://onenorth.com", + "email": "support@onenorth.com" +} diff --git a/users/oojs.json b/users/oojs.json index 52007da3..49b2cc8f 100644 --- a/users/oojs.json +++ b/users/oojs.json @@ -1,6 +1,6 @@ { - "copyright": "OOjs Team and other contributors", - "url": "https://github.com/wikimedia/oojs", - "format": "html", - "theme":"double-windsor" + "copyright": "OOjs Team and other contributors", + "url": "https://github.com/wikimedia/oojs", + "format": "html", + "theme": "double-windsor" } diff --git a/users/openjtalkgolang.json b/users/openjtalkgolang.json index 0fe960c9..30568cdb 100644 --- a/users/openjtalkgolang.json +++ b/users/openjtalkgolang.json @@ -1 +1,5 @@ -{"copyright":"Pedro Moraes ","url":"http:\/\/omoraes.com.br","format":"txt"} \ No newline at end of file +{ + "copyright": "Pedro Moraes ", + "url": "http://omoraes.com.br", + "format": "txt" +} diff --git a/users/oppara.json b/users/oppara.json index 2fcfb454..e395e0db 100644 --- a/users/oppara.json +++ b/users/oppara.json @@ -1,5 +1,5 @@ { - "copyright": "Nobuo OOHARA, http://www.oppara.tv/", - "url": "http://www.oppara.tv/", - "theme": "afterdark" + "copyright": "Nobuo OOHARA, http://www.oppara.tv/", + "url": "http://www.oppara.tv/", + "theme": "afterdark" } diff --git a/users/opsworks-ruby.json b/users/opsworks-ruby.json index 243df0bd..12a38bd2 100644 --- a/users/opsworks-ruby.json +++ b/users/opsworks-ruby.json @@ -1 +1,4 @@ -{"copyright":"Igor Rzegocki","url":"https:\/\/rzegocki.pl\/"} +{ + "copyright": "Igor Rzegocki", + "url": "https://rzegocki.pl/" +} diff --git a/users/orgachem.json b/users/orgachem.json index c40854df..4ca349de 100644 --- a/users/orgachem.json +++ b/users/orgachem.json @@ -1 +1,4 @@ -{"copyright":"OrgaChem","url":"https:\/\/github.com\/OrgaChem"} \ No newline at end of file +{ + "copyright": "OrgaChem", + "url": "https://github.com/OrgaChem" +} diff --git a/users/origami-tower.json b/users/origami-tower.json index 39f654da..eb5263d7 100644 --- a/users/origami-tower.json +++ b/users/origami-tower.json @@ -1 +1,7 @@ -{"copyright":"Origami Tower, http:\/\/www.origamitower.com","url":"http:\/\/www.origamitower.com","email":"contact@origamitower.com","gravatar":true,"theme":"open-sans"} \ No newline at end of file +{ + "copyright": "Origami Tower, http://www.origamitower.com", + "url": "http://www.origamitower.com", + "email": "contact@origamitower.com", + "gravatar": true, + "theme": "open-sans" +} diff --git a/users/origamitower.json b/users/origamitower.json index 1fc0c013..9b017996 100644 --- a/users/origamitower.json +++ b/users/origamitower.json @@ -1 +1,7 @@ -{"copyright":"Origami Tower, http:\/\/www.origamitower.com","url":"http:\/\/www.origamitower.com","email":"contact@origamitower.com","gravatar":true,"theme":"opensans"} \ No newline at end of file +{ + "copyright": "Origami Tower, http://www.origamitower.com", + "url": "http://www.origamitower.com", + "email": "contact@origamitower.com", + "gravatar": true, + "theme": "opensans" +} diff --git a/users/originalmachine.json b/users/originalmachine.json index b9f79c7a..accf66a4 100644 --- a/users/originalmachine.json +++ b/users/originalmachine.json @@ -1 +1,6 @@ -{"copyright":"Nicholas Young\/Original Machine, LLC","email":"dev@originalmachine.com","url":"http:\/\/originalmachine.com\/software","format":"txt"} \ No newline at end of file +{ + "copyright": "Nicholas Young/Original Machine, LLC", + "email": "dev@originalmachine.com", + "url": "http://originalmachine.com/software", + "format": "txt" +} diff --git a/users/orlin.json b/users/orlin.json index f1fa87ae..7d407182 100644 --- a/users/orlin.json +++ b/users/orlin.json @@ -1,8 +1,8 @@ { - "copyright": "Orlin M Bozhinov, http://domonad.com", - "url": "http://www.domonad.com", - "email": "orlin@domonad.com", - "format": "html", - "gravatar": false, - "theme": "default" + "copyright": "Orlin M Bozhinov, http://domonad.com", + "url": "http://www.domonad.com", + "email": "orlin@domonad.com", + "format": "html", + "gravatar": false, + "theme": "default" } diff --git a/users/orzfly.json b/users/orzfly.json index ac68fa60..1faf90ce 100644 --- a/users/orzfly.json +++ b/users/orzfly.json @@ -1 +1,7 @@ -{"copyright":"Yeechan Lu a.k.a. orzFly","url":"http:\/\/orzfly\/licenses\/mit","email":"mit@orzfly.com","format":"default","gravatar":true} \ No newline at end of file +{ + "copyright": "Yeechan Lu a.k.a. orzFly", + "url": "http://orzfly/licenses/mit", + "email": "mit@orzfly.com", + "format": "default", + "gravatar": true +} diff --git a/users/os0x.json b/users/os0x.json index abfcb920..59a9450f 100644 --- a/users/os0x.json +++ b/users/os0x.json @@ -1,5 +1,5 @@ { - "copyright": "Shogo Ohta, http://ss-o.net/", - "url": "http://ss-o.net/", - "theme": "flesch" + "copyright": "Shogo Ohta, http://ss-o.net/", + "url": "http://ss-o.net/", + "theme": "flesch" } diff --git a/users/oshida.json b/users/oshida.json index bfee8e1a..213fbd63 100644 --- a/users/oshida.json +++ b/users/oshida.json @@ -1 +1,4 @@ -{"copyright":"Takeharu Oshida","url":"https:\/\/github.com\/georgeOsdDev"} \ No newline at end of file +{ + "copyright": "Takeharu Oshida", + "url": "https://github.com/georgeOsdDev" +} diff --git a/users/oswaldoacauan.json b/users/oswaldoacauan.json index 4fa2abf8..d887640c 100644 --- a/users/oswaldoacauan.json +++ b/users/oswaldoacauan.json @@ -1 +1,5 @@ -{"copyright":"Oswaldo Acauan","url":"http:\/\/oswaldoacauan.com","email":"hello@oswaldoacauan.com"} \ No newline at end of file +{ + "copyright": "Oswaldo Acauan", + "url": "http://oswaldoacauan.com", + "email": "hello@oswaldoacauan.com" +} diff --git a/users/othree.json b/users/othree.json index 5e87495e..b71ec025 100644 --- a/users/othree.json +++ b/users/othree.json @@ -1,5 +1,5 @@ { - "copyright": "Kao, Wei-Ko", - "url": "http://blog.othree.net/", - "theme": "white cherry" + "copyright": "Kao, Wei-Ko", + "url": "http://blog.othree.net/", + "theme": "white cherry" } diff --git a/users/outline.json b/users/outline.json index 689659f8..3ed94a98 100644 --- a/users/outline.json +++ b/users/outline.json @@ -1,4 +1,4 @@ { - "copyright": "outline – we web. (http://outlinewebdesign.com)", - "url": "http://outlinewebdesign.com" + "copyright": "outline \u00e2\u20ac\u201c we web. (http://outlinewebdesign.com)", + "url": "http://outlinewebdesign.com" } diff --git a/users/outsider.json b/users/outsider.json index 5910108d..854f9787 100644 --- a/users/outsider.json +++ b/users/outsider.json @@ -1 +1,6 @@ -{"copyright":"Outsider(JeongHoon Byun), http:\/\/blog.outsider.ne.kr\/","url":"http:\/\/blog.outsider.ne.kr","theme":"afterdark","email":"outsideris@gmail.com"} \ No newline at end of file +{ + "copyright": "Outsider(JeongHoon Byun), http://blog.outsider.ne.kr/", + "url": "http://blog.outsider.ne.kr", + "theme": "afterdark", + "email": "outsideris@gmail.com" +} diff --git a/users/owebboy.json b/users/owebboy.json index f56b3b2d..8508caa7 100644 --- a/users/owebboy.json +++ b/users/owebboy.json @@ -1 +1,3 @@ -{"copyright":"Oliver Pope"} \ No newline at end of file +{ + "copyright": "Oliver Pope" +} diff --git a/users/owm.json b/users/owm.json index e20bdfcc..3680b397 100644 --- a/users/owm.json +++ b/users/owm.json @@ -1,6 +1,6 @@ { - "copyright": "Owen McGrath", - "url": "http://owm111.github.io", - "email": "owenmcgrath111@outlook.com", - "format": "html" + "copyright": "Owen McGrath", + "url": "http://owm111.github.io", + "email": "owenmcgrath111@outlook.com", + "format": "html" } diff --git a/users/oxguy3.json b/users/oxguy3.json index e8e30576..1664540d 100644 --- a/users/oxguy3.json +++ b/users/oxguy3.json @@ -1 +1,6 @@ -{"copyright":"Hayden Schiff","url":"http:\/\/schiff.io","email":"haydenschiff@gmail.com","theme":"friendly"} \ No newline at end of file +{ + "copyright": "Hayden Schiff", + "url": "http://schiff.io", + "email": "haydenschiff@gmail.com", + "theme": "friendly" +} diff --git a/users/oxy.json b/users/oxy.json index 473a586a..f12975ff 100644 --- a/users/oxy.json +++ b/users/oxy.json @@ -1 +1,4 @@ -{"copyright":"Oskar Sch\u00f6ldstr\u00f6m, http:\/\/www.oxy.fi","url":"http:\/\/www.oxy.fi"} \ No newline at end of file +{ + "copyright": "Oskar Sch\u00f6ldstr\u00f6m, http://www.oxy.fi", + "url": "http://www.oxy.fi" +} diff --git a/users/ozh.json b/users/ozh.json index a1363055..00118734 100644 --- a/users/ozh.json +++ b/users/ozh.json @@ -1 +1,6 @@ -{"copyright":"Ozh, http:\/\/ozh.org\/","url":"http:\/\/ozh.org\/","email":"ozh at ozh dot org","format":"html"} \ No newline at end of file +{ + "copyright": "Ozh, http://ozh.org/", + "url": "http://ozh.org/", + "email": "ozh at ozh dot org", + "format": "html" +} diff --git a/users/ozzyr.json b/users/ozzyr.json index 35e7d6a0..6ff8855d 100644 --- a/users/ozzyr.json +++ b/users/ozzyr.json @@ -1 +1,6 @@ -{"copyright":"Ozzy Rodriguez","url":"https:\/\/ozzyrodriguez.com","email":"ozzy@ozzyrodriguez.com","gravatar":true} +{ + "copyright": "Ozzy Rodriguez", + "url": "https://ozzyrodriguez.com", + "email": "ozzy@ozzyrodriguez.com", + "gravatar": true +} diff --git a/users/pablodv.json b/users/pablodv.json index 31b6b133..e53f4e02 100644 --- a/users/pablodv.json +++ b/users/pablodv.json @@ -1 +1,3 @@ -{"copyright":"Pablo del Vecchio"} \ No newline at end of file +{ + "copyright": "Pablo del Vecchio" +} diff --git a/users/pablojim.json b/users/pablojim.json index a6b974dc..1cadf353 100644 --- a/users/pablojim.json +++ b/users/pablojim.json @@ -1 +1,3 @@ -{"copyright":"Barry Fitzgerald"} \ No newline at end of file +{ + "copyright": "Barry Fitzgerald" +} diff --git a/users/pacbard.json b/users/pacbard.json index 5729dda2..10e39699 100644 --- a/users/pacbard.json +++ b/users/pacbard.json @@ -1 +1,4 @@ -{"copyright":"Emanuele Bardelli","email":"bardellie@gmail.com"} \ No newline at end of file +{ + "copyright": "Emanuele Bardelli", + "email": "bardellie@gmail.com" +} diff --git a/users/padde.json b/users/padde.json index b6d5803b..3c42f12a 100644 --- a/users/padde.json +++ b/users/padde.json @@ -1 +1,3 @@ -{"copyright":"Patrick Oscity"} \ No newline at end of file +{ + "copyright": "Patrick Oscity" +} diff --git a/users/pagoda.json b/users/pagoda.json index 0856bcc3..95656bed 100644 --- a/users/pagoda.json +++ b/users/pagoda.json @@ -1 +1,3 @@ -{"copyright":"Pagodabox INC"} \ No newline at end of file +{ + "copyright": "Pagodabox INC" +} diff --git a/users/pagodabox.json b/users/pagodabox.json index 3e72097e..c09fde4a 100644 --- a/users/pagodabox.json +++ b/users/pagodabox.json @@ -1 +1,6 @@ -{"copyright":"Pagodabox.com","url":"https:\/\/pagodabox.com","email":"hullo@pagodabox.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Pagodabox.com", + "url": "https://pagodabox.com", + "email": "hullo@pagodabox.com", + "format": "txt" +} diff --git a/users/pahnin.json b/users/pahnin.json index 31f331c1..05de2ed1 100644 --- a/users/pahnin.json +++ b/users/pahnin.json @@ -1 +1,6 @@ -{"copyright":"Phanindra Srungavarapu","url":"http:\/\/phanindras.com","email":"pahninsd@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Phanindra Srungavarapu", + "url": "http://phanindras.com", + "email": "pahninsd@gmail.com", + "format": "txt" +} diff --git a/users/palleas.json b/users/palleas.json index 2dc1f107..0b81767f 100644 --- a/users/palleas.json +++ b/users/palleas.json @@ -1,6 +1,6 @@ { - "copyright": "Romain 'Palleas' Pouclet, http://romain-pouclet.com", - "url": "http://romain-pouclet.com", - "email": "romain.pouclet@gmail.com", - "gravatar": true + "copyright": "Romain 'Palleas' Pouclet, http://romain-pouclet.com", + "url": "http://romain-pouclet.com", + "email": "romain.pouclet@gmail.com", + "gravatar": true } diff --git a/users/panjiesw.json b/users/panjiesw.json index ebd17402..627d0fdf 100644 --- a/users/panjiesw.json +++ b/users/panjiesw.json @@ -1,6 +1,6 @@ { - "copyright": "Panjie Setiawan Wicaksono", - "url": "https://panjiesw.life", - "email": "panjie@panjiesw.com", - "gravatar": true -} \ No newline at end of file + "copyright": "Panjie Setiawan Wicaksono", + "url": "https://panjiesw.life", + "email": "panjie@panjiesw.com", + "gravatar": true +} diff --git a/users/pankaj.json b/users/pankaj.json index f6556b06..ce1275fb 100644 --- a/users/pankaj.json +++ b/users/pankaj.json @@ -1 +1,6 @@ -{"copyright":"Pankaj Kumar","url":"http:\/\/panks.me","email":"me@panks.me","format":"txt"} \ No newline at end of file +{ + "copyright": "Pankaj Kumar", + "url": "http://panks.me", + "email": "me@panks.me", + "format": "txt" +} diff --git a/users/parker.json b/users/parker.json index 355f5eb1..88672c5d 100644 --- a/users/parker.json +++ b/users/parker.json @@ -1 +1,6 @@ -{"copyright":"Parker Moore","url":"http:\/\/parkermoore.de","email":"desk@parkermoore.de","format":"txt"} \ No newline at end of file +{ + "copyright": "Parker Moore", + "url": "http://parkermoore.de", + "email": "desk@parkermoore.de", + "format": "txt" +} diff --git a/users/parkere.json b/users/parkere.json index a69ec886..7fcbd868 100644 --- a/users/parkere.json +++ b/users/parkere.json @@ -1 +1,3 @@ -{"copyright":"Parker Evans"} \ No newline at end of file +{ + "copyright": "Parker Evans" +} diff --git a/users/parryc.json b/users/parryc.json index cba73098..1a0f40ef 100644 --- a/users/parryc.json +++ b/users/parryc.json @@ -1 +1,6 @@ -{"copyright":"Parry Cadwallader","url":"http:\/\/parryc.com","email":"parrycadwallader@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Parry Cadwallader", + "url": "http://parryc.com", + "email": "parrycadwallader@gmail.com", + "format": "txt" +} diff --git a/users/partkyle.json b/users/partkyle.json index d7078536..4183c4db 100644 --- a/users/partkyle.json +++ b/users/partkyle.json @@ -1 +1,3 @@ -{"copyright":"Kyle Partridge"} \ No newline at end of file +{ + "copyright": "Kyle Partridge" +} diff --git a/users/passcod.json b/users/passcod.json index a7e3d668..8ac34a65 100644 --- a/users/passcod.json +++ b/users/passcod.json @@ -1,4 +1,4 @@ { - "copyright": "Félix Saparelli", - "url": "http://passcod.net" + "copyright": "F\u00c3\u00a9lix Saparelli", + "url": "http://passcod.net" } diff --git a/users/passelin.json b/users/passelin.json index 0e540872..0f4c71f6 100644 --- a/users/passelin.json +++ b/users/passelin.json @@ -1 +1,4 @@ -{"copyright":"Pierre Asselin","url":"http:\/\/pierre.asselin.info"} \ No newline at end of file +{ + "copyright": "Pierre Asselin", + "url": "http://pierre.asselin.info" +} diff --git a/users/patrick.json b/users/patrick.json index 889121fe..b29ae08d 100644 --- a/users/patrick.json +++ b/users/patrick.json @@ -1 +1,3 @@ -{"copyright":"Patrick Hamann"} \ No newline at end of file +{ + "copyright": "Patrick Hamann" +} diff --git a/users/patricmutwiri.json b/users/patricmutwiri.json index 2348a199..d287d756 100644 --- a/users/patricmutwiri.json +++ b/users/patricmutwiri.json @@ -1,7 +1,7 @@ { - "copyright": "Patrick Mutwiri, http://patric.xyz", - "url": "http://patric.xyz", - "email": "dev@patric.xyz", - "theme": "material-pink", - "gravatar": true + "copyright": "Patrick Mutwiri, http://patric.xyz", + "url": "http://patric.xyz", + "email": "dev@patric.xyz", + "theme": "material-pink", + "gravatar": true } diff --git a/users/paul-vollmer.json b/users/paul-vollmer.json index a88004d0..3d533184 100644 --- a/users/paul-vollmer.json +++ b/users/paul-vollmer.json @@ -1,7 +1,7 @@ { - "copyright": "paul vollmer, https://github.com/paulvollmer", - "url": "https://github.com/paulvollmer", - "format": "html", - "gravatar": false, - "theme": "plaintext" + "copyright": "paul vollmer, https://github.com/paulvollmer", + "url": "https://github.com/paulvollmer", + "format": "html", + "gravatar": false, + "theme": "plaintext" } diff --git a/users/paul.json b/users/paul.json index 71426add..1cb400f9 100644 --- a/users/paul.json +++ b/users/paul.json @@ -1 +1,4 @@ -{"copyright":"Paul Miller (http:\/\/paulmillr.com\/)","format":"txt"} \ No newline at end of file +{ + "copyright": "Paul Miller (http://paulmillr.com/)", + "format": "txt" +} diff --git a/users/paulcuth.json b/users/paulcuth.json index 4e84483b..6e06e8c5 100644 --- a/users/paulcuth.json +++ b/users/paulcuth.json @@ -1,4 +1,4 @@ { - "copyright": "Paul Cuthbertson, http://paulcuth.me.uk", - "url": "http://paulcuth.me.uk" + "copyright": "Paul Cuthbertson, http://paulcuth.me.uk", + "url": "http://paulcuth.me.uk" } diff --git a/users/paulf.json b/users/paulf.json index 8ee98b24..91ec72c6 100644 --- a/users/paulf.json +++ b/users/paulf.json @@ -1 +1,6 @@ -{"copyright":"Paul Freeband","url":"https:\/\/github.com\/paulfreeband","email":"paulfreeband@gmail.com","format":"html"} +{ + "copyright": "Paul Freeband", + "url": "https://github.com/paulfreeband", + "email": "paulfreeband@gmail.com", + "format": "html" +} diff --git a/users/paulmillr.json b/users/paulmillr.json index 71426add..1cb400f9 100644 --- a/users/paulmillr.json +++ b/users/paulmillr.json @@ -1 +1,4 @@ -{"copyright":"Paul Miller (http:\/\/paulmillr.com\/)","format":"txt"} \ No newline at end of file +{ + "copyright": "Paul Miller (http://paulmillr.com/)", + "format": "txt" +} diff --git a/users/paulmoore.json b/users/paulmoore.json index 061fd812..d5ac7f78 100644 --- a/users/paulmoore.json +++ b/users/paulmoore.json @@ -1 +1,6 @@ -{"copyright":"Paul Moore","url":"http:\/\/paul-moore.ca","email":"paul.andrewharrison.moore@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Paul Moore", + "url": "http://paul-moore.ca", + "email": "paul.andrewharrison.moore@gmail.com", + "format": "txt" +} diff --git a/users/paulredmond.json b/users/paulredmond.json index 6e39261c..c57b9da7 100644 --- a/users/paulredmond.json +++ b/users/paulredmond.json @@ -1 +1,3 @@ -{"copyright":"Paul Redmond"} \ No newline at end of file +{ + "copyright": "Paul Redmond" +} diff --git a/users/paulrobertlloyd.json b/users/paulrobertlloyd.json index 07d48fa8..08b925c5 100644 --- a/users/paulrobertlloyd.json +++ b/users/paulrobertlloyd.json @@ -1 +1,4 @@ -{"copyright":"Paul Robert Lloyd","url":"http:\/\/paulrobertlloyd.com"} \ No newline at end of file +{ + "copyright": "Paul Robert Lloyd", + "url": "http://paulrobertlloyd.com" +} diff --git a/users/payliu.json b/users/payliu.json index 5be140ba..99c2c7bf 100644 --- a/users/payliu.json +++ b/users/payliu.json @@ -1 +1,7 @@ -{"copyright":"Pay Liu","email":"payliu@gmail.com","format":"html","gravatar":true,"theme":"double-windsor"} +{ + "copyright": "Pay Liu", + "email": "payliu@gmail.com", + "format": "html", + "gravatar": true, + "theme": "double-windsor" +} diff --git a/users/pb.json b/users/pb.json index 2d92e87e..a311df4c 100644 --- a/users/pb.json +++ b/users/pb.json @@ -1,7 +1,7 @@ -{ - "copyright":"Patrick Burtchaell", - "email":"pburtchaell@me.com", - "url":"http://pburtchaell.com/", - "format":"html", - "gravatar":"true" +{ + "copyright": "Patrick Burtchaell", + "email": "pburtchaell@me.com", + "url": "http://pburtchaell.com/", + "format": "html", + "gravatar": "true" } diff --git a/users/pci.json b/users/pci.json index b6a8fbe7..21741888 100644 --- a/users/pci.json +++ b/users/pci.json @@ -1 +1,3 @@ -{"copyright":"Philip Ingrey"} \ No newline at end of file +{ + "copyright": "Philip Ingrey" +} diff --git a/users/pcole.json b/users/pcole.json index 2fc5f7d8..44304dfb 100644 --- a/users/pcole.json +++ b/users/pcole.json @@ -1 +1,6 @@ -{"copyright":"Philip Cole","url":"http:\/\/pcole.me","email":"philip@pcole.me","format":"txt"} \ No newline at end of file +{ + "copyright": "Philip Cole", + "url": "http://pcole.me", + "email": "philip@pcole.me", + "format": "txt" +} diff --git a/users/pdfrod.json b/users/pdfrod.json index 43c88b66..f50f665f 100644 --- a/users/pdfrod.json +++ b/users/pdfrod.json @@ -1 +1,3 @@ -{"copyright":"Pedro Rodrigues"} \ No newline at end of file +{ + "copyright": "Pedro Rodrigues" +} diff --git a/users/pdostal.json b/users/pdostal.json index f4be4350..45faf6cd 100644 --- a/users/pdostal.json +++ b/users/pdostal.json @@ -1,8 +1,8 @@ { - "copyright": "Pavel Dostál, http://pdostal.cz", - "url": "http://pdostal.cz", - "email": "pdostal@pdostal.cz", - "format": "html", - "theme": "default", - "gravatar": true + "copyright": "Pavel Dost\u00c3\u00a1l, http://pdostal.cz", + "url": "http://pdostal.cz", + "email": "pdostal@pdostal.cz", + "format": "html", + "theme": "default", + "gravatar": true } diff --git a/users/peatio.json b/users/peatio.json index 7c87aaf4..68569556 100644 --- a/users/peatio.json +++ b/users/peatio.json @@ -1 +1,5 @@ -{"copyright":"Peatio Opensource, http:\/\/peat.io","url":"http:\/\/peat.io","email":"community@peatio.com"} \ No newline at end of file +{ + "copyright": "Peatio Opensource, http://peat.io", + "url": "http://peat.io", + "email": "community@peatio.com" +} diff --git a/users/peccu.json b/users/peccu.json index 03aa6c1b..ac1b07b2 100644 --- a/users/peccu.json +++ b/users/peccu.json @@ -1 +1,4 @@ -{"copyright":"peccu","url":"https:\/\/github.com\/peccu"} \ No newline at end of file +{ + "copyright": "peccu", + "url": "https://github.com/peccu" +} diff --git a/users/pedrolamas.json b/users/pedrolamas.json index 70903bc4..c54cc306 100644 --- a/users/pedrolamas.json +++ b/users/pedrolamas.json @@ -1 +1,5 @@ -{"copyright":"Pedro Lamas","url":"https:\/\/www.pedrolamas.com","format":"txt"} +{ + "copyright": "Pedro Lamas", + "url": "https://www.pedrolamas.com", + "format": "txt" +} diff --git a/users/pelletier.json b/users/pelletier.json index 123015bd..f8591524 100644 --- a/users/pelletier.json +++ b/users/pelletier.json @@ -1 +1,3 @@ -{"copyright":"Thomas Pelletier"} \ No newline at end of file +{ + "copyright": "Thomas Pelletier" +} diff --git a/users/pemrouz.json b/users/pemrouz.json index b93190b4..7eaf9771 100644 --- a/users/pemrouz.json +++ b/users/pemrouz.json @@ -1 +1,3 @@ -{"copyright":"Pedram Emrouznejad"} +{ + "copyright": "Pedram Emrouznejad" +} diff --git a/users/penguin4games.json b/users/penguin4games.json index 660f4710..1371b18a 100644 --- a/users/penguin4games.json +++ b/users/penguin4games.json @@ -1,6 +1,6 @@ { - "copyright": "Penguin4Games, http://Penguin4Games.github.io", - "url": "http://Penguin4Games.github.io", - "format": "html", - "gravatar": true + "copyright": "Penguin4Games, http://Penguin4Games.github.io", + "url": "http://Penguin4Games.github.io", + "format": "html", + "gravatar": true } diff --git a/users/per.json b/users/per.json index cd4140c5..74ae2d79 100644 --- a/users/per.json +++ b/users/per.json @@ -1 +1,5 @@ -{"copyright":"Per Roveg\u00e5rd, http:\/\/rovegard.com","url":"http:\/\/rovegard.com","theme":"afterdark"} \ No newline at end of file +{ + "copyright": "Per Roveg\u00e5rd, http://rovegard.com", + "url": "http://rovegard.com", + "theme": "afterdark" +} diff --git a/users/petamoriken.json b/users/petamoriken.json index 452231b5..27c32231 100644 --- a/users/petamoriken.json +++ b/users/petamoriken.json @@ -1 +1,4 @@ -{"copyright":"Kenta Moriuchi","url":"http:\/\/moriken.kimamass.com"} \ No newline at end of file +{ + "copyright": "Kenta Moriuchi", + "url": "http://moriken.kimamass.com" +} diff --git a/users/pete.json b/users/pete.json index d06b6bef..9a7aea30 100644 --- a/users/pete.json +++ b/users/pete.json @@ -1 +1,8 @@ -{"copyright":"Pete Mitchell","url":"http:\/\/petemmitchell.com","email":"petemmitchell@gmail.com","format":"html","gravatar":true,"theme":"black-beauty"} \ No newline at end of file +{ + "copyright": "Pete Mitchell", + "url": "http://petemmitchell.com", + "email": "petemmitchell@gmail.com", + "format": "html", + "gravatar": true, + "theme": "black-beauty" +} diff --git a/users/peter.json b/users/peter.json index e9f15cef..4f068dff 100644 --- a/users/peter.json +++ b/users/peter.json @@ -1 +1,6 @@ -{"copyright":"Peter Huerlimann, http:\/\/peter.zone","url":"http:\/\/peter.zone","email":"peter@phnet.li","format":"txt"} \ No newline at end of file +{ + "copyright": "Peter Huerlimann, http://peter.zone", + "url": "http://peter.zone", + "email": "peter@phnet.li", + "format": "txt" +} diff --git a/users/peterc.json b/users/peterc.json index d074f622..6d5aad59 100644 --- a/users/peterc.json +++ b/users/peterc.json @@ -1 +1,4 @@ -{"copyright":"Peter Cooper","url":"http:\/\/peterc.org\/"} \ No newline at end of file +{ + "copyright": "Peter Cooper", + "url": "http://peterc.org/" +} diff --git a/users/petite.json b/users/petite.json index a22becdc..f50c020c 100644 --- a/users/petite.json +++ b/users/petite.json @@ -1 +1,3 @@ -{"copyright":"Victoria Petite"} \ No newline at end of file +{ + "copyright": "Victoria Petite" +} diff --git a/users/petitviolet.json b/users/petitviolet.json index 041c13d7..31fd9d7b 100644 --- a/users/petitviolet.json +++ b/users/petitviolet.json @@ -1,7 +1,7 @@ { - "copyright": "Hiroki Komurasaki", - "gravatar": true, - "email": "mail@petitviolet", - "url": "https://www.petitviolet.net", - "theme": "material-deep-purple" + "copyright": "Hiroki Komurasaki", + "gravatar": true, + "email": "mail@petitviolet", + "url": "https://www.petitviolet.net", + "theme": "material-deep-purple" } diff --git a/users/pf.json b/users/pf.json index 3c2a7c0e..3d0fb244 100644 --- a/users/pf.json +++ b/users/pf.json @@ -1 +1,7 @@ -{"copyright":"Pony France, https:\/\/ponyfrance.net\/","url":"https:\/\/ponyfrance.net\/","email":"contact@ponyfrance.net","format":"html","theme":"willpower"} \ No newline at end of file +{ + "copyright": "Pony France, https://ponyfrance.net/", + "url": "https://ponyfrance.net/", + "email": "contact@ponyfrance.net", + "format": "html", + "theme": "willpower" +} diff --git a/users/pfiled.json b/users/pfiled.json index 4a0dff6f..8a61d88b 100644 --- a/users/pfiled.json +++ b/users/pfiled.json @@ -1 +1,3 @@ -{"copyright":"Daniel Pfile"} \ No newline at end of file +{ + "copyright": "Daniel Pfile" +} diff --git a/users/pg.json b/users/pg.json index f57cf4a1..91a2e34c 100644 --- a/users/pg.json +++ b/users/pg.json @@ -1 +1,4 @@ -{"copyright":"Paul Geraghty","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Paul Geraghty", + "theme": "double-windsor" +} diff --git a/users/pgrenaud.json b/users/pgrenaud.json index aff330d9..9d0772d9 100644 --- a/users/pgrenaud.json +++ b/users/pgrenaud.json @@ -1 +1,5 @@ -{"copyright":"Patrick Gagnon-Renaud","url":"http:\/\/pgrenaud.com\/","email":"coding@pgrenaud.com"} \ No newline at end of file +{ + "copyright": "Patrick Gagnon-Renaud", + "url": "http://pgrenaud.com/", + "email": "coding@pgrenaud.com" +} diff --git a/users/phakin.json b/users/phakin.json index 9d760a93..c895d1da 100644 --- a/users/phakin.json +++ b/users/phakin.json @@ -1,5 +1,5 @@ { - "copyright": "Phakin Cheangkrachange", - "email": "phakin.che@gmail.com", - "format": "txt" + "copyright": "Phakin Cheangkrachange", + "email": "phakin.che@gmail.com", + "format": "txt" } diff --git a/users/phanimahesh.json b/users/phanimahesh.json index ef6c5cf2..be934860 100644 --- a/users/phanimahesh.json +++ b/users/phanimahesh.json @@ -1 +1,6 @@ -{"copyright":"J Phani Mahesh","email":"phanimahesh@gmail.com","gravatar":true,"theme":"opensans"} \ No newline at end of file +{ + "copyright": "J Phani Mahesh", + "email": "phanimahesh@gmail.com", + "gravatar": true, + "theme": "opensans" +} diff --git a/users/phaserstudio.json b/users/phaserstudio.json index 1af1c9e9..cadbf65c 100644 --- a/users/phaserstudio.json +++ b/users/phaserstudio.json @@ -1 +1,6 @@ -{"copyright":"Phaser Studio","url":"https:\/\/github.com\/phaserstudio","email":"contact.phaser.studio@gmail.com","format":"html"} \ No newline at end of file +{ + "copyright": "Phaser Studio", + "url": "https://github.com/phaserstudio", + "email": "contact.phaser.studio@gmail.com", + "format": "html" +} diff --git a/users/phawk.json b/users/phawk.json index c9f2fac3..e82da222 100644 --- a/users/phawk.json +++ b/users/phawk.json @@ -1 +1,5 @@ -{"copyright":"Peter Hawkins","url":"https:\/\/phawk.co.uk","format":"html"} +{ + "copyright": "Peter Hawkins", + "url": "https://phawk.co.uk", + "format": "html" +} diff --git a/users/phgarcia.json b/users/phgarcia.json index db42869f..aa8ece55 100644 --- a/users/phgarcia.json +++ b/users/phgarcia.json @@ -1,6 +1,6 @@ { - "copyright": "Pedro Garcia, http://phgarcia.com", - "email": "garcia.pedro.hr@gmail.com", - "gravatar": true, - "theme": "default" + "copyright": "Pedro Garcia, http://phgarcia.com", + "email": "garcia.pedro.hr@gmail.com", + "gravatar": true, + "theme": "default" } diff --git a/users/phiber.json b/users/phiber.json index 0200b1d5..e7fb92f8 100644 --- a/users/phiber.json +++ b/users/phiber.json @@ -1 +1,7 @@ -{"copyright":"phiber","url":"http:\/\/phiber.coda-dz.com","email":"ghoucine@gmail.com","format":"html","theme":"opensans"} +{ + "copyright": "phiber", + "url": "http://phiber.coda-dz.com", + "email": "ghoucine@gmail.com", + "format": "html", + "theme": "opensans" +} diff --git a/users/phibermit.json b/users/phibermit.json index 4ba3b491..57a9817f 100644 --- a/users/phibermit.json +++ b/users/phibermit.json @@ -1,3 +1,3 @@ { - "copyright": "Housseyn Guettaf, http://coda-dz.com" + "copyright": "Housseyn Guettaf, http://coda-dz.com" } diff --git a/users/philippbosch.json b/users/philippbosch.json index cc79a977..928078cb 100644 --- a/users/philippbosch.json +++ b/users/philippbosch.json @@ -1,4 +1,4 @@ { - "copyright": "Philipp Bosch, http://pb.io/", - "url": "http://pb.io/" + "copyright": "Philipp Bosch, http://pb.io/", + "url": "http://pb.io/" } diff --git a/users/philippwiddra.json b/users/philippwiddra.json index 9fe11ae8..c746ecc0 100644 --- a/users/philippwiddra.json +++ b/users/philippwiddra.json @@ -1 +1,5 @@ -{"copyright":"Philipp Widdra","theme":"double-windsor","email":"philipp.widdra@gmail.com"} \ No newline at end of file +{ + "copyright": "Philipp Widdra", + "theme": "double-windsor", + "email": "philipp.widdra@gmail.com" +} diff --git a/users/philtr.json b/users/philtr.json index eebafab8..8e56abc8 100644 --- a/users/philtr.json +++ b/users/philtr.json @@ -1 +1,5 @@ -{"copyright":"Phillip Ridlen","url":"http:\/\/phillipridlen.com","email":"p@rdln.net"} \ No newline at end of file +{ + "copyright": "Phillip Ridlen", + "url": "http://phillipridlen.com", + "email": "p@rdln.net" +} diff --git a/users/philworthington.json b/users/philworthington.json index 3f8588aa..c98bf7b1 100644 --- a/users/philworthington.json +++ b/users/philworthington.json @@ -1 +1,6 @@ -{"copyright":"Phil Worthington","url":"https:\/\/github.com\/philworthington","email":"phil.worthington22@gmail.com","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Phil Worthington", + "url": "https://github.com/philworthington", + "email": "phil.worthington22@gmail.com", + "theme": "double-windsor" +} diff --git a/users/phlipper.json b/users/phlipper.json index 9351f3d8..6c19b2a6 100644 --- a/users/phlipper.json +++ b/users/phlipper.json @@ -1 +1,7 @@ -{"copyright":"Phil Cohen","url":"http:\/\/phlippers.net","format":"txt","email":"github@phlippers.net","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Phil Cohen", + "url": "http://phlippers.net", + "format": "txt", + "email": "github@phlippers.net", + "theme": "double-windsor" +} diff --git a/users/phlux.json b/users/phlux.json index e8204cb5..807dba96 100644 --- a/users/phlux.json +++ b/users/phlux.json @@ -1 +1,7 @@ -{"copyright":"Andrew McPherson","url":"http:\/\/ehgoodenough.com","email":"ehgoodenough@gmail.com","gravatar":true,"theme":"friendly"} \ No newline at end of file +{ + "copyright": "Andrew McPherson", + "url": "http://ehgoodenough.com", + "email": "ehgoodenough@gmail.com", + "gravatar": true, + "theme": "friendly" +} diff --git a/users/phm.json b/users/phm.json index ddfa2424..988495ca 100644 --- a/users/phm.json +++ b/users/phm.json @@ -1 +1,6 @@ -{"copyright":"P. H. Madore","url":"http:\/\/phm.link","email":"moonpunter@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "P. H. Madore", + "url": "http://phm.link", + "email": "moonpunter@gmail.com", + "format": "txt" +} diff --git a/users/phucnm.json b/users/phucnm.json index 36e80dd7..6a225384 100644 --- a/users/phucnm.json +++ b/users/phucnm.json @@ -1 +1,3 @@ -{"copyright":"Phuc Nguyen"} \ No newline at end of file +{ + "copyright": "Phuc Nguyen" +} diff --git a/users/phuu.json b/users/phuu.json index 86e01c61..9d651cf2 100644 --- a/users/phuu.json +++ b/users/phuu.json @@ -1 +1,6 @@ -{"copyright":"Tom Ashworth","url":"http:\/\/phuu.net","email":"tom@phuu.net","gravatar":true} \ No newline at end of file +{ + "copyright": "Tom Ashworth", + "url": "http://phuu.net", + "email": "tom@phuu.net", + "gravatar": true +} diff --git a/users/pid.json b/users/pid.json index 557f163e..2c613c69 100644 --- a/users/pid.json +++ b/users/pid.json @@ -1 +1,7 @@ -{"copyright":"Sascha Droste, https:\/\/github.com\/pid","url":"https:\/\/github.com\/pid","email":"sascha.droste@gmail.com","gravatar":true,"theme":"black beauty"} \ No newline at end of file +{ + "copyright": "Sascha Droste, https://github.com/pid", + "url": "https://github.com/pid", + "email": "sascha.droste@gmail.com", + "gravatar": true, + "theme": "black beauty" +} diff --git a/users/piecioshka.json b/users/piecioshka.json index 0926c67c..c08ade3f 100644 --- a/users/piecioshka.json +++ b/users/piecioshka.json @@ -1 +1,3 @@ -{"copyright":"Piotr Kowalski"} \ No newline at end of file +{ + "copyright": "Piotr Kowalski" +} diff --git a/users/pierre.json b/users/pierre.json index c8ca2b08..05208f51 100644 --- a/users/pierre.json +++ b/users/pierre.json @@ -1,4 +1,4 @@ { - "copyright": "Pierre Bertet, http://pierrebertet.net", - "url": "http://pierrebertet.net" + "copyright": "Pierre Bertet, http://pierrebertet.net", + "url": "http://pierrebertet.net" } diff --git a/users/pietervanderwerff.json b/users/pietervanderwerff.json index ff69077a..7495a538 100644 --- a/users/pietervanderwerff.json +++ b/users/pietervanderwerff.json @@ -1,4 +1,4 @@ { - "copyright": "Pieter Vanderwerff", - "url": "http://pieter.io/" + "copyright": "Pieter Vanderwerff", + "url": "http://pieter.io/" } diff --git a/users/pigmon.json b/users/pigmon.json index 450b363f..c83dc36b 100644 --- a/users/pigmon.json +++ b/users/pigmon.json @@ -1 +1,3 @@ -{"copyright":"Seungbeom Lee"} \ No newline at end of file +{ + "copyright": "Seungbeom Lee" +} diff --git a/users/pikesley.json b/users/pikesley.json index a5f027ae..daf59317 100644 --- a/users/pikesley.json +++ b/users/pikesley.json @@ -1,6 +1,6 @@ { - "copyright":"Sam Pikesley", - "url": "http://pikesley.org", - "email": "sam@cruft.co", - "gravatar": true + "copyright": "Sam Pikesley", + "url": "http://pikesley.org", + "email": "sam@cruft.co", + "gravatar": true } diff --git a/users/piksel.json b/users/piksel.json index 51751530..341448fb 100644 --- a/users/piksel.json +++ b/users/piksel.json @@ -1,7 +1,7 @@ -{ - "copyright": "Nils Måsén, piksel bitworks", - "url": "http://piksel.se", - "email": "nils@piksel.se", - "gravatar": true, - "theme": "default" +{ + "copyright": "Nils M\u00c3\u00a5s\u00c3\u00a9n, piksel bitworks", + "url": "http://piksel.se", + "email": "nils@piksel.se", + "gravatar": true, + "theme": "default" } diff --git a/users/pine.json b/users/pine.json index 6032b042..b3f9ba3f 100644 --- a/users/pine.json +++ b/users/pine.json @@ -1 +1,4 @@ -{"copyright":"Pine Mizune","url":"https:\/\/github.com\/pine613"} \ No newline at end of file +{ + "copyright": "Pine Mizune", + "url": "https://github.com/pine613" +} diff --git a/users/pinjasaur.json b/users/pinjasaur.json index 131b2944..3481bc02 100644 --- a/users/pinjasaur.json +++ b/users/pinjasaur.json @@ -1,8 +1,8 @@ { - "copyright": "Paul Esch-Laurent", - "url": "https://paulisaweso.me", - "email": "p@uly.io", - "theme": "material-deep-purple", - "gravatar": true, - "format": "html" + "copyright": "Paul Esch-Laurent", + "url": "https://paulisaweso.me", + "email": "p@uly.io", + "theme": "material-deep-purple", + "gravatar": true, + "format": "html" } diff --git a/users/pipwerks.json b/users/pipwerks.json index c8525fdb..612629eb 100644 --- a/users/pipwerks.json +++ b/users/pipwerks.json @@ -1 +1,3 @@ -{"copyright":"Philip Hutchison"} \ No newline at end of file +{ + "copyright": "Philip Hutchison" +} diff --git a/users/pirosikick.json b/users/pirosikick.json index 70231e58..4703da2e 100644 --- a/users/pirosikick.json +++ b/users/pirosikick.json @@ -1 +1,4 @@ -{"copyright":"Hiroyuki Anai","url":"https:\/\/github.com\/pirosikick"} \ No newline at end of file +{ + "copyright": "Hiroyuki Anai", + "url": "https://github.com/pirosikick" +} diff --git a/users/pitomba.json b/users/pitomba.json index 25594f75..89129014 100644 --- a/users/pitomba.json +++ b/users/pitomba.json @@ -1 +1,5 @@ -{"copyright":"Pitomba Team","url":"http:\/\/pitomba.org\/","format":"html"} \ No newline at end of file +{ + "copyright": "Pitomba Team", + "url": "http://pitomba.org/", + "format": "html" +} diff --git a/users/piyush.json b/users/piyush.json index e3af96a3..103b2dc3 100644 --- a/users/piyush.json +++ b/users/piyush.json @@ -1 +1,7 @@ -{ "copyright": "Piyush Sonar, http://piyush-sonar.tk", "url": "http:\/\/piyush-soanr.tk", "email": "sonar0324@gmail.com","gravatar": true,"theme": "material"} +{ + "copyright": "Piyush Sonar, http://piyush-sonar.tk", + "url": "http://piyush-soanr.tk", + "email": "sonar0324@gmail.com", + "gravatar": true, + "theme": "material" +} diff --git a/users/piyushvarshney.json b/users/piyushvarshney.json index d5d6690d..753e3ac2 100644 --- a/users/piyushvarshney.json +++ b/users/piyushvarshney.json @@ -1 +1,6 @@ -{"copyright":"Piyush Varshney, http://piyushvarshney.cf","url":"http:\/\/piyushvarshney.cf","email":"piyushvarshney@outlook.com","gravatar": true} +{ + "copyright": "Piyush Varshney, http://piyushvarshney.cf", + "url": "http://piyushvarshney.cf", + "email": "piyushvarshney@outlook.com", + "gravatar": true +} diff --git a/users/pjbgf.json b/users/pjbgf.json index dce5066a..8852255b 100644 --- a/users/pjbgf.json +++ b/users/pjbgf.json @@ -1 +1,5 @@ -{"copyright":"Paulo Gomes","url":"http:\/\/pjbgf.xyz","email":"paulo.gomes.uk@gmail.com"} +{ + "copyright": "Paulo Gomes", + "url": "http://pjbgf.xyz", + "email": "paulo.gomes.uk@gmail.com" +} diff --git a/users/pjhampton.json b/users/pjhampton.json index 6d516f4f..9ec6a70e 100644 --- a/users/pjhampton.json +++ b/users/pjhampton.json @@ -1 +1,3 @@ -{"copyright":"Pj Hampton"} \ No newline at end of file +{ + "copyright": "Pj Hampton" +} diff --git a/users/plasticpanda.json b/users/plasticpanda.json index c965d7ed..1e5ded6c 100644 --- a/users/plasticpanda.json +++ b/users/plasticpanda.json @@ -1 +1,3 @@ -{"copyright":"Plastic Panda"} \ No newline at end of file +{ + "copyright": "Plastic Panda" +} diff --git a/users/pluma.json b/users/pluma.json index 716878c5..479a9962 100644 --- a/users/pluma.json +++ b/users/pluma.json @@ -1 +1,4 @@ -{"copyright":"Alan Plum","email":"me@pluma.io"} \ No newline at end of file +{ + "copyright": "Alan Plum", + "email": "me@pluma.io" +} diff --git a/users/pluschnikow.json b/users/pluschnikow.json index 49cf899c..1f60928b 100644 --- a/users/pluschnikow.json +++ b/users/pluschnikow.json @@ -1 +1,5 @@ -{ "copyright": "Konstantin Pluschnikow", "url": "http://pluschnikow.de", "format": "txt" } +{ + "copyright": "Konstantin Pluschnikow", + "url": "http://pluschnikow.de", + "format": "txt" +} diff --git a/users/pm.json b/users/pm.json index 71426add..1cb400f9 100644 --- a/users/pm.json +++ b/users/pm.json @@ -1 +1,4 @@ -{"copyright":"Paul Miller (http:\/\/paulmillr.com\/)","format":"txt"} \ No newline at end of file +{ + "copyright": "Paul Miller (http://paulmillr.com/)", + "format": "txt" +} diff --git a/users/pm5.json b/users/pm5.json index f7561bfa..825bde71 100644 --- a/users/pm5.json +++ b/users/pm5.json @@ -1,2 +1,3 @@ -{"copyright":"Pomin Wu"} - +{ + "copyright": "Pomin Wu" +} diff --git a/users/pmac.json b/users/pmac.json index fbf23df8..af5d9a9c 100644 --- a/users/pmac.json +++ b/users/pmac.json @@ -1 +1,5 @@ -{"copyright":"Paul McLanahan","url":"http:\/\/pmac.io","email":"paul@mclanahan.net"} \ No newline at end of file +{ + "copyright": "Paul McLanahan", + "url": "http://pmac.io", + "email": "paul@mclanahan.net" +} diff --git a/users/pmk.json b/users/pmk.json index ff730f67..39a57aa2 100644 --- a/users/pmk.json +++ b/users/pmk.json @@ -1 +1,5 @@ -{"copyright":"PMKlaassen (PMK), http:\/\/pmklaassen.com","url":"http:\/\/pmklaassen.com","email":"license@pmklaassen.com"} \ No newline at end of file +{ + "copyright": "PMKlaassen (PMK), http://pmklaassen.com", + "url": "http://pmklaassen.com", + "email": "license@pmklaassen.com" +} diff --git a/users/pmowrer.json b/users/pmowrer.json index c4f5d85f..7c8f26dd 100644 --- a/users/pmowrer.json +++ b/users/pmowrer.json @@ -1 +1,4 @@ -{"copyright":"Patrick Mowrer","url":"https:\/\/github.com\/pmowrer"} \ No newline at end of file +{ + "copyright": "Patrick Mowrer", + "url": "https://github.com/pmowrer" +} diff --git a/users/pmuellr.json b/users/pmuellr.json index 0d156f50..0407d5a0 100644 --- a/users/pmuellr.json +++ b/users/pmuellr.json @@ -1,4 +1,4 @@ { - "copyright": "Patrick Mueller, http://muellerware.org", - "url": "http://muellerware.org" + "copyright": "Patrick Mueller, http://muellerware.org", + "url": "http://muellerware.org" } diff --git a/users/poapfel.json b/users/poapfel.json index d5a76aa2..0325ae18 100644 --- a/users/poapfel.json +++ b/users/poapfel.json @@ -1 +1,3 @@ -{"copyright":"Poapfel"} \ No newline at end of file +{ + "copyright": "Poapfel" +} diff --git a/users/polem.json b/users/polem.json index 27f04a49..ff18b264 100644 --- a/users/polem.json +++ b/users/polem.json @@ -1 +1,3 @@ -{"copyright":"Paul-Emile MINY"} \ No newline at end of file +{ + "copyright": "Paul-Emile MINY" +} diff --git a/users/polossk.json b/users/polossk.json index 3f44590e..d0447d2c 100644 --- a/users/polossk.json +++ b/users/polossk.json @@ -1,6 +1,6 @@ { - "copyright": "Shangkun Shen, http://polossk.com", - "url": "http://polossk.com", - "email": "polossk_dev@126.com", - "theme": "white cherry" -} \ No newline at end of file + "copyright": "Shangkun Shen, http://polossk.com", + "url": "http://polossk.com", + "email": "polossk_dev@126.com", + "theme": "white cherry" +} diff --git a/users/ponko2.json b/users/ponko2.json index c21835ae..908e1ca5 100644 --- a/users/ponko2.json +++ b/users/ponko2.json @@ -1 +1,4 @@ -{"copyright":"Takahito Nakano","url":"https:\/\/github.com\/ponko2\/"} \ No newline at end of file +{ + "copyright": "Takahito Nakano", + "url": "https://github.com/ponko2/" +} diff --git a/users/popomore.json b/users/popomore.json index 7db2a8f3..461cb694 100644 --- a/users/popomore.json +++ b/users/popomore.json @@ -1,6 +1,6 @@ { - "copyright": "Haoliang Gao, http://chuo.me", - "url": "http://chuo.me", - "email": "sakura9515@gmail.com", - "gravatar": true + "copyright": "Haoliang Gao, http://chuo.me", + "url": "http://chuo.me", + "email": "sakura9515@gmail.com", + "gravatar": true } diff --git a/users/popoway.json b/users/popoway.json index 3b7a2a03..a83be2d7 100644 --- a/users/popoway.json +++ b/users/popoway.json @@ -1,8 +1,8 @@ { - "copyright": "Ming Lei, https://popoway.me", - "url": "https://popoway.me", - "email": "popoway@foxmail.com", - "format": "html", - "gravatar": true, - "theme": "dusk" + "copyright": "Ming Lei, https://popoway.me", + "url": "https://popoway.me", + "email": "popoway@foxmail.com", + "format": "html", + "gravatar": true, + "theme": "dusk" } diff --git a/users/porada.json b/users/porada.json index a2781439..ab1bb536 100644 --- a/users/porada.json +++ b/users/porada.json @@ -1 +1,4 @@ -{"copyright":"Dominik Porada","url":"http:\/\/dominikporada.com"} \ No newline at end of file +{ + "copyright": "Dominik Porada", + "url": "http://dominikporada.com" +} diff --git a/users/porras.json b/users/porras.json index 6ed5cd9a..6e7342f5 100644 --- a/users/porras.json +++ b/users/porras.json @@ -1 +1,3 @@ -{"copyright":"Sergio Gil P\u00e9rez de la Manga"} \ No newline at end of file +{ + "copyright": "Sergio Gil P\u00e9rez de la Manga" +} diff --git a/users/posa88.json b/users/posa88.json index c6e19db2..20a552fc 100644 --- a/users/posa88.json +++ b/users/posa88.json @@ -1,8 +1,8 @@ -{ - "copyright":"Yongbo Wu", - "url":"http://www.u14.info", - "email":"posago8@gmail.com", - "format":"html", - "gravatar":true, - "theme":"friendly" +{ + "copyright": "Yongbo Wu", + "url": "http://www.u14.info", + "email": "posago8@gmail.com", + "format": "html", + "gravatar": true, + "theme": "friendly" } diff --git a/users/pothibo.json b/users/pothibo.json index 8fd6dbca..77ed1959 100644 --- a/users/pothibo.json +++ b/users/pothibo.json @@ -1 +1,3 @@ -{"copyright":"Pier-Olivier Thibault"} \ No newline at end of file +{ + "copyright": "Pier-Olivier Thibault" +} diff --git a/users/pouya.json b/users/pouya.json index c59a9d35..26ff0279 100644 --- a/users/pouya.json +++ b/users/pouya.json @@ -1,8 +1,8 @@ { - "copyright": "Pouya Saadeghi, http://saadeghi.ir", - "url": "http://saadeghi.ir", - "format": "html", - "email": "pouya.saadeghi@gmail.com", - "gravatar": true, - "theme": "opensans" + "copyright": "Pouya Saadeghi, http://saadeghi.ir", + "url": "http://saadeghi.ir", + "format": "html", + "email": "pouya.saadeghi@gmail.com", + "gravatar": true, + "theme": "opensans" } diff --git a/users/poying.json b/users/poying.json index dbbd3dd6..2c9b3627 100644 --- a/users/poying.json +++ b/users/poying.json @@ -1 +1,5 @@ -{"copyright":"Po-Ying Chen","url":"http:\/\/poying.me","email":"poying.me@gmail.com"} \ No newline at end of file +{ + "copyright": "Po-Ying Chen", + "url": "http://poying.me", + "email": "poying.me@gmail.com" +} diff --git a/users/poyu.json b/users/poyu.json index a64aac26..bea486f7 100644 --- a/users/poyu.json +++ b/users/poyu.json @@ -1 +1,5 @@ -{"copyright": "Po-Yu Chen","url": "https:\/\/poyu.xyz","email": "me@poyu.xyz"} +{ + "copyright": "Po-Yu Chen", + "url": "https://poyu.xyz", + "email": "me@poyu.xyz" +} diff --git a/users/pragai.json b/users/pragai.json index cb2eb528..ce1a53ba 100644 --- a/users/pragai.json +++ b/users/pragai.json @@ -1 +1,6 @@ -{"copyright":"Robert Pragai","url":"http:\/\/abasys.hu","email":"info@abasys.hu","format":"txt"} \ No newline at end of file +{ + "copyright": "Robert Pragai", + "url": "http://abasys.hu", + "email": "info@abasys.hu", + "format": "txt" +} diff --git a/users/pragmaticivan.json b/users/pragmaticivan.json index 1a77e525..3ac6dab2 100644 --- a/users/pragmaticivan.json +++ b/users/pragmaticivan.json @@ -1 +1,3 @@ -{"copyright":"Ivan Santos"} \ No newline at end of file +{ + "copyright": "Ivan Santos" +} diff --git a/users/prajankya.json b/users/prajankya.json index ecabcf73..d21a98b2 100644 --- a/users/prajankya.json +++ b/users/prajankya.json @@ -1,7 +1,7 @@ { - "copyright": "Prajankya", - "url": "http://rig.solutions/Prajankya", - "email": "prajankya@rig.solutions", - "gravatar": true, - "theme": "material-teal" + "copyright": "Prajankya", + "url": "http://rig.solutions/Prajankya", + "email": "prajankya@rig.solutions", + "gravatar": true, + "theme": "material-teal" } diff --git a/users/pranavrajs.json b/users/pranavrajs.json index d7bbdc25..a658a013 100644 --- a/users/pranavrajs.json +++ b/users/pranavrajs.json @@ -1 +1,3 @@ -{"copyright":"RePranav Raj S"} \ No newline at end of file +{ + "copyright": "RePranav Raj S" +} diff --git a/users/pranay.json b/users/pranay.json index 83e37fb4..22c2a0e8 100644 --- a/users/pranay.json +++ b/users/pranay.json @@ -1 +1,6 @@ -{"copyright":"Pranay Thangeda","email":"contact@prny.me","gravatar":false,"theme":"material"} +{ + "copyright": "Pranay Thangeda", + "email": "contact@prny.me", + "gravatar": false, + "theme": "material" +} diff --git a/users/pranayt.json b/users/pranayt.json index 83e37fb4..22c2a0e8 100644 --- a/users/pranayt.json +++ b/users/pranayt.json @@ -1 +1,6 @@ -{"copyright":"Pranay Thangeda","email":"contact@prny.me","gravatar":false,"theme":"material"} +{ + "copyright": "Pranay Thangeda", + "email": "contact@prny.me", + "gravatar": false, + "theme": "material" +} diff --git a/users/prashant0598.json b/users/prashant0598.json index 8df99b42..fa5ae0ba 100644 --- a/users/prashant0598.json +++ b/users/prashant0598.json @@ -1,7 +1,7 @@ { -"copyright": "Prashant Nigam", -"email": "nigamprashant.0598@gmail.com", -"gravatar": true, -"theme": "material-deep-orange", -"format": "html" + "copyright": "Prashant Nigam", + "email": "nigamprashant.0598@gmail.com", + "gravatar": true, + "theme": "material-deep-orange", + "format": "html" } diff --git a/users/prashcr.json b/users/prashcr.json index 70061a5d..c089108f 100644 --- a/users/prashcr.json +++ b/users/prashcr.json @@ -1,6 +1,6 @@ { - "copyright": "Prashanth Chandra", - "url": "http:\/\/prashcr.xyz", - "email": "hi@prashcr.xyz", - "theme": "flesch" + "copyright": "Prashanth Chandra", + "url": "http://prashcr.xyz", + "email": "hi@prashcr.xyz", + "theme": "flesch" } diff --git a/users/pratyk.json b/users/pratyk.json index 323932d8..48a0b229 100644 --- a/users/pratyk.json +++ b/users/pratyk.json @@ -1 +1,6 @@ -{"copyright":"Pratik Desai","url":"http:\/\/pratyk.com","email":"mail@pratyk.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Pratik Desai", + "url": "http://pratyk.com", + "email": "mail@pratyk.com", + "format": "txt" +} diff --git a/users/praveen.json b/users/praveen.json index f9e37004..6e6ba97d 100644 --- a/users/praveen.json +++ b/users/praveen.json @@ -1,4 +1,4 @@ { - "copyright": "Praveen Kumar, http://apnerve.com", - "url": "http://apnerve.com" -} \ No newline at end of file + "copyright": "Praveen Kumar, http://apnerve.com", + "url": "http://apnerve.com" +} diff --git a/users/pravj.json b/users/pravj.json index 6d84b06d..bb2f89ab 100644 --- a/users/pravj.json +++ b/users/pravj.json @@ -1 +1,4 @@ -{"copyright":"Pravendra Singh","email":"hackpravj@gmail.com"} \ No newline at end of file +{ + "copyright": "Pravendra Singh", + "email": "hackpravj@gmail.com" +} diff --git a/users/preco.json b/users/preco.json index 87ea51cc..5dfe69d8 100644 --- a/users/preco.json +++ b/users/preco.json @@ -1 +1,6 @@ -{"copyright":"Plusb Preco","email":"plusb21@gmail.com","gravatar":true,"theme":"material-light-blue"} \ No newline at end of file +{ + "copyright": "Plusb Preco", + "email": "plusb21@gmail.com", + "gravatar": true, + "theme": "material-light-blue" +} diff --git a/users/prescott.json b/users/prescott.json index a208f51e..6ee650b8 100644 --- a/users/prescott.json +++ b/users/prescott.json @@ -1 +1,6 @@ -{"copyright":"MooYeol Prescott Lee, http:\/\/debug.so","url":"http:\/\/debug.so","email":"mooyoul@gmail.com","gravatar":true} \ No newline at end of file +{ + "copyright": "MooYeol Prescott Lee, http://debug.so", + "url": "http://debug.so", + "email": "mooyoul@gmail.com", + "gravatar": true +} diff --git a/users/preston.json b/users/preston.json index 9a580c8e..5cb0aeb7 100644 --- a/users/preston.json +++ b/users/preston.json @@ -1 +1,3 @@ -{"copyright":"Preston Lee"} \ No newline at end of file +{ + "copyright": "Preston Lee" +} diff --git a/users/probablywrong.json b/users/probablywrong.json index 45006f57..50077278 100644 --- a/users/probablywrong.json +++ b/users/probablywrong.json @@ -1 +1,6 @@ -{"copyright":"Were Probably Wrong","url":"http:\/\/wereprobablywrong.com","email":"github@wereprobablywrong.com","format":"html"} \ No newline at end of file +{ + "copyright": "Were Probably Wrong", + "url": "http://wereprobablywrong.com", + "email": "github@wereprobablywrong.com", + "format": "html" +} diff --git a/users/prodicus.json b/users/prodicus.json index 0da945d7..3ef3b803 100644 --- a/users/prodicus.json +++ b/users/prodicus.json @@ -1 +1,3 @@ -{"copyright":"Tasdik Rahman"} \ No newline at end of file +{ + "copyright": "Tasdik Rahman" +} diff --git a/users/proudlygeek.json b/users/proudlygeek.json index 906e9c8a..5af0f04e 100644 --- a/users/proudlygeek.json +++ b/users/proudlygeek.json @@ -1 +1,4 @@ -{"copyright":"Gianluca Bargelli","email":"g.bargelli@gmail.com"} \ No newline at end of file +{ + "copyright": "Gianluca Bargelli", + "email": "g.bargelli@gmail.com" +} diff --git a/users/prsly.json b/users/prsly.json index a96b1e92..f8f3d91e 100644 --- a/users/prsly.json +++ b/users/prsly.json @@ -1,4 +1,4 @@ { - "copyright": "Michael Petrin", - "email": "i@prsly.ru" + "copyright": "Michael Petrin", + "email": "i@prsly.ru" } diff --git a/users/pschlosser.json b/users/pschlosser.json index 02bc5e9c..8c4d0ad2 100644 --- a/users/pschlosser.json +++ b/users/pschlosser.json @@ -1,5 +1,5 @@ { - "copyright": "Peter Schlosser", - "email": "pschlosser@sonic.net", - "gravatar": true + "copyright": "Peter Schlosser", + "email": "pschlosser@sonic.net", + "gravatar": true } diff --git a/users/psykzz.json b/users/psykzz.json index 057374c9..9eded41e 100644 --- a/users/psykzz.json +++ b/users/psykzz.json @@ -1 +1,8 @@ -{"copyright":"Matt Smith, http:\/\/psykzz.co.uk","url":"http:\/\/psykzz.co.uk","email":"me@psykzz.co.uk","format":"txt","theme":"black-beauty","gravatar":true} \ No newline at end of file +{ + "copyright": "Matt Smith, http://psykzz.co.uk", + "url": "http://psykzz.co.uk", + "email": "me@psykzz.co.uk", + "format": "txt", + "theme": "black-beauty", + "gravatar": true +} diff --git a/users/psyrendust.json b/users/psyrendust.json index afa198e7..f2789713 100644 --- a/users/psyrendust.json +++ b/users/psyrendust.json @@ -1 +1,5 @@ -{"copyright":"Larry Gordon, https:\/\/github.com\/psyrendust","url":"https:\/\/github.com\/psyrendust","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Larry Gordon, https://github.com/psyrendust", + "url": "https://github.com/psyrendust", + "theme": "double-windsor" +} diff --git a/users/pt.json b/users/pt.json index 375014e7..8f08a896 100644 --- a/users/pt.json +++ b/users/pt.json @@ -1 +1,6 @@ -{"copyright":"Pranay Thangeda","email":"pranay.thangeda@gmail.com","gravatar":true,"theme":"material"} \ No newline at end of file +{ + "copyright": "Pranay Thangeda", + "email": "pranay.thangeda@gmail.com", + "gravatar": true, + "theme": "material" +} diff --git a/users/pthangeda.json b/users/pthangeda.json index 83e37fb4..22c2a0e8 100644 --- a/users/pthangeda.json +++ b/users/pthangeda.json @@ -1 +1,6 @@ -{"copyright":"Pranay Thangeda","email":"contact@prny.me","gravatar":false,"theme":"material"} +{ + "copyright": "Pranay Thangeda", + "email": "contact@prny.me", + "gravatar": false, + "theme": "material" +} diff --git a/users/pti.json b/users/pti.json index 42304589..a8a148ca 100644 --- a/users/pti.json +++ b/users/pti.json @@ -1,5 +1,5 @@ { - "copyright": "Pyramid Technologies Inc, https://pyramidacceptors.com", - "url": "https://pyramidacceptors.com/", - "theme": "friendly" + "copyright": "Pyramid Technologies Inc, https://pyramidacceptors.com", + "url": "https://pyramidacceptors.com/", + "theme": "friendly" } diff --git a/users/punkish.json b/users/punkish.json index 30f18bbe..2b4f1217 100644 --- a/users/punkish.json +++ b/users/punkish.json @@ -1 +1,6 @@ -{"copyright":"Puneet Kishor","url":"http:\/\/punkish.org","email":"1@punkish.org","format":"txt"} \ No newline at end of file +{ + "copyright": "Puneet Kishor", + "url": "http://punkish.org", + "email": "1@punkish.org", + "format": "txt" +} diff --git a/users/purdy.json b/users/purdy.json index 5042a9f3..22010e08 100644 --- a/users/purdy.json +++ b/users/purdy.json @@ -1 +1,8 @@ -{"copyright":"Joe Purdy","url":"https:\/\/joepurdy.io","email":"hello@joepurdy.io","gravatar":true,"theme":"material-blue","format":"html"} +{ + "copyright": "Joe Purdy", + "url": "https://joepurdy.io", + "email": "hello@joepurdy.io", + "gravatar": true, + "theme": "material-blue", + "format": "html" +} diff --git a/users/pushandplay.json b/users/pushandplay.json index b00733ce..0b8dfb03 100644 --- a/users/pushandplay.json +++ b/users/pushandplay.json @@ -1,8 +1,8 @@ { - "copyright": "pushandplay", - "url": "http://pushandplay.ru", - "format": "txt", - "email": "hello@pushandplay.ru", - "gravatar": true, - "theme": "default" + "copyright": "pushandplay", + "url": "http://pushandplay.ru", + "format": "txt", + "email": "hello@pushandplay.ru", + "gravatar": true, + "theme": "default" } diff --git a/users/pwmckenna.json b/users/pwmckenna.json index 3b072260..f9169b24 100644 --- a/users/pwmckenna.json +++ b/users/pwmckenna.json @@ -1 +1,3 @@ -{"copyright":"Patrick Williams"} \ No newline at end of file +{ + "copyright": "Patrick Williams" +} diff --git a/users/pwn.json b/users/pwn.json index 01313abb..83c70432 100644 --- a/users/pwn.json +++ b/users/pwn.json @@ -1 +1,6 @@ -{"copyright":"Pwn","url":"http:\/\/pwn.buzz","email":"hi@pwn.buzz","format":"txt"} \ No newline at end of file +{ + "copyright": "Pwn", + "url": "http://pwn.buzz", + "email": "hi@pwn.buzz", + "format": "txt" +} diff --git a/users/pwnall.json b/users/pwnall.json index a28bfac9..972e82ee 100644 --- a/users/pwnall.json +++ b/users/pwnall.json @@ -1 +1,5 @@ -{"copyright":"Victor Costan","email":"victor@costan.us","gravatar":true} \ No newline at end of file +{ + "copyright": "Victor Costan", + "email": "victor@costan.us", + "gravatar": true +} diff --git a/users/px.json b/users/px.json index 40b9ca83..6dd6abe3 100644 --- a/users/px.json +++ b/users/px.json @@ -1 +1,7 @@ -{"copyright":"Rob Friedman","url":"http:\/\/playerx.net","email":"px@ns1.net","format":"html","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Rob Friedman", + "url": "http://playerx.net", + "email": "px@ns1.net", + "format": "html", + "theme": "double-windsor" +} diff --git a/users/pxc.json b/users/pxc.json index e7c023cb..ce349004 100644 --- a/users/pxc.json +++ b/users/pxc.json @@ -1 +1,5 @@ -{"copyright":"Matthew Strawbridge","url":"http:\/\/www.matthewstrawbridge.com","format":"html"} \ No newline at end of file +{ + "copyright": "Matthew Strawbridge", + "url": "http://www.matthewstrawbridge.com", + "format": "html" +} diff --git a/users/pxgamer.json b/users/pxgamer.json index 29cc3921..d60630d4 100644 --- a/users/pxgamer.json +++ b/users/pxgamer.json @@ -1 +1,8 @@ -{"copyright":"Owen Voke","url":"https:\/\/pxgamer.xyz","email":"owzie123@gmail.com","gravatar": true,"theme":"material-teal","format":"html"} +{ + "copyright": "Owen Voke", + "url": "https://pxgamer.xyz", + "email": "owzie123@gmail.com", + "gravatar": true, + "theme": "material-teal", + "format": "html" +} diff --git a/users/pyyoshi.json b/users/pyyoshi.json index 8dfc3942..47468794 100644 --- a/users/pyyoshi.json +++ b/users/pyyoshi.json @@ -1 +1,3 @@ -{"copyright":"Yoshihiro Misawa"} \ No newline at end of file +{ + "copyright": "Yoshihiro Misawa" +} diff --git a/users/qfox.json b/users/qfox.json index 02a7b884..ce39b9fd 100644 --- a/users/qfox.json +++ b/users/qfox.json @@ -1 +1,6 @@ -{"copyright":"Alex Yaroshevich","url":"http:\/\/qfox.ru","email":"alex@qfox.ru","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Alex Yaroshevich", + "url": "http://qfox.ru", + "email": "alex@qfox.ru", + "theme": "double-windsor" +} diff --git a/users/qing.json b/users/qing.json index bf8fd4d6..06ee22ba 100644 --- a/users/qing.json +++ b/users/qing.json @@ -1 +1,3 @@ -{"copyright":"Qing Ma"} +{ + "copyright": "Qing Ma" +} diff --git a/users/qix1986.json b/users/qix1986.json index 12123e85..d32353df 100644 --- a/users/qix1986.json +++ b/users/qix1986.json @@ -1 +1,7 @@ -{"copyright":"Diego Rocha","url":"http:\/\/diegorocha.me","email":"qix1986@gmail.com","theme":"default","gravatar":true} +{ + "copyright": "Diego Rocha", + "url": "http://diegorocha.me", + "email": "qix1986@gmail.com", + "theme": "default", + "gravatar": true +} diff --git a/users/qorbani.json b/users/qorbani.json index 23dadfaf..e32c42d2 100644 --- a/users/qorbani.json +++ b/users/qorbani.json @@ -1 +1,8 @@ -{"copyright":"Reza Qorbani","url":"http:\/\/qorbani.com","email":"reza@qorbani.com","format":"txt","gravatar":true,"theme":"friendly"} \ No newline at end of file +{ + "copyright": "Reza Qorbani", + "url": "http://qorbani.com", + "email": "reza@qorbani.com", + "format": "txt", + "gravatar": true, + "theme": "friendly" +} diff --git a/users/qrawl.json b/users/qrawl.json index 1a0b2225..91ed6f00 100644 --- a/users/qrawl.json +++ b/users/qrawl.json @@ -1 +1,6 @@ -{"copyright":"Pierre Prinetti","url":"https:\/\/www.pierreprinetti.net","email":"me@qrawl.net","gravatar":true} \ No newline at end of file +{ + "copyright": "Pierre Prinetti", + "url": "https://www.pierreprinetti.net", + "email": "me@qrawl.net", + "gravatar": true +} diff --git a/users/quantumgraph.json b/users/quantumgraph.json index fa288746..cc63d65c 100644 --- a/users/quantumgraph.json +++ b/users/quantumgraph.json @@ -1 +1,3 @@ -{"copyright":"QuantumGraph"} \ No newline at end of file +{ + "copyright": "QuantumGraph" +} diff --git a/users/queryli.json b/users/queryli.json index 6e1bf367..696fbc90 100644 --- a/users/queryli.json +++ b/users/queryli.json @@ -1 +1,7 @@ -{"copyright":"QueryLI","url":"http:\/\/query.li","email":"hello@query.li","format":"html","gravatar": true} \ No newline at end of file +{ + "copyright": "QueryLI", + "url": "http://query.li", + "email": "hello@query.li", + "format": "html", + "gravatar": true +} diff --git a/users/questbeat.json b/users/questbeat.json index efe15fe4..5477196b 100644 --- a/users/questbeat.json +++ b/users/questbeat.json @@ -1 +1,3 @@ -{"copyright":"Katsuma Tanaka"} \ No newline at end of file +{ + "copyright": "Katsuma Tanaka" +} diff --git a/users/qwertypants.json b/users/qwertypants.json index cd6064fd..8f09533e 100644 --- a/users/qwertypants.json +++ b/users/qwertypants.json @@ -1 +1,3 @@ -{"copyright":"Wilkins Fernandez"} \ No newline at end of file +{ + "copyright": "Wilkins Fernandez" +} diff --git a/users/r15ch13.json b/users/r15ch13.json index be963264..e0732952 100644 --- a/users/r15ch13.json +++ b/users/r15ch13.json @@ -1,8 +1,8 @@ { - "copyright": "Richard Kuhnt", - "url": "https://r15ch13.de", - "email": "r15ch13+git@gmail.com", - "theme": "material-green", - "format": "html", - "gravatar": true + "copyright": "Richard Kuhnt", + "url": "https://r15ch13.de", + "email": "r15ch13+git@gmail.com", + "theme": "material-green", + "format": "html", + "gravatar": true } diff --git a/users/raananw.json b/users/raananw.json index a66fb256..7fe5d335 100644 --- a/users/raananw.json +++ b/users/raananw.json @@ -1 +1,6 @@ -{"copyright":"Raanan Weber","url":"https:\/\/github.com\/RaananW","email":"info@raananweber.com","format":"html"} \ No newline at end of file +{ + "copyright": "Raanan Weber", + "url": "https://github.com/RaananW", + "email": "info@raananweber.com", + "format": "html" +} diff --git a/users/racklin.json b/users/racklin.json index bd8a67a8..0e9b5d16 100644 --- a/users/racklin.json +++ b/users/racklin.json @@ -1 +1,4 @@ -{"copyright":"Rack Lin","email":"racklin@gmail.com"} \ No newline at end of file +{ + "copyright": "Rack Lin", + "email": "racklin@gmail.com" +} diff --git a/users/radic.json b/users/radic.json index 485e0d79..6494022e 100644 --- a/users/radic.json +++ b/users/radic.json @@ -1 +1,8 @@ -{"copyright":"Robin Radic, Radic Technologies","url":"http:\/\/radic.nl","email":"info@radic.nl","format":"html","theme":"xtansia","gravatar":true} \ No newline at end of file +{ + "copyright": "Robin Radic, Radic Technologies", + "url": "http://radic.nl", + "email": "info@radic.nl", + "format": "html", + "theme": "xtansia", + "gravatar": true +} diff --git a/users/radio-t.json b/users/radio-t.json index 9183c917..d46f7f76 100644 --- a/users/radio-t.json +++ b/users/radio-t.json @@ -1 +1,5 @@ -{"copyright":"Radio-T","email":"podcast@radio-t.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Radio-T", + "email": "podcast@radio-t.com", + "format": "txt" +} diff --git a/users/raegen.json b/users/raegen.json index b9963005..de454f20 100644 --- a/users/raegen.json +++ b/users/raegen.json @@ -1,8 +1,7 @@ - { - "copyright": "Nikola Pavlovic", - "url": "http://raegen.tech", - "email": "raegen@raegen.tech", - "theme": "material", - "gravatar": true + "copyright": "Nikola Pavlovic", + "url": "http://raegen.tech", + "email": "raegen@raegen.tech", + "theme": "material", + "gravatar": true } diff --git a/users/raf.json b/users/raf.json index af49e409..e0628e9d 100644 --- a/users/raf.json +++ b/users/raf.json @@ -1 +1,6 @@ -{"copyright":"Raffael Schmid", "url": "http://blog.yux.ch", "email": "raffael@yux.ch", "theme": "xtansia"} +{ + "copyright": "Raffael Schmid", + "url": "http://blog.yux.ch", + "email": "raffael@yux.ch", + "theme": "xtansia" +} diff --git a/users/rafamello.json b/users/rafamello.json index dfb0a8c2..4f79c381 100644 --- a/users/rafamello.json +++ b/users/rafamello.json @@ -1,2 +1,7 @@ -{"copyright":"Rafael Mello Campanari","url":"http:\/\/rafamello.com","email":"lab.rafamello@gmail.com","format":"txt", - "theme": "flesch"} \ No newline at end of file +{ + "copyright": "Rafael Mello Campanari", + "url": "http://rafamello.com", + "email": "lab.rafamello@gmail.com", + "format": "txt", + "theme": "flesch" +} diff --git a/users/raindrop.json b/users/raindrop.json index 3f6ef1af..b5b02074 100644 --- a/users/raindrop.json +++ b/users/raindrop.json @@ -1 +1,5 @@ -{"copyright":"Kim Ki-hong, http:\/\/www.underfront.com\/","url":"http:\/\/www.underfront.com\/","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Kim Ki-hong, http://www.underfront.com/", + "url": "http://www.underfront.com/", + "theme": "double-windsor" +} diff --git a/users/raja.json b/users/raja.json index d39000a0..3ed3289b 100644 --- a/users/raja.json +++ b/users/raja.json @@ -1,4 +1,4 @@ { - "copyright": "Rajesh Cherukuri, http://rxc178.github.com", - "url": "http://rxc178.github.com" -} \ No newline at end of file + "copyright": "Rajesh Cherukuri, http://rxc178.github.com", + "url": "http://rxc178.github.com" +} diff --git a/users/rajarshi.json b/users/rajarshi.json index f0e826d6..117c5af5 100644 --- a/users/rajarshi.json +++ b/users/rajarshi.json @@ -1,6 +1,6 @@ { - "copyright": "Rajarshi Bhadra (aka m45k174)", - "email": "admin@distribure.cf", - "gravatar": true, - "format": "html" + "copyright": "Rajarshi Bhadra (aka m45k174)", + "email": "admin@distribure.cf", + "gravatar": true, + "format": "html" } diff --git a/users/rajeevkannav.json b/users/rajeevkannav.json index 537ed61d..492ca0d1 100644 --- a/users/rajeevkannav.json +++ b/users/rajeevkannav.json @@ -1 +1,8 @@ -{ "copyright": "Rajeev Sharma", "url": "https://rajeevkannav.com", "email": "rajeevsharma86@gmail.com", "format": "txt", "gravatar": true, "theme": "8bits-monochrome" } +{ + "copyright": "Rajeev Sharma", + "url": "https://rajeevkannav.com", + "email": "rajeevsharma86@gmail.com", + "format": "txt", + "gravatar": true, + "theme": "8bits-monochrome" +} diff --git a/users/rajinwonderland.json b/users/rajinwonderland.json index 1ca1f53e..f638b9a1 100644 --- a/users/rajinwonderland.json +++ b/users/rajinwonderland.json @@ -1,8 +1,8 @@ { - "copyright": "Raj Singh, https://twitter.com/rajinwonderland", - "url": "https://twitter.com/rajinwonderland", - "email": "raj@novvum.io", - "format": "html", - "theme": "default", - "gravatar": true + "copyright": "Raj Singh, https://twitter.com/rajinwonderland", + "url": "https://twitter.com/rajinwonderland", + "email": "raj@novvum.io", + "format": "html", + "theme": "default", + "gravatar": true } diff --git a/users/ramanan.json b/users/ramanan.json index e4046a94..ad054091 100644 --- a/users/ramanan.json +++ b/users/ramanan.json @@ -1,6 +1,6 @@ { - "copyright": "Ramanan Sathananthasarma, http:\/\/www.ramanan.info", - "url": "http:\/\/www.ramanan.info", - "email": "ramanan@ramanan.info", - "theme": "default" -} \ No newline at end of file + "copyright": "Ramanan Sathananthasarma, http://www.ramanan.info", + "url": "http://www.ramanan.info", + "email": "ramanan@ramanan.info", + "theme": "default" +} diff --git a/users/ramin.json b/users/ramin.json index c3f90889..9a704ff0 100644 --- a/users/ramin.json +++ b/users/ramin.json @@ -1 +1,6 @@ -{"copyright":"Ramin Sedighi","url":"http:\/\/ramin.sedighi.com","email":"rsedighi@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Ramin Sedighi", + "url": "http://ramin.sedighi.com", + "email": "rsedighi@gmail.com", + "format": "txt" +} diff --git a/users/ramirio.json b/users/ramirio.json index 31c4b0d0..99b38fa3 100644 --- a/users/ramirio.json +++ b/users/ramirio.json @@ -1 +1,4 @@ -{"copyright":"Cleberson Ramirio","email":"cleberson.ramirio@gmail.com"} +{ + "copyright": "Cleberson Ramirio", + "email": "cleberson.ramirio@gmail.com" +} diff --git a/users/ramonpage.json b/users/ramonpage.json index d6ecbed1..aa8e5c01 100644 --- a/users/ramonpage.json +++ b/users/ramonpage.json @@ -1 +1,6 @@ -{"copyright":"Ramon Bispo (a.k.a. RamonPage)","url":"http:\/\/ramonpage.com","email":"contact@ramonpage.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Ramon Bispo (a.k.a. RamonPage)", + "url": "http://ramonpage.com", + "email": "contact@ramonpage.com", + "format": "txt" +} diff --git a/users/ramsey.json b/users/ramsey.json index b4ea2f50..eef11ec2 100644 --- a/users/ramsey.json +++ b/users/ramsey.json @@ -1,7 +1,7 @@ { - "copyright": "Ben Ramsey", - "url": "https://benramsey.com", - "email": "ben@benramsey.com", - "theme": "material-blue", - "gravatar": true + "copyright": "Ben Ramsey", + "url": "https://benramsey.com", + "email": "ben@benramsey.com", + "theme": "material-blue", + "gravatar": true } diff --git a/users/random-rem.json b/users/random-rem.json index b56542bc..cacde5a1 100644 --- a/users/random-rem.json +++ b/users/random-rem.json @@ -1 +1,3 @@ -{"copyright":"Random Remy Sharp"} \ No newline at end of file +{ + "copyright": "Random Remy Sharp" +} diff --git a/users/randsonjs.json b/users/randsonjs.json index 8f2fdfd6..bd47a511 100644 --- a/users/randsonjs.json +++ b/users/randsonjs.json @@ -1,6 +1,6 @@ { - "copyright" : "Randson Js", - "url" : "http:\/\/randsonjs.com", - "email" : "randson@randsonjs.com", - "theme" : "double-windsor" -} \ No newline at end of file + "copyright": "Randson Js", + "url": "http://randsonjs.com", + "email": "randson@randsonjs.com", + "theme": "double-windsor" +} diff --git a/users/raphael.json b/users/raphael.json index 479797b3..dc76f3ae 100644 --- a/users/raphael.json +++ b/users/raphael.json @@ -1,4 +1,4 @@ { - "copyright": "Raphaël Bastide, http://raphaelbastide.com", - "url": "http://raphaelbastide.com" + "copyright": "Rapha\u00c3\u00abl Bastide, http://raphaelbastide.com", + "url": "http://raphaelbastide.com" } diff --git a/users/raphaelbronsveld.json b/users/raphaelbronsveld.json index 636092c2..8f78986d 100644 --- a/users/raphaelbronsveld.json +++ b/users/raphaelbronsveld.json @@ -1 +1,3 @@ -{"copyright":"Raphael Bronsveld"} \ No newline at end of file +{ + "copyright": "Raphael Bronsveld" +} diff --git a/users/raphaelfabeni.json b/users/raphaelfabeni.json index 8357f011..3c12578b 100644 --- a/users/raphaelfabeni.json +++ b/users/raphaelfabeni.json @@ -1,5 +1,5 @@ { - "copyright":"Raphael Fabeni", - "url": "http://raphaelfabeni.com.br", - "email": "contato@raphaelfabeni.com.br" -} \ No newline at end of file + "copyright": "Raphael Fabeni", + "url": "http://raphaelfabeni.com.br", + "email": "contato@raphaelfabeni.com.br" +} diff --git a/users/rappa.json b/users/rappa.json index e0dd5687..23964319 100644 --- a/users/rappa.json +++ b/users/rappa.json @@ -1 +1,7 @@ -{"copyright":"Anthony Rappa","url":"http:\/\/rappasoft.com","email":"rappa819@gmail.com","format":"html","gravatar":true} \ No newline at end of file +{ + "copyright": "Anthony Rappa", + "url": "http://rappasoft.com", + "email": "rappa819@gmail.com", + "format": "html", + "gravatar": true +} diff --git a/users/rappasoft.json b/users/rappasoft.json index e0dd5687..23964319 100644 --- a/users/rappasoft.json +++ b/users/rappasoft.json @@ -1 +1,7 @@ -{"copyright":"Anthony Rappa","url":"http:\/\/rappasoft.com","email":"rappa819@gmail.com","format":"html","gravatar":true} \ No newline at end of file +{ + "copyright": "Anthony Rappa", + "url": "http://rappasoft.com", + "email": "rappa819@gmail.com", + "format": "html", + "gravatar": true +} diff --git a/users/rapson.json b/users/rapson.json index 2c563870..9c76aef2 100644 --- a/users/rapson.json +++ b/users/rapson.json @@ -1 +1,3 @@ -{"copyright":"David Rapson"} \ No newline at end of file +{ + "copyright": "David Rapson" +} diff --git a/users/rares.json b/users/rares.json index 3971718c..cc4fe987 100644 --- a/users/rares.json +++ b/users/rares.json @@ -1 +1,6 @@ -{"copyright":"Robert Ares","url":"http:\/\/www.robares.com","email":"rob.ares+mit@gmail.com","format":"txt"} +{ + "copyright": "Robert Ares", + "url": "http://www.robares.com", + "email": "rob.ares+mit@gmail.com", + "format": "txt" +} diff --git a/users/rasch.json b/users/rasch.json index 9d0d12c3..3d979a28 100644 --- a/users/rasch.json +++ b/users/rasch.json @@ -1 +1,6 @@ -{"copyright":"Randy Schneck","url":"http:\/\/randyschneck.com","email":"me@randyschneck.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Randy Schneck", + "url": "http://randyschneck.com", + "email": "me@randyschneck.com", + "gravatar": true +} diff --git a/users/ravigehlot.json b/users/ravigehlot.json index 58cbea69..e8eb1707 100644 --- a/users/ravigehlot.json +++ b/users/ravigehlot.json @@ -1 +1,3 @@ -{"copyright":"Ravi Gehlot"} \ No newline at end of file +{ + "copyright": "Ravi Gehlot" +} diff --git a/users/raw-engineering.json b/users/raw-engineering.json index 6fa850c2..9a1c1c2b 100644 --- a/users/raw-engineering.json +++ b/users/raw-engineering.json @@ -1 +1,5 @@ -{"copyright":"raw engineering","url":"http:\/\/raweng.com","format":"txt"} \ No newline at end of file +{ + "copyright": "raw engineering", + "url": "http://raweng.com", + "format": "txt" +} diff --git a/users/raweng.json b/users/raweng.json index 8c122441..d4ac81bf 100644 --- a/users/raweng.json +++ b/users/raweng.json @@ -1 +1,4 @@ -{"copyright":"raw engineering","url":"http:\/\/raweng.com"} +{ + "copyright": "raw engineering", + "url": "http://raweng.com" +} diff --git a/users/rawengineering.json b/users/rawengineering.json index 2a15f935..d4ac81bf 100644 --- a/users/rawengineering.json +++ b/users/rawengineering.json @@ -1 +1,4 @@ -{"copyright":"raw engineering","url":"http:\/\/raweng.com"} \ No newline at end of file +{ + "copyright": "raw engineering", + "url": "http://raweng.com" +} diff --git a/users/raypatterson.json b/users/raypatterson.json index 9abd856b..bba733cc 100644 --- a/users/raypatterson.json +++ b/users/raypatterson.json @@ -1,6 +1,6 @@ { - "copyright": "Ray Patterson, http://theraypattersonstory.com", - "url": "http://theraypattersonstory.com", - "theme": "friendly", - "gravatar": true + "copyright": "Ray Patterson, http://theraypattersonstory.com", + "url": "http://theraypattersonstory.com", + "theme": "friendly", + "gravatar": true } diff --git a/users/rbardini.json b/users/rbardini.json index 40a9c2ad..8b1e6e67 100644 --- a/users/rbardini.json +++ b/users/rbardini.json @@ -1 +1,7 @@ -{"copyright":"Rafael Bardini","url":"http:\/\/rbardini.com\/","email":"rafael@rbardini.com","theme":"double-windsor","gravatar":true} \ No newline at end of file +{ + "copyright": "Rafael Bardini", + "url": "http://rbardini.com/", + "email": "rafael@rbardini.com", + "theme": "double-windsor", + "gravatar": true +} diff --git a/users/rcpeters.json b/users/rcpeters.json index eb66178a..6df40c51 100644 --- a/users/rcpeters.json +++ b/users/rcpeters.json @@ -1,5 +1,5 @@ { - "copyright": "Robert Peters, http://rcpeters.com", - "url": "http://rcpeters.com", - "theme": "flesch" + "copyright": "Robert Peters, http://rcpeters.com", + "url": "http://rcpeters.com", + "theme": "flesch" } diff --git a/users/rcta.json b/users/rcta.json index 36c6009e..c81595a3 100644 --- a/users/rcta.json +++ b/users/rcta.json @@ -1 +1,6 @@ -{"copyright":"Rick Culpepper","url":"http:\/\/ternaryalchemy.com","email":"rick@ternaryalchemy.com","format":"html"} \ No newline at end of file +{ + "copyright": "Rick Culpepper", + "url": "http://ternaryalchemy.com", + "email": "rick@ternaryalchemy.com", + "format": "html" +} diff --git a/users/readytalk.json b/users/readytalk.json index c146c580..02c9728c 100644 --- a/users/readytalk.json +++ b/users/readytalk.json @@ -1 +1,3 @@ -{"copyright":"ReadyTalk and Contributors"} \ No newline at end of file +{ + "copyright": "ReadyTalk and Contributors" +} diff --git a/users/recoye.json b/users/recoye.json index 3bf327b2..24b72c62 100644 --- a/users/recoye.json +++ b/users/recoye.json @@ -1 +1,6 @@ -{"copyright":"recoye","url":"http:\/\/www.recoye.com","email":"mail@recoye.com","format":"txt"} \ No newline at end of file +{ + "copyright": "recoye", + "url": "http://www.recoye.com", + "email": "mail@recoye.com", + "format": "txt" +} diff --git a/users/redpumpkin.json b/users/redpumpkin.json index ce8e1c4e..057954df 100644 --- a/users/redpumpkin.json +++ b/users/redpumpkin.json @@ -1 +1,6 @@ -{"copyright":"RedPumpkin","url":"http:\/\/rp.pe.kr\/","email":"kkkyyy03@naver.com","format":"txt"} \ No newline at end of file +{ + "copyright": "RedPumpkin", + "url": "http://rp.pe.kr/", + "email": "kkkyyy03@naver.com", + "format": "txt" +} diff --git a/users/reedia.json b/users/reedia.json index 6f924db7..5529181f 100644 --- a/users/reedia.json +++ b/users/reedia.json @@ -1 +1,3 @@ -{"copyright":"Reedia Limited"} \ No newline at end of file +{ + "copyright": "Reedia Limited" +} diff --git a/users/reefaq.json b/users/reefaq.json index 485be539..7bb0536f 100644 --- a/users/reefaq.json +++ b/users/reefaq.json @@ -1 +1,4 @@ -{"copyright":"Reefaq Mohammed","email":"reefaq.mohammed@gmail.com"} \ No newline at end of file +{ + "copyright": "Reefaq Mohammed", + "email": "reefaq.mohammed@gmail.com" +} diff --git a/users/rei.json b/users/rei.json index 9273f5f6..2d4eac19 100644 --- a/users/rei.json +++ b/users/rei.json @@ -1 +1,5 @@ -{"copyright":"Mark Vasilkov","url":"http:\/\/animuchan.net\/","format":"txt"} \ No newline at end of file +{ + "copyright": "Mark Vasilkov", + "url": "http://animuchan.net/", + "format": "txt" +} diff --git a/users/rejack.json b/users/rejack.json index 81fcabfc..1c0132a4 100644 --- a/users/rejack.json +++ b/users/rejack.json @@ -1 +1,7 @@ -{"copyright":"Raphael Jackstadt","url":"https:\/\/www.rejack.us","email":"info@rejack.de","theme": "black-beauty","gravatar": true} +{ + "copyright": "Raphael Jackstadt", + "url": "https://www.rejack.us", + "email": "info@rejack.de", + "theme": "black-beauty", + "gravatar": true +} diff --git a/users/relequestual.json b/users/relequestual.json index 90215947..e4062282 100644 --- a/users/relequestual.json +++ b/users/relequestual.json @@ -1 +1,3 @@ -{"copyright":"Ben Hutton"} \ No newline at end of file +{ + "copyright": "Ben Hutton" +} diff --git a/users/relu.json b/users/relu.json index cfa6ffea..185a1dea 100644 --- a/users/relu.json +++ b/users/relu.json @@ -1 +1,3 @@ -{"copyright":"Aurel Canciu"} \ No newline at end of file +{ + "copyright": "Aurel Canciu" +} diff --git a/users/rem-test.json b/users/rem-test.json index b955cda4..94553093 100644 --- a/users/rem-test.json +++ b/users/rem-test.json @@ -1 +1,6 @@ -{"copyright":"Remy Sharp","url":"http:\/\/remysharp.com","email":"me@mysite.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Remy Sharp", + "url": "http://remysharp.com", + "email": "me@mysite.com", + "format": "txt" +} diff --git a/users/rem-test2.json b/users/rem-test2.json index 54f677d5..d7480beb 100644 --- a/users/rem-test2.json +++ b/users/rem-test2.json @@ -1 +1,6 @@ -{"copyright":"Remy Sharp","url":"http:\/\/remysharp.com","email":"me@mysite.com","format":"html"} \ No newline at end of file +{ + "copyright": "Remy Sharp", + "url": "http://remysharp.com", + "email": "me@mysite.com", + "format": "html" +} diff --git a/users/rem.json b/users/rem.json index 131dcacc..9c178e05 100644 --- a/users/rem.json +++ b/users/rem.json @@ -1,7 +1,7 @@ { - "copyright": "Remy Sharp, https://remysharp.com", - "url": "https://remysharp.com", - "email": "remy@remysharp.com", - "theme": "material-pink", - "gravatar": true + "copyright": "Remy Sharp, https://remysharp.com", + "url": "https://remysharp.com", + "email": "remy@remysharp.com", + "theme": "material-pink", + "gravatar": true } diff --git a/users/rem123.json b/users/rem123.json index b955cda4..94553093 100644 --- a/users/rem123.json +++ b/users/rem123.json @@ -1 +1,6 @@ -{"copyright":"Remy Sharp","url":"http:\/\/remysharp.com","email":"me@mysite.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Remy Sharp", + "url": "http://remysharp.com", + "email": "me@mysite.com", + "format": "txt" +} diff --git a/users/rematin.json b/users/rematin.json index f2203879..8a8dd88f 100644 --- a/users/rematin.json +++ b/users/rematin.json @@ -1 +1,3 @@ -{"copyright":"ReFouad Matin"} \ No newline at end of file +{ + "copyright": "ReFouad Matin" +} diff --git a/users/reminisceme.json b/users/reminisceme.json index 6f830af4..aac5c2df 100644 --- a/users/reminisceme.json +++ b/users/reminisceme.json @@ -1 +1,5 @@ -{"copyright":"Reminisce.me","url":"http:\/\/reminisce.me","email":"info@reminisce.me"} \ No newline at end of file +{ + "copyright": "Reminisce.me", + "url": "http://reminisce.me", + "email": "info@reminisce.me" +} diff --git a/users/remybach.json b/users/remybach.json index 1ad25b83..c4b3fb36 100644 --- a/users/remybach.json +++ b/users/remybach.json @@ -1 +1,5 @@ -{"copyright":"Remy Bach, http:\/\/remy.bach.me.uk","theme":"double-windsor","url":"http:\/\/remy.bach.me.uk"} \ No newline at end of file +{ + "copyright": "Remy Bach, http://remy.bach.me.uk", + "theme": "double-windsor", + "url": "http://remy.bach.me.uk" +} diff --git a/users/remyg.json b/users/remyg.json index ac66bfee..ce6c94b7 100644 --- a/users/remyg.json +++ b/users/remyg.json @@ -1 +1,6 @@ -{"copyright":"Remy Gardette","url":"http:\/\/remyg.com","email":"remy.gardette@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Remy Gardette", + "url": "http://remyg.com", + "email": "remy.gardette@gmail.com", + "format": "txt" +} diff --git a/users/remz.json b/users/remz.json index 7a4233e2..947a65c5 100644 --- a/users/remz.json +++ b/users/remz.json @@ -1 +1,3 @@ -{"copyright":"Remy12312321 Sharp1111322321333"} \ No newline at end of file +{ + "copyright": "Remy12312321 Sharp1111322321333" +} diff --git a/users/renatoargh.json b/users/renatoargh.json index c35fcae2..97abf4d1 100644 --- a/users/renatoargh.json +++ b/users/renatoargh.json @@ -1 +1,5 @@ -{"copyright":"Renato Gama","email":"renatoargh@gmail.com","format":"html"} \ No newline at end of file +{ + "copyright": "Renato Gama", + "email": "renatoargh@gmail.com", + "format": "html" +} diff --git a/users/rene.json b/users/rene.json index 73668e03..b384dc4a 100644 --- a/users/rene.json +++ b/users/rene.json @@ -1 +1,6 @@ -{"copyright":"Ren\u00e9 Kooi","url":"http:\/\/rene.kooi.me","email":"rene@kooi.me","format":"html"} \ No newline at end of file +{ + "copyright": "Ren\u00e9 Kooi", + "url": "http://rene.kooi.me", + "email": "rene@kooi.me", + "format": "html" +} diff --git a/users/ress.json b/users/ress.json index 81a3f4d3..a3f4b2dd 100644 --- a/users/ress.json +++ b/users/ress.json @@ -1,6 +1,6 @@ { - "copyright": "ress", - "url": "https://x39.dev", - "format": "html", - "theme": "material-deep-purple" + "copyright": "ress", + "url": "https://x39.dev", + "format": "html", + "theme": "material-deep-purple" } diff --git a/users/return1.json b/users/return1.json index 5f6c3118..46542040 100644 --- a/users/return1.json +++ b/users/return1.json @@ -1 +1,4 @@ -{"copyright":"Dominique Lederer","url":"http:\/\/www.return1.at"} \ No newline at end of file +{ + "copyright": "Dominique Lederer", + "url": "http://www.return1.at" +} diff --git a/users/revathskumar.json b/users/revathskumar.json index 55c19493..85534c8d 100644 --- a/users/revathskumar.json +++ b/users/revathskumar.json @@ -1 +1,3 @@ -{"copyright":"Revath S Kumar"} \ No newline at end of file +{ + "copyright": "Revath S Kumar" +} diff --git a/users/revi.json b/users/revi.json index 011ddb6a..77be021c 100644 --- a/users/revi.json +++ b/users/revi.json @@ -1,6 +1,6 @@ { - "copyright": "Yongmin Hong (Revi), https://revi.me", - "url": "https://revi.me", - "email": "revi@pobox.com", - "theme": "cherry" + "copyright": "Yongmin Hong (Revi), https://revi.me", + "url": "https://revi.me", + "email": "revi@pobox.com", + "theme": "cherry" } diff --git a/users/revolunet.json b/users/revolunet.json index 3f8b6070..2d52d6f1 100644 --- a/users/revolunet.json +++ b/users/revolunet.json @@ -1,5 +1,5 @@ { - "copyright": "Julien Bouquillon, revolunet", - "url": "http://revolunet.com", - "email": "julien@revolunet.com" + "copyright": "Julien Bouquillon, revolunet", + "url": "http://revolunet.com", + "email": "julien@revolunet.com" } diff --git a/users/reza.json b/users/reza.json index c2d8e489..e2dfb7f2 100644 --- a/users/reza.json +++ b/users/reza.json @@ -1 +1,7 @@ -{"copyright":"Muhamad Reza Abdul Rohim","url":"http:\/\/rezartisan.com","email":"reza.wikrama3@gmail.com","format":"html","gravatar":true} \ No newline at end of file +{ + "copyright": "Muhamad Reza Abdul Rohim", + "url": "http://rezartisan.com", + "email": "reza.wikrama3@gmail.com", + "format": "html", + "gravatar": true +} diff --git a/users/rflpazini.json b/users/rflpazini.json index b10e3c75..fddc3e7f 100644 --- a/users/rflpazini.json +++ b/users/rflpazini.json @@ -1,5 +1,5 @@ { "copyright": "Rafael Pazini", - "url": "http:\/\/rflpazini.github.io", + "url": "http://rflpazini.github.io", "email": "rflpazini@gmail.com" } diff --git a/users/rg.json b/users/rg.json index 8c9f8ced..0ab0bbf8 100644 --- a/users/rg.json +++ b/users/rg.json @@ -1,5 +1,5 @@ { - "copyright": "Ramiro Gómez", - "url": "http://ramiro.org/", - "email": "www@ramiro.org" + "copyright": "Ramiro G\u00c3\u00b3mez", + "url": "http://ramiro.org/", + "email": "www@ramiro.org" } diff --git a/users/rgoyard.json b/users/rgoyard.json index cee2e1f1..c9b311c6 100644 --- a/users/rgoyard.json +++ b/users/rgoyard.json @@ -1 +1,3 @@ -{"copyright":"Remi Goyard"} \ No newline at end of file +{ + "copyright": "Remi Goyard" +} diff --git a/users/rhardih.json b/users/rhardih.json index dcfebe65..824e35c2 100644 --- a/users/rhardih.json +++ b/users/rhardih.json @@ -1 +1,3 @@ -{"copyright":"Ren\u00e9 Hansen"} \ No newline at end of file +{ + "copyright": "Ren\u00e9 Hansen" +} diff --git a/users/rhiokim.json b/users/rhiokim.json index 45c7750c..a7272a94 100644 --- a/users/rhiokim.json +++ b/users/rhiokim.json @@ -1 +1,3 @@ -{"copyright":"Rhio Kim"} \ No newline at end of file +{ + "copyright": "Rhio Kim" +} diff --git a/users/rhlnair.json b/users/rhlnair.json index a2a0aa0e..f1a28d4e 100644 --- a/users/rhlnair.json +++ b/users/rhlnair.json @@ -1 +1,3 @@ -{"copyright":"Rahul Nair"} \ No newline at end of file +{ + "copyright": "Rahul Nair" +} diff --git a/users/rhnvrm.json b/users/rhnvrm.json index bec62e59..4a12103a 100644 --- a/users/rhnvrm.json +++ b/users/rhnvrm.json @@ -1 +1,6 @@ -{"copyright":"Rohan Verma, http://rohanverma.net","url":"http:\/\/rohanverma.net","email":"rohanverma2004@gmail.com", "gravatar": true} +{ + "copyright": "Rohan Verma, http://rohanverma.net", + "url": "http://rohanverma.net", + "email": "rohanverma2004@gmail.com", + "gravatar": true +} diff --git a/users/rhynl.json b/users/rhynl.json index 3228198d..38611ed2 100644 --- a/users/rhynl.json +++ b/users/rhynl.json @@ -1,7 +1,7 @@ { -"copyright": "Rhaynel Parra Aguiar", -"url": "https://rhynl.io", -"email": "me@rhynl.io", -"theme": "material-green", -"gravatar": true + "copyright": "Rhaynel Parra Aguiar", + "url": "https://rhynl.io", + "email": "me@rhynl.io", + "theme": "material-green", + "gravatar": true } diff --git a/users/ri7nz.json b/users/ri7nz.json index 314bc9fb..9d456e6b 100644 --- a/users/ri7nz.json +++ b/users/ri7nz.json @@ -1,8 +1,8 @@ { - "copyright": "ri7nz, https://rin.rocks/", + "copyright": "ri7nz, https://rin.rocks/", "url": "https://rin.rocks", - "email": "ri7nz.labs@gmail.com", - "format": "html", - "gravatar": "false", - "theme": "afterdark" + "email": "ri7nz.labs@gmail.com", + "format": "html", + "gravatar": "false", + "theme": "afterdark" } diff --git a/users/riadloukili.json b/users/riadloukili.json index 63181ed9..2bd53a50 100644 --- a/users/riadloukili.json +++ b/users/riadloukili.json @@ -1 +1,7 @@ -{"copyright":"Riad Loukili, http:\/\/loukili.me","url":"http:\/\/loukili.me","email":"riad.loukili@outlook.com","gravatar":true,"theme":"black-beauty"} \ No newline at end of file +{ + "copyright": "Riad Loukili, http://loukili.me", + "url": "http://loukili.me", + "email": "riad.loukili@outlook.com", + "gravatar": true, + "theme": "black-beauty" +} diff --git a/users/ribeiroevandro.json b/users/ribeiroevandro.json index 2e5f5bd0..3e607c21 100644 --- a/users/ribeiroevandro.json +++ b/users/ribeiroevandro.json @@ -1,7 +1,7 @@ { - "copyright": "Evandro Ribeiro, http://ribeiroevandro.com.br", - "url": "http://ribeiroevandro.com.br", - "email": "ribeiroevandro@live.com", - "theme": "default", - "gravatar": true + "copyright": "Evandro Ribeiro, http://ribeiroevandro.com.br", + "url": "http://ribeiroevandro.com.br", + "email": "ribeiroevandro@live.com", + "theme": "default", + "gravatar": true } diff --git a/users/ricardo.json b/users/ricardo.json index c73fe70b..3bb047f7 100644 --- a/users/ricardo.json +++ b/users/ricardo.json @@ -1,6 +1,6 @@ { - "copyright": "Ricardo Tomasi", - "url": "http://ricardo.cc/", - "email": "ricardobeat@gmail.com", - "theme": "flesch" -} \ No newline at end of file + "copyright": "Ricardo Tomasi", + "url": "http://ricardo.cc/", + "email": "ricardobeat@gmail.com", + "theme": "flesch" +} diff --git a/users/ricardogouveia3.json b/users/ricardogouveia3.json index a127ead5..ac81fd8e 100644 --- a/users/ricardogouveia3.json +++ b/users/ricardogouveia3.json @@ -1,7 +1,7 @@ { - "copyright": "Ricardo Gouveia, http://rcrd.me/", - "url": "http://rcrd.me/", - "email": "contato@rcrd.me", - "gravatar": true, - "theme": "dusk" + "copyright": "Ricardo Gouveia, http://rcrd.me/", + "url": "http://rcrd.me/", + "email": "contato@rcrd.me", + "gravatar": true, + "theme": "dusk" } diff --git a/users/richardcooper.json b/users/richardcooper.json index 6822236a..294d46a6 100644 --- a/users/richardcooper.json +++ b/users/richardcooper.json @@ -1,7 +1,7 @@ { - "copyright": "Richard Cooper", - "url": "https://www.bennetts.co.uk/about-us", - "email": "richard.cooper@bennetts.co.uk", - "gravatar": true, - "theme": "eula-modern" -} \ No newline at end of file + "copyright": "Richard Cooper", + "url": "https://www.bennetts.co.uk/about-us", + "email": "richard.cooper@bennetts.co.uk", + "gravatar": true, + "theme": "eula-modern" +} diff --git a/users/richo.json b/users/richo.json index 89a1c9b7..626d45e9 100644 --- a/users/richo.json +++ b/users/richo.json @@ -1,6 +1,6 @@ { - "copyright": "Richo Healey, http://psych0.tk", - "url": "http://psych0.tk", - "theme": "afterdark", - "email": "richo@psych0tik.net" + "copyright": "Richo Healey, http://psych0.tk", + "url": "http://psych0.tk", + "theme": "afterdark", + "email": "richo@psych0tik.net" } diff --git a/users/richsage.json b/users/richsage.json index 5b3d4800..d49b7d7f 100644 --- a/users/richsage.json +++ b/users/richsage.json @@ -1 +1,3 @@ -{"copyright":"Rich Sage"} \ No newline at end of file +{ + "copyright": "Rich Sage" +} diff --git a/users/rickary.json b/users/rickary.json index 515193de..eea5208f 100644 --- a/users/rickary.json +++ b/users/rickary.json @@ -1 +1,4 @@ -{"copyright":"Rick Chadwick","url":"http:\/\/madeinbeta.co.uk"} \ No newline at end of file +{ + "copyright": "Rick Chadwick", + "url": "http://madeinbeta.co.uk" +} diff --git a/users/rictorres.json b/users/rictorres.json index 6e5a9ad9..072f613a 100644 --- a/users/rictorres.json +++ b/users/rictorres.json @@ -1 +1,5 @@ -{"copyright":"Ricardo Torres, http:\/\/rictorres.com","url":"http:\/\/rictorres.com","format":"html"} \ No newline at end of file +{ + "copyright": "Ricardo Torres, http://rictorres.com", + "url": "http://rictorres.com", + "format": "html" +} diff --git a/users/rigging.json b/users/rigging.json index 15e2fb22..c3d6a0ed 100644 --- a/users/rigging.json +++ b/users/rigging.json @@ -1 +1,3 @@ -{"copyright":"Mike McNeil"} \ No newline at end of file +{ + "copyright": "Mike McNeil" +} diff --git a/users/riju.json b/users/riju.json index 55ec74d8..0dc8bf5e 100644 --- a/users/riju.json +++ b/users/riju.json @@ -1,7 +1,7 @@ { - "copyright": "Riju Ghosh, https://rijughosh.in", - "url": "http://rijughosh.in", - "email": "ghoshriju33@gmail.com", - "gravatar": true, - "theme": "material-light-blue" + "copyright": "Riju Ghosh, https://rijughosh.in", + "url": "http://rijughosh.in", + "email": "ghoshriju33@gmail.com", + "gravatar": true, + "theme": "material-light-blue" } diff --git a/users/rinaldi.json b/users/rinaldi.json index 44b9e0f8..9cc0bf4d 100644 --- a/users/rinaldi.json +++ b/users/rinaldi.json @@ -1 +1,4 @@ -{"copyright":"Rafael Rinaldi","url":"http:\/\/rinaldi.io"} \ No newline at end of file +{ + "copyright": "Rafael Rinaldi", + "url": "http://rinaldi.io" +} diff --git a/users/ringe.json b/users/ringe.json index 6935f3f7..e73325d5 100644 --- a/users/ringe.json +++ b/users/ringe.json @@ -1 +1,6 @@ -{"copyright":"Runar Ingebrigtsen","url":"http:\/\/rin.no","email":"runar@rin.no","format":"txt"} \ No newline at end of file +{ + "copyright": "Runar Ingebrigtsen", + "url": "http://rin.no", + "email": "runar@rin.no", + "format": "txt" +} diff --git a/users/rip.json b/users/rip.json index 7e5d100e..0eb29594 100644 --- a/users/rip.json +++ b/users/rip.json @@ -1,4 +1,4 @@ { - "copyright": "Thomas Ingram, http://www.rip-lang.org", - "url": "http://www.rip-lang.org/" + "copyright": "Thomas Ingram, http://www.rip-lang.org", + "url": "http://www.rip-lang.org/" } diff --git a/users/river24.json b/users/river24.json index e08eda05..9363ea35 100644 --- a/users/river24.json +++ b/users/river24.json @@ -1 +1,6 @@ -{"copyright":"Nao Kawanishi","url":"http:\/\/nao.river24.net","email":"river2470@gmail.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Nao Kawanishi", + "url": "http://nao.river24.net", + "email": "river2470@gmail.com", + "gravatar": true +} diff --git a/users/rixius.json b/users/rixius.json index 532461a5..ea0bd867 100644 --- a/users/rixius.json +++ b/users/rixius.json @@ -1 +1,5 @@ -{"copyright":"Stephen \"Rixius\" Middleton","url":"http:\/\/rixi.us","email":"stephen@rixi.us"} \ No newline at end of file +{ + "copyright": "Stephen \"Rixius\" Middleton", + "url": "http://rixi.us", + "email": "stephen@rixi.us" +} diff --git a/users/rizky.json b/users/rizky.json index 38804f46..4bf20c99 100644 --- a/users/rizky.json +++ b/users/rizky.json @@ -1 +1,4 @@ -{"copyright":"Rizky Farhan","email":"rizky.farhan@gmail.com"} \ No newline at end of file +{ + "copyright": "Rizky Farhan", + "email": "rizky.farhan@gmail.com" +} diff --git a/users/rjw57.json b/users/rjw57.json index 42e48dfb..b411dcaf 100644 --- a/users/rjw57.json +++ b/users/rjw57.json @@ -1 +1,5 @@ -{"copyright":"Rich Wareham","url":"https:\/\/www.richwareham.com","email":"rich.licensing@richwareham.com"} \ No newline at end of file +{ + "copyright": "Rich Wareham", + "url": "https://www.richwareham.com", + "email": "rich.licensing@richwareham.com" +} diff --git a/users/rkh.json b/users/rkh.json index c44a3f29..c9bd7119 100644 --- a/users/rkh.json +++ b/users/rkh.json @@ -1 +1,3 @@ -{"copyright":"Konstantin Haase"} \ No newline at end of file +{ + "copyright": "Konstantin Haase" +} diff --git a/users/rkjun.json b/users/rkjun.json index 446d24b6..3f42950c 100644 --- a/users/rkjun.json +++ b/users/rkjun.json @@ -1,4 +1,4 @@ { - "copyright":"Juntai Park", - "format":"txt" + "copyright": "Juntai Park", + "format": "txt" } diff --git a/users/rl.json b/users/rl.json index 22b450ad..010e18c2 100644 --- a/users/rl.json +++ b/users/rl.json @@ -1 +1,7 @@ -{"copyright":"Riad Loukili","url":"http:\/\/loukili.me","email":"riad.loukili@outlook.com","gravatar":true,"theme":"black-beauty"} \ No newline at end of file +{ + "copyright": "Riad Loukili", + "url": "http://loukili.me", + "email": "riad.loukili@outlook.com", + "gravatar": true, + "theme": "black-beauty" +} diff --git a/users/rloopteam.json b/users/rloopteam.json index c9ff48da..52a4293c 100644 --- a/users/rloopteam.json +++ b/users/rloopteam.json @@ -1 +1,5 @@ -{"copyright":"rLoop, Incorporated","url":"http:\/\/rloop.org","email":"hi@rloop.org"} \ No newline at end of file +{ + "copyright": "rLoop, Incorporated", + "url": "http://rloop.org", + "email": "hi@rloop.org" +} diff --git a/users/rm.json b/users/rm.json index 6b97e20c..301846b3 100644 --- a/users/rm.json +++ b/users/rm.json @@ -1 +1,3 @@ -{"copyright":"Raphael Michel"} \ No newline at end of file +{ + "copyright": "Raphael Michel" +} diff --git a/users/rmartin.json b/users/rmartin.json index 7f916fda..db61ce52 100644 --- a/users/rmartin.json +++ b/users/rmartin.json @@ -1,5 +1,5 @@ { - "copyright": "Remy Martin, http://rmartin.co", - "url": "http://rmartin.co", - "theme": "afterdark" + "copyright": "Remy Martin, http://rmartin.co", + "url": "http://rmartin.co", + "theme": "afterdark" } diff --git a/users/rmf.json b/users/rmf.json index 1369c9b2..3b026281 100644 --- a/users/rmf.json +++ b/users/rmf.json @@ -1,7 +1,7 @@ { - "copyright":"Rob M Frawley 2nd, http://robfrawley.com", - "url":"http://robfrawley.com", - "email":"license@robfrawley.com", - "theme":"material-pink", - "gravatar":true + "copyright": "Rob M Frawley 2nd, http://robfrawley.com", + "url": "http://robfrawley.com", + "email": "license@robfrawley.com", + "theme": "material-pink", + "gravatar": true } diff --git a/users/rmlewisuk.json b/users/rmlewisuk.json index 93df1faf..b76c8ba6 100644 --- a/users/rmlewisuk.json +++ b/users/rmlewisuk.json @@ -1 +1,6 @@ -{"copyright":"Robb Lewis","url":"http:\/\/robblewis.me","gravatar":true,"theme":"opensans"} \ No newline at end of file +{ + "copyright": "Robb Lewis", + "url": "http://robblewis.me", + "gravatar": true, + "theme": "opensans" +} diff --git a/users/rmm5t.json b/users/rmm5t.json index dbf389bc..3dcb4805 100644 --- a/users/rmm5t.json +++ b/users/rmm5t.json @@ -1,7 +1,7 @@ { - "copyright": "Ryan McGeary", - "url": "http://ryan.mcgeary.org", - "email": "ryan@mcgeary.org", - "gravatar": true, - "theme": "hmt-blue" + "copyright": "Ryan McGeary", + "url": "http://ryan.mcgeary.org", + "email": "ryan@mcgeary.org", + "gravatar": true, + "theme": "hmt-blue" } diff --git a/users/rmsubekti.json b/users/rmsubekti.json index 0311d54d..d1a81570 100644 --- a/users/rmsubekti.json +++ b/users/rmsubekti.json @@ -1,5 +1,5 @@ { - "copyright": "Rahmat Subekti", - "email": "rahmatsubekti@live.com", - "format": "txt" + "copyright": "Rahmat Subekti", + "email": "rahmatsubekti@live.com", + "format": "txt" } diff --git a/users/rmunn.json b/users/rmunn.json index 0879fbd0..c6ba6d05 100644 --- a/users/rmunn.json +++ b/users/rmunn.json @@ -1 +1,4 @@ -{"copyright":"Robin Munn","email":"rmunn@pobox.com"} \ No newline at end of file +{ + "copyright": "Robin Munn", + "email": "rmunn@pobox.com" +} diff --git a/users/rnelson.json b/users/rnelson.json index 9151bede..0979e399 100644 --- a/users/rnelson.json +++ b/users/rnelson.json @@ -1 +1,7 @@ -{"copyright":"Ross Nelson","url":"http:\/\/rnelson.me","email":"ross.nelson@gmail.com","gravatar":true,"theme":"friendly"} \ No newline at end of file +{ + "copyright": "Ross Nelson", + "url": "http://rnelson.me", + "email": "ross.nelson@gmail.com", + "gravatar": true, + "theme": "friendly" +} diff --git a/users/rob.json b/users/rob.json index 9aeeb075..70a01a36 100644 --- a/users/rob.json +++ b/users/rob.json @@ -1 +1,6 @@ -{"copyright":"Rob Miller","url":"http:\/\/robm.me.uk","email":"r@robm.me.uk","format":"txt"} \ No newline at end of file +{ + "copyright": "Rob Miller", + "url": "http://robm.me.uk", + "email": "r@robm.me.uk", + "format": "txt" +} diff --git a/users/robario.json b/users/robario.json index 773325d9..adb576c9 100644 --- a/users/robario.json +++ b/users/robario.json @@ -1 +1,4 @@ -{"copyright":"Hironori Yoshida","url":"https:\/\/github.com\/robario"} \ No newline at end of file +{ + "copyright": "Hironori Yoshida", + "url": "https://github.com/robario" +} diff --git a/users/robdodson.json b/users/robdodson.json index 07b08d62..63f2a3f0 100644 --- a/users/robdodson.json +++ b/users/robdodson.json @@ -1 +1,6 @@ -{"copyright":"Rob Dodson","url":"http:\/\/robdodson.me","email":"lets.email.rob@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Rob Dodson", + "url": "http://robdodson.me", + "email": "lets.email.rob@gmail.com", + "format": "txt" +} diff --git a/users/roberthernandez.json b/users/roberthernandez.json index 315c47f7..f7ff34e2 100644 --- a/users/roberthernandez.json +++ b/users/roberthernandez.json @@ -1 +1,7 @@ -{"copyright":"Robert David Hernandez","url":"http:\/\/RobertHernandez.io","email":"RHernandez513@gmail.com","format":"html","theme":"solarized"} \ No newline at end of file +{ + "copyright": "Robert David Hernandez", + "url": "http://RobertHernandez.io", + "email": "RHernandez513@gmail.com", + "format": "html", + "theme": "solarized" +} diff --git a/users/robertlucian.json b/users/robertlucian.json index f6f075bd..6c8de04b 100644 --- a/users/robertlucian.json +++ b/users/robertlucian.json @@ -1,7 +1,7 @@ { - "copyright": "Robert Lucian Chiriac", - "url": "https:\/\/robertlucian.com", - "email": "robert.lucian.chiriac@gmail.com", - "format": "html", - "gravatar": true + "copyright": "Robert Lucian Chiriac", + "url": "https://robertlucian.com", + "email": "robert.lucian.chiriac@gmail.com", + "format": "html", + "gravatar": true } diff --git a/users/robin.json b/users/robin.json index feed640f..8f840494 100644 --- a/users/robin.json +++ b/users/robin.json @@ -1,8 +1,8 @@ { - "copyright": "Robin Müller", - "url": "https://roundrobin.ninja", - "email": "robin.mueller@outlook.de", - "format": "html", - "gravatar": true, - "theme": "material-indigo" + "copyright": "Robin M\u00c3\u00bcller", + "url": "https://roundrobin.ninja", + "email": "robin.mueller@outlook.de", + "format": "html", + "gravatar": true, + "theme": "material-indigo" } diff --git a/users/robotblake.json b/users/robotblake.json index 0e3beb8b..640e6c85 100644 --- a/users/robotblake.json +++ b/users/robotblake.json @@ -1 +1,6 @@ -{"copyright":"Blake Imsland","url":"http:\/\/retroco.de","email":"blake@retroco.de","format":"txt"} \ No newline at end of file +{ + "copyright": "Blake Imsland", + "url": "http://retroco.de", + "email": "blake@retroco.de", + "format": "txt" +} diff --git a/users/robxu9.json b/users/robxu9.json index 7eafc64c..f3be6215 100644 --- a/users/robxu9.json +++ b/users/robxu9.json @@ -1 +1,6 @@ -{"copyright":"Robert Xu","url":"http:\/\/www.robxu9.com","email":"robxu9@gmail.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Robert Xu", + "url": "http://www.robxu9.com", + "email": "robxu9@gmail.com", + "gravatar": true +} diff --git a/users/rock.json b/users/rock.json index bcf70a0b..0f8ae1ce 100644 --- a/users/rock.json +++ b/users/rock.json @@ -1 +1,5 @@ -{"copyright":"Denis Pushkarev","url":"http:\/\/zloirock.ru","email":"zloirock@zloirock.ru"} \ No newline at end of file +{ + "copyright": "Denis Pushkarev", + "url": "http://zloirock.ru", + "email": "zloirock@zloirock.ru" +} diff --git a/users/rodchyn.json b/users/rodchyn.json index e71fd505..12e8b141 100644 --- a/users/rodchyn.json +++ b/users/rodchyn.json @@ -1 +1,5 @@ -{"copyright":"Yura Rodchyn","email":"rodchyn@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Yura Rodchyn", + "email": "rodchyn@gmail.com", + "format": "txt" +} diff --git a/users/rogeriopradoj.json b/users/rogeriopradoj.json index e100669b..f2080415 100644 --- a/users/rogeriopradoj.json +++ b/users/rogeriopradoj.json @@ -1 +1,5 @@ -{"copyright":"Rogerio Prado de Jesus, http:\/\/rogeriopradoj.com","url":"http:\/\/rogeriopradoj.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Rogerio Prado de Jesus, http://rogeriopradoj.com", + "url": "http://rogeriopradoj.com", + "gravatar": true +} diff --git a/users/rogeriorc.json b/users/rogeriorc.json index d829fa84..03747600 100644 --- a/users/rogeriorc.json +++ b/users/rogeriorc.json @@ -1,7 +1,7 @@ { - "copyright": "Rogerio Ribeiro da Cruz", - "url": "https://github.com/rogeriorc", - "email": "rogeriorc@gmail.com", - "theme": "material-indigo", - "gravatar": true -} \ No newline at end of file + "copyright": "Rogerio Ribeiro da Cruz", + "url": "https://github.com/rogeriorc", + "email": "rogeriorc@gmail.com", + "theme": "material-indigo", + "gravatar": true +} diff --git a/users/rohanc.json b/users/rohanc.json index 89fa14e5..d4bcac07 100644 --- a/users/rohanc.json +++ b/users/rohanc.json @@ -1,7 +1,6 @@ - { - "copyright": "Rohan Chacko", - "email": "rohanchacko007@gmail.com", - "format": "html", - "theme": "material-cyan" + "copyright": "Rohan Chacko", + "email": "rohanchacko007@gmail.com", + "format": "html", + "theme": "material-cyan" } diff --git a/users/rohithasrk.json b/users/rohithasrk.json index a114ff3f..765c63d9 100644 --- a/users/rohithasrk.json +++ b/users/rohithasrk.json @@ -1,7 +1,7 @@ { - "copyright":"Rohith A.S.R.K.", - "email":"rohith.asrk@gmail.com", - "format": "html", - "gravatar": true, - "theme": "material" + "copyright": "Rohith A.S.R.K.", + "email": "rohith.asrk@gmail.com", + "format": "html", + "gravatar": true, + "theme": "material" } diff --git a/users/rok.json b/users/rok.json index c6b817b1..9c28d3d0 100644 --- a/users/rok.json +++ b/users/rok.json @@ -1 +1,8 @@ -{"copyright":"Robert Kummer","url":"http:\/\/robert-kummer.de","email":"github@mail.robert-kummer.de","gravatar":true,"format":"html","theme":"default"} \ No newline at end of file +{ + "copyright": "Robert Kummer", + "url": "http://robert-kummer.de", + "email": "github@mail.robert-kummer.de", + "gravatar": true, + "format": "html", + "theme": "default" +} diff --git a/users/romac.json b/users/romac.json index eb0fd654..918fbeaf 100644 --- a/users/romac.json +++ b/users/romac.json @@ -1 +1,5 @@ -{"copyright":"Romain Ruetschi","url":"http:\/\/romac.me","email":"romain.ruetschi@gmail.com"} \ No newline at end of file +{ + "copyright": "Romain Ruetschi", + "url": "http://romac.me", + "email": "romain.ruetschi@gmail.com" +} diff --git a/users/romain.json b/users/romain.json index 84dc5687..75306e20 100644 --- a/users/romain.json +++ b/users/romain.json @@ -1 +1,3 @@ -{"copyright":"Romain Pouclet"} \ No newline at end of file +{ + "copyright": "Romain Pouclet" +} diff --git a/users/roman-boiko.json b/users/roman-boiko.json index 6a7284fc..7dd0b7ac 100644 --- a/users/roman-boiko.json +++ b/users/roman-boiko.json @@ -1 +1,6 @@ -{"copyright":"Roman Boiko","url":"https:\/\/www.linkedin.com\/in\/romanboiko","email":"boiko.roman@gmail.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Roman Boiko", + "url": "https://www.linkedin.com/in/romanboiko", + "email": "boiko.roman@gmail.com", + "gravatar": true +} diff --git a/users/romanboiko.json b/users/romanboiko.json index 0a590f1e..216bf22a 100644 --- a/users/romanboiko.json +++ b/users/romanboiko.json @@ -1 +1,6 @@ -{"copyright":"Roman Boiko","url":"https:\/\/www.linkedin.com\/in\/romanboiko","email":"boiko.roman@gmail.com","gravatar":"true"} \ No newline at end of file +{ + "copyright": "Roman Boiko", + "url": "https://www.linkedin.com/in/romanboiko", + "email": "boiko.roman@gmail.com", + "gravatar": "true" +} diff --git a/users/romkey.json b/users/romkey.json index 469df8be..1b8dbb33 100644 --- a/users/romkey.json +++ b/users/romkey.json @@ -1,6 +1,6 @@ { - "copyright": "John Romkey", - "url": "https://romkey.com/", - "email": "romkey@romkey.com", - "gravatar": true + "copyright": "John Romkey", + "url": "https://romkey.com/", + "email": "romkey@romkey.com", + "gravatar": true } diff --git a/users/ron975test.json b/users/ron975test.json index 8f782d89..df7e8646 100644 --- a/users/ron975test.json +++ b/users/ron975test.json @@ -1 +1,3 @@ -{"copyright":"Ronny Chan"} \ No newline at end of file +{ + "copyright": "Ronny Chan" +} diff --git a/users/ronnchyran.json b/users/ronnchyran.json index 75e96acb..a6501132 100644 --- a/users/ronnchyran.json +++ b/users/ronnchyran.json @@ -1 +1,7 @@ -{"copyright":"Ronny Chan","url":"http:\/\/ronnchyran.com","email":"ronny@ronnchyran.com","gravatar":true,"theme":"material-teal"} \ No newline at end of file +{ + "copyright": "Ronny Chan", + "url": "http://ronnchyran.com", + "email": "ronny@ronnchyran.com", + "gravatar": true, + "theme": "material-teal" +} diff --git a/users/rootulp.json b/users/rootulp.json index cd4f08ea..fb3af711 100644 --- a/users/rootulp.json +++ b/users/rootulp.json @@ -1 +1,3 @@ -{"copyright":"Rootul Patel"} \ No newline at end of file +{ + "copyright": "Rootul Patel" +} diff --git a/users/rosarior.json b/users/rosarior.json index 87552cc7..c5514d5b 100644 --- a/users/rosarior.json +++ b/users/rosarior.json @@ -1 +1,6 @@ -{"copyright":"Roberto Rosario","url":"http:\/\/robertorosario.com","email":"me@robertorosario.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Roberto Rosario", + "url": "http://robertorosario.com", + "email": "me@robertorosario.com", + "format": "txt" +} diff --git a/users/rosebudandmoon.json b/users/rosebudandmoon.json index 25911d64..14d9e10c 100644 --- a/users/rosebudandmoon.json +++ b/users/rosebudandmoon.json @@ -1 +1,3 @@ -{"copyright":"Rosebud and Moon"} \ No newline at end of file +{ + "copyright": "Rosebud and Moon" +} diff --git a/users/ross.json b/users/ross.json index 8b11a8b0..a1378b86 100644 --- a/users/ross.json +++ b/users/ross.json @@ -1 +1,3 @@ -{"copyright":"Ross Masters"} \ No newline at end of file +{ + "copyright": "Ross Masters" +} diff --git a/users/rossjones.json b/users/rossjones.json index 6c663f00..93799bae 100644 --- a/users/rossjones.json +++ b/users/rossjones.json @@ -1 +1,3 @@ -{"copyright":"Ross Jones"} \ No newline at end of file +{ + "copyright": "Ross Jones" +} diff --git a/users/roy.json b/users/roy.json index 8650c6f2..f602f6bd 100644 --- a/users/roy.json +++ b/users/roy.json @@ -1 +1,3 @@ -{"copyright":"Roy Riojas"} \ No newline at end of file +{ + "copyright": "Roy Riojas" +} diff --git a/users/rpavlik.json b/users/rpavlik.json index ec6a97b2..6ed7fee2 100644 --- a/users/rpavlik.json +++ b/users/rpavlik.json @@ -1 +1,5 @@ -{"copyright":"Ryan Pavlik","url":"http:\/\/academic.cleardefinition.com","email":"ryan.pavlik@gmail.com"} \ No newline at end of file +{ + "copyright": "Ryan Pavlik", + "url": "http://academic.cleardefinition.com", + "email": "ryan.pavlik@gmail.com" +} diff --git a/users/rpetz.json b/users/rpetz.json index 73688952..d17c8509 100644 --- a/users/rpetz.json +++ b/users/rpetz.json @@ -1 +1,6 @@ -{"copyright":"Robert Petz","url":"http:\/\/robertpetz.com","email":"rpetz@ignitelabs.net","format":"txt"} \ No newline at end of file +{ + "copyright": "Robert Petz", + "url": "http://robertpetz.com", + "email": "rpetz@ignitelabs.net", + "format": "txt" +} diff --git a/users/rpetz1.json b/users/rpetz1.json index 73688952..d17c8509 100644 --- a/users/rpetz1.json +++ b/users/rpetz1.json @@ -1 +1,6 @@ -{"copyright":"Robert Petz","url":"http:\/\/robertpetz.com","email":"rpetz@ignitelabs.net","format":"txt"} \ No newline at end of file +{ + "copyright": "Robert Petz", + "url": "http://robertpetz.com", + "email": "rpetz@ignitelabs.net", + "format": "txt" +} diff --git a/users/rpowis.json b/users/rpowis.json index dc0c4850..ade1a0bf 100644 --- a/users/rpowis.json +++ b/users/rpowis.json @@ -1 +1,3 @@ -{"copyright":"Rory Powis"} \ No newline at end of file +{ + "copyright": "Rory Powis" +} diff --git a/users/rubensfernandes.json b/users/rubensfernandes.json index 7233d01a..c4ef1c58 100644 --- a/users/rubensfernandes.json +++ b/users/rubensfernandes.json @@ -1 +1,5 @@ -{"copyright":"Rubens D. Fernandes","url":"http:\/\/rubensfernandes.com.br","email":"hi@rubensfernandes.com.br"} +{ + "copyright": "Rubens D. Fernandes", + "url": "http://rubensfernandes.com.br", + "email": "hi@rubensfernandes.com.br" +} diff --git a/users/rud.json b/users/rud.json index a14e6676..aa4ea743 100644 --- a/users/rud.json +++ b/users/rud.json @@ -1 +1,7 @@ -{"copyright":"Del Rudolph, http:\/\/www.rudforce.com\/","email":"del@downinit.com","url":"http:\/\/www.downinit.com\/","gravatar":true,"theme":"default-dark"} \ No newline at end of file +{ + "copyright": "Del Rudolph, http://www.rudforce.com/", + "email": "del@downinit.com", + "url": "http://www.downinit.com/", + "gravatar": true, + "theme": "default-dark" +} diff --git a/users/ruedap.json b/users/ruedap.json index 3caa4b26..3c81d46f 100644 --- a/users/ruedap.json +++ b/users/ruedap.json @@ -1 +1,5 @@ -{"copyright":"ruedap, http:\/\/ruedap.com","url":"http:\/\/ruedap.com","theme":"flesch"} \ No newline at end of file +{ + "copyright": "ruedap, http://ruedap.com", + "url": "http://ruedap.com", + "theme": "flesch" +} diff --git a/users/ruhland.json b/users/ruhland.json index 4c288b9e..dcfb6a9c 100644 --- a/users/ruhland.json +++ b/users/ruhland.json @@ -1 +1,7 @@ -{"copyright":"Joel Ruhland","url":"http:\/\/joelruhland.net","email":"contact@joelruhland.net","format":"txt","theme":"opensans"} \ No newline at end of file +{ + "copyright": "Joel Ruhland", + "url": "http://joelruhland.net", + "email": "contact@joelruhland.net", + "format": "txt", + "theme": "opensans" +} diff --git a/users/rumpl.json b/users/rumpl.json index 1ce4cced..806b765c 100644 --- a/users/rumpl.json +++ b/users/rumpl.json @@ -1,4 +1,4 @@ { - "copyright": "Djordje Lukic, http://rumpl.org", - "url": "http://rumpl.org" + "copyright": "Djordje Lukic, http://rumpl.org", + "url": "http://rumpl.org" } diff --git a/users/runphp.json b/users/runphp.json index 6bc90f72..bcbbc404 100644 --- a/users/runphp.json +++ b/users/runphp.json @@ -1,7 +1,7 @@ { - "copyright": "Hui He, http://runphp.net", - "url": "http://runphp.net", - "email": "runphp@qq.com", - "theme": "material-blue", - "gravatar": true + "copyright": "Hui He, http://runphp.net", + "url": "http://runphp.net", + "email": "runphp@qq.com", + "theme": "material-blue", + "gravatar": true } diff --git a/users/rur.json b/users/rur.json index 611f5a09..9d1cbe35 100644 --- a/users/rur.json +++ b/users/rur.json @@ -1 +1,6 @@ -{"copyright":"Raul Uranga","url":"https:\/\/github.com\/rauluranga\/","email":"ruranga@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Raul Uranga", + "url": "https://github.com/rauluranga/", + "email": "ruranga@gmail.com", + "format": "txt" +} diff --git a/users/ruucm.json b/users/ruucm.json index 3e399d28..56e92107 100644 --- a/users/ruucm.json +++ b/users/ruucm.json @@ -1 +1,6 @@ -{"copyright":"ruucm, http://ruucm.work","url":"http://ruucm.work","email":"ruucm@ruucm.work","gravatar":true} +{ + "copyright": "ruucm, http://ruucm.work", + "url": "http://ruucm.work", + "email": "ruucm@ruucm.work", + "gravatar": true +} diff --git a/users/rverrips.json b/users/rverrips.json index 2a863aec..d4eba70f 100644 --- a/users/rverrips.json +++ b/users/rverrips.json @@ -1,6 +1,6 @@ { - "copyright": "Roy Verrips, https://verrips.org", - "url": "https://verrips.org", - "email": "roy@verrips.org", - "gravatar": true + "copyright": "Roy Verrips, https://verrips.org", + "url": "https://verrips.org", + "email": "roy@verrips.org", + "gravatar": true } diff --git a/users/rx14.json b/users/rx14.json index 10b50206..f9083ba8 100644 --- a/users/rx14.json +++ b/users/rx14.json @@ -1 +1,3 @@ -{"copyright":"Chris Hobbs"} \ No newline at end of file +{ + "copyright": "Chris Hobbs" +} diff --git a/users/ryan.json b/users/ryan.json index 9deeeac5..cb6961cd 100644 --- a/users/ryan.json +++ b/users/ryan.json @@ -1 +1,3 @@ -{"copyright":"Ryan Lester"} \ No newline at end of file +{ + "copyright": "Ryan Lester" +} diff --git a/users/ryanjacobs.json b/users/ryanjacobs.json index e6a6c860..e95a8c42 100644 --- a/users/ryanjacobs.json +++ b/users/ryanjacobs.json @@ -1,6 +1,6 @@ { "copyright": "Ryan Jacobs", - "url": "http:\/\/ryanjacobs.io", - "format": "html", - "theme": "default" + "url": "http://ryanjacobs.io", + "format": "html", + "theme": "default" } diff --git a/users/ryanleland.json b/users/ryanleland.json index 6bb52936..514a0e62 100644 --- a/users/ryanleland.json +++ b/users/ryanleland.json @@ -1 +1,3 @@ -{"copyright":"Fynt Inc."} \ No newline at end of file +{ + "copyright": "Fynt Inc." +} diff --git a/users/ryanmjacobs.json b/users/ryanmjacobs.json index 66cda0cd..ece696c3 100644 --- a/users/ryanmjacobs.json +++ b/users/ryanmjacobs.json @@ -1 +1,6 @@ -{"copyright":"Ryan Jacobs","url":"http:\/\/ryanjacobs.io","email":"ryan.mjacobs@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Ryan Jacobs", + "url": "http://ryanjacobs.io", + "email": "ryan.mjacobs@gmail.com", + "format": "txt" +} diff --git a/users/ryanscott.json b/users/ryanscott.json index 3f4c57b2..1aa8dcbe 100644 --- a/users/ryanscott.json +++ b/users/ryanscott.json @@ -1 +1,5 @@ -{"copyright":"Ryan Scott","url":"https:\/\/github.com\/Archytaus","format":"html"} +{ + "copyright": "Ryan Scott", + "url": "https://github.com/Archytaus", + "format": "html" +} diff --git a/users/ryanseddon.json b/users/ryanseddon.json index 2f2508be..326c9e94 100644 --- a/users/ryanseddon.json +++ b/users/ryanseddon.json @@ -1 +1,4 @@ -{"copyright":"Ryan Seddon","url":"http:\/\/thecssninja.com"} \ No newline at end of file +{ + "copyright": "Ryan Seddon", + "url": "http://thecssninja.com" +} diff --git a/users/ryanwu.json b/users/ryanwu.json index e89d0d7d..bb16f68c 100644 --- a/users/ryanwu.json +++ b/users/ryanwu.json @@ -1 +1,7 @@ -{"copyright":"Ryan Wu","url":"http:\/\/ryanwu.me","email":"hello@ryanwu.me","gravatar": true,"theme":"hilula"} +{ + "copyright": "Ryan Wu", + "url": "http://ryanwu.me", + "email": "hello@ryanwu.me", + "gravatar": true, + "theme": "hilula" +} diff --git a/users/ryck.json b/users/ryck.json index 5f596387..505d5ab9 100644 --- a/users/ryck.json +++ b/users/ryck.json @@ -1 +1,3 @@ -{"copyright":"Ricardo Gonz\u00e1lez, http:\/\/ryck.me"} +{ + "copyright": "Ricardo Gonz\u00e1lez, http://ryck.me" +} diff --git a/users/ryepdx.json b/users/ryepdx.json index fa7e51c7..72317114 100644 --- a/users/ryepdx.json +++ b/users/ryepdx.json @@ -1 +1,6 @@ -{"copyright":"Ryan Casey","url":"http:\/\/ryepdx.com","email":"ryepdx@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Ryan Casey", + "url": "http://ryepdx.com", + "email": "ryepdx@gmail.com", + "format": "txt" +} diff --git a/users/ryf.json b/users/ryf.json index 7d3bac0c..c585bb7b 100644 --- a/users/ryf.json +++ b/users/ryf.json @@ -1 +1,3 @@ -{"copyright":"Ry Ferguson"} \ No newline at end of file +{ + "copyright": "Ry Ferguson" +} diff --git a/users/rylee.json b/users/rylee.json index 29f77652..8caf7a36 100644 --- a/users/rylee.json +++ b/users/rylee.json @@ -1 +1,5 @@ -{"copyright":"Rylee Harrison","email":"ryleeharrison@icloud.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Rylee Harrison", + "email": "ryleeharrison@icloud.com", + "format": "txt" +} diff --git a/users/ryotahirano.json b/users/ryotahirano.json index 689e9c11..cb99f880 100644 --- a/users/ryotahirano.json +++ b/users/ryotahirano.json @@ -1 +1,3 @@ -{"copyright":"RyotaHirano"} \ No newline at end of file +{ + "copyright": "RyotaHirano" +} diff --git a/users/s-a.json b/users/s-a.json index 197b6faa..d651e75e 100644 --- a/users/s-a.json +++ b/users/s-a.json @@ -1,6 +1,6 @@ { - "copyright": "Stephan Ahlf", - "url": "https://github.com/s-a", - "email": "stephan.ahlf@gmail.com", - "format": "txt" -} \ No newline at end of file + "copyright": "Stephan Ahlf", + "url": "https://github.com/s-a", + "email": "stephan.ahlf@gmail.com", + "format": "txt" +} diff --git a/users/s.json b/users/s.json index 6b1bc0e7..4ca20bc3 100644 --- a/users/s.json +++ b/users/s.json @@ -1 +1,5 @@ -{"copyright":"Sam Epstein","email":"license@samepstein.com","theme":"afterdark"} \ No newline at end of file +{ + "copyright": "Sam Epstein", + "email": "license@samepstein.com", + "theme": "afterdark" +} diff --git a/users/saas-ninja.json b/users/saas-ninja.json index c52ede5a..5bff6b94 100644 --- a/users/saas-ninja.json +++ b/users/saas-ninja.json @@ -1 +1,7 @@ -{"copyright":"Brian Giaraffa","url":"https:\/\/saas.ninja","email":"public88878878887@hotmail.com","theme":"hipster-gray","gravatar":true} \ No newline at end of file +{ + "copyright": "Brian Giaraffa", + "url": "https://saas.ninja", + "email": "public88878878887@hotmail.com", + "theme": "hipster-gray", + "gravatar": true +} diff --git a/users/sachinjain.json b/users/sachinjain.json index 0721173b..592a386c 100644 --- a/users/sachinjain.json +++ b/users/sachinjain.json @@ -1 +1,6 @@ -{"copyright":"Sachin Jain","email":"sachinjain024@gmail.com","format":"html", "theme":"cherry"} +{ + "copyright": "Sachin Jain", + "email": "sachinjain024@gmail.com", + "format": "html", + "theme": "cherry" +} diff --git a/users/sadko.json b/users/sadko.json index 71426add..1cb400f9 100644 --- a/users/sadko.json +++ b/users/sadko.json @@ -1 +1,4 @@ -{"copyright":"Paul Miller (http:\/\/paulmillr.com\/)","format":"txt"} \ No newline at end of file +{ + "copyright": "Paul Miller (http://paulmillr.com/)", + "format": "txt" +} diff --git a/users/saeid.json b/users/saeid.json index 93a99f5b..6fc5ec34 100644 --- a/users/saeid.json +++ b/users/saeid.json @@ -1 +1,6 @@ -{"copyright":"Saeid Zebardast","url":"http:\/\/zebardast.com","email":"saeid.zebardast@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Saeid Zebardast", + "url": "http://zebardast.com", + "email": "saeid.zebardast@gmail.com", + "format": "txt" +} diff --git a/users/sails-spinnaker.json b/users/sails-spinnaker.json index 46bad8cf..6aeb1670 100644 --- a/users/sails-spinnaker.json +++ b/users/sails-spinnaker.json @@ -1 +1,6 @@ -{"copyright":"Blake Owens","url":"http:\/\/blakeowens.com","email":"blake@blakeowens.com","format":"html"} \ No newline at end of file +{ + "copyright": "Blake Owens", + "url": "http://blakeowens.com", + "email": "blake@blakeowens.com", + "format": "html" +} diff --git a/users/sails.json b/users/sails.json index 72f0aa09..5de680b8 100644 --- a/users/sails.json +++ b/users/sails.json @@ -1 +1,3 @@ -{"copyright":"Mike McNeil & Balderdash Design Co."} \ No newline at end of file +{ + "copyright": "Mike McNeil & Balderdash Design Co." +} diff --git a/users/sailxjx.json b/users/sailxjx.json index 3e5bd130..e289fcce 100644 --- a/users/sailxjx.json +++ b/users/sailxjx.json @@ -4,4 +4,4 @@ "theme": "double-windsor", "email": "sailxjx@163.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/sallar.json b/users/sallar.json index 6723e623..7dbdafdb 100644 --- a/users/sallar.json +++ b/users/sallar.json @@ -1 +1,7 @@ -{"copyright":"Sallar Kaboli","url":"http:\/\/sallar.me","email":"sallar.kaboli@gmail.com","format":"html","gravatar": true} +{ + "copyright": "Sallar Kaboli", + "url": "http://sallar.me", + "email": "sallar.kaboli@gmail.com", + "format": "html", + "gravatar": true +} diff --git a/users/sam.json b/users/sam.json index 869c8760..401b53cf 100644 --- a/users/sam.json +++ b/users/sam.json @@ -1 +1,4 @@ -{"copyright":"Sam Strasser","url":"http:\/\/samstrasser.com"} \ No newline at end of file +{ + "copyright": "Sam Strasser", + "url": "http://samstrasser.com" +} diff --git a/users/sambhav2612.json b/users/sambhav2612.json index e43bd525..29ba339c 100644 --- a/users/sambhav2612.json +++ b/users/sambhav2612.json @@ -1,6 +1,6 @@ { - "copyright": "Sambhav Jain, https://sambhavjain.netlify.com", - "url": "https://sambhavjain.netlify.com", - "email": "sambhavjain2612@gmail.com", - "theme": "8bits-monochrome-blue-white" + "copyright": "Sambhav Jain, https://sambhavjain.netlify.com", + "url": "https://sambhavjain.netlify.com", + "email": "sambhavjain2612@gmail.com", + "theme": "8bits-monochrome-blue-white" } diff --git a/users/samirtalwar.json b/users/samirtalwar.json index f6934111..8fe106f7 100644 --- a/users/samirtalwar.json +++ b/users/samirtalwar.json @@ -1 +1,6 @@ -{"copyright":"Samir Talwar","url":"http:\/\/samirtalwar.com","email":"samir@noodlesandwich.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Samir Talwar", + "url": "http://samirtalwar.com", + "email": "samir@noodlesandwich.com", + "gravatar": true +} diff --git a/users/sammyt.json b/users/sammyt.json index 5c8c27ad..bb5cc706 100644 --- a/users/sammyt.json +++ b/users/sammyt.json @@ -1 +1,3 @@ -{"copyright":"Samuel Williams"} \ No newline at end of file +{ + "copyright": "Samuel Williams" +} diff --git a/users/samsoffes.json b/users/samsoffes.json index 8a66d892..8dd5cc7a 100644 --- a/users/samsoffes.json +++ b/users/samsoffes.json @@ -1 +1,3 @@ -{"copyright":"Sam Soffes, http:\/\/sstoolk.it"} \ No newline at end of file +{ + "copyright": "Sam Soffes, http://sstoolk.it" +} diff --git a/users/samuel.json b/users/samuel.json index 85e5ed1b..4ebad019 100644 --- a/users/samuel.json +++ b/users/samuel.json @@ -1 +1,6 @@ -{"copyright":"Samuel Mesquita", "url": "http://samuelmesquita.com.br", "email" : "samuelmesq@gmail.com", "theme" : "double-windsor"} +{ + "copyright": "Samuel Mesquita", + "url": "http://samuelmesquita.com.br", + "email": "samuelmesq@gmail.com", + "theme": "double-windsor" +} diff --git a/users/samuelstiles.json b/users/samuelstiles.json index 1cf734b8..3863a8f7 100644 --- a/users/samuelstiles.json +++ b/users/samuelstiles.json @@ -1 +1,3 @@ -{"copyright":"Samuel Stiles"} \ No newline at end of file +{ + "copyright": "Samuel Stiles" +} diff --git a/users/san.json b/users/san.json index 023ac1d4..c20fbe25 100644 --- a/users/san.json +++ b/users/san.json @@ -1,8 +1,8 @@ { - "copyright": "Santhosh Kumar Srinivasan, http:\/\/sanspace.in", - "url": "http:\/\/sanspace.in", - "email": "san@sanspace.in", - "gravatar": true, - "format": "html", - "theme": "eula-modern" + "copyright": "Santhosh Kumar Srinivasan, http://sanspace.in", + "url": "http://sanspace.in", + "email": "san@sanspace.in", + "gravatar": true, + "format": "html", + "theme": "eula-modern" } diff --git a/users/sand.json b/users/sand.json index ea92810d..2869f9f6 100644 --- a/users/sand.json +++ b/users/sand.json @@ -1 +1,6 @@ -{"copyright":"Marcin Spoczynski","url":"http:\/\/marcin.spoczynski.com","email":"marcin@spoczynski.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Marcin Spoczynski", + "url": "http://marcin.spoczynski.com", + "email": "marcin@spoczynski.com", + "format": "txt" +} diff --git a/users/sandeep.json b/users/sandeep.json index c33a5fed..9076c45b 100644 --- a/users/sandeep.json +++ b/users/sandeep.json @@ -1 +1,6 @@ -{"copyright":"Sandeep Bhat","email":"sandeep.anand.bhat@gmail.com","gravatar":true,"theme":"magic-mint"} \ No newline at end of file +{ + "copyright": "Sandeep Bhat", + "email": "sandeep.anand.bhat@gmail.com", + "gravatar": true, + "theme": "magic-mint" +} diff --git a/users/sandropadin.json b/users/sandropadin.json index b88cb60d..33f88ccf 100644 --- a/users/sandropadin.json +++ b/users/sandropadin.json @@ -1 +1,3 @@ -{"copyright":"Sandro Padin"} \ No newline at end of file +{ + "copyright": "Sandro Padin" +} diff --git a/users/sanfyin.json b/users/sanfyin.json index 7aea9dce..408196ce 100644 --- a/users/sanfyin.json +++ b/users/sanfyin.json @@ -1 +1,7 @@ -{"copyright":"Sanfy.In ,http:\/\/sanfy.in","url":"http:\/\/sanfy.in","email":"me@sanfy.in","format":"html","gravatar":true} \ No newline at end of file +{ + "copyright": "Sanfy.In ,http://sanfy.in", + "url": "http://sanfy.in", + "email": "me@sanfy.in", + "format": "html", + "gravatar": true +} diff --git a/users/sangliere.json b/users/sangliere.json index be9f1006..bacc425a 100644 --- a/users/sangliere.json +++ b/users/sangliere.json @@ -1 +1,3 @@ -{"copyright":"La Sangli\u00e8re (JM Marcastel)"} \ No newline at end of file +{ + "copyright": "La Sangli\u00e8re (JM Marcastel)" +} diff --git a/users/santtu.json b/users/santtu.json index 4e3e32a8..e3cad47c 100644 --- a/users/santtu.json +++ b/users/santtu.json @@ -1 +1,6 @@ -{"copyright":"Santeri Paavolainen","url":"http:\/\/santtu.iki.fi","email":"santtu@iki.fi","format":"txt"} \ No newline at end of file +{ + "copyright": "Santeri Paavolainen", + "url": "http://santtu.iki.fi", + "email": "santtu@iki.fi", + "format": "txt" +} diff --git a/users/saravanan.json b/users/saravanan.json index 8c630246..5a629388 100644 --- a/users/saravanan.json +++ b/users/saravanan.json @@ -1,3 +1,3 @@ { - "copyright": "Saravanan Rajaraman" + "copyright": "Saravanan Rajaraman" } diff --git a/users/sarith.json b/users/sarith.json index b9881abc..b90afd6e 100644 --- a/users/sarith.json +++ b/users/sarith.json @@ -1 +1,6 @@ -{"copyright":"Sarith Demuni","url":"http:\/\/sarithdemuni.com","email":"sarith@nullandvoid.co","gravatar":true} \ No newline at end of file +{ + "copyright": "Sarith Demuni", + "url": "http://sarithdemuni.com", + "email": "sarith@nullandvoid.co", + "gravatar": true +} diff --git a/users/sarkasper.json b/users/sarkasper.json index af83c2e6..ef894f0b 100644 --- a/users/sarkasper.json +++ b/users/sarkasper.json @@ -1 +1,3 @@ -{"copyright":"Kasper Menten"} \ No newline at end of file +{ + "copyright": "Kasper Menten" +} diff --git a/users/sascha.json b/users/sascha.json index c785b409..be2cdd41 100644 --- a/users/sascha.json +++ b/users/sascha.json @@ -1 +1,3 @@ -{"copyright":"Sascha Linn"} \ No newline at end of file +{ + "copyright": "Sascha Linn" +} diff --git a/users/saschame.json b/users/saschame.json index e71d7eff..f7fd3ae8 100644 --- a/users/saschame.json +++ b/users/saschame.json @@ -1 +1,3 @@ -{"copyright":"Sascha Merkofer"} \ No newline at end of file +{ + "copyright": "Sascha Merkofer" +} diff --git a/users/saschamzh.json b/users/saschamzh.json index 59754a10..f0585b8c 100644 --- a/users/saschamzh.json +++ b/users/saschamzh.json @@ -1,7 +1,7 @@ { - "copyright": "Sascha Müller zum Hagen, http://www.mzh.name", - "url": "http://www.mzh.name", - "email": "sascha@mzh.name", - "theme": "rokkitt", - "gravatar": true + "copyright": "Sascha M\u00c3\u00bcller zum Hagen, http://www.mzh.name", + "url": "http://www.mzh.name", + "email": "sascha@mzh.name", + "theme": "rokkitt", + "gravatar": true } diff --git a/users/sasha.json b/users/sasha.json index 544d744e..3d75f09a 100644 --- a/users/sasha.json +++ b/users/sasha.json @@ -1 +1,3 @@ -{"copyright":"Sasha Gerrand"} \ No newline at end of file +{ + "copyright": "Sasha Gerrand" +} diff --git a/users/sashko.json b/users/sashko.json index 57ec4d8a..c3d1c605 100644 --- a/users/sashko.json +++ b/users/sashko.json @@ -1,6 +1,6 @@ { "copyright": "Oleksandr Kravchuk, https://sashko.rv.ua", - "url": "https:\/\/sashko.rv.ua", + "url": "https://sashko.rv.ua", "email": "dev@sashko.rv.ua", "gravatar": true } diff --git a/users/sauerlo.json b/users/sauerlo.json index 64a5c0fb..d7bad24a 100644 --- a/users/sauerlo.json +++ b/users/sauerlo.json @@ -1,8 +1,8 @@ { - "copyright": "Lorenz Lo Sauer, https://www.lsauer.com", - "url": "http://www.lsauer.com", - "format": "html", - "email": "lorenz.lo.sauer@gmail.com", - "gravatar": true, - "theme": "eula-modern" + "copyright": "Lorenz Lo Sauer, https://www.lsauer.com", + "url": "http://www.lsauer.com", + "format": "html", + "email": "lorenz.lo.sauer@gmail.com", + "gravatar": true, + "theme": "eula-modern" } diff --git a/users/saulhardman.json b/users/saulhardman.json index 398a9c40..a5d4cbe2 100644 --- a/users/saulhardman.json +++ b/users/saulhardman.json @@ -1 +1,6 @@ -{"copyright":"Saul Hardman, http:\/\/iamsaul.co.uk","url":"http:\/\/iamsaul.co.uk","email":"hello@iamsaul.co.uk","gravatar":true} \ No newline at end of file +{ + "copyright": "Saul Hardman, http://iamsaul.co.uk", + "url": "http://iamsaul.co.uk", + "email": "hello@iamsaul.co.uk", + "gravatar": true +} diff --git a/users/sauravtom.json b/users/sauravtom.json index 6bb60199..1ccba2e6 100644 --- a/users/sauravtom.json +++ b/users/sauravtom.json @@ -1 +1,6 @@ -{"copyright":"Saurav Tomar","url":"http:\/\/sauravtom.com","email":"stomatrix@gmail.com","format":"html"} \ No newline at end of file +{ + "copyright": "Saurav Tomar", + "url": "http://sauravtom.com", + "email": "stomatrix@gmail.com", + "format": "html" +} diff --git a/users/sbuzonas.json b/users/sbuzonas.json index c2524887..eac24a52 100644 --- a/users/sbuzonas.json +++ b/users/sbuzonas.json @@ -1 +1,7 @@ -{"copyright":"Steve Buzonas","url":"http:\/\/stevebuzonas.com","email":"steve@fancyguy.com","gravatar":true,"theme":"opensans"} \ No newline at end of file +{ + "copyright": "Steve Buzonas", + "url": "http://stevebuzonas.com", + "email": "steve@fancyguy.com", + "gravatar": true, + "theme": "opensans" +} diff --git a/users/scarf.json b/users/scarf.json index 2250749a..02b4617c 100644 --- a/users/scarf.json +++ b/users/scarf.json @@ -1 +1,6 @@ -{"copyright":"Martin Brown","url":"http:\/\/www.f-list.net\/","email":"nobody@f-list.net","format":"html"} \ No newline at end of file +{ + "copyright": "Martin Brown", + "url": "http://www.f-list.net/", + "email": "nobody@f-list.net", + "format": "html" +} diff --git a/users/schiff.json b/users/schiff.json index 9f04befe..3c679f83 100644 --- a/users/schiff.json +++ b/users/schiff.json @@ -1 +1,6 @@ -{"copyright":"Hayden Schiff, http:\/\/schiff.io","url":"http:\/\/schiff.io","email":"haydenschiff@gmail.com","theme":"friendly"} \ No newline at end of file +{ + "copyright": "Hayden Schiff, http://schiff.io", + "url": "http://schiff.io", + "email": "haydenschiff@gmail.com", + "theme": "friendly" +} diff --git a/users/schjetne.json b/users/schjetne.json index d5011d78..c9bafa88 100644 --- a/users/schjetne.json +++ b/users/schjetne.json @@ -1 +1,3 @@ -{"copyright":"Jan Schjetne"} \ No newline at end of file +{ + "copyright": "Jan Schjetne" +} diff --git a/users/schlaus.json b/users/schlaus.json index 8b1a2db4..e7ad0303 100644 --- a/users/schlaus.json +++ b/users/schlaus.json @@ -1 +1,7 @@ -{"copyright":"Klaus Karkia, http:\/\/schlaus.karkia.me","url":"http:\/\/schlaus.karkia.me","email":"klaus@karkia.me","gravatar":true,"theme":"friendly"} \ No newline at end of file +{ + "copyright": "Klaus Karkia, http://schlaus.karkia.me", + "url": "http://schlaus.karkia.me", + "email": "klaus@karkia.me", + "gravatar": true, + "theme": "friendly" +} diff --git a/users/schoolapply.json b/users/schoolapply.json index d7240f23..ed90f21c 100644 --- a/users/schoolapply.json +++ b/users/schoolapply.json @@ -1,6 +1,6 @@ { - "copyright": "SchoolApply, https://www.schoolapply.com", - "email": "opensource@schoolapply.com", - "format": "html", - "theme": "friendly" + "copyright": "SchoolApply, https://www.schoolapply.com", + "email": "opensource@schoolapply.com", + "format": "html", + "theme": "friendly" } diff --git a/users/scio.json b/users/scio.json index 68b08e95..f9da85f1 100644 --- a/users/scio.json +++ b/users/scio.json @@ -1 +1,7 @@ -{"copyright":"Sayantan Chaudhuri","url":"https:\/\/google.com\/+SayantanChaudhuri\/about","email":"sayantan.chaudhuri@gmail.com","theme":"open-sans","gravatar":true} \ No newline at end of file +{ + "copyright": "Sayantan Chaudhuri", + "url": "https://google.com/+SayantanChaudhuri/about", + "email": "sayantan.chaudhuri@gmail.com", + "theme": "open-sans", + "gravatar": true +} diff --git a/users/scottrobertson.json b/users/scottrobertson.json index a25c99b5..0c66bbb7 100644 --- a/users/scottrobertson.json +++ b/users/scottrobertson.json @@ -1,6 +1,6 @@ { - "copyright": "Scott Robertson, https://scottrobertson.me", - "url": "https://scottrobertson.me", - "email": "scottymeuk@gmail.com", - "gravatar": true + "copyright": "Scott Robertson, https://scottrobertson.me", + "url": "https://scottrobertson.me", + "email": "scottymeuk@gmail.com", + "gravatar": true } diff --git a/users/scottsauyet.json b/users/scottsauyet.json index 9100a797..a290c4a7 100644 --- a/users/scottsauyet.json +++ b/users/scottsauyet.json @@ -1,7 +1,7 @@ { - "copyright": "Scott Sauyet, https://github.com/CrossEye", - "url": "https://github.com/CrossEye", - "email": "scott@sauyet.com", - "gravatar": true, - "theme" : "afterdark" + "copyright": "Scott Sauyet, https://github.com/CrossEye", + "url": "https://github.com/CrossEye", + "email": "scott@sauyet.com", + "gravatar": true, + "theme": "afterdark" } diff --git a/users/scoundrels.json b/users/scoundrels.json index 45d6c13f..4a92fcc3 100644 --- a/users/scoundrels.json +++ b/users/scoundrels.json @@ -1 +1,7 @@ -{"copyright":"The League of Magnificent Scoundrels","url":"http:\/\/thescoundrels.net.net\/","email":"support@thescoundrels.net","gravatar":true,"theme":"afterdark"} \ No newline at end of file +{ + "copyright": "The League of Magnificent Scoundrels", + "url": "http://thescoundrels.net.net/", + "email": "support@thescoundrels.net", + "gravatar": true, + "theme": "afterdark" +} diff --git a/users/scr.json b/users/scr.json index ff8e67cc..f4476507 100644 --- a/users/scr.json +++ b/users/scr.json @@ -1 +1,6 @@ -{"copyright":"Scribe Inc.","url":"https:\/\/scribenet.com","email":"systems@scribenet.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Scribe Inc.", + "url": "https://scribenet.com", + "email": "systems@scribenet.com", + "format": "txt" +} diff --git a/users/scribe.json b/users/scribe.json index 8bb060b8..181ef156 100644 --- a/users/scribe.json +++ b/users/scribe.json @@ -1 +1,7 @@ -{"copyright":"Scribe Inc.","url":"http:\/\/scribenet.com\/","email":"open@scribe.tools","format":"html","theme":"default"} \ No newline at end of file +{ + "copyright": "Scribe Inc.", + "url": "http://scribenet.com/", + "email": "open@scribe.tools", + "format": "html", + "theme": "default" +} diff --git a/users/scritt.json b/users/scritt.json index d773ff11..352dbc9d 100644 --- a/users/scritt.json +++ b/users/scritt.json @@ -1 +1,7 @@ -{"copyright":"Scritt.it","url":"http:\/\/scritt.it\/","format":"html","gravatar":false,"theme":"plaintext"} \ No newline at end of file +{ + "copyright": "Scritt.it", + "url": "http://scritt.it/", + "format": "html", + "gravatar": false, + "theme": "plaintext" +} diff --git a/users/scrittit.json b/users/scrittit.json index d773ff11..352dbc9d 100644 --- a/users/scrittit.json +++ b/users/scrittit.json @@ -1 +1,7 @@ -{"copyright":"Scritt.it","url":"http:\/\/scritt.it\/","format":"html","gravatar":false,"theme":"plaintext"} \ No newline at end of file +{ + "copyright": "Scritt.it", + "url": "http://scritt.it/", + "format": "html", + "gravatar": false, + "theme": "plaintext" +} diff --git a/users/sdailey.json b/users/sdailey.json index befc4bc1..a6d3069a 100644 --- a/users/sdailey.json +++ b/users/sdailey.json @@ -1 +1,4 @@ -{"copyright":"Sam Dailey","url":"http:\/\/samdailey.com"} \ No newline at end of file +{ + "copyright": "Sam Dailey", + "url": "http://samdailey.com" +} diff --git a/users/sdqali.json b/users/sdqali.json index c4cd4a63..08122ed0 100644 --- a/users/sdqali.json +++ b/users/sdqali.json @@ -1 +1,3 @@ -{"copyright":"Sadique Ali"} \ No newline at end of file +{ + "copyright": "Sadique Ali" +} diff --git a/users/sean-vieira.json b/users/sean-vieira.json index 090a80ce..95e01b80 100644 --- a/users/sean-vieira.json +++ b/users/sean-vieira.json @@ -1 +1,4 @@ -{"copyright":"Sean Vieira, http:\/\/dedeodesigns.com","url":"http:\/\/dedeodesigns.com"} \ No newline at end of file +{ + "copyright": "Sean Vieira, http://dedeodesigns.com", + "url": "http://dedeodesigns.com" +} diff --git a/users/seanecoffey.json b/users/seanecoffey.json index c2c93b03..9661ebd0 100644 --- a/users/seanecoffey.json +++ b/users/seanecoffey.json @@ -1,5 +1,5 @@ { - "copyright": "Sean Coffey, http://seanecoffey.com/", - "url": "http://seanecoffey.com/", - "email": "seanedwardcoffey@gmail.com" + "copyright": "Sean Coffey, http://seanecoffey.com/", + "url": "http://seanecoffey.com/", + "email": "seanedwardcoffey@gmail.com" } diff --git a/users/seanirby.json b/users/seanirby.json index d2fd7e81..416b6a26 100644 --- a/users/seanirby.json +++ b/users/seanirby.json @@ -1 +1,3 @@ -{"copyright":"Sean Irby"} \ No newline at end of file +{ + "copyright": "Sean Irby" +} diff --git a/users/seb.json b/users/seb.json index 98c7f8b2..4ea3b383 100644 --- a/users/seb.json +++ b/users/seb.json @@ -1 +1,3 @@ -{"copyright":"Seb Richards"} \ No newline at end of file +{ + "copyright": "Seb Richards" +} diff --git a/users/sebacruz.json b/users/sebacruz.json index 1a5ab861..7dc07952 100644 --- a/users/sebacruz.json +++ b/users/sebacruz.json @@ -1,5 +1,5 @@ { - "copyright": "Sebastian Cruz", - "url": "http://sebacruz.com", - "email": "sebacruzcode@gmail.com" + "copyright": "Sebastian Cruz", + "url": "http://sebacruz.com", + "email": "sebacruzcode@gmail.com" } diff --git a/users/sebelga.json b/users/sebelga.json index 4972269c..7106e7ee 100644 --- a/users/sebelga.json +++ b/users/sebelga.json @@ -1 +1,3 @@ -{"copyright":"S\u00e9bastien Loix"} \ No newline at end of file +{ + "copyright": "S\u00e9bastien Loix" +} diff --git a/users/secretery.json b/users/secretery.json index d90d80c5..eadc2d9b 100644 --- a/users/secretery.json +++ b/users/secretery.json @@ -1 +1,6 @@ -{"copyright":"Wesrc UG","url":"http:\/\/www.wesrc.com","email":"code@wesrc.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Wesrc UG", + "url": "http://www.wesrc.com", + "email": "code@wesrc.com", + "format": "txt" +} diff --git a/users/seikichi.json b/users/seikichi.json index 8e2f202a..0a30e67d 100644 --- a/users/seikichi.json +++ b/users/seikichi.json @@ -1 +1,4 @@ -{"copyright":"Seiichi KONDO","url":"https:\/\/github.com\/seikichi"} \ No newline at end of file +{ + "copyright": "Seiichi KONDO", + "url": "https://github.com/seikichi" +} diff --git a/users/seiran.json b/users/seiran.json index 68ba6368..3e984187 100644 --- a/users/seiran.json +++ b/users/seiran.json @@ -1 +1,4 @@ -{"copyright":"Seiran Hana","email":"pochy2008@qq.com"} \ No newline at end of file +{ + "copyright": "Seiran Hana", + "email": "pochy2008@qq.com" +} diff --git a/users/selwin.json b/users/selwin.json index abea572d..b957d6f2 100644 --- a/users/selwin.json +++ b/users/selwin.json @@ -1 +1,6 @@ -{"copyright":"Selwin Ong","url":"http:\/\/ong.co.id","email":"selwin.ong@gmail.com","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Selwin Ong", + "url": "http://ong.co.id", + "email": "selwin.ong@gmail.com", + "theme": "double-windsor" +} diff --git a/users/sendcloud.json b/users/sendcloud.json index 595b0ac9..9c4ae13c 100644 --- a/users/sendcloud.json +++ b/users/sendcloud.json @@ -1 +1,3 @@ -{"copyright":"sendcloud"} \ No newline at end of file +{ + "copyright": "sendcloud" +} diff --git a/users/senura.json b/users/senura.json index 4c503e22..04d565d9 100644 --- a/users/senura.json +++ b/users/senura.json @@ -1 +1,3 @@ -{"copyright":"Senura Seneviratne"} \ No newline at end of file +{ + "copyright": "Senura Seneviratne" +} diff --git a/users/senuraa.json b/users/senuraa.json index d4124ba7..3b905dc8 100644 --- a/users/senuraa.json +++ b/users/senuraa.json @@ -1 +1,5 @@ -{"copyright":"Senura Seneviratne","url":"http:\/\/senuraa.com","email":"senuraa@msn.com"} \ No newline at end of file +{ + "copyright": "Senura Seneviratne", + "url": "http://senuraa.com", + "email": "senuraa@msn.com" +} diff --git a/users/serdar.json b/users/serdar.json index 1ec9d6f4..6ef27e0e 100644 --- a/users/serdar.json +++ b/users/serdar.json @@ -1 +1,3 @@ -{"copyright":"Serdar \u00d6zt\u00fcrk"} \ No newline at end of file +{ + "copyright": "Serdar \u00d6zt\u00fcrk" +} diff --git a/users/sergeibelov.json b/users/sergeibelov.json index 41f16f2b..754e3cb3 100644 --- a/users/sergeibelov.json +++ b/users/sergeibelov.json @@ -1 +1,3 @@ -{"copyright":"Sergei Belov"} \ No newline at end of file +{ + "copyright": "Sergei Belov" +} diff --git a/users/sergey.json b/users/sergey.json index 999b2a89..3fdda8d5 100644 --- a/users/sergey.json +++ b/users/sergey.json @@ -1,6 +1,6 @@ { - "copyright": "Sergey Lukin", - "url": "http:\/\/sergeylukin.com", - "email": "contact@sergeylukin.com", - "theme": "double-windsor" + "copyright": "Sergey Lukin", + "url": "http://sergeylukin.com", + "email": "contact@sergeylukin.com", + "theme": "double-windsor" } diff --git a/users/serverside-boilerplate.json b/users/serverside-boilerplate.json index 3af419b9..b1065524 100644 --- a/users/serverside-boilerplate.json +++ b/users/serverside-boilerplate.json @@ -1 +1,6 @@ -{"copyright":"Server-side Boilerplate","theme":"default","email":"support@icodeclarity.com","format":"html"} \ No newline at end of file +{ + "copyright": "Server-side Boilerplate", + "theme": "default", + "email": "support@icodeclarity.com", + "format": "html" +} diff --git a/users/serversidetools.json b/users/serversidetools.json index 31894082..9a4c449a 100644 --- a/users/serversidetools.json +++ b/users/serversidetools.json @@ -1 +1,6 @@ -{"copyright":"$1","theme":"$2","email":"$3","format":"$4"} \ No newline at end of file +{ + "copyright": "$1", + "theme": "$2", + "email": "$3", + "format": "$4" +} diff --git a/users/sesser.json b/users/sesser.json index 1c2d4480..112f08ad 100644 --- a/users/sesser.json +++ b/users/sesser.json @@ -1 +1,6 @@ -{"copyright":"Randy Sesser","url":"http:\/\/www.randys.org","email":"sesser@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Randy Sesser", + "url": "http://www.randys.org", + "email": "sesser@gmail.com", + "format": "txt" +} diff --git a/users/sevagf.json b/users/sevagf.json index bf84d47e..318d6272 100644 --- a/users/sevagf.json +++ b/users/sevagf.json @@ -1 +1,3 @@ -{"copyright":"Sevag Frankian"} \ No newline at end of file +{ + "copyright": "Sevag Frankian" +} diff --git a/users/sevos.json b/users/sevos.json index f41d7b8a..164d374d 100644 --- a/users/sevos.json +++ b/users/sevos.json @@ -1 +1,3 @@ -{"copyright":"Artur Roszczyk"} \ No newline at end of file +{ + "copyright": "Artur Roszczyk" +} diff --git a/users/sexyfishhorse.json b/users/sexyfishhorse.json index 039a5ed5..9e4d3017 100644 --- a/users/sexyfishhorse.json +++ b/users/sexyfishhorse.json @@ -1,6 +1,6 @@ { - "copyright": "SexyFishHorse, http://sexy.fish.horse", - "url": "http://sexy.fish.horse", - "format": "html", - "theme": "material-red" + "copyright": "SexyFishHorse, http://sexy.fish.horse", + "url": "http://sexy.fish.horse", + "format": "html", + "theme": "material-red" } diff --git a/users/sg.json b/users/sg.json index 544d744e..3d75f09a 100644 --- a/users/sg.json +++ b/users/sg.json @@ -1 +1,3 @@ -{"copyright":"Sasha Gerrand"} \ No newline at end of file +{ + "copyright": "Sasha Gerrand" +} diff --git a/users/sgehlich.json b/users/sgehlich.json index 10032573..1ab8b670 100644 --- a/users/sgehlich.json +++ b/users/sgehlich.json @@ -1 +1,6 @@ -{"copyright":"Sascha Gehlich","url":"http:\/\/filshmedia.net","email":"sascha@gehlich.us","format":"html"} \ No newline at end of file +{ + "copyright": "Sascha Gehlich", + "url": "http://filshmedia.net", + "email": "sascha@gehlich.us", + "format": "html" +} diff --git a/users/sgerrand.json b/users/sgerrand.json index 544d744e..3d75f09a 100644 --- a/users/sgerrand.json +++ b/users/sgerrand.json @@ -1 +1,3 @@ -{"copyright":"Sasha Gerrand"} \ No newline at end of file +{ + "copyright": "Sasha Gerrand" +} diff --git a/users/sguidetti.json b/users/sguidetti.json index 713fcf22..8811902b 100644 --- a/users/sguidetti.json +++ b/users/sguidetti.json @@ -1,6 +1,6 @@ { - "copyright": "Steve Guidetti", - "url": "http://www.ultramegasoft.com", - "email" : "sguidetti@ultramegasoft.com", - "gravatar": true + "copyright": "Steve Guidetti", + "url": "http://www.ultramegasoft.com", + "email": "sguidetti@ultramegasoft.com", + "gravatar": true } diff --git a/users/sha2nk.json b/users/sha2nk.json index 8fc2b05b..086f0148 100644 --- a/users/sha2nk.json +++ b/users/sha2nk.json @@ -1 +1,6 @@ -{"copyright":"Shashank Duhan","url":"http:\/\/loudcurtain.com","email":"sha2nk@hailhumanity.com","format":"html"} \ No newline at end of file +{ + "copyright": "Shashank Duhan", + "url": "http://loudcurtain.com", + "email": "sha2nk@hailhumanity.com", + "format": "html" +} diff --git a/users/shad0wcore.json b/users/shad0wcore.json index 37cac9db..636cddd1 100644 --- a/users/shad0wcore.json +++ b/users/shad0wcore.json @@ -1,9 +1,8 @@ - { - "copyright": "Shad0wCore, https://twitter.com/Shad0wCore", - "url": "https://twitter.com/Shad0wCore", - "format": "txt", - "email": "shad0wcoretv@gmail.com", - "gravatar": true, - "theme": "material-cyan" + "copyright": "Shad0wCore, https://twitter.com/Shad0wCore", + "url": "https://twitter.com/Shad0wCore", + "format": "txt", + "email": "shad0wcoretv@gmail.com", + "gravatar": true, + "theme": "material-cyan" } diff --git a/users/shagen.json b/users/shagen.json index c9325c18..693a6058 100644 --- a/users/shagen.json +++ b/users/shagen.json @@ -1,8 +1,8 @@ { - "copyright": "Stefan Hagen (dilettant)", - "url": "https://stefan-hagen.website", - "email":"stefan@hagen.link", - "format": "html", - "theme": "material-gray", - "gravatar": true + "copyright": "Stefan Hagen (dilettant)", + "url": "https://stefan-hagen.website", + "email": "stefan@hagen.link", + "format": "html", + "theme": "material-gray", + "gravatar": true } diff --git a/users/shagun.json b/users/shagun.json index d5c609b2..ca3d3f33 100644 --- a/users/shagun.json +++ b/users/shagun.json @@ -1,7 +1,7 @@ { - "copyright": "Shagun Sodhani", - "url": "https://shagunsodhani.in", - "email":"sshagunsodhani@gmail.com", - "format": "html", - "gravatar": true + "copyright": "Shagun Sodhani", + "url": "https://shagunsodhani.in", + "email": "sshagunsodhani@gmail.com", + "format": "html", + "gravatar": true } diff --git a/users/shaieilat.json b/users/shaieilat.json index f4d3b434..9ed9d689 100644 --- a/users/shaieilat.json +++ b/users/shaieilat.json @@ -1 +1,3 @@ -{"copyright":"Shai Eilat"} \ No newline at end of file +{ + "copyright": "Shai Eilat" +} diff --git a/users/shaun.json b/users/shaun.json index a9cd5f2a..9e314b97 100644 --- a/users/shaun.json +++ b/users/shaun.json @@ -1,4 +1,4 @@ { - "copyright": "Shaun Hare, http://shaunhare.co.uk", - "url": "http://shaunhare.co.uk" -} \ No newline at end of file + "copyright": "Shaun Hare, http://shaunhare.co.uk", + "url": "http://shaunhare.co.uk" +} diff --git a/users/shawnsi.json b/users/shawnsi.json index 662db628..2cd4b9b6 100644 --- a/users/shawnsi.json +++ b/users/shawnsi.json @@ -1 +1,6 @@ -{"copyright":"Shawn Siefkas","url":"https:\/\/github.com\/shawnsi","email":"shawn@siefk.as","format":"txt"} \ No newline at end of file +{ + "copyright": "Shawn Siefkas", + "url": "https://github.com/shawnsi", + "email": "shawn@siefk.as", + "format": "txt" +} diff --git a/users/sheedy.json b/users/sheedy.json index 723a0cdf..04666e8d 100644 --- a/users/sheedy.json +++ b/users/sheedy.json @@ -1,4 +1,4 @@ { - "copyright": "Michael Sheedy, http://michaelsheedy.com", - "url": "http://michaelsheedy.com" + "copyright": "Michael Sheedy, http://michaelsheedy.com", + "url": "http://michaelsheedy.com" } diff --git a/users/sheknows.json b/users/sheknows.json index 2ae3635b..4b85d02b 100644 --- a/users/sheknows.json +++ b/users/sheknows.json @@ -1 +1,4 @@ -{"copyright":"SheKnows, LLC","url":"http:\/\/www.sheknows.com"} \ No newline at end of file +{ + "copyright": "SheKnows, LLC", + "url": "http://www.sheknows.com" +} diff --git a/users/sheldonrupp.json b/users/sheldonrupp.json index 7d456899..61671af5 100644 --- a/users/sheldonrupp.json +++ b/users/sheldonrupp.json @@ -1 +1,6 @@ -{"copyright":"Sheldon Rupp","url":"https:\/\/shel.io","email":"me@shel.io","format":"txt"} \ No newline at end of file +{ + "copyright": "Sheldon Rupp", + "url": "https://shel.io", + "email": "me@shel.io", + "format": "txt" +} diff --git a/users/shepjeng.json b/users/shepjeng.json index b350e8f2..c6e6b458 100644 --- a/users/shepjeng.json +++ b/users/shepjeng.json @@ -1 +1,6 @@ -{"copyright":"Chung-Chiang Cheng","url":"http:\/\/shepjeng.net","email":"shepjeng@gmail.com","format":"text"} \ No newline at end of file +{ + "copyright": "Chung-Chiang Cheng", + "url": "http://shepjeng.net", + "email": "shepjeng@gmail.com", + "format": "text" +} diff --git a/users/shibu.json b/users/shibu.json index b8bb8183..9d9713d8 100644 --- a/users/shibu.json +++ b/users/shibu.json @@ -1 +1,4 @@ -{"copyright":"Yoshiki Shibukawa","url":"http:\/\/www.shibu.jp"} \ No newline at end of file +{ + "copyright": "Yoshiki Shibukawa", + "url": "http://www.shibu.jp" +} diff --git a/users/shidhincr.json b/users/shidhincr.json index ee36c856..68a670fd 100644 --- a/users/shidhincr.json +++ b/users/shidhincr.json @@ -1 +1,3 @@ -{"copyright":"Shidhin C R"} \ No newline at end of file +{ + "copyright": "Shidhin C R" +} diff --git a/users/shiftkey.json b/users/shiftkey.json index be0b31ff..67ef4302 100644 --- a/users/shiftkey.json +++ b/users/shiftkey.json @@ -1 +1,6 @@ -{"copyright":"Brendan Forster","url":"http:\/\/brendanforster.com","email":"me@brendanforster.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Brendan Forster", + "url": "http://brendanforster.com", + "email": "me@brendanforster.com", + "format": "txt" +} diff --git a/users/shimizukawa.json b/users/shimizukawa.json index 73d4fda2..31961f27 100644 --- a/users/shimizukawa.json +++ b/users/shimizukawa.json @@ -1 +1,3 @@ -{"copyright":"Takayuki Shimizukawa"} \ No newline at end of file +{ + "copyright": "Takayuki Shimizukawa" +} diff --git a/users/shionryuu.json b/users/shionryuu.json index 6c644f90..4f69f8bf 100644 --- a/users/shionryuu.json +++ b/users/shionryuu.json @@ -1 +1,8 @@ -{ "copyright": "Shion Ryuu", "url": "https://github.com/ShionRyuu", "email": "shionryuu@outlook.com", "format": "html", "gravatar": true, "theme": "double-windsor" } +{ + "copyright": "Shion Ryuu", + "url": "https://github.com/ShionRyuu", + "email": "shionryuu@outlook.com", + "format": "html", + "gravatar": true, + "theme": "double-windsor" +} diff --git a/users/shivapoudel.json b/users/shivapoudel.json index a6e4cd69..e328ceb1 100644 --- a/users/shivapoudel.json +++ b/users/shivapoudel.json @@ -1 +1,5 @@ -{"copyright":"Shiva Poudel","url":"https:\/\/github.com/shivapoudel","theme":"double-windsor"} +{ + "copyright": "Shiva Poudel", + "url": "https://github.com/shivapoudel", + "theme": "double-windsor" +} diff --git a/users/shldrs.json b/users/shldrs.json index 3a4edee8..aedbd45c 100644 --- a/users/shldrs.json +++ b/users/shldrs.json @@ -1 +1,6 @@ -{"copyright":"James Tindall","url":"http:\/\/shldrs.com","email":"james@atomless.com","format":"txt"} \ No newline at end of file +{ + "copyright": "James Tindall", + "url": "http://shldrs.com", + "email": "james@atomless.com", + "format": "txt" +} diff --git a/users/shps.json b/users/shps.json index a4be201a..26f545db 100644 --- a/users/shps.json +++ b/users/shps.json @@ -1 +1,5 @@ -{"copyright":"Sergii Shpak","email":"sergii.shpak.web@gmail.com","theme":"afterdark"} \ No newline at end of file +{ + "copyright": "Sergii Shpak", + "email": "sergii.shpak.web@gmail.com", + "theme": "afterdark" +} diff --git a/users/shreyas.json b/users/shreyas.json index 3dd116a4..9a4bfac2 100644 --- a/users/shreyas.json +++ b/users/shreyas.json @@ -1,6 +1,6 @@ { - "copyright": "Shreyas Minocha", - "url": "https://shreyasminocha.me", - "email": "shreyasminocha@protonmail.com", - "format": "txt" + "copyright": "Shreyas Minocha", + "url": "https://shreyasminocha.me", + "email": "shreyasminocha@protonmail.com", + "format": "txt" } diff --git a/users/shumate.json b/users/shumate.json index d848e5f3..e64310a1 100644 --- a/users/shumate.json +++ b/users/shumate.json @@ -1 +1,6 @@ -{"copyright":"Brian Shumate","url":"http:\/\/brianshumate.com","email":"brian@brianshumate.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Brian Shumate", + "url": "http://brianshumate.com", + "email": "brian@brianshumate.com", + "format": "txt" +} diff --git a/users/shy.json b/users/shy.json index 0e6aa87e..c50fab46 100644 --- a/users/shy.json +++ b/users/shy.json @@ -1 +1,4 @@ -{"copyright":"Sung Hoon Yang","email":"sunghoonyang90@gmail.com"} \ No newline at end of file +{ + "copyright": "Sung Hoon Yang", + "email": "sunghoonyang90@gmail.com" +} diff --git a/users/siamak.json b/users/siamak.json index 7d0ffb2d..32ececfc 100644 --- a/users/siamak.json +++ b/users/siamak.json @@ -1 +1,5 @@ -{"copyright":"Siamak Mokhtari","email":"s.mokhtari75@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Siamak Mokhtari", + "email": "s.mokhtari75@gmail.com", + "format": "txt" +} diff --git a/users/sid.json b/users/sid.json index 957ddc79..2d5839be 100644 --- a/users/sid.json +++ b/users/sid.json @@ -1 +1,7 @@ -{"copyright":"Dirk Sidney Jansen, http:\/\/sidisinsane.com","url":"http:\/\/sidisinsane.com","email":"sid@sidisinsane.com","gravatar":false,"theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Dirk Sidney Jansen, http://sidisinsane.com", + "url": "http://sidisinsane.com", + "email": "sid@sidisinsane.com", + "gravatar": false, + "theme": "double-windsor" +} diff --git a/users/sidak.json b/users/sidak.json index ebdf3814..37e6f66b 100644 --- a/users/sidak.json +++ b/users/sidak.json @@ -1 +1,3 @@ -{"copyright":"Sidak Pal Singh"} +{ + "copyright": "Sidak Pal Singh" +} diff --git a/users/sienikasvusto.json b/users/sienikasvusto.json index 9db1bd33..bd25573d 100644 --- a/users/sienikasvusto.json +++ b/users/sienikasvusto.json @@ -1 +1,6 @@ -{"copyright":"Teemu Heikkila","Url":"http:\/\/emblica.org","email":"sienikasvusto@pistoke.org","format":"txt"} \ No newline at end of file +{ + "copyright": "Teemu Heikkila", + "Url": "http://emblica.org", + "email": "sienikasvusto@pistoke.org", + "format": "txt" +} diff --git a/users/sigfried.json b/users/sigfried.json index 4996c52b..b4b54540 100644 --- a/users/sigfried.json +++ b/users/sigfried.json @@ -1 +1,3 @@ -{"copyright":"Sigfried Gold"} \ No newline at end of file +{ + "copyright": "Sigfried Gold" +} diff --git a/users/signicode.json b/users/signicode.json index 4d387db6..34a99fe9 100644 --- a/users/signicode.json +++ b/users/signicode.json @@ -1 +1,6 @@ -{"copyright":"Signicode Micha\u0142 Czapracki","url":"http:\/\/www.signicode.com\/","email":"budleigh.salterton@gmail.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Signicode Micha\u0142 Czapracki", + "url": "http://www.signicode.com/", + "email": "budleigh.salterton@gmail.com", + "gravatar": true +} diff --git a/users/sija.json b/users/sija.json index 203cc25a..2ffac305 100644 --- a/users/sija.json +++ b/users/sija.json @@ -1,6 +1,6 @@ { - "copyright": "Sijawusz Pur Rahnama", - "url": "https://sija.pl", - "email": "sija@sija.pl", - "gravatar": true + "copyright": "Sijawusz Pur Rahnama", + "url": "https://sija.pl", + "email": "sija@sija.pl", + "gravatar": true } diff --git a/users/sil.json b/users/sil.json index 967dd0ad..5d72437f 100644 --- a/users/sil.json +++ b/users/sil.json @@ -1 +1,3 @@ -{"copyright":"SIL International"} \ No newline at end of file +{ + "copyright": "SIL International" +} diff --git a/users/sillysina.json b/users/sillysina.json index 70bf49d5..90a6ac31 100644 --- a/users/sillysina.json +++ b/users/sillysina.json @@ -1 +1,8 @@ -{ "copyright": "Sina Mashek", "url": "http://sina.mashek.xyz", "email": "sina@mashek.xyz", "format": "html", "theme": "default-dark", "gravatar": "true" } +{ + "copyright": "Sina Mashek", + "url": "http://sina.mashek.xyz", + "email": "sina@mashek.xyz", + "format": "html", + "theme": "default-dark", + "gravatar": "true" +} diff --git a/users/silvers.json b/users/silvers.json index dbc976ec..609fe23d 100644 --- a/users/silvers.json +++ b/users/silvers.json @@ -1 +1,6 @@ -{"copyright":"silvers","url":"https:\/\/github.com\/silvers","email":"ofsilvers+github@gmail.com","gravatar":true} \ No newline at end of file +{ + "copyright": "silvers", + "url": "https://github.com/silvers", + "email": "ofsilvers+github@gmail.com", + "gravatar": true +} diff --git a/users/sim.json b/users/sim.json index 2039ad25..d500618b 100644 --- a/users/sim.json +++ b/users/sim.json @@ -1 +1,5 @@ -{"copyright":"Sim Inc.","format":"html","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Sim Inc.", + "format": "html", + "theme": "double-windsor" +} diff --git a/users/simbo.json b/users/simbo.json index 19f87695..f2352e81 100644 --- a/users/simbo.json +++ b/users/simbo.json @@ -1 +1,6 @@ -{"copyright":"Simon Lepel","url":"http:\/\/simonlepel.de","email":"hallo@simonlepel.de","gravatar":true} \ No newline at end of file +{ + "copyright": "Simon Lepel", + "url": "http://simonlepel.de", + "email": "hallo@simonlepel.de", + "gravatar": true +} diff --git a/users/simgeker.json b/users/simgeker.json index 70b8d43d..29577d56 100644 --- a/users/simgeker.json +++ b/users/simgeker.json @@ -1 +1,7 @@ -{"copyright":"Anurag Simgeker","url":"http:\/\/anuragsimgeker.com","email":"me@anuragsimgeker.com","format":"txt","gravatar":true} \ No newline at end of file +{ + "copyright": "Anurag Simgeker", + "url": "http://anuragsimgeker.com", + "email": "me@anuragsimgeker.com", + "format": "txt", + "gravatar": true +} diff --git a/users/simon.json b/users/simon.json index 5bf1bd14..f52a06ce 100644 --- a/users/simon.json +++ b/users/simon.json @@ -1,3 +1,3 @@ { - "copyright": "Simon MacDonald, http://simonmacdonald.com" + "copyright": "Simon MacDonald, http://simonmacdonald.com" } diff --git a/users/simonkberg.json b/users/simonkberg.json index d07004fc..625ad423 100644 --- a/users/simonkberg.json +++ b/users/simonkberg.json @@ -1,7 +1,7 @@ { - "copyright": "Simon Kjellberg", - "url": "https://simonkjellberg.com", - "email": "simon.kjellberg@gmail.com", - "theme": "default", - "gravatar": true + "copyright": "Simon Kjellberg", + "url": "https://simonkjellberg.com", + "email": "simon.kjellberg@gmail.com", + "theme": "default", + "gravatar": true } diff --git a/users/simonwalsh.json b/users/simonwalsh.json index f2817de1..e57c36e8 100644 --- a/users/simonwalsh.json +++ b/users/simonwalsh.json @@ -1 +1,6 @@ -{"copyright":"Simon Walsh","url":"http:\/\/www.walsh.si","email":"simon@walsh.si","format":"txt"} \ No newline at end of file +{ + "copyright": "Simon Walsh", + "url": "http://www.walsh.si", + "email": "simon@walsh.si", + "format": "txt" +} diff --git a/users/singh.json b/users/singh.json index 1d0e91fe..2c602572 100644 --- a/users/singh.json +++ b/users/singh.json @@ -1 +1,4 @@ -{"copyright":"Hardeep Singh","email":"h@rdeep.ca"} \ No newline at end of file +{ + "copyright": "Hardeep Singh", + "email": "h@rdeep.ca" +} diff --git a/users/singingwolfboy.json b/users/singingwolfboy.json index 1a720bc8..e31c79fa 100644 --- a/users/singingwolfboy.json +++ b/users/singingwolfboy.json @@ -1 +1,5 @@ -{"copyright":"David Baumgold","url":"http:\/\/davidbaumgold.com","email":"david@davidbaumgold.com"} \ No newline at end of file +{ + "copyright": "David Baumgold", + "url": "http://davidbaumgold.com", + "email": "david@davidbaumgold.com" +} diff --git a/users/siteware.json b/users/siteware.json index ff052d80..869adf43 100644 --- a/users/siteware.json +++ b/users/siteware.json @@ -1 +1,5 @@ -{"copyright":"Edwin Mol","email":"edwin@siteware.be","gravatar":true} \ No newline at end of file +{ + "copyright": "Edwin Mol", + "email": "edwin@siteware.be", + "gravatar": true +} diff --git a/users/siutsin.json b/users/siutsin.json index a34cff0f..ab49f0b0 100644 --- a/users/siutsin.json +++ b/users/siutsin.json @@ -1 +1,8 @@ -{"copyright":"Siu Tsin Li","url":"http:\/\/siutsin.com","email":"li@siutsin.com","theme":"double-windsor","format":"html","gravatar":true} \ No newline at end of file +{ + "copyright": "Siu Tsin Li", + "url": "http://siutsin.com", + "email": "li@siutsin.com", + "theme": "double-windsor", + "format": "html", + "gravatar": true +} diff --git a/users/sivasankarnc.json b/users/sivasankarnc.json index 0eda0285..9a6c1db2 100644 --- a/users/sivasankarnc.json +++ b/users/sivasankarnc.json @@ -1,8 +1,8 @@ { - "copyright": "Sivasankaran Chandrasekaran, https://github.com/sivasankarnc", - "url": "https://twitter.com/sivasankarnc", - "format": "txt", - "email": "sivasankarnc@gmail.com", - "gravatar": true, - "theme" : "default" + "copyright": "Sivasankaran Chandrasekaran, https://github.com/sivasankarnc", + "url": "https://twitter.com/sivasankarnc", + "format": "txt", + "email": "sivasankarnc@gmail.com", + "gravatar": true, + "theme": "default" } diff --git a/users/siwatpru.json b/users/siwatpru.json index 5aaccde8..11e888c1 100644 --- a/users/siwatpru.json +++ b/users/siwatpru.json @@ -1,6 +1,6 @@ { - "copyright": "Siwat Pruksapanya", - "email": "siwat.pru@outlook.com", - "gravatar": true, - "theme": "material-deep-orange" + "copyright": "Siwat Pruksapanya", + "email": "siwat.pru@outlook.com", + "gravatar": true, + "theme": "material-deep-orange" } diff --git a/users/sjs.json b/users/sjs.json index ff825145..aeca491b 100644 --- a/users/sjs.json +++ b/users/sjs.json @@ -1,5 +1,5 @@ { - "copyright": "Sami Samhuri, http://samhuri.net", - "url": "http://samhuri.net", - "email": "sami@samhuri.net" + "copyright": "Sami Samhuri, http://samhuri.net", + "url": "http://samhuri.net", + "email": "sami@samhuri.net" } diff --git a/users/sjwilliams.json b/users/sjwilliams.json index 999b7857..fd84ce63 100644 --- a/users/sjwilliams.json +++ b/users/sjwilliams.json @@ -1 +1,5 @@ -{"copyright":"Josh Williams","url":"http:\/\/joshwilliams.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Josh Williams", + "url": "http://joshwilliams.com", + "format": "txt" +} diff --git a/users/skeletonframework.json b/users/skeletonframework.json index 296126ef..085a8ad2 100644 --- a/users/skeletonframework.json +++ b/users/skeletonframework.json @@ -1 +1,3 @@ -{"copyright":"Skeleton Framework"} \ No newline at end of file +{ + "copyright": "Skeleton Framework" +} diff --git a/users/sketchmore.json b/users/sketchmore.json index 137b6ded..2df3f0b7 100644 --- a/users/sketchmore.json +++ b/users/sketchmore.json @@ -1 +1,5 @@ -{"copyright":"Sketchmore","url":"http:\/\/sketchmore.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Sketchmore", + "url": "http://sketchmore.com", + "format": "txt" +} diff --git a/users/skidding.json b/users/skidding.json index 1f729592..10f22af1 100644 --- a/users/skidding.json +++ b/users/skidding.json @@ -1 +1,4 @@ -{"copyright":"@skidding \u2014 Ovidiu Chereche\u0219","url":"http:\/\/ovidiu.ch"} \ No newline at end of file +{ + "copyright": "@skidding \u2014 Ovidiu Chereche\u0219", + "url": "http://ovidiu.ch" +} diff --git a/users/skinofstars.json b/users/skinofstars.json index 42bb28ae..47780971 100644 --- a/users/skinofstars.json +++ b/users/skinofstars.json @@ -1 +1,6 @@ -{"copyright":"Kevin Carmody","url":"http:\/\/skinofstars.com","email":"kevin@skinofstars.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Kevin Carmody", + "url": "http://skinofstars.com", + "email": "kevin@skinofstars.com", + "format": "txt" +} diff --git a/users/skip.json b/users/skip.json index f40c8da4..6170aa58 100644 --- a/users/skip.json +++ b/users/skip.json @@ -1,5 +1,5 @@ { - "copyright": "Matthew 'Skip' Rotter, http://codechops.com", - "url": "http://codechops.com", - "theme": "flesch" + "copyright": "Matthew 'Skip' Rotter, http://codechops.com", + "url": "http://codechops.com", + "theme": "flesch" } diff --git a/users/skwasha.json b/users/skwasha.json index c785b409..be2cdd41 100644 --- a/users/skwasha.json +++ b/users/skwasha.json @@ -1 +1,3 @@ -{"copyright":"Sascha Linn"} \ No newline at end of file +{ + "copyright": "Sascha Linn" +} diff --git a/users/skymaiden.json b/users/skymaiden.json index bb6ccbc1..e36a5950 100644 --- a/users/skymaiden.json +++ b/users/skymaiden.json @@ -1 +1,4 @@ -{"copyright":"Hinerangi Courtenay","url":"http:\/\/skymaiden.com"} \ No newline at end of file +{ + "copyright": "Hinerangi Courtenay", + "url": "http://skymaiden.com" +} diff --git a/users/slackit.json b/users/slackit.json index 91d95c1d..58fea364 100644 --- a/users/slackit.json +++ b/users/slackit.json @@ -1 +1,4 @@ -{"copyright":"OrgaChem","url":"https:\/\/github.com\/OrgaChem\/slackit"} \ No newline at end of file +{ + "copyright": "OrgaChem", + "url": "https://github.com/OrgaChem/slackit" +} diff --git a/users/slashsbin.json b/users/slashsbin.json index 631b7e94..844f0fff 100644 --- a/users/slashsbin.json +++ b/users/slashsbin.json @@ -1 +1,7 @@ -{"copyright":"Mohammad Shokri Khanghah, https://slashsbin.com","url":"https://slashsbin.com","email":"shokri.md@gmail.com","gravatar":true, "theme":"material-blue"} +{ + "copyright": "Mohammad Shokri Khanghah, https://slashsbin.com", + "url": "https://slashsbin.com", + "email": "shokri.md@gmail.com", + "gravatar": true, + "theme": "material-blue" +} diff --git a/users/sliceofcode.json b/users/sliceofcode.json index 41ed0581..4845bf89 100644 --- a/users/sliceofcode.json +++ b/users/sliceofcode.json @@ -1 +1,3 @@ -{"copyright":"Slice of Code"} \ No newline at end of file +{ + "copyright": "Slice of Code" +} diff --git a/users/slikts.json b/users/slikts.json index d657cbff..28f28566 100644 --- a/users/slikts.json +++ b/users/slikts.json @@ -1 +1,6 @@ -{"copyright":"slikts","url":"http:\/\/untu.ms","email":"dabas@untu.ms","format":"txt"} \ No newline at end of file +{ + "copyright": "slikts", + "url": "http://untu.ms", + "email": "dabas@untu.ms", + "format": "txt" +} diff --git a/users/sloria.json b/users/sloria.json index f196dce9..5593a56c 100644 --- a/users/sloria.json +++ b/users/sloria.json @@ -1 +1,3 @@ -{"copyright":"Steven Loria"} \ No newline at end of file +{ + "copyright": "Steven Loria" +} diff --git a/users/sm.json b/users/sm.json index 38e41cbe..cf48f256 100644 --- a/users/sm.json +++ b/users/sm.json @@ -1 +1,6 @@ -{"copyright":"Shashank Mehta","url":"http:\/\/shashankmehta.in","email":"me@shashankmehta.in","format":"txt"} \ No newline at end of file +{ + "copyright": "Shashank Mehta", + "url": "http://shashankmehta.in", + "email": "me@shashankmehta.in", + "format": "txt" +} diff --git a/users/smg.json b/users/smg.json index 544d744e..3d75f09a 100644 --- a/users/smg.json +++ b/users/smg.json @@ -1 +1,3 @@ -{"copyright":"Sasha Gerrand"} \ No newline at end of file +{ + "copyright": "Sasha Gerrand" +} diff --git a/users/smirking-ninja.json b/users/smirking-ninja.json index 475122ec..e9bc5e96 100644 --- a/users/smirking-ninja.json +++ b/users/smirking-ninja.json @@ -1 +1,6 @@ -{"copyright":"Connor Spencer Harries","url":"https:\/\/smirking.ninja","email":"connor@smirking.ninja","format":"txt"} \ No newline at end of file +{ + "copyright": "Connor Spencer Harries", + "url": "https://smirking.ninja", + "email": "connor@smirking.ninja", + "format": "txt" +} diff --git a/users/smly.json b/users/smly.json index 5730f0ec..504a8ca6 100644 --- a/users/smly.json +++ b/users/smly.json @@ -1 +1,3 @@ -{"copyright":"Kohei Ozaki"} \ No newline at end of file +{ + "copyright": "Kohei Ozaki" +} diff --git a/users/smt.json b/users/smt.json index 83ec4270..450de70d 100644 --- a/users/smt.json +++ b/users/smt.json @@ -1,5 +1,5 @@ { - "copyright": "Stephen Tudor, http://www.stephentudor.com", - "url": "http://www.stephentudor.com", - "theme": "hipster-gray" + "copyright": "Stephen Tudor, http://www.stephentudor.com", + "url": "http://www.stephentudor.com", + "theme": "hipster-gray" } diff --git a/users/sndnvaps.json b/users/sndnvaps.json index 706cda44..91af7264 100644 --- a/users/sndnvaps.json +++ b/users/sndnvaps.json @@ -1,8 +1,8 @@ { - "copyright":"Jimes Yang", - "url":"http:\/\/blog.sndnvaps.com/", - "email":"sndnvaps@gmail.com", - "format":"html", - "gravatar":true, - "theme":"orange" + "copyright": "Jimes Yang", + "url": "http://blog.sndnvaps.com/", + "email": "sndnvaps@gmail.com", + "format": "html", + "gravatar": true, + "theme": "orange" } diff --git a/users/snhack.json b/users/snhack.json index 39428f32..70ed1d23 100644 --- a/users/snhack.json +++ b/users/snhack.json @@ -1 +1,6 @@ -{"copyright":"Swindon Hackspace","url":"swindon.hackspace.org.uk","email":"snhackspace@gmail.com","gravatar":"true"} \ No newline at end of file +{ + "copyright": "Swindon Hackspace", + "url": "swindon.hackspace.org.uk", + "email": "snhackspace@gmail.com", + "gravatar": "true" +} diff --git a/users/snhackspace.json b/users/snhackspace.json index 9a8bb384..c5e6a249 100644 --- a/users/snhackspace.json +++ b/users/snhackspace.json @@ -1 +1,4 @@ -{"copyright":"Swindon Hackspace","url":"http:\/\/swindon.hackspace.org.uk"} \ No newline at end of file +{ + "copyright": "Swindon Hackspace", + "url": "http://swindon.hackspace.org.uk" +} diff --git a/users/snig.json b/users/snig.json index 71ecd13c..92c8d190 100644 --- a/users/snig.json +++ b/users/snig.json @@ -1 +1,6 @@ -{"copyright":"Dmitry Mina","url":"http:\/\/snig.ga","email":"snigavig@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Dmitry Mina", + "url": "http://snig.ga", + "email": "snigavig@gmail.com", + "format": "txt" +} diff --git a/users/snwflake.json b/users/snwflake.json index 29d8dc18..e99dde20 100644 --- a/users/snwflake.json +++ b/users/snwflake.json @@ -1,6 +1,6 @@ { - "copyright": "Florian Mahlert", - "url": "https://me.snwflake.ml", - "email": "me@snwflake.ml", - "theme": "black-beauty" + "copyright": "Florian Mahlert", + "url": "https://me.snwflake.ml", + "email": "me@snwflake.ml", + "theme": "black-beauty" } diff --git a/users/softcreatr.json b/users/softcreatr.json index b0d3f383..fc359197 100644 --- a/users/softcreatr.json +++ b/users/softcreatr.json @@ -1,7 +1,7 @@ { - "copyright":"Sascha Greuel", - "url":"https://www.softcreatr.de", - "email":"sascha@softcreatr.de", - "theme":"material-blue", - "gravatar":true + "copyright": "Sascha Greuel", + "url": "https://www.softcreatr.de", + "email": "sascha@softcreatr.de", + "theme": "material-blue", + "gravatar": true } diff --git a/users/softnayr.json b/users/softnayr.json index a8e8d1eb..669c0fc6 100644 --- a/users/softnayr.json +++ b/users/softnayr.json @@ -1,6 +1,6 @@ { - "copyright": "Ryan Bañaria", - "email": "b.softnayr@gmail.com", - "theme": "dusk", - "gravatar": true + "copyright": "Ryan Ba\u00c3\u00b1aria", + "email": "b.softnayr@gmail.com", + "theme": "dusk", + "gravatar": true } diff --git a/users/softwave.json b/users/softwave.json index 15a405ed..2e1b064d 100644 --- a/users/softwave.json +++ b/users/softwave.json @@ -1,6 +1,6 @@ { - "copyright": "Softwave, http://softwavestudios.com/", - "url": "http://softwavestudios.com/", - "theme": "default", - "gravatar": true + "copyright": "Softwave, http://softwavestudios.com/", + "url": "http://softwavestudios.com/", + "theme": "default", + "gravatar": true } diff --git a/users/sohalt.json b/users/sohalt.json index 7fa82ca1..fd524aca 100644 --- a/users/sohalt.json +++ b/users/sohalt.json @@ -1 +1,6 @@ -{"copyright":"sohalt","url":"http:\/\/www.sohalt.net","email":"sohalt@sohalt.net","format":"txt"} \ No newline at end of file +{ + "copyright": "sohalt", + "url": "http://www.sohalt.net", + "email": "sohalt@sohalt.net", + "format": "txt" +} diff --git a/users/solid-constructs.json b/users/solid-constructs.json index 83a81f46..43da55f2 100644 --- a/users/solid-constructs.json +++ b/users/solid-constructs.json @@ -1 +1,3 @@ -{"copyright":"Solid Constructs, LLC"} \ No newline at end of file +{ + "copyright": "Solid Constructs, LLC" +} diff --git a/users/solidworx.json b/users/solidworx.json index 4fc0e5ba..eac5b9c2 100644 --- a/users/solidworx.json +++ b/users/solidworx.json @@ -1,5 +1,5 @@ { - "copyright": "SolidWorx", - "url": "https://solidworx.co", - "email": "open-source@solidworx.co" + "copyright": "SolidWorx", + "url": "https://solidworx.co", + "email": "open-source@solidworx.co" } diff --git a/users/somya.json b/users/somya.json index a6866a43..404e7aa3 100644 --- a/users/somya.json +++ b/users/somya.json @@ -1 +1,3 @@ -{"copyright":"Somya Anand, somyaanand214@gmail.com"} \ No newline at end of file +{ + "copyright": "Somya Anand, somyaanand214@gmail.com" +} diff --git a/users/sonalraj.json b/users/sonalraj.json index 0e0016ab..3c204f4b 100644 --- a/users/sonalraj.json +++ b/users/sonalraj.json @@ -1 +1,6 @@ -{"copyright":"Sonal Raj","url":"http:\/\/sonalraj.com","email":"sonal.nitjsr@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Sonal Raj", + "url": "http://sonalraj.com", + "email": "sonal.nitjsr@gmail.com", + "format": "txt" +} diff --git a/users/songdu.json b/users/songdu.json index b4fb452e..13aa54c0 100644 --- a/users/songdu.json +++ b/users/songdu.json @@ -1 +1,6 @@ -{"copyright":"Du Song","url":"http:\/\/rollingcode.org","email":"freewizard@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Du Song", + "url": "http://rollingcode.org", + "email": "freewizard@gmail.com", + "format": "txt" +} diff --git a/users/songmu.json b/users/songmu.json index da78d273..f15e7e3e 100644 --- a/users/songmu.json +++ b/users/songmu.json @@ -1 +1,3 @@ -{"copyright":"Masayuki Matsuki"} \ No newline at end of file +{ + "copyright": "Masayuki Matsuki" +} diff --git a/users/sonnywebdesign.json b/users/sonnywebdesign.json index 142f61ad..64c99d5a 100644 --- a/users/sonnywebdesign.json +++ b/users/sonnywebdesign.json @@ -1 +1,5 @@ -{"copyright":"SonnyWebDesign","url":"https:\/\/github.com\/SonnyWebDesign","theme":"black-beauty"} \ No newline at end of file +{ + "copyright": "SonnyWebDesign", + "url": "https://github.com/SonnyWebDesign", + "theme": "black-beauty" +} diff --git a/users/soong.json b/users/soong.json index 0ac89ac5..a0c04fd1 100644 --- a/users/soong.json +++ b/users/soong.json @@ -1,6 +1,6 @@ { - "copyright": "Billie Soong, http://volfox.cn", - "url": "http://volfox.cn", - "email": "nonkr@hotmail.com", - "theme": "default" + "copyright": "Billie Soong, http://volfox.cn", + "url": "http://volfox.cn", + "email": "nonkr@hotmail.com", + "theme": "default" } diff --git a/users/sorairo.json b/users/sorairo.json index 536d6852..cd3f3280 100644 --- a/users/sorairo.json +++ b/users/sorairo.json @@ -1,5 +1,5 @@ { - "copyright": "Sora Iro Fansubs, https://sorairo.fansub.site", - "url": "https://sorairo.fansub.site", - "theme": "default-dark" + "copyright": "Sora Iro Fansubs, https://sorairo.fansub.site", + "url": "https://sorairo.fansub.site", + "theme": "default-dark" } diff --git a/users/soralv9.json b/users/soralv9.json index 94afee5a..04ed0652 100644 --- a/users/soralv9.json +++ b/users/soralv9.json @@ -1 +1,5 @@ -{"copyright":"Sora@Lv9, http:\/\/sora.lv9.org","url":"http:\/\/sora.lv9.org","theme":"flesch"} \ No newline at end of file +{ + "copyright": "Sora@Lv9, http://sora.lv9.org", + "url": "http://sora.lv9.org", + "theme": "flesch" +} diff --git a/users/soren121.json b/users/soren121.json index 96fbce1a..85cff7ed 100644 --- a/users/soren121.json +++ b/users/soren121.json @@ -1 +1,4 @@ -{"copyright":"Nicholas Narsing","email":"soren121@sorenstudios.com"} \ No newline at end of file +{ + "copyright": "Nicholas Narsing", + "email": "soren121@sorenstudios.com" +} diff --git a/users/sotayamashita.json b/users/sotayamashita.json index c0e326c1..e84a12b4 100644 --- a/users/sotayamashita.json +++ b/users/sotayamashita.json @@ -1,6 +1,6 @@ { - "copyright": "Sota Yamashita, https://github.com/sotayamashita", - "url": "https://github.com/sotayamshita", - "email": "sota.yamashita@gmail.com", - "gravatar": false + "copyright": "Sota Yamashita, https://github.com/sotayamashita", + "url": "https://github.com/sotayamshita", + "email": "sota.yamashita@gmail.com", + "gravatar": false } diff --git a/users/souri.json b/users/souri.json index 93735d09..438d3b57 100644 --- a/users/souri.json +++ b/users/souri.json @@ -1 +1,5 @@ -{"copyright":"Souri Guha","url":"http:\/\/souriguha.wordpress.com","email":"souriguha@gmail.com"} \ No newline at end of file +{ + "copyright": "Souri Guha", + "url": "http://souriguha.wordpress.com", + "email": "souriguha@gmail.com" +} diff --git a/users/specimen.json b/users/specimen.json index f39ba776..1215919b 100644 --- a/users/specimen.json +++ b/users/specimen.json @@ -1 +1,3 @@ -{"copyright":"Specimen"} \ No newline at end of file +{ + "copyright": "Specimen" +} diff --git a/users/sphw.json b/users/sphw.json index 5fbf85c4..8c1deef7 100644 --- a/users/sphw.json +++ b/users/sphw.json @@ -1 +1,3 @@ -{"copyright":"Sascha Wise"} \ No newline at end of file +{ + "copyright": "Sascha Wise" +} diff --git a/users/spier.json b/users/spier.json index fa7a5ff0..5bb8833d 100644 --- a/users/spier.json +++ b/users/spier.json @@ -1 +1,4 @@ -{"copyright":"Sebastian Spier, http:\/\/spier.hu","url":"http:\/\/spier.hu"} \ No newline at end of file +{ + "copyright": "Sebastian Spier, http://spier.hu", + "url": "http://spier.hu" +} diff --git a/users/spirited.json b/users/spirited.json index a455a606..b88aee74 100644 --- a/users/spirited.json +++ b/users/spirited.json @@ -1 +1,3 @@ -{"copyright":"Spirited Media Inc."} \ No newline at end of file +{ + "copyright": "Spirited Media Inc." +} diff --git a/users/spockz.json b/users/spockz.json index a7055792..7ada0d29 100644 --- a/users/spockz.json +++ b/users/spockz.json @@ -1 +1,3 @@ -{"copyright":"Alessandro Vermeulen"} \ No newline at end of file +{ + "copyright": "Alessandro Vermeulen" +} diff --git a/users/spooky.json b/users/spooky.json index b7367681..ed884925 100644 --- a/users/spooky.json +++ b/users/spooky.json @@ -1 +1,3 @@ -{"copyright":"Rylee Harrison"} \ No newline at end of file +{ + "copyright": "Rylee Harrison" +} diff --git a/users/sputnik27.json b/users/sputnik27.json index 06ad7016..0115fc43 100644 --- a/users/sputnik27.json +++ b/users/sputnik27.json @@ -1 +1,6 @@ -{"copyright":"Florian Wilhelm","url":"http:\/\/sputnik27.github.io","email":"florian-wilhelm@onlinehome.de","format":"txt"} \ No newline at end of file +{ + "copyright": "Florian Wilhelm", + "url": "http://sputnik27.github.io", + "email": "florian-wilhelm@onlinehome.de", + "format": "txt" +} diff --git a/users/sqneffect.json b/users/sqneffect.json index 035dc0f7..2c3039a7 100644 --- a/users/sqneffect.json +++ b/users/sqneffect.json @@ -1 +1,3 @@ -{"copyright":"Robert Karbarz"} \ No newline at end of file +{ + "copyright": "Robert Karbarz" +} diff --git a/users/src-run.json b/users/src-run.json index 304672c7..8f8d9d53 100644 --- a/users/src-run.json +++ b/users/src-run.json @@ -1,7 +1,7 @@ { - "copyright":"Source Consulting, ", - "url":"http://src.run", - "email":"src@src.run", - "theme":"material-pink", - "gravatar":false + "copyright": "Source Consulting, ", + "url": "http://src.run", + "email": "src@src.run", + "theme": "material-pink", + "gravatar": false } diff --git a/users/srezic.json b/users/srezic.json index 434a5dce..9ed33b93 100644 --- a/users/srezic.json +++ b/users/srezic.json @@ -1 +1,3 @@ -{"copyright":"Slaven Rezic"} \ No newline at end of file +{ + "copyright": "Slaven Rezic" +} diff --git a/users/srivathsa.json b/users/srivathsa.json index bf7ad239..d37541e8 100644 --- a/users/srivathsa.json +++ b/users/srivathsa.json @@ -1,8 +1,6 @@ - { - "copyright": "Sai Sri Vathsa", - "email": "srivathsaeric@gmail.com", - "format":"html", - "gravatar": true - + "copyright": "Sai Sri Vathsa", + "email": "srivathsaeric@gmail.com", + "format": "html", + "gravatar": true } diff --git a/users/srmor.json b/users/srmor.json index 59790569..5f3a8372 100644 --- a/users/srmor.json +++ b/users/srmor.json @@ -1 +1,7 @@ -{"copyright":"Stephen Morrison","email":"srmorrisonjit@gmail.com","gravatar":true,"format":"html","theme":"afterdark"} +{ + "copyright": "Stephen Morrison", + "email": "srmorrisonjit@gmail.com", + "gravatar": true, + "format": "html", + "theme": "afterdark" +} diff --git a/users/ss.json b/users/ss.json index a516bdff..e15f3254 100644 --- a/users/ss.json +++ b/users/ss.json @@ -1 +1,3 @@ -{"copyright":"Sidney San Mart\u00edn"} \ No newline at end of file +{ + "copyright": "Sidney San Mart\u00edn" +} diff --git a/users/ssiefkas.json b/users/ssiefkas.json index 662db628..2cd4b9b6 100644 --- a/users/ssiefkas.json +++ b/users/ssiefkas.json @@ -1 +1,6 @@ -{"copyright":"Shawn Siefkas","url":"https:\/\/github.com\/shawnsi","email":"shawn@siefk.as","format":"txt"} \ No newline at end of file +{ + "copyright": "Shawn Siefkas", + "url": "https://github.com/shawnsi", + "email": "shawn@siefk.as", + "format": "txt" +} diff --git a/users/stacey.json b/users/stacey.json index 0cfa5804..3bf83f6d 100644 --- a/users/stacey.json +++ b/users/stacey.json @@ -1 +1,4 @@ -{"copyright":"Stacey Moore","url":"http:\/\/www.staceymoore.com"} \ No newline at end of file +{ + "copyright": "Stacey Moore", + "url": "http://www.staceymoore.com" +} diff --git a/users/stack72.json b/users/stack72.json index f2dc6ad0..86dc7051 100644 --- a/users/stack72.json +++ b/users/stack72.json @@ -1 +1,3 @@ -{"copyright":"Paul Stack"} \ No newline at end of file +{ + "copyright": "Paul Stack" +} diff --git a/users/stakats.json b/users/stakats.json index cb7c20d6..c1f5a7b2 100644 --- a/users/stakats.json +++ b/users/stakats.json @@ -1 +1,5 @@ -{"copyright":"Sean Takats","email":"sean@takats.org","format":"html"} \ No newline at end of file +{ + "copyright": "Sean Takats", + "email": "sean@takats.org", + "format": "html" +} diff --git a/users/stanzheng.json b/users/stanzheng.json index e59bd753..6fa0c84b 100644 --- a/users/stanzheng.json +++ b/users/stanzheng.json @@ -1 +1,3 @@ -{"copyright":"Stanley Zheng"} \ No newline at end of file +{ + "copyright": "Stanley Zheng" +} diff --git a/users/stefan.json b/users/stefan.json index fdcf49e5..e5544cb4 100644 --- a/users/stefan.json +++ b/users/stefan.json @@ -1,7 +1,7 @@ { - "copyright": "Stefan Bruvik", - "url": "http://stefan.codes", - "email": "stefan.bruvik@gmail.com", - "theme": "eula-modern", - "gravatar": true + "copyright": "Stefan Bruvik", + "url": "http://stefan.codes", + "email": "stefan.bruvik@gmail.com", + "theme": "eula-modern", + "gravatar": true } diff --git a/users/stephdatu.json b/users/stephdatu.json index 143c4700..5c62d995 100644 --- a/users/stephdatu.json +++ b/users/stephdatu.json @@ -1 +1,6 @@ -{"copyright":"Stephanie Datu","url":"http:\/\/stephdatu.com","email":"stephdatu@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Stephanie Datu", + "url": "http://stephdatu.com", + "email": "stephdatu@gmail.com", + "format": "txt" +} diff --git a/users/stephendavis89.json b/users/stephendavis89.json index 440df901..5dd76db4 100644 --- a/users/stephendavis89.json +++ b/users/stephendavis89.json @@ -1,5 +1,5 @@ { - "copyright": "Stephen Davis", - "url": "http://stephendavis.im/", - "theme": "double-windsor" + "copyright": "Stephen Davis", + "url": "http://stephendavis.im/", + "theme": "double-windsor" } diff --git a/users/stephenhay.json b/users/stephenhay.json index fb64e254..2264c279 100644 --- a/users/stephenhay.json +++ b/users/stephenhay.json @@ -1 +1,3 @@ -{"copyright":"Stephen Hay"} \ No newline at end of file +{ + "copyright": "Stephen Hay" +} diff --git a/users/steve.json b/users/steve.json index 502c6601..b71efa50 100644 --- a/users/steve.json +++ b/users/steve.json @@ -1 +1,7 @@ -{"copyright":"Steve Banton","url":"http:\/\/stevebanton.com","email":"steve.g.banton@gmail.com","format":"html","gravatar":true} +{ + "copyright": "Steve Banton", + "url": "http://stevebanton.com", + "email": "steve.g.banton@gmail.com", + "format": "html", + "gravatar": true +} diff --git a/users/stevegraham.json b/users/stevegraham.json index d09da62d..640fbb91 100644 --- a/users/stevegraham.json +++ b/users/stevegraham.json @@ -1 +1,3 @@ -{"copyright":"Stevie Graham"} \ No newline at end of file +{ + "copyright": "Stevie Graham" +} diff --git a/users/stevegrunwell.json b/users/stevegrunwell.json index 3497990a..6585164c 100644 --- a/users/stevegrunwell.json +++ b/users/stevegrunwell.json @@ -1 +1,6 @@ -{"copyright":"Steve Grunwell","url":"https:\/\/stevegrunwell.com","email":"steve@stevegrunwell.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Steve Grunwell", + "url": "https://stevegrunwell.com", + "email": "steve@stevegrunwell.com", + "format": "txt" +} diff --git a/users/stever.json b/users/stever.json index ee282244..ae88b85b 100644 --- a/users/stever.json +++ b/users/stever.json @@ -1 +1,5 @@ -{"copyright":"Steven Robertson","url":"http://stever.org.uk","email":"steverobertson@gmail.com"} \ No newline at end of file +{ + "copyright": "Steven Robertson", + "url": "http://stever.org.uk", + "email": "steverobertson@gmail.com" +} diff --git a/users/stewart.json b/users/stewart.json index a33c1379..dda00190 100644 --- a/users/stewart.json +++ b/users/stewart.json @@ -1 +1,3 @@ -{"copyright":"Andrew Stewart"} \ No newline at end of file +{ + "copyright": "Andrew Stewart" +} diff --git a/users/stoshiya.json b/users/stoshiya.json index 627a14fd..14d96e86 100644 --- a/users/stoshiya.json +++ b/users/stoshiya.json @@ -1 +1,4 @@ -{"copyright":"Toshiya SAITOH","email":"stoshiya@gmail.com"} \ No newline at end of file +{ + "copyright": "Toshiya SAITOH", + "email": "stoshiya@gmail.com" +} diff --git a/users/strainno.json b/users/strainno.json index 0e28625c..9a5516b0 100644 --- a/users/strainno.json +++ b/users/strainno.json @@ -1,6 +1,6 @@ { - "copyright": "Strainno Team, https://gitlab.com/strainno", - "url":"https://gitlab.com/strainno", - "email":"pratim.chaudhuri@barclays.com", - "format":"txt" + "copyright": "Strainno Team, https://gitlab.com/strainno", + "url": "https://gitlab.com/strainno", + "email": "pratim.chaudhuri@barclays.com", + "format": "txt" } diff --git a/users/straub.json b/users/straub.json index 89e2233c..7b904556 100644 --- a/users/straub.json +++ b/users/straub.json @@ -1 +1,6 @@ -{"copyright":"David M Straub","url":"http:\/\/www.davidstraub.com","email":"himself@davidstraub.com","format":"txt"} \ No newline at end of file +{ + "copyright": "David M Straub", + "url": "http://www.davidstraub.com", + "email": "himself@davidstraub.com", + "format": "txt" +} diff --git a/users/strawson.json b/users/strawson.json index f455eb22..c0007913 100644 --- a/users/strawson.json +++ b/users/strawson.json @@ -1 +1,3 @@ -{"copyright":"Adam Strawson"} \ No newline at end of file +{ + "copyright": "Adam Strawson" +} diff --git a/users/streethub.json b/users/streethub.json index 700b8f45..4d95885f 100644 --- a/users/streethub.json +++ b/users/streethub.json @@ -1 +1,6 @@ -{"copyright":"StreetHub","url":"http:\/\/streethub.com","email":"hello@streethub.com","format":"txt"} \ No newline at end of file +{ + "copyright": "StreetHub", + "url": "http://streethub.com", + "email": "hello@streethub.com", + "format": "txt" +} diff --git a/users/struktur.json b/users/struktur.json index 2023a71d..f64d7b93 100644 --- a/users/struktur.json +++ b/users/struktur.json @@ -1 +1,6 @@ -{"copyright":"Lars Steen","url":"https:\/\/bitbucket.org\/larste\/struktur","email":"larste@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Lars Steen", + "url": "https://bitbucket.org/larste/struktur", + "email": "larste@gmail.com", + "format": "txt" +} diff --git a/users/stuart.json b/users/stuart.json index 380b61d5..9c182b14 100644 --- a/users/stuart.json +++ b/users/stuart.json @@ -1 +1,3 @@ -{"copyright":"Stuart Richardson"} \ No newline at end of file +{ + "copyright": "Stuart Richardson" +} diff --git a/users/studer.json b/users/studer.json index c75e9716..000d479e 100644 --- a/users/studer.json +++ b/users/studer.json @@ -1 +1,3 @@ -{"copyright":"Th\u00e9ophile Studer"} \ No newline at end of file +{ + "copyright": "Th\u00e9ophile Studer" +} diff --git a/users/styleshare.json b/users/styleshare.json index 7de1b764..657a0d57 100644 --- a/users/styleshare.json +++ b/users/styleshare.json @@ -1 +1,5 @@ -{"copyright":"StyleShare","url":"https:\/\/stylesha.re\/","email":"dev@stylesha.re"} \ No newline at end of file +{ + "copyright": "StyleShare", + "url": "https://stylesha.re/", + "email": "dev@stylesha.re" +} diff --git a/users/suaoc.json b/users/suaoc.json index 5ef070e5..786829c0 100644 --- a/users/suaoc.json +++ b/users/suaoc.json @@ -1 +1,3 @@ -{"copyright":"Saleem Ullah"} \ No newline at end of file +{ + "copyright": "Saleem Ullah" +} diff --git a/users/sublee.json b/users/sublee.json index 752b63fe..5b433687 100644 --- a/users/sublee.json +++ b/users/sublee.json @@ -1 +1,6 @@ -{"copyright":"Heungsub Lee","url":"http:\/\/subl.ee\/","email":"h@subl.ee","theme":"plaintext"} \ No newline at end of file +{ + "copyright": "Heungsub Lee", + "url": "http://subl.ee/", + "email": "h@subl.ee", + "theme": "plaintext" +} diff --git a/users/subtub.json b/users/subtub.json index c94bb625..3cd70de4 100644 --- a/users/subtub.json +++ b/users/subtub.json @@ -1,8 +1,8 @@ { - "copyright": "subtub, https://github.com/subtub", - "url": "https://github.com/subtub", - "email": "subtubteam@gmail.com", - "format": "html", - "gravatar": false, - "theme": "plaintext" + "copyright": "subtub, https://github.com/subtub", + "url": "https://github.com/subtub", + "email": "subtubteam@gmail.com", + "format": "html", + "gravatar": false, + "theme": "plaintext" } diff --git a/users/succhiello.json b/users/succhiello.json index 638c4008..33b6c3ee 100644 --- a/users/succhiello.json +++ b/users/succhiello.json @@ -1 +1,4 @@ -{"copyright":"Satoshi Ebihara","url":"https:\/\/github.com\/succhiello"} \ No newline at end of file +{ + "copyright": "Satoshi Ebihara", + "url": "https://github.com/succhiello" +} diff --git a/users/sudhq.json b/users/sudhq.json index 24d25af5..265e5803 100644 --- a/users/sudhq.json +++ b/users/sudhq.json @@ -1 +1,6 @@ -{"copyright":"Studio Upside Down","url":"http:\/\/sudhq.com","email":"hello@sudhq.com","theme":"default"} \ No newline at end of file +{ + "copyright": "Studio Upside Down", + "url": "http://sudhq.com", + "email": "hello@sudhq.com", + "theme": "default" +} diff --git a/users/sue445.json b/users/sue445.json index 4b3f9fc2..fa5fc0e3 100644 --- a/users/sue445.json +++ b/users/sue445.json @@ -1 +1,3 @@ -{"copyright":"sue445"} \ No newline at end of file +{ + "copyright": "sue445" +} diff --git a/users/sugarshin.json b/users/sugarshin.json index 483a8735..ac5831d6 100644 --- a/users/sugarshin.json +++ b/users/sugarshin.json @@ -1 +1,3 @@ -{"copyright":"sugarshin"} \ No newline at end of file +{ + "copyright": "sugarshin" +} diff --git a/users/sun.json b/users/sun.json index b44ced4d..c0eb7049 100644 --- a/users/sun.json +++ b/users/sun.json @@ -1 +1,4 @@ -{"copyright":"Daniel F. Kudwien","url":"http:\/\/unleashedmind.com"} \ No newline at end of file +{ + "copyright": "Daniel F. Kudwien", + "url": "http://unleashedmind.com" +} diff --git a/users/sungchi.json b/users/sungchi.json index b8780fae..a3d7d5ad 100644 --- a/users/sungchi.json +++ b/users/sungchi.json @@ -1 +1,3 @@ -{"copyright":"sungchi, http:\/\/www.feed9.com\/"} \ No newline at end of file +{ + "copyright": "sungchi, http://www.feed9.com/" +} diff --git a/users/sunny.json b/users/sunny.json index 58220f6e..45dbee68 100644 --- a/users/sunny.json +++ b/users/sunny.json @@ -1 +1,5 @@ -{"copyright":"Sunny Mittal","email":"sunnymittal2003@gmail.com","url":"http:\/\/www.sunnymittal.com"} \ No newline at end of file +{ + "copyright": "Sunny Mittal", + "email": "sunnymittal2003@gmail.com", + "url": "http://www.sunnymittal.com" +} diff --git a/users/sunoru.json b/users/sunoru.json index b4cc083f..e4e1a147 100644 --- a/users/sunoru.json +++ b/users/sunoru.json @@ -1 +1,7 @@ -{"copyright":"Sunoru Sidw","url":"https:\/\/www.sunoru.com","email":"s@sunoru.com","format":"html","gravatar":true} \ No newline at end of file +{ + "copyright": "Sunoru Sidw", + "url": "https://www.sunoru.com", + "email": "s@sunoru.com", + "format": "html", + "gravatar": true +} diff --git a/users/superbil.json b/users/superbil.json index 7c2f2695..e2895765 100644 --- a/users/superbil.json +++ b/users/superbil.json @@ -1,3 +1,3 @@ { - "copyright": "Kai-Yuan Cheng" + "copyright": "Kai-Yuan Cheng" } diff --git a/users/superdev.json b/users/superdev.json index 5a46773f..f9a25cec 100644 --- a/users/superdev.json +++ b/users/superdev.json @@ -1 +1,3 @@ -{"copyright":"SuperDev"} \ No newline at end of file +{ + "copyright": "SuperDev" +} diff --git a/users/surender.json b/users/surender.json index 1925fd9d..40aec202 100644 --- a/users/surender.json +++ b/users/surender.json @@ -1,5 +1,5 @@ { - "copyright": "Surender Lohia, https://www.surender.net/", - "url": "https://www.surender.net/", - "email": "surender.lohia.e@gmail.com" + "copyright": "Surender Lohia, https://www.surender.net/", + "url": "https://www.surender.net/", + "email": "surender.lohia.e@gmail.com" } diff --git a/users/suriyaakudo.json b/users/suriyaakudo.json index af4913ce..51984b7b 100644 --- a/users/suriyaakudo.json +++ b/users/suriyaakudo.json @@ -1,8 +1,8 @@ { - "copyright": "Suriyaa Kudo", - "url": "https://github.com/SuriyaaKudoIsc", - "format": "html", - "email": "isc.suriyaa@gmail.com", - "gravatar": true, - "theme" : "default" + "copyright": "Suriyaa Kudo", + "url": "https://github.com/SuriyaaKudoIsc", + "format": "html", + "email": "isc.suriyaa@gmail.com", + "gravatar": true, + "theme": "default" } diff --git a/users/susheel.json b/users/susheel.json index 9fc0f367..212b636e 100644 --- a/users/susheel.json +++ b/users/susheel.json @@ -1 +1,3 @@ -{"copyright":"Susheel Varma"} \ No newline at end of file +{ + "copyright": "Susheel Varma" +} diff --git a/users/swarnava.json b/users/swarnava.json index 9273026f..b2c440a5 100644 --- a/users/swarnava.json +++ b/users/swarnava.json @@ -1,8 +1,8 @@ { - "copyright": "Swarnava Bhattacharya, https://github.com/SwarnavaBhattacharya", - "url": "https://swarnavabhattacharya.com/", - "format": "txt", - "email": "swarnavabhattacharyawork@gmail.com", - "gravatar": true, - "theme" : "material-teal" + "copyright": "Swarnava Bhattacharya, https://github.com/SwarnavaBhattacharya", + "url": "https://swarnavabhattacharya.com/", + "format": "txt", + "email": "swarnavabhattacharyawork@gmail.com", + "gravatar": true, + "theme": "material-teal" } diff --git a/users/swarnavabhattacharya.json b/users/swarnavabhattacharya.json index ac7bb3f8..18a8c918 100644 --- a/users/swarnavabhattacharya.json +++ b/users/swarnavabhattacharya.json @@ -1,8 +1,8 @@ { - "copyright": "Swarnava Bhattacharya, https://github.com/SwarnavaBhattacharya", - "url": "https://swarnavabhattacharya.com/", - "format": "html", - "email": "swarnavabhattacharyawork@gmail.com", - "gravatar": true, - "theme" : "dusk" + "copyright": "Swarnava Bhattacharya, https://github.com/SwarnavaBhattacharya", + "url": "https://swarnavabhattacharya.com/", + "format": "html", + "email": "swarnavabhattacharyawork@gmail.com", + "gravatar": true, + "theme": "dusk" } diff --git a/users/swinton.json b/users/swinton.json index 6c08641d..6b6f092c 100644 --- a/users/swinton.json +++ b/users/swinton.json @@ -1 +1,3 @@ -{"copyright":"Steve Winton"} \ No newline at end of file +{ + "copyright": "Steve Winton" +} diff --git a/users/symphonycms.json b/users/symphonycms.json index 8a658e9a..a7eb3e4a 100644 --- a/users/symphonycms.json +++ b/users/symphonycms.json @@ -1,7 +1,6 @@ - { - "copyright": "Symphony CMS", - "url": "https://www.getsymphony.com", - "theme": "flesch", - "gravatar": true + "copyright": "Symphony CMS", + "url": "https://www.getsymphony.com", + "theme": "flesch", + "gravatar": true } diff --git a/users/synack.json b/users/synack.json index b0cff1f4..eae2eda5 100644 --- a/users/synack.json +++ b/users/synack.json @@ -1,5 +1,5 @@ { - "copyright": "Synack AB", - "url": "http://synack.se", - "theme": "default" + "copyright": "Synack AB", + "url": "http://synack.se", + "theme": "default" } diff --git a/users/synvox.json b/users/synvox.json index 7d011805..f3fe1b2c 100644 --- a/users/synvox.json +++ b/users/synvox.json @@ -1 +1,6 @@ -{"copyright":"Ryan Allred","url":"http:\/\/ryan.allred.xyz","email":"ryan@allred.xyz","format":"txt"} \ No newline at end of file +{ + "copyright": "Ryan Allred", + "url": "http://ryan.allred.xyz", + "email": "ryan@allred.xyz", + "format": "txt" +} diff --git a/users/szelcsanyi.json b/users/szelcsanyi.json index 548ae297..344d31fe 100644 --- a/users/szelcsanyi.json +++ b/users/szelcsanyi.json @@ -1 +1,6 @@ -{"copyright":"Gabor Szelcsanyi","email":"szelcsanyi.gabor@gmail.com","format":"html","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Gabor Szelcsanyi", + "email": "szelcsanyi.gabor@gmail.com", + "format": "html", + "theme": "double-windsor" +} diff --git a/users/szgal.json b/users/szgal.json index b0528656..9cdd6b87 100644 --- a/users/szgal.json +++ b/users/szgal.json @@ -1 +1,3 @@ -{"copyright":"szgal"} \ No newline at end of file +{ + "copyright": "szgal" +} diff --git a/users/t-ashula.json b/users/t-ashula.json index 7dbb4411..e435cc87 100644 --- a/users/t-ashula.json +++ b/users/t-ashula.json @@ -1 +1,6 @@ -{"copyright":"t.ashula, https:\/\/ashula.info","url":"https:\/\/ashula.info","email":"office@ashula.info","theme":"opensans"} +{ + "copyright": "t.ashula, https://ashula.info", + "url": "https://ashula.info", + "email": "office@ashula.info", + "theme": "opensans" +} diff --git a/users/t.json b/users/t.json index 7cc9e60b..2ddba81e 100644 --- a/users/t.json +++ b/users/t.json @@ -1 +1,6 @@ -{"copyright":"Tadeo Kondrak","url":"http:\/\/tadeokondrak.com\/","email":"tadeo@kondrak.tk","format":"html"} \ No newline at end of file +{ + "copyright": "Tadeo Kondrak", + "url": "http://tadeokondrak.com/", + "email": "tadeo@kondrak.tk", + "format": "html" +} diff --git a/users/tad.json b/users/tad.json index 447b3709..d525123f 100644 --- a/users/tad.json +++ b/users/tad.json @@ -1 +1,8 @@ -{"copyright":"Tad DeVries, https:\/\/blog.splunk.net","url":"https:\/\/blog.splunk.net","email":"tad@splunk.net","format":"txt","gravatar":true,"theme":"plaintext"} \ No newline at end of file +{ + "copyright": "Tad DeVries, https://blog.splunk.net", + "url": "https://blog.splunk.net", + "email": "tad@splunk.net", + "format": "txt", + "gravatar": true, + "theme": "plaintext" +} diff --git a/users/tadejm.json b/users/tadejm.json index 431d002b..f464ea05 100644 --- a/users/tadejm.json +++ b/users/tadejm.json @@ -1 +1,6 @@ -{"copyright":"Tadej Murovec","url":"http:\/\/twitter.com\/tadejm","email":"tadej.murovec@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Tadej Murovec", + "url": "http://twitter.com/tadejm", + "email": "tadej.murovec@gmail.com", + "format": "txt" +} diff --git a/users/tadeo.json b/users/tadeo.json index 69a15a1b..6b1e03c7 100644 --- a/users/tadeo.json +++ b/users/tadeo.json @@ -1 +1,6 @@ -{"copyright":"Tadeo Kondrak","url":"http:\/\/tadeokondrak.com","email":"tadeo@kondrak.tk","format":"html"} +{ + "copyright": "Tadeo Kondrak", + "url": "http://tadeokondrak.com", + "email": "tadeo@kondrak.tk", + "format": "html" +} diff --git a/users/takano32.json b/users/takano32.json index 07b927a2..3b9152dd 100644 --- a/users/takano32.json +++ b/users/takano32.json @@ -1,6 +1,6 @@ { - "copyright": "TAKANO Mitsuhiro, http://twitter.com/takano32/", - "email": "takano32@gmail.com", - "url": "http://taka.no32.tk/", - "theme": "afterdark" + "copyright": "TAKANO Mitsuhiro, http://twitter.com/takano32/", + "email": "takano32@gmail.com", + "url": "http://taka.no32.tk/", + "theme": "afterdark" } diff --git a/users/takanopontaro.json b/users/takanopontaro.json index c75a7f25..c649b2c8 100644 --- a/users/takanopontaro.json +++ b/users/takanopontaro.json @@ -1 +1,4 @@ -{"copyright":"Shinji Takano","url":"https:\/\/github.com\/takanopontaro"} \ No newline at end of file +{ + "copyright": "Shinji Takano", + "url": "https://github.com/takanopontaro" +} diff --git a/users/takashi.json b/users/takashi.json index b1826815..dff8d169 100644 --- a/users/takashi.json +++ b/users/takashi.json @@ -1 +1,3 @@ -{"copyright":"Takashi Nakagawa"} \ No newline at end of file +{ + "copyright": "Takashi Nakagawa" +} diff --git a/users/takashisite.json b/users/takashisite.json index 704c6349..7e2dc764 100644 --- a/users/takashisite.json +++ b/users/takashisite.json @@ -1 +1,8 @@ -{"copyright":"Takashi Site","url":"http:\/\/www.sai.to\/","email":"takashi@sai.to","format":"html","gravatar":true,"theme":"opensans"} \ No newline at end of file +{ + "copyright": "Takashi Site", + "url": "http://www.sai.to/", + "email": "takashi@sai.to", + "format": "html", + "gravatar": true, + "theme": "opensans" +} diff --git a/users/takuro.json b/users/takuro.json index af29b640..370db267 100644 --- a/users/takuro.json +++ b/users/takuro.json @@ -1 +1,3 @@ -{"copyright":"Takuro Wada"} \ No newline at end of file +{ + "copyright": "Takuro Wada" +} diff --git a/users/talkative.json b/users/talkative.json index cfa58961..df7158a4 100644 --- a/users/talkative.json +++ b/users/talkative.json @@ -1 +1,3 @@ -{"copyright":"Talkative, Aesculus AB"} \ No newline at end of file +{ + "copyright": "Talkative, Aesculus AB" +} diff --git a/users/tam.json b/users/tam.json index 99b21086..3c2c6a1f 100644 --- a/users/tam.json +++ b/users/tam.json @@ -1 +1,6 @@ -{"copyright":"Tam McDonald","url":"http:\/\/tam.sx","email":"hi@tam.sx","gravatar":true} \ No newline at end of file +{ + "copyright": "Tam McDonald", + "url": "http://tam.sx", + "email": "hi@tam.sx", + "gravatar": true +} diff --git a/users/tamberg.json b/users/tamberg.json index 13c39c48..287edb91 100644 --- a/users/tamberg.json +++ b/users/tamberg.json @@ -1 +1,3 @@ -{"copyright":"Thomas Amberg"} \ No newline at end of file +{ + "copyright": "Thomas Amberg" +} diff --git a/users/tameraydin.json b/users/tameraydin.json index 765a2aff..ae1bd541 100644 --- a/users/tameraydin.json +++ b/users/tameraydin.json @@ -1,4 +1,4 @@ { - "copyright": "Tamer Aydin, http://tamerayd.in", - "url": "http://tamerayd.in" + "copyright": "Tamer Aydin, http://tamerayd.in", + "url": "http://tamerayd.in" } diff --git a/users/tanel.json b/users/tanel.json index e5387640..b24b2b19 100644 --- a/users/tanel.json +++ b/users/tanel.json @@ -1 +1,3 @@ -{"copyright":"Tanel Puhu"} \ No newline at end of file +{ + "copyright": "Tanel Puhu" +} diff --git a/users/tangocoder.json b/users/tangocoder.json index f8555d9c..ad85ad9a 100644 --- a/users/tangocoder.json +++ b/users/tangocoder.json @@ -1 +1,8 @@ -{"copyright":"Feras ALHAEK","url":"http:\/\/alhaek.com","email":"feras@alhaek.com","format":"html","gravatar":true,"theme":"eula-modern"} \ No newline at end of file +{ + "copyright": "Feras ALHAEK", + "url": "http://alhaek.com", + "email": "feras@alhaek.com", + "format": "html", + "gravatar": true, + "theme": "eula-modern" +} diff --git a/users/tanja.json b/users/tanja.json index 22884de9..61b50dbb 100644 --- a/users/tanja.json +++ b/users/tanja.json @@ -1 +1,5 @@ -{"copyright":"Tanja Pislar","url":"http:\/\/heroesneverpanic.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Tanja Pislar", + "url": "http://heroesneverpanic.com", + "format": "txt" +} diff --git a/users/tantalor.json b/users/tantalor.json index 536718fb..503e95d2 100644 --- a/users/tantalor.json +++ b/users/tantalor.json @@ -1 +1,5 @@ -{"copyright":"John Tantalo","url":"http:\/\/johntantalo.com","email":"john.tantalo@gmail.com"} \ No newline at end of file +{ + "copyright": "John Tantalo", + "url": "http://johntantalo.com", + "email": "john.tantalo@gmail.com" +} diff --git a/users/tap5.json b/users/tap5.json index b3f5d016..a11fb9db 100644 --- a/users/tap5.json +++ b/users/tap5.json @@ -1 +1,3 @@ -{"copyright":"Bj\u00f6rn S\u00f6derqvist"} \ No newline at end of file +{ + "copyright": "Bj\u00f6rn S\u00f6derqvist" +} diff --git a/users/tarcisio.json b/users/tarcisio.json index 2da3844e..01a77150 100644 --- a/users/tarcisio.json +++ b/users/tarcisio.json @@ -1 +1,4 @@ -{"copyright":"Tarc\u00edsio Sassara","url":"https:\/\/github.com\/tarcisio"} \ No newline at end of file +{ + "copyright": "Tarc\u00edsio Sassara", + "url": "https://github.com/tarcisio" +} diff --git a/users/taschetto.json b/users/taschetto.json index 79ddf46c..f22b13b9 100644 --- a/users/taschetto.json +++ b/users/taschetto.json @@ -1 +1,8 @@ -{"copyright":"Guilherme Taschetto","url":"http:\/\/taschetto.com","email":"gtaschetto@gmail.com","format":"html","gravatar":true,"theme":"friendly"} \ No newline at end of file +{ + "copyright": "Guilherme Taschetto", + "url": "http://taschetto.com", + "email": "gtaschetto@gmail.com", + "format": "html", + "gravatar": true, + "theme": "friendly" +} diff --git a/users/tastapod.json b/users/tastapod.json index 4f73b745..34fb8cd0 100644 --- a/users/tastapod.json +++ b/users/tastapod.json @@ -1 +1,6 @@ -{"copyright":"Dan North","url":"http:\/\/dannorth.net","email":"dan@dannorth.net","format":"txt"} \ No newline at end of file +{ + "copyright": "Dan North", + "url": "http://dannorth.net", + "email": "dan@dannorth.net", + "format": "txt" +} diff --git a/users/taye.json b/users/taye.json index 7d5cfca3..d4508844 100644 --- a/users/taye.json +++ b/users/taye.json @@ -1 +1,6 @@ -{"copyright":"Taye Adeyemi, http:\/\/taye.me","url":"http:\/\/taye.me","email":"dev@taye.me","gravatar":true} \ No newline at end of file +{ + "copyright": "Taye Adeyemi, http://taye.me", + "url": "http://taye.me", + "email": "dev@taye.me", + "gravatar": true +} diff --git a/users/taylor.json b/users/taylor.json index 1ebb35a5..cd499c65 100644 --- a/users/taylor.json +++ b/users/taylor.json @@ -1 +1,3 @@ -{"copyright":"Taylor Carpenter"} \ No newline at end of file +{ + "copyright": "Taylor Carpenter" +} diff --git a/users/taylorcc.json b/users/taylorcc.json index 1ebb35a5..cd499c65 100644 --- a/users/taylorcc.json +++ b/users/taylorcc.json @@ -1 +1,3 @@ -{"copyright":"Taylor Carpenter"} \ No newline at end of file +{ + "copyright": "Taylor Carpenter" +} diff --git a/users/tbaltrushaitis.json b/users/tbaltrushaitis.json index f3344f84..ae668c06 100644 --- a/users/tbaltrushaitis.json +++ b/users/tbaltrushaitis.json @@ -1 +1,6 @@ -{"copyright":"Tomas Baltrushaitis","url":"https:\/\/github.com\/tbaltrushaitis","email":"tbaltrushaitis@gmail.com","theme":"blackwood"} \ No newline at end of file +{ + "copyright": "Tomas Baltrushaitis", + "url": "https://github.com/tbaltrushaitis", + "email": "tbaltrushaitis@gmail.com", + "theme": "blackwood" +} diff --git a/users/tbekolay.json b/users/tbekolay.json index 78c52fc4..aac35b6d 100644 --- a/users/tbekolay.json +++ b/users/tbekolay.json @@ -1,6 +1,6 @@ { - "copyright": "Trevor Bekolay", - "url": "http://tbekolay.github.com/", - "email": "tbekolay@gmail.com", - "theme": "hipster-gray" + "copyright": "Trevor Bekolay", + "url": "http://tbekolay.github.com/", + "email": "tbekolay@gmail.com", + "theme": "hipster-gray" } diff --git a/users/tbr.json b/users/tbr.json index 6aaf3181..760a4031 100644 --- a/users/tbr.json +++ b/users/tbr.json @@ -1,7 +1,7 @@ { - "copyright": "Anders Ström, http://thebarricade.net", - "url": "http://thebarricade.net", - "email": "anders@thebarricade.net", - "format": "html", - "theme": "double-windsor" + "copyright": "Anders Str\u00c3\u00b6m, http://thebarricade.net", + "url": "http://thebarricade.net", + "email": "anders@thebarricade.net", + "format": "html", + "theme": "double-windsor" } diff --git a/users/tbrennan.json b/users/tbrennan.json index 81b44e10..82b839fb 100644 --- a/users/tbrennan.json +++ b/users/tbrennan.json @@ -1 +1,3 @@ -{"copyright":"Todd F. Brennan"} \ No newline at end of file +{ + "copyright": "Todd F. Brennan" +} diff --git a/users/tc.json b/users/tc.json index c19ca16b..f884ef41 100644 --- a/users/tc.json +++ b/users/tc.json @@ -1 +1,6 @@ -{"copyright":"Thomas Chapman","url":"http:\/\/thomchap.com.au","email":"hola@thomchap.com.au","format":"txt"} \ No newline at end of file +{ + "copyright": "Thomas Chapman", + "url": "http://thomchap.com.au", + "email": "hola@thomchap.com.au", + "format": "txt" +} diff --git a/users/tchel.json b/users/tchel.json index afabce92..b863735d 100644 --- a/users/tchel.json +++ b/users/tchel.json @@ -1 +1,7 @@ -{ "copyright": "Tche LIU", "url": "http://github.com/TcheL", "email": "seistche@gmail.com", "format": "afterdark", "gravatar": true } +{ + "copyright": "Tche LIU", + "url": "http://github.com/TcheL", + "email": "seistche@gmail.com", + "format": "afterdark", + "gravatar": true +} diff --git a/users/tclh123.json b/users/tclh123.json index 481d889d..66ce0004 100644 --- a/users/tclh123.json +++ b/users/tclh123.json @@ -1 +1,6 @@ -{"copyright":"Harry Lee, http:\/\/tclh123.com","url":"http:\/\/tclh123.com","email":"tclh123@gmail.com","theme":"eula-modern"} \ No newline at end of file +{ + "copyright": "Harry Lee, http://tclh123.com", + "url": "http://tclh123.com", + "email": "tclh123@gmail.com", + "theme": "eula-modern" +} diff --git a/users/tdsh.json b/users/tdsh.json index 944c70ce..130528e8 100644 --- a/users/tdsh.json +++ b/users/tdsh.json @@ -1 +1,4 @@ -{"copyright":"Tadashi Abe","email":"tadashi.abe@gmail.com"} +{ + "copyright": "Tadashi Abe", + "email": "tadashi.abe@gmail.com" +} diff --git a/users/tdue21.json b/users/tdue21.json index 64fc8698..4e4feb37 100644 --- a/users/tdue21.json +++ b/users/tdue21.json @@ -1,5 +1,5 @@ { - "copyright": "Thomas Due", - "email": "tho.due@gmail.com", - "gravatar": true + "copyright": "Thomas Due", + "email": "tho.due@gmail.com", + "gravatar": true } diff --git a/users/teambition.json b/users/teambition.json index 92f45198..b13a9716 100644 --- a/users/teambition.json +++ b/users/teambition.json @@ -1,6 +1,6 @@ { - "copyright": "teambition, http://teambition.com", - "url": "http://teambition.com", - "email": "dev@teambition.com", - "gravatar": true + "copyright": "teambition, http://teambition.com", + "url": "http://teambition.com", + "email": "dev@teambition.com", + "gravatar": true } diff --git a/users/teamosc.json b/users/teamosc.json index fda15810..206795ac 100644 --- a/users/teamosc.json +++ b/users/teamosc.json @@ -1 +1,6 @@ -{"copyright":"Team Open Source Coders","url":"http:\/\/tosc.in","email":"toscapps@gmail.com","format":"html"} \ No newline at end of file +{ + "copyright": "Team Open Source Coders", + "url": "http://tosc.in", + "email": "toscapps@gmail.com", + "format": "html" +} diff --git a/users/tec.json b/users/tec.json index 10c9adb7..52729e05 100644 --- a/users/tec.json +++ b/users/tec.json @@ -1 +1,6 @@ -{"copyright":"Silvan T. Golega","url":"http:\/\/golega.de","email":"silvan@golega.de","format":"txt"} \ No newline at end of file +{ + "copyright": "Silvan T. Golega", + "url": "http://golega.de", + "email": "silvan@golega.de", + "format": "txt" +} diff --git a/users/teenst.json b/users/teenst.json index a2b14c96..48911d48 100644 --- a/users/teenst.json +++ b/users/teenst.json @@ -1 +1,3 @@ -{"copyright":"teenst"} \ No newline at end of file +{ + "copyright": "teenst" +} diff --git a/users/tellnes.json b/users/tellnes.json index 4baa2f6f..c3cbfa5a 100644 --- a/users/tellnes.json +++ b/users/tellnes.json @@ -1 +1,3 @@ -{"copyright":"Christian Tellnes"} \ No newline at end of file +{ + "copyright": "Christian Tellnes" +} diff --git a/users/tenacioushusky.json b/users/tenacioushusky.json index e0c4e902..7edc422a 100644 --- a/users/tenacioushusky.json +++ b/users/tenacioushusky.json @@ -1,7 +1,7 @@ { - "copyright": "Joshua Hansen", - "url": "pages.mtu.edu/~joshuaha", - "email": "joshuaha@mtu.edu", - "theme": "material-light-blue", - "format": "html" + "copyright": "Joshua Hansen", + "url": "pages.mtu.edu/~joshuaha", + "email": "joshuaha@mtu.edu", + "theme": "material-light-blue", + "format": "html" } diff --git a/users/teppeis.json b/users/teppeis.json index 616c02f5..a4d5a978 100644 --- a/users/teppeis.json +++ b/users/teppeis.json @@ -1 +1,6 @@ -{"copyright": "Teppei Sato", "url": "https:\/\/github.com\/teppeis", "email": "teppeis@gmail.com", "theme": "double-windsor"} +{ + "copyright": "Teppei Sato", + "url": "https://github.com/teppeis", + "email": "teppeis@gmail.com", + "theme": "double-windsor" +} diff --git a/users/terkel.json b/users/terkel.json index 9aa328ad..aec21b5c 100644 --- a/users/terkel.json +++ b/users/terkel.json @@ -1 +1,4 @@ -{"copyright":"Takeru Suzuki","url":"http:\/\/terkel.jp"} \ No newline at end of file +{ + "copyright": "Takeru Suzuki", + "url": "http://terkel.jp" +} diff --git a/users/test.json b/users/test.json index 15e2fb22..c3d6a0ed 100644 --- a/users/test.json +++ b/users/test.json @@ -1 +1,3 @@ -{"copyright":"Mike McNeil"} \ No newline at end of file +{ + "copyright": "Mike McNeil" +} diff --git a/users/test12.json b/users/test12.json index f3014ac1..e8cabd2e 100644 --- a/users/test12.json +++ b/users/test12.json @@ -1 +1,6 @@ -{"copyright":"Ali shars","url":"http:\/\/alisharp.com","email":"ale@my.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Ali shars", + "url": "http://alisharp.com", + "email": "ale@my.com", + "gravatar": true +} diff --git a/users/testdouble.json b/users/testdouble.json index 548727e4..832cf616 100644 --- a/users/testdouble.json +++ b/users/testdouble.json @@ -1,6 +1,6 @@ { - "copyright": "Test Double, http://testdouble.com", - "url": "http://testdouble.com", - "email": "hello@testdouble.com", - "gravatar": true + "copyright": "Test Double, http://testdouble.com", + "url": "http://testdouble.com", + "email": "hello@testdouble.com", + "gravatar": true } diff --git a/users/testermotherfucker.json b/users/testermotherfucker.json index 38be4286..95e5160e 100644 --- a/users/testermotherfucker.json +++ b/users/testermotherfucker.json @@ -1 +1,3 @@ -{"copyright":"Tester Mother Fucker"} \ No newline at end of file +{ + "copyright": "Tester Mother Fucker" +} diff --git a/users/tetwis.json b/users/tetwis.json index 8ac51e3f..9db3e2e2 100644 --- a/users/tetwis.json +++ b/users/tetwis.json @@ -1 +1,6 @@ -{"copyright":"Andrew McPherson","url":"ehgoodenough.com","email":"ehgoodenough@gmail.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Andrew McPherson", + "url": "ehgoodenough.com", + "email": "ehgoodenough@gmail.com", + "gravatar": true +} diff --git a/users/texty.json b/users/texty.json index e57b8e4c..fbe1805f 100644 --- a/users/texty.json +++ b/users/texty.json @@ -1 +1,6 @@ -{"copyright":"{{TEXTY}}","url":"{{URL}}","email":"{{EMAIL}}","format":"txt"} \ No newline at end of file +{ + "copyright": "{{TEXTY}}", + "url": "{{URL}}", + "email": "{{EMAIL}}", + "format": "txt" +} diff --git a/users/texty1.json b/users/texty1.json index f00ae976..9f84ec48 100644 --- a/users/texty1.json +++ b/users/texty1.json @@ -1 +1,5 @@ -{"copyright":"{{TEXTY}}","url":"{{URL}}","format":"txt"} \ No newline at end of file +{ + "copyright": "{{TEXTY}}", + "url": "{{URL}}", + "format": "txt" +} diff --git a/users/texty2.json b/users/texty2.json index 4c34e0be..48711ea8 100644 --- a/users/texty2.json +++ b/users/texty2.json @@ -1 +1,5 @@ -{"copyright":"{{TEXTY}}, {{URL}}","url":"{{URL}}","format":"txt"} \ No newline at end of file +{ + "copyright": "{{TEXTY}}, {{URL}}", + "url": "{{URL}}", + "format": "txt" +} diff --git a/users/tf.json b/users/tf.json index 3bb8fd37..af9aa730 100644 --- a/users/tf.json +++ b/users/tf.json @@ -1,4 +1,4 @@ { - "copyright": "Johannes J. Schmidt, TF, http://die-tf.de", - "url": "http://die-tf.de" + "copyright": "Johannes J. Schmidt, TF, http://die-tf.de", + "url": "http://die-tf.de" } diff --git a/users/th.json b/users/th.json index 9acf3ce9..96b4281e 100644 --- a/users/th.json +++ b/users/th.json @@ -1,5 +1,5 @@ { - "copyright": "Trey Hunner", - "url": "http://treyhunner.com", - "theme": "default" + "copyright": "Trey Hunner", + "url": "http://treyhunner.com", + "theme": "default" } diff --git a/users/thangeda.json b/users/thangeda.json index 83e37fb4..22c2a0e8 100644 --- a/users/thangeda.json +++ b/users/thangeda.json @@ -1 +1,6 @@ -{"copyright":"Pranay Thangeda","email":"contact@prny.me","gravatar":false,"theme":"material"} +{ + "copyright": "Pranay Thangeda", + "email": "contact@prny.me", + "gravatar": false, + "theme": "material" +} diff --git a/users/thasmo.json b/users/thasmo.json index 7d634d30..5961baeb 100644 --- a/users/thasmo.json +++ b/users/thasmo.json @@ -1 +1,7 @@ -{"copyright":"Thomas Deinhamer","url":"https:\/\/thasmo.com\/","email":"thasmo@gmail.com","format":"html","gravatar":true} \ No newline at end of file +{ + "copyright": "Thomas Deinhamer", + "url": "https://thasmo.com/", + "email": "thasmo@gmail.com", + "format": "html", + "gravatar": true +} diff --git a/users/the-zumata-team.json b/users/the-zumata-team.json index 5deed055..e3768a76 100644 --- a/users/the-zumata-team.json +++ b/users/the-zumata-team.json @@ -1,6 +1,6 @@ { - "copyright": "The Zumata Team", - "url": "https://github.com/Zumata", - "email": "gary.theis@zumata.com", - "format": "html" + "copyright": "The Zumata Team", + "url": "https://github.com/Zumata", + "email": "gary.theis@zumata.com", + "format": "html" } diff --git a/users/theboshy.json b/users/theboshy.json index e649d05e..27def6c6 100644 --- a/users/theboshy.json +++ b/users/theboshy.json @@ -1 +1,7 @@ -{"copyright": "Peter Lobo, http://theboshy.com","url": "","email": "akumaokami10@gmail.com","gravatar": true,"theme": "dusk"} +{ + "copyright": "Peter Lobo, http://theboshy.com", + "url": "", + "email": "akumaokami10@gmail.com", + "gravatar": true, + "theme": "dusk" +} diff --git a/users/thedersen.json b/users/thedersen.json index 1e2f8c56..de45373b 100644 --- a/users/thedersen.json +++ b/users/thedersen.json @@ -1 +1,4 @@ -{"copyright":"Thomas Pedersen, http:\/\/thedersen.com","url":"http:\/\/thedersen.com"} \ No newline at end of file +{ + "copyright": "Thomas Pedersen, http://thedersen.com", + "url": "http://thedersen.com" +} diff --git a/users/theflow0360.json b/users/theflow0360.json index 1c3ada7d..86427ed7 100644 --- a/users/theflow0360.json +++ b/users/theflow0360.json @@ -1,7 +1,7 @@ { - "copyright":"Florian Koch", - "email":"floriankochde@arcor.de", - "format":"html", - "gravatar":true, - "theme":"hipster-gray" + "copyright": "Florian Koch", + "email": "floriankochde@arcor.de", + "format": "html", + "gravatar": true, + "theme": "hipster-gray" } diff --git a/users/thehippo.json b/users/thehippo.json index 15c2c6a3..2dded9a7 100644 --- a/users/thehippo.json +++ b/users/thehippo.json @@ -1 +1,3 @@ -{"copyright":"Philipp Klose"} \ No newline at end of file +{ + "copyright": "Philipp Klose" +} diff --git a/users/thehodge.json b/users/thehodge.json index 65341e8d..f6cf42e6 100644 --- a/users/thehodge.json +++ b/users/thehodge.json @@ -1 +1,4 @@ -{"copyright":"Dom Hodgson","url":"http:\/\/thehodge.co.uk\/"} \ No newline at end of file +{ + "copyright": "Dom Hodgson", + "url": "http://thehodge.co.uk/" +} diff --git a/users/thekhenzie.json b/users/thekhenzie.json index 5bf2289c..710abbd3 100644 --- a/users/thekhenzie.json +++ b/users/thekhenzie.json @@ -1,6 +1,6 @@ { - "copyright": "Harold Khen Daniel Baniqued, http://khendaniel.com", - "url": "http://khendaniel.com", - "email" : "thekhenzie@gmail.com", - "gravatar" : true + "copyright": "Harold Khen Daniel Baniqued, http://khendaniel.com", + "url": "http://khendaniel.com", + "email": "thekhenzie@gmail.com", + "gravatar": true } diff --git a/users/thelonelyghost.json b/users/thelonelyghost.json index 661c8453..026b95c0 100644 --- a/users/thelonelyghost.json +++ b/users/thelonelyghost.json @@ -1,7 +1,7 @@ { - "copyright": "David Alexander", - "url": "http://www.thelonelyghost.com", - "email": "opensource@thelonelyghost.com", - "gravatar": true, - "theme": "material-brown" + "copyright": "David Alexander", + "url": "http://www.thelonelyghost.com", + "email": "opensource@thelonelyghost.com", + "gravatar": true, + "theme": "material-brown" } diff --git a/users/theodi.json b/users/theodi.json index d06adf01..d6b8eec3 100644 --- a/users/theodi.json +++ b/users/theodi.json @@ -1,6 +1,6 @@ { - "copyright":"The Open Data Institute", - "url": "http://theodi.org", - "email": "ops@theodi.org", - "gravatar": true + "copyright": "The Open Data Institute", + "url": "http://theodi.org", + "email": "ops@theodi.org", + "gravatar": true } diff --git a/users/therebelrobot.json b/users/therebelrobot.json index dcd562da..3fc370e0 100644 --- a/users/therebelrobot.json +++ b/users/therebelrobot.json @@ -1,8 +1,8 @@ { - "copyright": "Trent Oswald (@therebelrobot) ", - "url": "https://therebelrobot.com", - "email": "trentoswald@therebelrobot.com", - "gravatar": true, - "format": "html", - "theme": "material-deep-orange" + "copyright": "Trent Oswald (@therebelrobot) ", + "url": "https://therebelrobot.com", + "email": "trentoswald@therebelrobot.com", + "gravatar": true, + "format": "html", + "theme": "material-deep-orange" } diff --git a/users/thescoundrels.json b/users/thescoundrels.json index 0e32fae6..12574aa2 100644 --- a/users/thescoundrels.json +++ b/users/thescoundrels.json @@ -1 +1,6 @@ -{"copyright":"The League of Magnificent Scoundrels","url":"http:\/\/thescoundrels.net","email":"support@thescoundrels.net","theme":"double-windsor"} +{ + "copyright": "The League of Magnificent Scoundrels", + "url": "http://thescoundrels.net", + "email": "support@thescoundrels.net", + "theme": "double-windsor" +} diff --git a/users/theuves.json b/users/theuves.json index b8c4d756..9e6e8b0b 100644 --- a/users/theuves.json +++ b/users/theuves.json @@ -1 +1,3 @@ -{"copyright":"Matheus Alves"} \ No newline at end of file +{ + "copyright": "Matheus Alves" +} diff --git a/users/thewebguy.json b/users/thewebguy.json index 2408e1a4..bfdc4dbd 100644 --- a/users/thewebguy.json +++ b/users/thewebguy.json @@ -1 +1,6 @@ -{"copyright":"Kevin Khandjian","url":"http:\/\/kevin.fm","email":"kevinkhandjian@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Kevin Khandjian", + "url": "http://kevin.fm", + "email": "kevinkhandjian@gmail.com", + "format": "txt" +} diff --git a/users/theyranos.json b/users/theyranos.json index 7af3fa0a..a81de30a 100644 --- a/users/theyranos.json +++ b/users/theyranos.json @@ -1 +1,3 @@ -{"copyright":"Dan Charney"} \ No newline at end of file +{ + "copyright": "Dan Charney" +} diff --git a/users/thi.json b/users/thi.json index cbad430b..4eb4e07c 100644 --- a/users/thi.json +++ b/users/thi.json @@ -1 +1,3 @@ -{"copyright":"Doan Truong Thi"} \ No newline at end of file +{ + "copyright": "Doan Truong Thi" +} diff --git a/users/thiagohagy.json b/users/thiagohagy.json index 60db9059..8dd74998 100644 --- a/users/thiagohagy.json +++ b/users/thiagohagy.json @@ -1 +1,5 @@ -{"copyright":"Thiago A. Hagy","email":"thiagohagy@hotmail.com", "gravatar": true} \ No newline at end of file +{ + "copyright": "Thiago A. Hagy", + "email": "thiagohagy@hotmail.com", + "gravatar": true +} diff --git a/users/thibautd.json b/users/thibautd.json index 5f6b3cec..a92cf22b 100644 --- a/users/thibautd.json +++ b/users/thibautd.json @@ -1 +1,4 @@ -{"copyright":"Thibaut DIRLIK","email":"thibaut.dirlik@gmail.com"} \ No newline at end of file +{ + "copyright": "Thibaut DIRLIK", + "email": "thibaut.dirlik@gmail.com" +} diff --git a/users/thingsinjars.json b/users/thingsinjars.json index 17e26a87..bde219ca 100644 --- a/users/thingsinjars.json +++ b/users/thingsinjars.json @@ -1 +1,6 @@ -{"copyright":"Simon Madine, http:\/\/thingsinjars.com","url":"http:\/\/thingsinjars.com","email":"simon@thingsinjars.com","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Simon Madine, http://thingsinjars.com", + "url": "http://thingsinjars.com", + "email": "simon@thingsinjars.com", + "theme": "double-windsor" +} diff --git a/users/thj.json b/users/thj.json index 6bc92e8c..0f83f2cf 100644 --- a/users/thj.json +++ b/users/thj.json @@ -1 +1,4 @@ -{"copyright":"The Humble Jester","email":"the.humble.jester@gmail.com"} \ No newline at end of file +{ + "copyright": "The Humble Jester", + "email": "the.humble.jester@gmail.com" +} diff --git a/users/tholu.json b/users/tholu.json index 9702cf09..3fc69458 100644 --- a/users/tholu.json +++ b/users/tholu.json @@ -1 +1,3 @@ -{"copyright":"Thomas Lutz"} \ No newline at end of file +{ + "copyright": "Thomas Lutz" +} diff --git a/users/thomas.json b/users/thomas.json index 15b2f68f..4645d708 100644 --- a/users/thomas.json +++ b/users/thomas.json @@ -1 +1,6 @@ -{"copyright":"Thomas Stachl","email":"thomas@stachl.me","url":"http:\/\/stachl.me","theme":"opensans"} \ No newline at end of file +{ + "copyright": "Thomas Stachl", + "email": "thomas@stachl.me", + "url": "http://stachl.me", + "theme": "opensans" +} diff --git a/users/thomd.json b/users/thomd.json index 674be5ed..e3418c74 100644 --- a/users/thomd.json +++ b/users/thomd.json @@ -1 +1,3 @@ -{"copyright":"Thomas Depierre"} \ No newline at end of file +{ + "copyright": "Thomas Depierre" +} diff --git a/users/thompsonemerson.json b/users/thompsonemerson.json index 800698b3..ff11d89a 100644 --- a/users/thompsonemerson.json +++ b/users/thompsonemerson.json @@ -1 +1,3 @@ -{"copyright":"Emerson Thompson"} \ No newline at end of file +{ + "copyright": "Emerson Thompson" +} diff --git a/users/throger.json b/users/throger.json index a7b3692c..558899e6 100644 --- a/users/throger.json +++ b/users/throger.json @@ -1 +1,3 @@ -{"copyright":"Thomas Roger"} \ No newline at end of file +{ + "copyright": "Thomas Roger" +} diff --git a/users/thulioph.json b/users/thulioph.json index f1ad83e8..4b710856 100644 --- a/users/thulioph.json +++ b/users/thulioph.json @@ -1 +1,6 @@ -{"copyright":"Thulio Philipe","url":"http:\/\/thulioph.com","email":"thulioph@gmail.com","format":"html"} +{ + "copyright": "Thulio Philipe", + "url": "http://thulioph.com", + "email": "thulioph@gmail.com", + "format": "html" +} diff --git a/users/thypon.json b/users/thypon.json index e51d74f3..3a14e2c1 100644 --- a/users/thypon.json +++ b/users/thypon.json @@ -1 +1,5 @@ -{"copyright":"Andrea Brancaleoni","email":"miwaxe@github.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Andrea Brancaleoni", + "email": "miwaxe@github.com", + "format": "txt" +} diff --git a/users/tiaan.json b/users/tiaan.json index b995d7cb..88017f61 100644 --- a/users/tiaan.json +++ b/users/tiaan.json @@ -1,6 +1,6 @@ { - "copyright": "Tiaan du Plessis", - "url": "https://github.com/mightyCrow", - "email": "tiaanduplessis@hotmail.com", - "gravatar": true + "copyright": "Tiaan du Plessis", + "url": "https://github.com/mightyCrow", + "email": "tiaanduplessis@hotmail.com", + "gravatar": true } diff --git a/users/tian.json b/users/tian.json index 5072c31f..c3ddcae2 100644 --- a/users/tian.json +++ b/users/tian.json @@ -1 +1,6 @@ -{"copyright":"Tian Permana","url":"http:\/\/hello.tianpermana.com","email":"hello@tianpermana.com","format":"html"} \ No newline at end of file +{ + "copyright": "Tian Permana", + "url": "http://hello.tianpermana.com", + "email": "hello@tianpermana.com", + "format": "html" +} diff --git a/users/ticking.json b/users/ticking.json index 40d5206e..6ce4a39f 100644 --- a/users/ticking.json +++ b/users/ticking.json @@ -1 +1,6 @@ -{"copyright":"Jan-Paul Bultmann (ticking)","url":"http:\/\/undeadco.de","email":"ticking@me.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Jan-Paul Bultmann (ticking)", + "url": "http://undeadco.de", + "email": "ticking@me.com", + "gravatar": true +} diff --git a/users/tigra.json b/users/tigra.json index feec3d61..b965edce 100644 --- a/users/tigra.json +++ b/users/tigra.json @@ -1 +1,3 @@ -{"copyright":"Tigra Astronomy"} \ No newline at end of file +{ + "copyright": "Tigra Astronomy" +} diff --git a/users/tih.json b/users/tih.json index 0f1ae32f..1a520125 100644 --- a/users/tih.json +++ b/users/tih.json @@ -1 +1,6 @@ -{"copyright":"Hugo Jobling","url":"http:\/\/www.thisishugo.com","email":"me@thisishugo.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Hugo Jobling", + "url": "http://www.thisishugo.com", + "email": "me@thisishugo.com", + "format": "txt" +} diff --git a/users/tilgovi.json b/users/tilgovi.json index a6d62e00..b9d14bef 100644 --- a/users/tilgovi.json +++ b/users/tilgovi.json @@ -1 +1,5 @@ -{"copyright":"Randall Leeds","email":"randall@bleeds.info","url":"http:\/\/randall.bleeds.info\/"} \ No newline at end of file +{ + "copyright": "Randall Leeds", + "email": "randall@bleeds.info", + "url": "http://randall.bleeds.info/" +} diff --git a/users/tim.json b/users/tim.json index 3117eb6c..54a453c9 100644 --- a/users/tim.json +++ b/users/tim.json @@ -1 +1,3 @@ -{"copyright":"Timothy Andrew"} \ No newline at end of file +{ + "copyright": "Timothy Andrew" +} diff --git a/users/timjb.json b/users/timjb.json index d095af84..2a1dbbc9 100644 --- a/users/timjb.json +++ b/users/timjb.json @@ -1,3 +1,3 @@ { - "copyright": "Tim Baumann, http://timbaumann.info" + "copyright": "Tim Baumann, http://timbaumann.info" } diff --git a/users/timmolendijk.json b/users/timmolendijk.json index 7d137ad0..00a96e3d 100644 --- a/users/timmolendijk.json +++ b/users/timmolendijk.json @@ -1,4 +1,4 @@ { - "copyright": "Tim Molendijk", - "url": "http://timmolendijk.nl/" + "copyright": "Tim Molendijk", + "url": "http://timmolendijk.nl/" } diff --git a/users/timon-josh.json b/users/timon-josh.json index 1dba5148..e9697c24 100644 --- a/users/timon-josh.json +++ b/users/timon-josh.json @@ -1 +1,3 @@ -{"copyright":"Timon Vonk & Josh Kalderimis"} \ No newline at end of file +{ + "copyright": "Timon Vonk & Josh Kalderimis" +} diff --git a/users/timothy.json b/users/timothy.json index 3117eb6c..54a453c9 100644 --- a/users/timothy.json +++ b/users/timothy.json @@ -1 +1,3 @@ -{"copyright":"Timothy Andrew"} \ No newline at end of file +{ + "copyright": "Timothy Andrew" +} diff --git a/users/timothyandrew.json b/users/timothyandrew.json index 3117eb6c..54a453c9 100644 --- a/users/timothyandrew.json +++ b/users/timothyandrew.json @@ -1 +1,3 @@ -{"copyright":"Timothy Andrew"} \ No newline at end of file +{ + "copyright": "Timothy Andrew" +} diff --git a/users/timtjtim.json b/users/timtjtim.json index b3618040..5a8fa978 100644 --- a/users/timtjtim.json +++ b/users/timtjtim.json @@ -1 +1,8 @@ -{"copyright": "Tim Hitchins, http://timonline.tk", "url": "http://timonline.tk", "email": "contact@timonline.tk", "format": "html", "gravatar": true, "theme": "material"} +{ + "copyright": "Tim Hitchins, http://timonline.tk", + "url": "http://timonline.tk", + "email": "contact@timonline.tk", + "format": "html", + "gravatar": true, + "theme": "material" +} diff --git a/users/timuruski.json b/users/timuruski.json index ceaf2d64..0c6d7f6e 100644 --- a/users/timuruski.json +++ b/users/timuruski.json @@ -1 +1,3 @@ -{"copyright":"Tim Uruski"} \ No newline at end of file +{ + "copyright": "Tim Uruski" +} diff --git a/users/timzenner.json b/users/timzenner.json index 68e51a6c..30c93256 100644 --- a/users/timzenner.json +++ b/users/timzenner.json @@ -1 +1,6 @@ -{"copyright":"Tim Zenner","url":"http:\/\/zennsoftworks.dyndns.org\/","email":"epidemicz@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Tim Zenner", + "url": "http://zennsoftworks.dyndns.org/", + "email": "epidemicz@gmail.com", + "format": "txt" +} diff --git a/users/tkahn.json b/users/tkahn.json index b532f0be..55e54616 100644 --- a/users/tkahn.json +++ b/users/tkahn.json @@ -1,6 +1,6 @@ { - "copyright": "Thomas Kahn, http://tkahn.se", - "url": "http://tkahn.se", - "theme": "flesch", - "gravatar": true + "copyright": "Thomas Kahn, http://tkahn.se", + "url": "http://tkahn.se", + "theme": "flesch", + "gravatar": true } diff --git a/users/tleb.json b/users/tleb.json index 475a38e9..301f67dd 100644 --- a/users/tleb.json +++ b/users/tleb.json @@ -1,5 +1,5 @@ { - "copyright": "Théo Lebrun", + "copyright": "Th\u00c3\u00a9o Lebrun", "url": "https://github.com/tleb", "email": "tleb@openmailbox.org", "format": "html", diff --git a/users/tloep.json b/users/tloep.json index 4e00cf68..e5734e3d 100644 --- a/users/tloep.json +++ b/users/tloep.json @@ -1 +1,5 @@ -{"copyright":"The League of Extraordinary Programmers","url":"http:\/\/tloep.tk\/","theme":"afterdark"} \ No newline at end of file +{ + "copyright": "The League of Extraordinary Programmers", + "url": "http://tloep.tk/", + "theme": "afterdark" +} diff --git a/users/tlvince.json b/users/tlvince.json index a363e8db..413f428b 100644 --- a/users/tlvince.json +++ b/users/tlvince.json @@ -1 +1,4 @@ -{"copyright":"Tom Vincent","url":"https:\/\/tlvince.com\/contact"} +{ + "copyright": "Tom Vincent", + "url": "https://tlvince.com/contact" +} diff --git a/users/tmn.json b/users/tmn.json index a8ef404e..f951a587 100644 --- a/users/tmn.json +++ b/users/tmn.json @@ -1,7 +1,7 @@ { - "copyright": "Tri M. Nguyen", - "url": "http://tmn.io", - "email": "mail@trimn.net", - "format": "html", - "theme": "flesch" + "copyright": "Tri M. Nguyen", + "url": "http://tmn.io", + "email": "mail@trimn.net", + "format": "html", + "theme": "flesch" } diff --git a/users/tmpvar.json b/users/tmpvar.json index add08161..4681e896 100644 --- a/users/tmpvar.json +++ b/users/tmpvar.json @@ -1 +1,6 @@ -{"copyright":"Elijah Insua","url":"http:\/\/tmpvar.com","email":"tmpvar@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Elijah Insua", + "url": "http://tmpvar.com", + "email": "tmpvar@gmail.com", + "format": "txt" +} diff --git a/users/tmw.json b/users/tmw.json index d3d20f21..96e6ac64 100644 --- a/users/tmw.json +++ b/users/tmw.json @@ -1 +1,4 @@ -{"copyright":"TMWUnlimited...","url":"http:\/\/tmwunlimited.com"} \ No newline at end of file +{ + "copyright": "TMWUnlimited...", + "url": "http://tmwunlimited.com" +} diff --git a/users/tnoda.json b/users/tnoda.json index c69bdbf6..db5e3ef9 100644 --- a/users/tnoda.json +++ b/users/tnoda.json @@ -1 +1,3 @@ -{"copyright":"Takahiro Noda"} \ No newline at end of file +{ + "copyright": "Takahiro Noda" +} diff --git a/users/tnviking.json b/users/tnviking.json index 839feb6d..455d1c92 100644 --- a/users/tnviking.json +++ b/users/tnviking.json @@ -1 +1,8 @@ -{"copyright":"Martin Bratteng, https:\/\/bratteng.xyz","format":"html","email":"ole-martin@bratteng.xyz","gravatar":true,"url":"https:\/\/bratteng.xyz","theme":"material-deep-purple"} \ No newline at end of file +{ + "copyright": "Martin Bratteng, https://bratteng.xyz", + "format": "html", + "email": "ole-martin@bratteng.xyz", + "gravatar": true, + "url": "https://bratteng.xyz", + "theme": "material-deep-purple" +} diff --git a/users/to4iki.json b/users/to4iki.json index 232db514..adc248a2 100644 --- a/users/to4iki.json +++ b/users/to4iki.json @@ -1 +1,4 @@ -{"copyright":"Tsk Takezawa","url":"https:\/\/github.com\/to4iki"} \ No newline at end of file +{ + "copyright": "Tsk Takezawa", + "url": "https://github.com/to4iki" +} diff --git a/users/toblea.json b/users/toblea.json index 5440865e..584bb23c 100644 --- a/users/toblea.json +++ b/users/toblea.json @@ -1 +1,3 @@ -{"copyright":"Tobias Leander"} \ No newline at end of file +{ + "copyright": "Tobias Leander" +} diff --git a/users/tocttou.json b/users/tocttou.json index 661f2a90..8db8948f 100644 --- a/users/tocttou.json +++ b/users/tocttou.json @@ -1 +1,6 @@ -{"copyright":"Ashish Chaudhary","url":"https:\/\/ashishchaudhary.in","email":"me@ashishchaudhary.in","theme":"black-beauty"} \ No newline at end of file +{ + "copyright": "Ashish Chaudhary", + "url": "https://ashishchaudhary.in", + "email": "me@ashishchaudhary.in", + "theme": "black-beauty" +} diff --git a/users/todor.json b/users/todor.json index 2aa857df..d9e51274 100644 --- a/users/todor.json +++ b/users/todor.json @@ -1,4 +1,4 @@ { - "copyright": "Todor Dimitrov, http://todordimitrov.de", - "url": "http://todordimitrov.de" + "copyright": "Todor Dimitrov, http://todordimitrov.de", + "url": "http://todordimitrov.de" } diff --git a/users/toedter.json b/users/toedter.json index de3cdd46..6f13e1c2 100644 --- a/users/toedter.json +++ b/users/toedter.json @@ -1 +1,5 @@ -{"copyright":"Kai Toedter","url":"http:\/\/toedter.com","email":"kai@toedter.com"} \ No newline at end of file +{ + "copyright": "Kai Toedter", + "url": "http://toedter.com", + "email": "kai@toedter.com" +} diff --git a/users/tokuhirom.json b/users/tokuhirom.json index 7a9b16f8..486148b3 100644 --- a/users/tokuhirom.json +++ b/users/tokuhirom.json @@ -1,6 +1,6 @@ { - "copyright": "Tokuhiro Matsuno, http://64p.org/", - "email": "tokuhirom@gmail.com", - "url": "http://64p.org", - "theme": "orange" + "copyright": "Tokuhiro Matsuno, http://64p.org/", + "email": "tokuhirom@gmail.com", + "url": "http://64p.org", + "theme": "orange" } diff --git a/users/tolu.json b/users/tolu.json index f9c1f64c..aae36620 100644 --- a/users/tolu.json +++ b/users/tolu.json @@ -1,7 +1,7 @@ { - "copyright": "Tobias Lundin", - "url": "http://tobiaslundin.se", - "email": "tobias.lundin@gmail.com", - "gravatar": true, - "theme": "material" + "copyright": "Tobias Lundin", + "url": "http://tobiaslundin.se", + "email": "tobias.lundin@gmail.com", + "gravatar": true, + "theme": "material" } diff --git a/users/tom.json b/users/tom.json index 0d5ce512..e7dd4134 100644 --- a/users/tom.json +++ b/users/tom.json @@ -1,8 +1,7 @@ { - "copyright": "Tom Lavenziano", - "email": "tlavenziano@gmail.com", - "format": "html", - "gravatar": "false", - "theme": "dusk" + "copyright": "Tom Lavenziano", + "email": "tlavenziano@gmail.com", + "format": "html", + "gravatar": "false", + "theme": "dusk" } - diff --git a/users/tomalec.json b/users/tomalec.json index 0ec5cd77..86023447 100644 --- a/users/tomalec.json +++ b/users/tomalec.json @@ -1 +1,4 @@ -{"copyright":"Tomek Wytrebowicz","url":"https:\/\/github.com\/tomalec"} \ No newline at end of file +{ + "copyright": "Tomek Wytrebowicz", + "url": "https://github.com/tomalec" +} diff --git a/users/tomasmcguinness.json b/users/tomasmcguinness.json index 7bb52941..76c96248 100644 --- a/users/tomasmcguinness.json +++ b/users/tomasmcguinness.json @@ -1,5 +1,5 @@ { - "copyright": "Tomas McGuinness, http://www.tomasmcguinness.com", - "url": "http://www.tomasmcguinness.com", - "email": "tomas@tomasmcguinness.com" + "copyright": "Tomas McGuinness, http://www.tomasmcguinness.com", + "url": "http://www.tomasmcguinness.com", + "email": "tomas@tomasmcguinness.com" } diff --git a/users/tomass1996.json b/users/tomass1996.json index 62f4e717..8e1ac12d 100644 --- a/users/tomass1996.json +++ b/users/tomass1996.json @@ -1,7 +1,7 @@ { -"copyright":"Thomas Farr, http://tomass1996.github.com", -"url":"http://tomass1996.github.com", -"email":"farr.thomas@gmail.com", -"format":"html", -"theme":"xtansia" + "copyright": "Thomas Farr, http://tomass1996.github.com", + "url": "http://tomass1996.github.com", + "email": "farr.thomas@gmail.com", + "format": "html", + "theme": "xtansia" } diff --git a/users/tombuildsstuff.json b/users/tombuildsstuff.json index 97592c9a..52d30c94 100644 --- a/users/tombuildsstuff.json +++ b/users/tombuildsstuff.json @@ -1 +1,3 @@ -{"copyright":"Tom Harvey"} \ No newline at end of file +{ + "copyright": "Tom Harvey" +} diff --git a/users/tomchentw.json b/users/tomchentw.json index 4813a1cf..803ea8a6 100644 --- a/users/tomchentw.json +++ b/users/tomchentw.json @@ -1 +1,6 @@ -{"copyright":"Tom Chen","url":"http:\/\/www.tomchentw.com","email":"developer@tomchentw.com","gravatar":true} +{ + "copyright": "Tom Chen", + "url": "http://www.tomchentw.com", + "email": "developer@tomchentw.com", + "gravatar": true +} diff --git a/users/tomdavies.json b/users/tomdavies.json index 64aaae87..7153adf4 100644 --- a/users/tomdavies.json +++ b/users/tomdavies.json @@ -1 +1,6 @@ -{"copyright":"Tom Davies","url":"http:\/\/tomdavies.net","email":"mail@tomdavies.net","format":"txt"} \ No newline at end of file +{ + "copyright": "Tom Davies", + "url": "http://tomdavies.net", + "email": "mail@tomdavies.net", + "format": "txt" +} diff --git a/users/tommarshall.json b/users/tommarshall.json index 1e0252a5..38ac2e0b 100644 --- a/users/tommarshall.json +++ b/users/tommarshall.json @@ -1 +1,3 @@ -{"copyright":"Tom Marshall"} \ No newline at end of file +{ + "copyright": "Tom Marshall" +} diff --git a/users/tommy.json b/users/tommy.json index d456aa4a..e48a095b 100644 --- a/users/tommy.json +++ b/users/tommy.json @@ -1 +1,7 @@ -{"copyright":"Tommy Pujol","url":"https://tommypujol.cf","email":"tommy@pujol.cf","format":"html","theme":"hacker"} +{ + "copyright": "Tommy Pujol", + "url": "https://tommypujol.cf", + "email": "tommy@pujol.cf", + "format": "html", + "theme": "hacker" +} diff --git a/users/tomohiro.json b/users/tomohiro.json index 00616956..83b78121 100644 --- a/users/tomohiro.json +++ b/users/tomohiro.json @@ -1,5 +1,5 @@ { - "copyright": "Tomohiro Taira, http://tomohiro.me", - "url": "http://tomohiro.me", - "theme": "afterdark" + "copyright": "Tomohiro Taira, http://tomohiro.me", + "url": "http://tomohiro.me", + "theme": "afterdark" } diff --git a/users/tomoya.json b/users/tomoya.json index 3817fc3a..fc3c4ea3 100644 --- a/users/tomoya.json +++ b/users/tomoya.json @@ -1,5 +1,5 @@ { - "copyright": "Tomoya Otake", - "url": "http://d.hatena.ne.jp/tomoya/", - "theme": "double-windsor" + "copyright": "Tomoya Otake", + "url": "http://d.hatena.ne.jp/tomoya/", + "theme": "double-windsor" } diff --git a/users/tomraithel.json b/users/tomraithel.json index 98fed0ae..7772e4b3 100644 --- a/users/tomraithel.json +++ b/users/tomraithel.json @@ -1,7 +1,7 @@ { - "copyright":"Tom Raithel", - "url":"http:\/\/www.tomraithel.de", - "email":"hello@tomraithel.de", - "format":"html", - "theme":"flesch" -} \ No newline at end of file + "copyright": "Tom Raithel", + "url": "http://www.tomraithel.de", + "email": "hello@tomraithel.de", + "format": "html", + "theme": "flesch" +} diff --git a/users/toneden.json b/users/toneden.json index 8e2e44b4..98a28b8d 100644 --- a/users/toneden.json +++ b/users/toneden.json @@ -1 +1,3 @@ -{"copyright":"ToneDen, Inc"} \ No newline at end of file +{ + "copyright": "ToneDen, Inc" +} diff --git a/users/tonekk.json b/users/tonekk.json index 0c15d33c..70fd855c 100644 --- a/users/tonekk.json +++ b/users/tonekk.json @@ -1 +1,4 @@ -{"copyright":"Finn Heemeyer","url":"https:\/\/github.com\/tonekk"} +{ + "copyright": "Finn Heemeyer", + "url": "https://github.com/tonekk" +} diff --git a/users/tonivdv.json b/users/tonivdv.json index 37fd53e1..77501795 100644 --- a/users/tonivdv.json +++ b/users/tonivdv.json @@ -1 +1,6 @@ -{"copyright":"Toni Van de Voorde","email":"toni.vdv@gmail.com","format":"html","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Toni Van de Voorde", + "email": "toni.vdv@gmail.com", + "format": "html", + "theme": "double-windsor" +} diff --git a/users/tony.json b/users/tony.json index 3e338503..17266889 100644 --- a/users/tony.json +++ b/users/tony.json @@ -1 +1,7 @@ -{"copyright":"Tony Findeisen","url":"http:\/\/tonyfindeisen.de","email":"kontakt@tonyfindeisen.de","theme":"friendly","gravatar":true} \ No newline at end of file +{ + "copyright": "Tony Findeisen", + "url": "http://tonyfindeisen.de", + "email": "kontakt@tonyfindeisen.de", + "theme": "friendly", + "gravatar": true +} diff --git a/users/tonyb.json b/users/tonyb.json index e60c0c4c..55d525c8 100644 --- a/users/tonyb.json +++ b/users/tonyb.json @@ -1 +1,3 @@ -{"copyright":"Tony Biondo"} \ No newline at end of file +{ + "copyright": "Tony Biondo" +} diff --git a/users/tonyb486.json b/users/tonyb486.json index e60c0c4c..55d525c8 100644 --- a/users/tonyb486.json +++ b/users/tonyb486.json @@ -1 +1,3 @@ -{"copyright":"Tony Biondo"} \ No newline at end of file +{ + "copyright": "Tony Biondo" +} diff --git a/users/tonypelletier.json b/users/tonypelletier.json index 68557278..e5e73eb1 100644 --- a/users/tonypelletier.json +++ b/users/tonypelletier.json @@ -1 +1,3 @@ -{"copyright":"Tony Pelletier"} \ No newline at end of file +{ + "copyright": "Tony Pelletier" +} diff --git a/users/tonyphelps.json b/users/tonyphelps.json index fc7be21f..3931704f 100644 --- a/users/tonyphelps.json +++ b/users/tonyphelps.json @@ -1 +1,5 @@ -{"copyright":"Anthony Phelps","url":"http:\/\/tonyphelps.net","email":"anthonypphelps@gmail.com"} \ No newline at end of file +{ + "copyright": "Anthony Phelps", + "url": "http://tonyphelps.net", + "email": "anthonypphelps@gmail.com" +} diff --git a/users/tonyskn.json b/users/tonyskn.json index 75d2a0ca..b404501c 100644 --- a/users/tonyskn.json +++ b/users/tonyskn.json @@ -1,4 +1,4 @@ { - "copyright": "Tony Sokhon, http://twitter.com/tonyskn", - "url": "http://tonyskn.me" + "copyright": "Tony Sokhon, http://twitter.com/tonyskn", + "url": "http://tonyskn.me" } diff --git a/users/toolbear.json b/users/toolbear.json index 4033ab12..69339545 100644 --- a/users/toolbear.json +++ b/users/toolbear.json @@ -1,6 +1,6 @@ { - "copyright": "Tim Taylor, http://tool-man.org", - "url": "http://tool-man.org/", - "email": "tim@tool-man.org", - "gravatar": true + "copyright": "Tim Taylor, http://tool-man.org", + "url": "http://tool-man.org/", + "email": "tim@tool-man.org", + "gravatar": true } diff --git a/users/toomore.json b/users/toomore.json index 0b09151d..6bb90db1 100644 --- a/users/toomore.json +++ b/users/toomore.json @@ -1,7 +1,7 @@ { - "copyright": "Toomore Chiang, http://toomore.net/", - "url": "http://toomore.net", - "theme": "silver-style", - "email": "toomore0929@gmail.com", - "gravatar": true + "copyright": "Toomore Chiang, http://toomore.net/", + "url": "http://toomore.net", + "theme": "silver-style", + "email": "toomore0929@gmail.com", + "gravatar": true } diff --git a/users/toonketels.json b/users/toonketels.json index 1bedfc13..dc7ebe07 100644 --- a/users/toonketels.json +++ b/users/toonketels.json @@ -1 +1,4 @@ -{"copyright":"Toon Ketels","url":"http:\/\/toon.io"} \ No newline at end of file +{ + "copyright": "Toon Ketels", + "url": "http://toon.io" +} diff --git a/users/torjue.json b/users/torjue.json index 06e00c8d..c30f0cdc 100644 --- a/users/torjue.json +++ b/users/torjue.json @@ -1 +1,5 @@ -{"copyright":"Torjus Eidet","email":"torjue@gmail.com","theme":"flesch"} \ No newline at end of file +{ + "copyright": "Torjus Eidet", + "email": "torjue@gmail.com", + "theme": "flesch" +} diff --git a/users/tornqvist.json b/users/tornqvist.json index 1777804d..267e82d0 100644 --- a/users/tornqvist.json +++ b/users/tornqvist.json @@ -1,5 +1,5 @@ { - "copyright": "Carl Törnqvist", - "email": "calle.tornqvist@gmail.com", - "theme": "double-windsor" + "copyright": "Carl T\u00c3\u00b6rnqvist", + "email": "calle.tornqvist@gmail.com", + "theme": "double-windsor" } diff --git a/users/towry.json b/users/towry.json index 059f6039..aa329384 100644 --- a/users/towry.json +++ b/users/towry.json @@ -1,6 +1,6 @@ { - "copyright": "Towry Wang", - "url": "https://github.com/towry", - "email": "tovvry@gmail.com", - "theme": "plaintext" + "copyright": "Towry Wang", + "url": "https://github.com/towry", + "email": "tovvry@gmail.com", + "theme": "plaintext" } diff --git a/users/tpojka.json b/users/tpojka.json index 91e47eb3..a1bf3d25 100644 --- a/users/tpojka.json +++ b/users/tpojka.json @@ -1,8 +1,8 @@ { - "copyright": "Goran Grbic, http://tpojka.com", - "url": "http://tpojka.com", - "email": "hello@tpojka.com", - "format": "html", - "gravatar": true, - "theme": "black-beauty" + "copyright": "Goran Grbic, http://tpojka.com", + "url": "http://tpojka.com", + "email": "hello@tpojka.com", + "format": "html", + "gravatar": true, + "theme": "black-beauty" } diff --git a/users/tracking.json b/users/tracking.json index e6b4cef9..8592e332 100644 --- a/users/tracking.json +++ b/users/tracking.json @@ -1 +1,7 @@ -{ "copyright": "Tracking, https://mura.la", "url": "https://mura.la", "email": "tracking@mura.la", "theme": "dusk", "gravatar": true } +{ + "copyright": "Tracking, https://mura.la", + "url": "https://mura.la", + "email": "tracking@mura.la", + "theme": "dusk", + "gravatar": true +} diff --git a/users/transrate.json b/users/transrate.json index 1fdb2b6c..f028b58d 100644 --- a/users/transrate.json +++ b/users/transrate.json @@ -1 +1,5 @@ -{"copyright":"Richard Smith-Unna and Chris Boursnell","url":"http:\/\/hibberdlab.com\/transrate","format":"txt"} \ No newline at end of file +{ + "copyright": "Richard Smith-Unna and Chris Boursnell", + "url": "http://hibberdlab.com/transrate", + "format": "txt" +} diff --git a/users/tregusti.json b/users/tregusti.json index 56e456eb..5c31a72d 100644 --- a/users/tregusti.json +++ b/users/tregusti.json @@ -1,4 +1,4 @@ { - "copyright": "Glenn Jorde, http://tregusti.com/", - "theme": "flesch" + "copyright": "Glenn Jorde, http://tregusti.com/", + "theme": "flesch" } diff --git a/users/trev.json b/users/trev.json index 974b3b4e..04da580d 100644 --- a/users/trev.json +++ b/users/trev.json @@ -1 +1,5 @@ -{"copyright":"Trevor Cook","email":"trevdc@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Trevor Cook", + "email": "trevdc@gmail.com", + "format": "txt" +} diff --git a/users/trevorburnham.json b/users/trevorburnham.json index 8ffac843..704aeddb 100644 --- a/users/trevorburnham.json +++ b/users/trevorburnham.json @@ -1 +1,3 @@ -{"copyright":"Trevor Burnham"} \ No newline at end of file +{ + "copyright": "Trevor Burnham" +} diff --git a/users/trey.json b/users/trey.json index 5fc7dddb..35828a7d 100644 --- a/users/trey.json +++ b/users/trey.json @@ -1,4 +1,4 @@ { - "copyright": "Arthur L Piepmeier III, http://treypiepmeier.com", - "url": "http://treypiepmeier.com" + "copyright": "Arthur L Piepmeier III, http://treypiepmeier.com", + "url": "http://treypiepmeier.com" } diff --git a/users/trialtrialtrial.json b/users/trialtrialtrial.json index 76148ec9..86802de2 100644 --- a/users/trialtrialtrial.json +++ b/users/trialtrialtrial.json @@ -1 +1,7 @@ -{"copyright":"Trial","url":"http:\/\/trial.com","email":"me@mysite.com","theme":"solarized","gravatar":true} \ No newline at end of file +{ + "copyright": "Trial", + "url": "http://trial.com", + "email": "me@mysite.com", + "theme": "solarized", + "gravatar": true +} diff --git a/users/triplein.json b/users/triplein.json index 75d8ee9b..5e36cf83 100644 --- a/users/triplein.json +++ b/users/triplein.json @@ -3,4 +3,4 @@ "url": "https://www.triplein.at", "email": "office@triplein.at", "format": "html" -} \ No newline at end of file +} diff --git a/users/trisk.json b/users/trisk.json index aa993c3b..7c4d6960 100644 --- a/users/trisk.json +++ b/users/trisk.json @@ -1 +1,4 @@ -{"copyright":"Albert Lee","email":"trisk@forkgnu.org"} \ No newline at end of file +{ + "copyright": "Albert Lee", + "email": "trisk@forkgnu.org" +} diff --git a/users/troopjs.json b/users/troopjs.json index ae5c421b..9dec6b90 100644 --- a/users/troopjs.json +++ b/users/troopjs.json @@ -1 +1,4 @@ -{"copyright":"TroopJS","url":"http:\/\/troopjs.com"} \ No newline at end of file +{ + "copyright": "TroopJS", + "url": "http://troopjs.com" +} diff --git a/users/troutowicz.json b/users/troutowicz.json index f03caeb9..24e59457 100644 --- a/users/troutowicz.json +++ b/users/troutowicz.json @@ -1 +1,3 @@ -{"copyright":"Tim Routowicz"} \ No newline at end of file +{ + "copyright": "Tim Routowicz" +} diff --git a/users/troy.json b/users/troy.json index de2693bd..8184c8c2 100644 --- a/users/troy.json +++ b/users/troy.json @@ -1 +1,3 @@ -{"copyright":"Troy Deck"} \ No newline at end of file +{ + "copyright": "Troy Deck" +} diff --git a/users/true.json b/users/true.json index 2481a416..fff891b6 100644 --- a/users/true.json +++ b/users/true.json @@ -1 +1,3 @@ -{"copyright":"TrueServer B.V."} +{ + "copyright": "TrueServer B.V." +} diff --git a/users/trueserver.json b/users/trueserver.json index a4702270..fff891b6 100644 --- a/users/trueserver.json +++ b/users/trueserver.json @@ -1 +1,3 @@ -{"copyright":"TrueServer B.V."} \ No newline at end of file +{ + "copyright": "TrueServer B.V." +} diff --git a/users/trykickoff.json b/users/trykickoff.json index 4529cde8..4ef5ed23 100644 --- a/users/trykickoff.json +++ b/users/trykickoff.json @@ -1 +1,5 @@ -{"copyright":"TryKickoff","url":"http:\/\/trykickoff.github.io","format":"txt"} \ No newline at end of file +{ + "copyright": "TryKickoff", + "url": "http://trykickoff.github.io", + "format": "txt" +} diff --git a/users/tschaub.json b/users/tschaub.json index 73474dc1..3de5d1a1 100644 --- a/users/tschaub.json +++ b/users/tschaub.json @@ -1,4 +1,4 @@ { - "copyright": "Tim Schaub, http://tschaub.net", - "url": "http://tschaub.net" + "copyright": "Tim Schaub, http://tschaub.net", + "url": "http://tschaub.net" } diff --git a/users/tscm.json b/users/tscm.json index 3a197c53..1ffdbe19 100644 --- a/users/tscm.json +++ b/users/tscm.json @@ -1 +1,4 @@ -{"copyright":"Tsujimoto Sir Christopher Mamoru","url":"https:\/\/github.com\/MamoruTsujimoto\/"} \ No newline at end of file +{ + "copyright": "Tsujimoto Sir Christopher Mamoru", + "url": "https://github.com/MamoruTsujimoto/" +} diff --git a/users/tulos.json b/users/tulos.json index 5327b062..fed782dc 100644 --- a/users/tulos.json +++ b/users/tulos.json @@ -1 +1,5 @@ -{"copyright":"Tulos Capital","url":"http:\/\/tuloscapital.com","email":"admin@tuloscapital.com"} \ No newline at end of file +{ + "copyright": "Tulos Capital", + "url": "http://tuloscapital.com", + "email": "admin@tuloscapital.com" +} diff --git a/users/turnbullm.json b/users/turnbullm.json index ba72a36a..9363da7f 100644 --- a/users/turnbullm.json +++ b/users/turnbullm.json @@ -1 +1,5 @@ -{"copyright":"Matthew Turnbull","url":"http:\/\/turnbullm.com","email":"turnbullm@gmail.com"} \ No newline at end of file +{ + "copyright": "Matthew Turnbull", + "url": "http://turnbullm.com", + "email": "turnbullm@gmail.com" +} diff --git a/users/tvsloot.json b/users/tvsloot.json index c8b74a09..4f8f3ecb 100644 --- a/users/tvsloot.json +++ b/users/tvsloot.json @@ -1 +1,5 @@ -{"copyright":"travis vander sloot ","url":"http:\/\/tvsloot.com","email":"travis@tvsloot.com"} +{ + "copyright": "travis vander sloot ", + "url": "http://tvsloot.com", + "email": "travis@tvsloot.com" +} diff --git a/users/twada.json b/users/twada.json index ce547422..08ca0ae8 100644 --- a/users/twada.json +++ b/users/twada.json @@ -1 +1,4 @@ -{"copyright":"Takuto Wada","url":"https:\/\/github.com\/twada"} \ No newline at end of file +{ + "copyright": "Takuto Wada", + "url": "https://github.com/twada" +} diff --git a/users/twotoasters.json b/users/twotoasters.json index 12da1b13..6733782b 100644 --- a/users/twotoasters.json +++ b/users/twotoasters.json @@ -1 +1,5 @@ -{"copyright":"Two Toasters","url":"http:\/\/twotoasters.com","email":"general@twotoasters.com"} \ No newline at end of file +{ + "copyright": "Two Toasters", + "url": "http://twotoasters.com", + "email": "general@twotoasters.com" +} diff --git a/users/tyabe.json b/users/tyabe.json index 65faa459..9466043c 100644 --- a/users/tyabe.json +++ b/users/tyabe.json @@ -1 +1,4 @@ -{"copyright":"Takeshi Yabe","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Takeshi Yabe", + "theme": "double-windsor" +} diff --git a/users/tzi.json b/users/tzi.json index 59db181e..8b9f7f51 100644 --- a/users/tzi.json +++ b/users/tzi.json @@ -1 +1,4 @@ -{"copyright":"Thomas ZILLIOX","url":"http:\/\/tzi.fr"} \ No newline at end of file +{ + "copyright": "Thomas ZILLIOX", + "url": "http://tzi.fr" +} diff --git a/users/tzmartin.json b/users/tzmartin.json index 7d4e5d3a..c331278f 100644 --- a/users/tzmartin.json +++ b/users/tzmartin.json @@ -1 +1,8 @@ -{"copyright":"TZ Martin, http:\/\/tzmartin.github.io","url":"http:\/\/tzmartin.github.io","email":"license@tzmartin.com","format":"txt","gravatar":true,"theme":"default"} \ No newline at end of file +{ + "copyright": "TZ Martin, http://tzmartin.github.io", + "url": "http://tzmartin.github.io", + "email": "license@tzmartin.com", + "format": "txt", + "gravatar": true, + "theme": "default" +} diff --git a/users/uda.json b/users/uda.json index 6653525a..40583c70 100644 --- a/users/uda.json +++ b/users/uda.json @@ -1,7 +1,7 @@ { - "copyright": "Yehuda T. Deutsch", - "url": "http://x59.co", - "email": "yeh@uda.co.il", - "gravatar": true, - "theme": "eula-modern" + "copyright": "Yehuda T. Deutsch", + "url": "http://x59.co", + "email": "yeh@uda.co.il", + "gravatar": true, + "theme": "eula-modern" } diff --git a/users/udondokodoon.json b/users/udondokodoon.json index c69fcfec..73ea64eb 100644 --- a/users/udondokodoon.json +++ b/users/udondokodoon.json @@ -1 +1,5 @@ -{"copyright":"Usoda Dondokodoon","url":"http:\/\/udondokodoon.github.com","email":"usoda.dondokodoon@gmail.com"} \ No newline at end of file +{ + "copyright": "Usoda Dondokodoon", + "url": "http://udondokodoon.github.com", + "email": "usoda.dondokodoon@gmail.com" +} diff --git a/users/udzura.json b/users/udzura.json index 19450fac..af2c3642 100644 --- a/users/udzura.json +++ b/users/udzura.json @@ -1 +1,3 @@ -{"copyright":"Uchio KONDO"} \ No newline at end of file +{ + "copyright": "Uchio KONDO" +} diff --git a/users/uec-azlab.json b/users/uec-azlab.json index 246ddb4a..07e86a59 100644 --- a/users/uec-azlab.json +++ b/users/uec-azlab.json @@ -1 +1,4 @@ -{"copyright":"AnZen-Lab (UEC, Tokyo)","url":"http:\/\/www.az.inf.uec.ac.jp\/"} \ No newline at end of file +{ + "copyright": "AnZen-Lab (UEC, Tokyo)", + "url": "http://www.az.inf.uec.ac.jp/" +} diff --git a/users/uersi.json b/users/uersi.json index ac24b517..a3abd157 100644 --- a/users/uersi.json +++ b/users/uersi.json @@ -1,4 +1,4 @@ { - "copyright": "Elena Utkina", - "email": "uersi@yandex.ru" + "copyright": "Elena Utkina", + "email": "uersi@yandex.ru" } diff --git a/users/uglybugger.json b/users/uglybugger.json index d266b2a1..1b173b84 100644 --- a/users/uglybugger.json +++ b/users/uglybugger.json @@ -1 +1,6 @@ -{"copyright":"Andrew Harcourt","url":"http:\/\/www.codingforfunandprofit.com\/","email":"andrewh@uglybugger.org","format":"txt"} \ No newline at end of file +{ + "copyright": "Andrew Harcourt", + "url": "http://www.codingforfunandprofit.com/", + "email": "andrewh@uglybugger.org", + "format": "txt" +} diff --git a/users/ugurceylan.json b/users/ugurceylan.json index a5e1fe69..b6c11574 100644 --- a/users/ugurceylan.json +++ b/users/ugurceylan.json @@ -1 +1,6 @@ -{"copyright":"Uğur CEYLAN","url":"https://github.com/ugurceylan","theme":"ecijol","gravatar": true} +{ + "copyright": "U\u00c4\u0178ur CEYLAN", + "url": "https://github.com/ugurceylan", + "theme": "ecijol", + "gravatar": true +} diff --git a/users/uiwwnw.json b/users/uiwwnw.json index 4120aeff..673a0168 100644 --- a/users/uiwwnw.json +++ b/users/uiwwnw.json @@ -1 +1,5 @@ -{"copyright":"uiwwnw", "email": "uiwwnw@icloud.com", "format":"html"} +{ + "copyright": "uiwwnw", + "email": "uiwwnw@icloud.com", + "format": "html" +} diff --git a/users/ulysse.json b/users/ulysse.json index 4bc056fe..37fb648f 100644 --- a/users/ulysse.json +++ b/users/ulysse.json @@ -1,4 +1,4 @@ { - "copyright": "Ulysse Buonomo", - "email": "buonomo.ulysse@gmail.com" + "copyright": "Ulysse Buonomo", + "email": "buonomo.ulysse@gmail.com" } diff --git a/users/umaar.json b/users/umaar.json index 461256e6..588dd295 100644 --- a/users/umaar.json +++ b/users/umaar.json @@ -1 +1,3 @@ -{"copyright":"Umar Hansa"} \ No newline at end of file +{ + "copyright": "Umar Hansa" +} diff --git a/users/umputun.json b/users/umputun.json index 08a158b8..eaeb581a 100644 --- a/users/umputun.json +++ b/users/umputun.json @@ -1 +1,6 @@ -{"copyright":"Umpuun","url":"http:\/\/umputun.com","email":"umputun@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Umpuun", + "url": "http://umputun.com", + "email": "umputun@gmail.com", + "format": "txt" +} diff --git a/users/undozen.json b/users/undozen.json index 376d813f..5f58d2c8 100644 --- a/users/undozen.json +++ b/users/undozen.json @@ -1 +1,7 @@ -{"copyright":"Anson Yu Wang","email":"opensource@undozen.com","url":"http:\/\/www.undozen.com","gravatar":true,"theme":"friendly"} \ No newline at end of file +{ + "copyright": "Anson Yu Wang", + "email": "opensource@undozen.com", + "url": "http://www.undozen.com", + "gravatar": true, + "theme": "friendly" +} diff --git a/users/unicodejs.json b/users/unicodejs.json index 8ab7f063..8d24a1db 100644 --- a/users/unicodejs.json +++ b/users/unicodejs.json @@ -1,6 +1,6 @@ { - "copyright": "UnicodeJS Team and other contributors", - "url": "https://www.mediawiki.org/wiki/UnicodeJS", - "format": "html", - "theme":"double-windsor" + "copyright": "UnicodeJS Team and other contributors", + "url": "https://www.mediawiki.org/wiki/UnicodeJS", + "format": "html", + "theme": "double-windsor" } diff --git a/users/unisharp.json b/users/unisharp.json index 33b95576..6cab5de0 100644 --- a/users/unisharp.json +++ b/users/unisharp.json @@ -1,8 +1,8 @@ { - "copyright": "UniSharp & Contributors", - "url": "https://unisharp.com", - "email": "opensource@unisharp.com", - "format": "html", - "theme": "eula-modern", - "gravatar": true + "copyright": "UniSharp & Contributors", + "url": "https://unisharp.com", + "email": "opensource@unisharp.com", + "format": "html", + "theme": "eula-modern", + "gravatar": true } diff --git a/users/unmoremaster.json b/users/unmoremaster.json index 4d3ef873..ce3ae0aa 100644 --- a/users/unmoremaster.json +++ b/users/unmoremaster.json @@ -1 +1,6 @@ -{ "copyright": "Unmore Master", "url": "http://unmoremaster.hatenablog.com", "email": "unmoremaster@gmail.com", "gravatar": true } +{ + "copyright": "Unmore Master", + "url": "http://unmoremaster.hatenablog.com", + "email": "unmoremaster@gmail.com", + "gravatar": true +} diff --git a/users/uservoice.json b/users/uservoice.json index 5bd9e07f..d2d31935 100644 --- a/users/uservoice.json +++ b/users/uservoice.json @@ -1 +1,6 @@ -{"copyright":"Raimo Tuisku","url":"https:\/\/developer.uservoice.com\/","email":"dev@uservoice.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Raimo Tuisku", + "url": "https://developer.uservoice.com/", + "email": "dev@uservoice.com", + "format": "txt" +} diff --git a/users/usuck.json b/users/usuck.json index 5aef84ef..169ec2eb 100644 --- a/users/usuck.json +++ b/users/usuck.json @@ -1 +1,3 @@ -{"copyright":"USuck"} \ No newline at end of file +{ + "copyright": "USuck" +} diff --git a/users/utkarsh.json b/users/utkarsh.json index e8ad9186..2e405062 100644 --- a/users/utkarsh.json +++ b/users/utkarsh.json @@ -1 +1,3 @@ -{"copyright":"Utkarsh Sengar"} \ No newline at end of file +{ + "copyright": "Utkarsh Sengar" +} diff --git a/users/uu59.json b/users/uu59.json index 301ac981..c2f72e62 100644 --- a/users/uu59.json +++ b/users/uu59.json @@ -1 +1,5 @@ -{"copyright":"uu59","url":"http:\/\/uu59.org\/","email":"k@uu59.org"} \ No newline at end of file +{ + "copyright": "uu59", + "url": "http://uu59.org/", + "email": "k@uu59.org" +} diff --git a/users/uv.json b/users/uv.json index 52e10ee3..e8871cf4 100644 --- a/users/uv.json +++ b/users/uv.json @@ -1 +1,6 @@ -{"copyright":"UserVoice","url":"https:\/\/developer.uservoice.com\/","email":"dev@uservoice.com","format":"txt"} \ No newline at end of file +{ + "copyright": "UserVoice", + "url": "https://developer.uservoice.com/", + "email": "dev@uservoice.com", + "format": "txt" +} diff --git a/users/uvd.json b/users/uvd.json index b979b572..ca0d6866 100644 --- a/users/uvd.json +++ b/users/uvd.json @@ -1 +1,3 @@ -{"copyright":"Ultraviolet Design Ltd"} \ No newline at end of file +{ + "copyright": "Ultraviolet Design Ltd" +} diff --git a/users/v.json b/users/v.json index b48ddf2c..215c4c18 100644 --- a/users/v.json +++ b/users/v.json @@ -1 +1,6 @@ -{"copyright":"Avinash Sajjanshetty","url":"http:\/\/avi.im\/","email":"hi@avi.im","theme":"afterdark"} \ No newline at end of file +{ + "copyright": "Avinash Sajjanshetty", + "url": "http://avi.im/", + "email": "hi@avi.im", + "theme": "afterdark" +} diff --git a/users/vagnersantana.json b/users/vagnersantana.json index ebc4006a..e307635f 100644 --- a/users/vagnersantana.json +++ b/users/vagnersantana.json @@ -1 +1,6 @@ -{"copyright":"Vagner Santana","url":"http:\/\/vagnersantana.com","email":"vagnervjs@gmail.com.com","format":"html"} \ No newline at end of file +{ + "copyright": "Vagner Santana", + "url": "http://vagnersantana.com", + "email": "vagnervjs@gmail.com.com", + "format": "html" +} diff --git a/users/vagnervjs.json b/users/vagnervjs.json index 0b669d0f..712fd066 100644 --- a/users/vagnervjs.json +++ b/users/vagnervjs.json @@ -1 +1,6 @@ -{"copyright":"Vagner Santana","url":"http:\/\/vagnersantana.com","email":"vagnervjs@gmail.com.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Vagner Santana", + "url": "http://vagnersantana.com", + "email": "vagnervjs@gmail.com.com", + "format": "txt" +} diff --git a/users/vaibhavsingh97.json b/users/vaibhavsingh97.json index af2fcf28..52edd733 100644 --- a/users/vaibhavsingh97.json +++ b/users/vaibhavsingh97.json @@ -1,7 +1,7 @@ { - "copyright": "Vaibhav Singh, https://vaibhavsingh97.me", - "url": "https://vaibhavsingh97.me", - "email": "vaibhav.singh.14cse@bml.edu.in", - "theme":"material-teal", - "gravatar": true + "copyright": "Vaibhav Singh, https://vaibhavsingh97.me", + "url": "https://vaibhavsingh97.me", + "email": "vaibhav.singh.14cse@bml.edu.in", + "theme": "material-teal", + "gravatar": true } diff --git a/users/vakiliy.json b/users/vakiliy.json index 463bfec4..08c29418 100644 --- a/users/vakiliy.json +++ b/users/vakiliy.json @@ -1 +1,4 @@ -{"copyright":"Dmitriy Sergeev","email":"vakiliy@gmail.com"} \ No newline at end of file +{ + "copyright": "Dmitriy Sergeev", + "email": "vakiliy@gmail.com" +} diff --git a/users/vardy.json b/users/vardy.json index c88eea27..8ef0051e 100644 --- a/users/vardy.json +++ b/users/vardy.json @@ -1 +1,7 @@ -{"copyright":"Jarred Vardy","email":"jarred.vardy@gmail.com","format":"html","gravatar":true,"theme":"material-orange"} +{ + "copyright": "Jarred Vardy", + "email": "jarred.vardy@gmail.com", + "format": "html", + "gravatar": true, + "theme": "material-orange" +} diff --git a/users/varundey.json b/users/varundey.json index 3fb077fa..3b0a9576 100644 --- a/users/varundey.json +++ b/users/varundey.json @@ -1 +1,7 @@ -{"copyright":"Varun Dey","url":"https:\/\/varundey.me","theme":"afterdark","email":"varundey20@gmail.com","format":"html"} +{ + "copyright": "Varun Dey", + "url": "https://varundey.me", + "theme": "afterdark", + "email": "varundey20@gmail.com", + "format": "html" +} diff --git a/users/varunkumar.json b/users/varunkumar.json index 2b70c54e..fd9f48e2 100644 --- a/users/varunkumar.json +++ b/users/varunkumar.json @@ -1 +1,6 @@ -{"copyright":"Varunkumar Nagarajan, http:\/\/www.varunkumar.me","url":"http:\/\/www.varunkumar.me","email":"varunkumar.n@gmail.com","theme":"xtansia"} \ No newline at end of file +{ + "copyright": "Varunkumar Nagarajan, http://www.varunkumar.me", + "url": "http://www.varunkumar.me", + "email": "varunkumar.n@gmail.com", + "theme": "xtansia" +} diff --git a/users/varzea.json b/users/varzea.json index 479ccda6..0c9aede6 100644 --- a/users/varzea.json +++ b/users/varzea.json @@ -1,4 +1,4 @@ { - "copyright": "Maxwell Brown", - "url": "https://github.com/varzea/" + "copyright": "Maxwell Brown", + "url": "https://github.com/varzea/" } diff --git a/users/vbalien.json b/users/vbalien.json index f121d951..56012b2e 100644 --- a/users/vbalien.json +++ b/users/vbalien.json @@ -1 +1,6 @@ -{"copyright":"Jisu Kim","url":"http:\/\/alien.moe","email":"vbalien@live.jp","format":"txt"} \ No newline at end of file +{ + "copyright": "Jisu Kim", + "url": "http://alien.moe", + "email": "vbalien@live.jp", + "format": "txt" +} diff --git a/users/ve.json b/users/ve.json index 3d4de0b6..42147040 100644 --- a/users/ve.json +++ b/users/ve.json @@ -1 +1,6 @@ -{"copyright":"VisualEditor Team and others","url":"https:\/\/phabricator.wikimedia.org\/diffusion\/GVED\/browse\/master\/AUTHORS.txt","format":"html","theme":"double-windsor"} +{ + "copyright": "VisualEditor Team and others", + "url": "https://phabricator.wikimedia.org/diffusion/GVED/browse/master/AUTHORS.txt", + "format": "html", + "theme": "double-windsor" +} diff --git a/users/venomvendor.json b/users/venomvendor.json index fe4c74fb..e24d870f 100644 --- a/users/venomvendor.json +++ b/users/venomvendor.json @@ -1 +1,6 @@ -{"copyright":"VenomVendor","url":"http:\/\/VenomVendor.com","email":"info@VenomVendor.com","format":"txt"} \ No newline at end of file +{ + "copyright": "VenomVendor", + "url": "http://VenomVendor.com", + "email": "info@VenomVendor.com", + "format": "txt" +} diff --git a/users/vevix.json b/users/vevix.json index e2ef21dd..9f92d27a 100644 --- a/users/vevix.json +++ b/users/vevix.json @@ -1 +1,5 @@ -{"copyright":"Thomas McNiven","email":"hello@vevix.net","url":"http:\/\/vevix.net"} \ No newline at end of file +{ + "copyright": "Thomas McNiven", + "email": "hello@vevix.net", + "url": "http://vevix.net" +} diff --git a/users/vi3okryulfqjthl6.json b/users/vi3okryulfqjthl6.json index b2902636..a36303b6 100644 --- a/users/vi3okryulfqjthl6.json +++ b/users/vi3okryulfqjthl6.json @@ -1 +1,3 @@ -{"copyright":"test<\/b>"} \ No newline at end of file +{ + "copyright": "test" +} diff --git a/users/via.json b/users/via.json index 8bc96f27..cc9dde4f 100644 --- a/users/via.json +++ b/users/via.json @@ -1 +1,3 @@ -{"copyright":"Vereniging Informatiewetenschappen Amsterdam"} \ No newline at end of file +{ + "copyright": "Vereniging Informatiewetenschappen Amsterdam" +} diff --git a/users/vicnicius.json b/users/vicnicius.json index 5a17fef5..b72049cd 100644 --- a/users/vicnicius.json +++ b/users/vicnicius.json @@ -1 +1,6 @@ -{"copyright":"Vin\u00edcius Andrade","url":"http:\/\/vicnicius.github.io","email":"vchavesster@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Vin\u00edcius Andrade", + "url": "http://vicnicius.github.io", + "email": "vchavesster@gmail.com", + "format": "txt" +} diff --git a/users/victor.json b/users/victor.json index 31ce6a09..192894c8 100644 --- a/users/victor.json +++ b/users/victor.json @@ -1 +1,6 @@ -{"copyright":"Victor Nogueira","email":"felladrin@gmail.com","gravatar":true,"theme":"black-beauty"} \ No newline at end of file +{ + "copyright": "Victor Nogueira", + "email": "felladrin@gmail.com", + "gravatar": true, + "theme": "black-beauty" +} diff --git a/users/victordavydov.json b/users/victordavydov.json index 42c586df..acd225b3 100644 --- a/users/victordavydov.json +++ b/users/victordavydov.json @@ -1 +1,3 @@ -{"copyright":"Victor Davydov"} \ No newline at end of file +{ + "copyright": "Victor Davydov" +} diff --git a/users/victordieggo.json b/users/victordieggo.json index 79bb1c07..553c84c5 100644 --- a/users/victordieggo.json +++ b/users/victordieggo.json @@ -1 +1,5 @@ -{"copyright":"Victor Diego","url":"http:\/\/victordiego.com","email":"victordieggo@gmail.com"} +{ + "copyright": "Victor Diego", + "url": "http://victordiego.com", + "email": "victordieggo@gmail.com" +} diff --git a/users/viditor.json b/users/viditor.json index 8ac51e3f..9db3e2e2 100644 --- a/users/viditor.json +++ b/users/viditor.json @@ -1 +1,6 @@ -{"copyright":"Andrew McPherson","url":"ehgoodenough.com","email":"ehgoodenough@gmail.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Andrew McPherson", + "url": "ehgoodenough.com", + "email": "ehgoodenough@gmail.com", + "gravatar": true +} diff --git a/users/vieiralucas.json b/users/vieiralucas.json index d7b31186..3c8d45b8 100644 --- a/users/vieiralucas.json +++ b/users/vieiralucas.json @@ -1 +1,5 @@ -{"copyright":"Lucas Vieira","url":"http:\/\/vieiralucas.com","email":"vieiralucas4@gmail.com"} \ No newline at end of file +{ + "copyright": "Lucas Vieira", + "url": "http://vieiralucas.com", + "email": "vieiralucas4@gmail.com" +} diff --git a/users/vijayendra.json b/users/vijayendra.json index af8d02aa..b519018f 100644 --- a/users/vijayendra.json +++ b/users/vijayendra.json @@ -1,7 +1,7 @@ { - "copyright": "Vijayendra Bapte", - "url": "http://vijayendra.github.io", - "email": "vijayendra.bapte@gmail.com", - "theme": "material-pink", - "gravatar": true + "copyright": "Vijayendra Bapte", + "url": "http://vijayendra.github.io", + "email": "vijayendra.bapte@gmail.com", + "theme": "material-pink", + "gravatar": true } diff --git a/users/viktorbergehall.json b/users/viktorbergehall.json index 4e0890ab..d8ee4b4e 100644 --- a/users/viktorbergehall.json +++ b/users/viktorbergehall.json @@ -1 +1,3 @@ -{"copyright":"Viktor Bergehall"} \ No newline at end of file +{ + "copyright": "Viktor Bergehall" +} diff --git a/users/viktort.json b/users/viktort.json index 8ae6fcbe..3da751e4 100644 --- a/users/viktort.json +++ b/users/viktort.json @@ -1 +1,3 @@ -{"copyright":"Viktor Trako"} \ No newline at end of file +{ + "copyright": "Viktor Trako" +} diff --git a/users/vineetdhanawat.json b/users/vineetdhanawat.json index 1e6caaad..19e05858 100644 --- a/users/vineetdhanawat.json +++ b/users/vineetdhanawat.json @@ -1,4 +1,4 @@ { - "copyright": "Vineet Dhanawat", - "url": "http://www.vineetdhanawat.com/" -} \ No newline at end of file + "copyright": "Vineet Dhanawat", + "url": "http://www.vineetdhanawat.com/" +} diff --git a/users/vinipalma.json b/users/vinipalma.json index 6e854258..797268c1 100644 --- a/users/vinipalma.json +++ b/users/vinipalma.json @@ -1,7 +1,7 @@ -{ - "copyright": "Vinícius Palma", - "url": "http://vinipalma.com", - "email": "vini_palma@outlook.com", - "format": "txt", - "gravatar": true +{ + "copyright": "Vin\u00c3\u00adcius Palma", + "url": "http://vinipalma.com", + "email": "vini_palma@outlook.com", + "format": "txt", + "gravatar": true } diff --git a/users/vinnyguitar.json b/users/vinnyguitar.json index 0cabe72e..f0681bc6 100644 --- a/users/vinnyguitar.json +++ b/users/vinnyguitar.json @@ -1 +1,5 @@ -{"copyright":"vinnyguitar","email":"vinnyguitar@126.com","format":"txt"} \ No newline at end of file +{ + "copyright": "vinnyguitar", + "email": "vinnyguitar@126.com", + "format": "txt" +} diff --git a/users/vinwz.json b/users/vinwz.json index 53158109..f2a95add 100644 --- a/users/vinwz.json +++ b/users/vinwz.json @@ -1 +1,3 @@ -{"copyright":"Vincent Watremez"} \ No newline at end of file +{ + "copyright": "Vincent Watremez" +} diff --git a/users/visav.json b/users/visav.json index 4ba8426b..cb3c1ea2 100644 --- a/users/visav.json +++ b/users/visav.json @@ -1 +1,3 @@ -{"copyright":"Visa Varjus"} \ No newline at end of file +{ + "copyright": "Visa Varjus" +} diff --git a/users/vishal.json b/users/vishal.json index 48337432..a8fe7e7e 100644 --- a/users/vishal.json +++ b/users/vishal.json @@ -1,5 +1,5 @@ { - "copyright": "Vishal Singal", - "email": "vishalsingal94@gmail.com", - "theme": "xtansia" + "copyright": "Vishal Singal", + "email": "vishalsingal94@gmail.com", + "theme": "xtansia" } diff --git a/users/visionmedia.json b/users/visionmedia.json index 183a96a7..1de71d08 100644 --- a/users/visionmedia.json +++ b/users/visionmedia.json @@ -1 +1,3 @@ -{"copyright":"TJ Holowaychuk"} \ No newline at end of file +{ + "copyright": "TJ Holowaychuk" +} diff --git a/users/vitalk.json b/users/vitalk.json index 6171542d..c3fa13a7 100644 --- a/users/vitalk.json +++ b/users/vitalk.json @@ -1 +1,4 @@ -{"copyright":"Vital Kudzelka","email":"vital.kudzelka@gmail.com"} \ No newline at end of file +{ + "copyright": "Vital Kudzelka", + "email": "vital.kudzelka@gmail.com" +} diff --git a/users/vito.json b/users/vito.json index 2f6397eb..ca73068f 100644 --- a/users/vito.json +++ b/users/vito.json @@ -1 +1,6 @@ -{"copyright":"Vito Zhang","url":"http:\/\/vit0.com","email":"vvitozhang@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Vito Zhang", + "url": "http://vit0.com", + "email": "vvitozhang@gmail.com", + "format": "txt" +} diff --git a/users/vitor.json b/users/vitor.json index b2f9d4ac..c6164c81 100644 --- a/users/vitor.json +++ b/users/vitor.json @@ -1 +1,8 @@ -{"copyright":"Vitor Carlos","url":"http:\/\/v42.com.br","email":"vitor@v42.com.br","format":"html","gravatar":true,"theme":"opensans"} \ No newline at end of file +{ + "copyright": "Vitor Carlos", + "url": "http://v42.com.br", + "email": "vitor@v42.com.br", + "format": "html", + "gravatar": true, + "theme": "opensans" +} diff --git a/users/vitorbal.json b/users/vitorbal.json index 18aed00b..a69d4c04 100644 --- a/users/vitorbal.json +++ b/users/vitorbal.json @@ -1 +1,5 @@ -{"copyright":"Vitor Balocco","url":"http:\/\/github.com\/vitorbal","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Vitor Balocco", + "url": "http://github.com/vitorbal", + "theme": "double-windsor" +} diff --git a/users/vitorbritto.json b/users/vitorbritto.json index d48acf95..a9e0a291 100644 --- a/users/vitorbritto.json +++ b/users/vitorbritto.json @@ -1 +1,5 @@ -{"copyright":"Vitor Britto","url":"http:\/\/vitorbritto.com.br","email":"code@vitorbritto.com.br"} +{ + "copyright": "Vitor Britto", + "url": "http://vitorbritto.com.br", + "email": "code@vitorbritto.com.br" +} diff --git a/users/vitornogueira.json b/users/vitornogueira.json index 7d1d2ad7..5f4695f3 100644 --- a/users/vitornogueira.json +++ b/users/vitornogueira.json @@ -1 +1,3 @@ -{"copyright":"Vitor Nogueira"} \ No newline at end of file +{ + "copyright": "Vitor Nogueira" +} diff --git a/users/vjpr.json b/users/vjpr.json index 7f8fdabc..5de63011 100644 --- a/users/vjpr.json +++ b/users/vjpr.json @@ -1 +1,3 @@ -{"copyright":"Vaughan Rouesnel"} \ No newline at end of file +{ + "copyright": "Vaughan Rouesnel" +} diff --git a/users/vko-online.json b/users/vko-online.json index 6b3c7526..76d48768 100644 --- a/users/vko-online.json +++ b/users/vko-online.json @@ -1 +1,3 @@ -{"copyright":"Medet Tleukabiluly"} \ No newline at end of file +{ + "copyright": "Medet Tleukabiluly" +} diff --git a/users/vmanot.json b/users/vmanot.json index 46f7a763..a2316078 100644 --- a/users/vmanot.json +++ b/users/vmanot.json @@ -1 +1,3 @@ -{"copyright":"Vatsal Manot"} \ No newline at end of file +{ + "copyright": "Vatsal Manot" +} diff --git a/users/vnk.json b/users/vnk.json index 42330a68..2af72d06 100644 --- a/users/vnk.json +++ b/users/vnk.json @@ -1 +1,6 @@ -{"copyright":"gnz\/vnk","url":"http:\/\/lapartequefalta.com","email":"venkman@lapartequefalta.com","format":"txt"} \ No newline at end of file +{ + "copyright": "gnz/vnk", + "url": "http://lapartequefalta.com", + "email": "venkman@lapartequefalta.com", + "format": "txt" +} diff --git a/users/vocksel.json b/users/vocksel.json index a25eea0d..82813f15 100644 --- a/users/vocksel.json +++ b/users/vocksel.json @@ -1,5 +1,5 @@ { - "copyright": "David Minnerly", - "url": "http://davidminnerly.com", - "format": "txt" + "copyright": "David Minnerly", + "url": "http://davidminnerly.com", + "format": "txt" } diff --git a/users/voltdb.json b/users/voltdb.json index b3f6a1d5..1b21bda9 100644 --- a/users/voltdb.json +++ b/users/voltdb.json @@ -1,6 +1,6 @@ { - "copyright":"VoltDB, Inc.", - "url":"http:\/\/www.voltdb.com", - "email":"info@voltdb.com", - "format":"txt" + "copyright": "VoltDB, Inc.", + "url": "http://www.voltdb.com", + "email": "info@voltdb.com", + "format": "txt" } diff --git a/users/voodootikigod.json b/users/voodootikigod.json index 81c95a1b..eec0711e 100644 --- a/users/voodootikigod.json +++ b/users/voodootikigod.json @@ -1 +1,3 @@ -{"copyright":"Chris Williams"} \ No newline at end of file +{ + "copyright": "Chris Williams" +} diff --git a/users/voxpelli.json b/users/voxpelli.json index 13d9ac60..800f480c 100644 --- a/users/voxpelli.json +++ b/users/voxpelli.json @@ -1 +1,6 @@ -{"copyright":"Pelle Wessman","url":"http:\/\/kodfabrik.se","email":"pelle@kodfabrik.se","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Pelle Wessman", + "url": "http://kodfabrik.se", + "email": "pelle@kodfabrik.se", + "theme": "double-windsor" +} diff --git a/users/vsisk.json b/users/vsisk.json index ea8c3385..9696f0cd 100644 --- a/users/vsisk.json +++ b/users/vsisk.json @@ -1,5 +1,5 @@ { - "copyright": "Vincent Sisk, https://github.com/sappharx", - "email": "vinnysisk@gmail.com", - "theme" : "solarized" + "copyright": "Vincent Sisk, https://github.com/sappharx", + "email": "vinnysisk@gmail.com", + "theme": "solarized" } diff --git a/users/vsouza.json b/users/vsouza.json index 2d589549..0c4694b5 100644 --- a/users/vsouza.json +++ b/users/vsouza.json @@ -1 +1,8 @@ -{"copyright":"Vinicius Souza, http:\/\/vsouza.com ","url":"http:\/\/vsouza.com","email":"hi@vsouza.com","format":"html","gravatar":true,"theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Vinicius Souza, http://vsouza.com ", + "url": "http://vsouza.com", + "email": "hi@vsouza.com", + "format": "html", + "gravatar": true, + "theme": "double-windsor" +} diff --git a/users/vsr.json b/users/vsr.json index 2c5c1abc..f3cd61ad 100644 --- a/users/vsr.json +++ b/users/vsr.json @@ -1,4 +1,4 @@ { - "copyright": "Vinay Raikar, http://vinayraikar.com", - "url": "http://vinayraikar.com" + "copyright": "Vinay Raikar, http://vinayraikar.com", + "url": "http://vinayraikar.com" } diff --git a/users/vt47.json b/users/vt47.json index 575daa23..bca36baf 100644 --- a/users/vt47.json +++ b/users/vt47.json @@ -1,7 +1,7 @@ { - "copyright": "Vu Tran, http://vutran47.us", - "url": "http://vutran47.us", - "email": "vutran.1710@gmail.com", - "format": "html", - "theme": "dusk" + "copyright": "Vu Tran, http://vutran47.us", + "url": "http://vutran47.us", + "email": "vutran.1710@gmail.com", + "format": "html", + "theme": "dusk" } diff --git a/users/vtalbot.json b/users/vtalbot.json index 570b5dd7..4f8ed963 100644 --- a/users/vtalbot.json +++ b/users/vtalbot.json @@ -1 +1,5 @@ -{"copyright":"Vincent Talbot","url":"http:\/\/github.com\/vtalbot","email":"vincent.talbot@gmail.com"} \ No newline at end of file +{ + "copyright": "Vincent Talbot", + "url": "http://github.com/vtalbot", + "email": "vincent.talbot@gmail.com" +} diff --git a/users/vtence.json b/users/vtence.json index 66977507..4369dfa3 100644 --- a/users/vtence.json +++ b/users/vtence.json @@ -1 +1,3 @@ -{"copyright":"Vincent Tenc\u00e9"} \ No newline at end of file +{ + "copyright": "Vincent Tenc\u00e9" +} diff --git a/users/vulk.json b/users/vulk.json index b51403b4..1ca3baae 100644 --- a/users/vulk.json +++ b/users/vulk.json @@ -1 +1,4 @@ -{"copyright":"Vulk","email":"wolfpack@vulk.co"} \ No newline at end of file +{ + "copyright": "Vulk", + "email": "wolfpack@vulk.co" +} diff --git a/users/vuquochuy.json b/users/vuquochuy.json index 1d3622ae..26e088c6 100644 --- a/users/vuquochuy.json +++ b/users/vuquochuy.json @@ -1 +1,6 @@ -{"copyright":"Huy Vu","url":"http:\/\/huyvq.com","email":"vuquochuy@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Huy Vu", + "url": "http://huyvq.com", + "email": "vuquochuy@gmail.com", + "format": "txt" +} diff --git a/users/vvakame.json b/users/vvakame.json index 73a5b615..3aca9ffa 100644 --- a/users/vvakame.json +++ b/users/vvakame.json @@ -1 +1,4 @@ -{"copyright":"Masahiro Wakame","url":"https:\/\/github.com\/vvakame"} \ No newline at end of file +{ + "copyright": "Masahiro Wakame", + "url": "https://github.com/vvakame" +} diff --git a/users/vzool.json b/users/vzool.json index 178aebdf..a521eac8 100644 --- a/users/vzool.json +++ b/users/vzool.json @@ -1 +1,4 @@ -{"copyright":"Abdelaziz Elrashed","email":"aeemh.sdn@gmail.com"} \ No newline at end of file +{ + "copyright": "Abdelaziz Elrashed", + "email": "aeemh.sdn@gmail.com" +} diff --git a/users/w.json b/users/w.json index f0ad6312..cfb17757 100644 --- a/users/w.json +++ b/users/w.json @@ -1,8 +1,8 @@ { - "copyright": "Zijie(Jay) Wang", - "url": "http://hooo.ooo", - "email": "xiao.hk1997@gmail.com", - "format": "html", - "theme": "material-brown", - "gravatar":true - } + "copyright": "Zijie(Jay) Wang", + "url": "http://hooo.ooo", + "email": "xiao.hk1997@gmail.com", + "format": "html", + "theme": "material-brown", + "gravatar": true +} diff --git a/users/wangbin.json b/users/wangbin.json index d98c0e25..54254a46 100644 --- a/users/wangbin.json +++ b/users/wangbin.json @@ -1 +1,5 @@ -{"copyright":"Wang Bin","email":"wangbin.zibo@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Wang Bin", + "email": "wangbin.zibo@gmail.com", + "format": "txt" +} diff --git a/users/wangchi.json b/users/wangchi.json index b87f0d8d..9905b011 100644 --- a/users/wangchi.json +++ b/users/wangchi.json @@ -1,7 +1,7 @@ { - "copyright": "Wang Chi, http://beyondweb.cn/", - "url": "http://beyondweb.cn/", - "email": "hiwangchi@gmail.com", - "format": "html", - "gravatar": true + "copyright": "Wang Chi, http://beyondweb.cn/", + "url": "http://beyondweb.cn/", + "email": "hiwangchi@gmail.com", + "format": "html", + "gravatar": true } diff --git a/users/wangeleile.json b/users/wangeleile.json index 0ed9b6ce..b63cd979 100644 --- a/users/wangeleile.json +++ b/users/wangeleile.json @@ -1,6 +1,5 @@ { - "copyright": "Horst Wangeleile, http://wangeleile.de", - "url": "http://wangeleile.de", - "email": "wangeleile@googlemail.com" + "copyright": "Horst Wangeleile, http://wangeleile.de", + "url": "http://wangeleile.de", + "email": "wangeleile@googlemail.com" } - diff --git a/users/wanja.json b/users/wanja.json index 8d840493..090cfec3 100644 --- a/users/wanja.json +++ b/users/wanja.json @@ -1 +1,3 @@ -{"copyright":"Wanja Stier"} \ No newline at end of file +{ + "copyright": "Wanja Stier" +} diff --git a/users/warwick.json b/users/warwick.json index 2d309968..95065ce3 100644 --- a/users/warwick.json +++ b/users/warwick.json @@ -1 +1,4 @@ -{"copyright":"University of Warwick","url":"http:\/\/warwick.ac.uk\/"} \ No newline at end of file +{ + "copyright": "University of Warwick", + "url": "http://warwick.ac.uk/" +} diff --git a/users/warwickmasson.json b/users/warwickmasson.json index 79f213d4..e0aa582b 100644 --- a/users/warwickmasson.json +++ b/users/warwickmasson.json @@ -1 +1,3 @@ -{"copyright":"Warwick Masson"} \ No newline at end of file +{ + "copyright": "Warwick Masson" +} diff --git a/users/watchout.json b/users/watchout.json index bd36ae2a..3de14274 100644 --- a/users/watchout.json +++ b/users/watchout.json @@ -1 +1,6 @@ -{"copyright":"Watchout, Co.","url":"http:\/\/watchout.tw\/","email":"info@watchout.tw","format":"txt"} \ No newline at end of file +{ + "copyright": "Watchout, Co.", + "url": "http://watchout.tw/", + "email": "info@watchout.tw", + "format": "txt" +} diff --git a/users/wavell.json b/users/wavell.json index d68255e2..a335226c 100644 --- a/users/wavell.json +++ b/users/wavell.json @@ -1 +1,4 @@ -{"copyright":"Wavell Watson","url":"https:\/\/github.com\/wavell"} \ No newline at end of file +{ + "copyright": "Wavell Watson", + "url": "https://github.com/wavell" +} diff --git a/users/waynesan.json b/users/waynesan.json index c4eb74dc..95e829c3 100644 --- a/users/waynesan.json +++ b/users/waynesan.json @@ -1,8 +1,8 @@ { - "copyright": "Wayne San, http://waynesan.zerozone.tw/", - "url": "http://waynesan.zerozone.tw/", - "email": "waynesan@zerozone.tw", - "format": "html", - "gravatar": true, - "theme" : "default" + "copyright": "Wayne San, http://waynesan.zerozone.tw/", + "url": "http://waynesan.zerozone.tw/", + "email": "waynesan@zerozone.tw", + "format": "html", + "gravatar": true, + "theme": "default" } diff --git a/users/wbinnssmith.json b/users/wbinnssmith.json index 71006305..fc058661 100644 --- a/users/wbinnssmith.json +++ b/users/wbinnssmith.json @@ -1 +1,4 @@ -{"copyright":"Will Binns-Smith","email":"wbinnssmith@gmail.com"} \ No newline at end of file +{ + "copyright": "Will Binns-Smith", + "email": "wbinnssmith@gmail.com" +} diff --git a/users/wd.json b/users/wd.json index 7d704d4a..3bc41d50 100644 --- a/users/wd.json +++ b/users/wd.json @@ -1 +1,5 @@ -{"copyright":"Oleg Korsunsky","url":"http:\/\/wd.dizaina.net","email":"wd@dizaina.net"} \ No newline at end of file +{ + "copyright": "Oleg Korsunsky", + "url": "http://wd.dizaina.net", + "email": "wd@dizaina.net" +} diff --git a/users/web-xaser.json b/users/web-xaser.json index 82807c89..e872f186 100644 --- a/users/web-xaser.json +++ b/users/web-xaser.json @@ -1,6 +1,6 @@ { - "copyright": "WeB XaSeR", - "url": "http://www.web-xaser.ru", - "email": "admin@web-xaser.ru", - "theme": "double-windsor" + "copyright": "WeB XaSeR", + "url": "http://www.web-xaser.ru", + "email": "admin@web-xaser.ru", + "theme": "double-windsor" } diff --git a/users/web.json b/users/web.json index 4d43654d..b3461c44 100644 --- a/users/web.json +++ b/users/web.json @@ -1,7 +1,7 @@ { - "copyright": "Chris Weber, http://www.lookout.net", - "url": "http://www.lookout.net", - "email": "chrisweber@live.com", - "format": "html", - "gravatar": true + "copyright": "Chris Weber, http://www.lookout.net", + "url": "http://www.lookout.net", + "email": "chrisweber@live.com", + "format": "html", + "gravatar": true } diff --git a/users/webbson.json b/users/webbson.json index 37176237..b85a9d0a 100644 --- a/users/webbson.json +++ b/users/webbson.json @@ -1 +1,7 @@ -{"copyright":"Tom Stevens, http:\/\/webbson.net","url":"http:\/\/webbson.net","email":"tom@stevens.se","gravatar":true,"theme":"black-beauty"} \ No newline at end of file +{ + "copyright": "Tom Stevens, http://webbson.net", + "url": "http://webbson.net", + "email": "tom@stevens.se", + "gravatar": true, + "theme": "black-beauty" +} diff --git a/users/webcomponentsorg.json b/users/webcomponentsorg.json index 5a0863cf..c050ccb3 100644 --- a/users/webcomponentsorg.json +++ b/users/webcomponentsorg.json @@ -1 +1,5 @@ -{"copyright":"WebComponents.org","url":"http:\/\/webcomponents.org","email":"webcomponentsdotorg@gmail.com"} +{ + "copyright": "WebComponents.org", + "url": "http://webcomponents.org", + "email": "webcomponentsdotorg@gmail.com" +} diff --git a/users/webdevrich.json b/users/webdevrich.json index ad8da972..cb581cdf 100644 --- a/users/webdevrich.json +++ b/users/webdevrich.json @@ -1,7 +1,7 @@ { - "copyright": "Richard Keyzor, http://webdevri.ch", - "url": "http://webdevri.ch/", - "email": "web_dev_rich@keyzor.net", - "format": "txt", - "gravatar": true + "copyright": "Richard Keyzor, http://webdevri.ch", + "url": "http://webdevri.ch/", + "email": "web_dev_rich@keyzor.net", + "format": "txt", + "gravatar": true } diff --git a/users/webpro.json b/users/webpro.json index 9de54ac5..de2b2935 100644 --- a/users/webpro.json +++ b/users/webpro.json @@ -1,7 +1,7 @@ { - "copyright": "Lars Kappert, https://webpro.nl", - "url": "https://webpro.nl", - "email": "lars@webpro.nl", - "theme": "default", - "gravatar": true + "copyright": "Lars Kappert, https://webpro.nl", + "url": "https://webpro.nl", + "email": "lars@webpro.nl", + "theme": "default", + "gravatar": true } diff --git a/users/weejames.json b/users/weejames.json index a19f5eb5..bbbb81ff 100644 --- a/users/weejames.json +++ b/users/weejames.json @@ -1 +1,6 @@ -{"copyright":"James Constable","url":"http:\/\/jamesconstable.co.uk","email":"me@jamesconstable.co.uk","format":"txt"} \ No newline at end of file +{ + "copyright": "James Constable", + "url": "http://jamesconstable.co.uk", + "email": "me@jamesconstable.co.uk", + "format": "txt" +} diff --git a/users/wei.json b/users/wei.json index 1968f413..a3a7615a 100644 --- a/users/wei.json +++ b/users/wei.json @@ -1,7 +1,7 @@ { - "copyright": "Wei He", - "url": "https://github.com/wei", - "email": "github@weispot.com", - "theme": "material-blue", - "gravatar": true + "copyright": "Wei He", + "url": "https://github.com/wei", + "email": "github@weispot.com", + "theme": "material-blue", + "gravatar": true } diff --git a/users/weijunji.json b/users/weijunji.json index 3521d84f..68ef18ac 100644 --- a/users/weijunji.json +++ b/users/weijunji.json @@ -1,7 +1,7 @@ -{ - "copyright": "Junji Wei", - "url": "https://weijunji.me", - "email": "990628wjy@gmail.com", - "gravatar": true, - "theme": "dusk" +{ + "copyright": "Junji Wei", + "url": "https://weijunji.me", + "email": "990628wjy@gmail.com", + "gravatar": true, + "theme": "dusk" } diff --git a/users/werle.json b/users/werle.json index 6df1fce4..8eadc9ae 100644 --- a/users/werle.json +++ b/users/werle.json @@ -1,5 +1,5 @@ { - "copyright": "Joseph Werle, http://werle.io", - "url": "http://werle.io", - "theme": "afterdark" + "copyright": "Joseph Werle, http://werle.io", + "url": "http://werle.io", + "theme": "afterdark" } diff --git a/users/wesbos.json b/users/wesbos.json index 6120c78a..a4bd5f5a 100644 --- a/users/wesbos.json +++ b/users/wesbos.json @@ -1,4 +1,4 @@ { - "copyright": "Wes Bos, http://wesbos.com", - "url": "http://wesbos.com" + "copyright": "Wes Bos, http://wesbos.com", + "url": "http://wesbos.com" } diff --git a/users/wesley.json b/users/wesley.json index 64359ed0..eff02f2f 100644 --- a/users/wesley.json +++ b/users/wesley.json @@ -1 +1,6 @@ -{"copyright":"Wesley Sui","url":"http:\/\/suijy.com","email":"wesleysui@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Wesley Sui", + "url": "http://suijy.com", + "email": "wesleysui@gmail.com", + "format": "txt" +} diff --git a/users/wesleydesouza.json b/users/wesleydesouza.json index 5331101a..7bcd43b0 100644 --- a/users/wesleydesouza.json +++ b/users/wesleydesouza.json @@ -1 +1,7 @@ -{"copyright":"Wesley de Souza","url":"http:\/\/wesley.so","email":"me@wesley.so","format":"html","gravatar":true} \ No newline at end of file +{ + "copyright": "Wesley de Souza", + "url": "http://wesley.so", + "email": "me@wesley.so", + "format": "html", + "gravatar": true +} diff --git a/users/weslly.json b/users/weslly.json index 801253a8..4777672b 100644 --- a/users/weslly.json +++ b/users/weslly.json @@ -1 +1,5 @@ -{"copyright":"Weslly Honorato, http:\/\/about.me\/weslly","url":"http:\/\/about.me\/weslly","format":"html"} \ No newline at end of file +{ + "copyright": "Weslly Honorato, http://about.me/weslly", + "url": "http://about.me/weslly", + "format": "html" +} diff --git a/users/wfxr.json b/users/wfxr.json index 6957e911..ff14fbd6 100644 --- a/users/wfxr.json +++ b/users/wfxr.json @@ -1,6 +1,6 @@ { - "copyright": "Wenxuan Zhang", - "url": "https://github.com/wfxr", - "email": "wenxuangm@gmail.com", - "format": "txt" + "copyright": "Wenxuan Zhang", + "url": "https://github.com/wfxr", + "email": "wenxuangm@gmail.com", + "format": "txt" } diff --git a/users/wglab.json b/users/wglab.json index aa835a0d..35f1264e 100644 --- a/users/wglab.json +++ b/users/wglab.json @@ -1 +1,3 @@ -{"copyright":"Wang Genomics Lab"} \ No newline at end of file +{ + "copyright": "Wang Genomics Lab" +} diff --git a/users/whatsim.json b/users/whatsim.json index cb3c08b3..7bd3fee8 100644 --- a/users/whatsim.json +++ b/users/whatsim.json @@ -1 +1,3 @@ -{"copyright":"Will Ruby"} \ No newline at end of file +{ + "copyright": "Will Ruby" +} diff --git a/users/whittle.json b/users/whittle.json index 32076b43..8b5dd51f 100644 --- a/users/whittle.json +++ b/users/whittle.json @@ -1 +1,3 @@ -{"copyright":"Jason Whittle"} \ No newline at end of file +{ + "copyright": "Jason Whittle" +} diff --git a/users/whizark.json b/users/whizark.json index 5a314965..d7eda013 100644 --- a/users/whizark.json +++ b/users/whizark.json @@ -1 +1,4 @@ -{"copyright":"Whizark","url":"https:\/\/github.com\/whizark"} \ No newline at end of file +{ + "copyright": "Whizark", + "url": "https://github.com/whizark" +} diff --git a/users/whostolemyhat.json b/users/whostolemyhat.json index dff69fc8..317c7aa9 100644 --- a/users/whostolemyhat.json +++ b/users/whostolemyhat.json @@ -1 +1,4 @@ -{"copyright":"James Tease","url":"http:\/\/jamestease.co.uk"} \ No newline at end of file +{ + "copyright": "James Tease", + "url": "http://jamestease.co.uk" +} diff --git a/users/whym.json b/users/whym.json index cb04a9eb..c5cce247 100644 --- a/users/whym.json +++ b/users/whym.json @@ -1,7 +1,7 @@ { - "copyright": "Yusuke Matsubara", - "url": "http:\/\/whym.org", - "email": "whym@whym.org", - "gravatar": true, - "theme": "eula-modern" + "copyright": "Yusuke Matsubara", + "url": "http://whym.org", + "email": "whym@whym.org", + "gravatar": true, + "theme": "eula-modern" } diff --git a/users/wickett.json b/users/wickett.json index d72f6cf4..35252286 100644 --- a/users/wickett.json +++ b/users/wickett.json @@ -1,4 +1,4 @@ { - "copyright": "James Wickett, wickett.me", - "url": "http://wickett.me/" + "copyright": "James Wickett, wickett.me", + "url": "http://wickett.me/" } diff --git a/users/widged.json b/users/widged.json index 9ee698c1..0b4b1e8c 100644 --- a/users/widged.json +++ b/users/widged.json @@ -1 +1,5 @@ -{"copyright":"Marielle Lange, http:\/\/widged.com","url":"http:\/\/widged.com","theme":"flesch"} \ No newline at end of file +{ + "copyright": "Marielle Lange, http://widged.com", + "url": "http://widged.com", + "theme": "flesch" +} diff --git a/users/widnyana.json b/users/widnyana.json index 2cce32bf..52b1f664 100644 --- a/users/widnyana.json +++ b/users/widnyana.json @@ -1 +1,7 @@ -{"copyright":"Widnyana Putra","url":"http:\/\/widnyana.web.id","email":"me@widnyana.web.id","format":"html","theme":"white cherry"} \ No newline at end of file +{ + "copyright": "Widnyana Putra", + "url": "http://widnyana.web.id", + "email": "me@widnyana.web.id", + "format": "html", + "theme": "white cherry" +} diff --git a/users/wiesner.json b/users/wiesner.json index 43009d28..e2cf2707 100644 --- a/users/wiesner.json +++ b/users/wiesner.json @@ -1 +1,5 @@ -{"copyright":"Michael Wiesner","url":"https:\/\/mwiesner.com","email":"impressum@mwiesner.com"} \ No newline at end of file +{ + "copyright": "Michael Wiesner", + "url": "https://mwiesner.com", + "email": "impressum@mwiesner.com" +} diff --git a/users/wilddog.json b/users/wilddog.json index 75b4c951..12b7ed65 100644 --- a/users/wilddog.json +++ b/users/wilddog.json @@ -1 +1,5 @@ -{"copyright":"Wilddog","url":"https:\/\/wilddog.com", "email":"opensource@wilddog.com"} +{ + "copyright": "Wilddog", + "url": "https://wilddog.com", + "email": "opensource@wilddog.com" +} diff --git a/users/will.json b/users/will.json index 39154f2f..f95c789e 100644 --- a/users/will.json +++ b/users/will.json @@ -1,5 +1,5 @@ { - "copyright": "Will Mayner, http://willmayner.com", - "url": "http://willmayner.com", - "theme": "blackwood" + "copyright": "Will Mayner, http://willmayner.com", + "url": "http://willmayner.com", + "theme": "blackwood" } diff --git a/users/will3942.json b/users/will3942.json index 2aa8b5e1..c9665a92 100644 --- a/users/will3942.json +++ b/users/will3942.json @@ -1 +1,6 @@ -{"copyright":"Will Evans","url":"http:\/\/will3942.com","email":"will@will3942.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Will Evans", + "url": "http://will3942.com", + "email": "will@will3942.com", + "format": "txt" +} diff --git a/users/william17.json b/users/william17.json index 8a49ccb6..2da3a4cd 100644 --- a/users/william17.json +++ b/users/william17.json @@ -1 +1,4 @@ -{"copyright":"William Leung","url":"https:\/\/github.com\/William17"} \ No newline at end of file +{ + "copyright": "William Leung", + "url": "https://github.com/William17" +} diff --git a/users/willianduarte.json b/users/willianduarte.json index a7afc83b..e47a0bfc 100644 --- a/users/willianduarte.json +++ b/users/willianduarte.json @@ -1,6 +1,6 @@ { - "copyright": "Willian Duarte, http://willianduarte.com", - "url": "http://willianduarte.com", - "theme": "blackwood", - "email": "contato@willianduarte.com" + "copyright": "Willian Duarte, http://willianduarte.com", + "url": "http://willianduarte.com", + "theme": "blackwood", + "email": "contato@willianduarte.com" } diff --git a/users/willin.json b/users/willin.json index 70214bb5e..d7445e96 100644 --- a/users/willin.json +++ b/users/willin.json @@ -1 +1,8 @@ -{"copyright":"Willin Wang","url":"http://willin.wang","email":"willin@willin.org","format":"html","gravatar":true,"theme":"material"} \ No newline at end of file +{ + "copyright": "Willin Wang", + "url": "http://willin.wang", + "email": "willin@willin.org", + "format": "html", + "gravatar": true, + "theme": "material" +} diff --git a/users/willpower.json b/users/willpower.json index 14efb9c4..fcb6e638 100644 --- a/users/willpower.json +++ b/users/willpower.json @@ -1,7 +1,7 @@ { - "copyright":"Felipe Nunes", - "url": "http://willpower.art.br", - "email":"felipe@willpower.art.br", - "theme":"willpower", - "gravatar":true -} \ No newline at end of file + "copyright": "Felipe Nunes", + "url": "http://willpower.art.br", + "email": "felipe@willpower.art.br", + "theme": "willpower", + "gravatar": true +} diff --git a/users/wind4869.json b/users/wind4869.json index 57931ab1..896c6b11 100644 --- a/users/wind4869.json +++ b/users/wind4869.json @@ -1 +1,6 @@ -{"copyright":"Youqiang Hao","url":"http:\/\/wind4869.me","email":"windv587@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Youqiang Hao", + "url": "http://wind4869.me", + "email": "windv587@gmail.com", + "format": "txt" +} diff --git a/users/witchard.json b/users/witchard.json index 26c89a32..a5d96c01 100644 --- a/users/witchard.json +++ b/users/witchard.json @@ -1 +1,4 @@ -{"copyright":"witchard, http://witchard.github.io/", "url": "http://witchard.github.io/"} +{ + "copyright": "witchard, http://witchard.github.io/", + "url": "http://witchard.github.io/" +} diff --git a/users/wjr3.json b/users/wjr3.json index 48078208..5e099d68 100644 --- a/users/wjr3.json +++ b/users/wjr3.json @@ -4,4 +4,4 @@ "email": "wrainaud@outlook.com", "format": "html", "theme": "mitserrat" -} \ No newline at end of file +} diff --git a/users/wmwragg.json b/users/wmwragg.json index b74a12d8..f4e08f65 100644 --- a/users/wmwragg.json +++ b/users/wmwragg.json @@ -1 +1,3 @@ -{"copyright":"William Wragg"} \ No newline at end of file +{ + "copyright": "William Wragg" +} diff --git a/users/wolfiezero.json b/users/wolfiezero.json index 07008cdf..c4448020 100644 --- a/users/wolfiezero.json +++ b/users/wolfiezero.json @@ -1 +1,6 @@ -{"copyright":"Neil Sweeney","url":"http:\/\/wolfiezero.com\/","email":"neil@wolfiezero.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Neil Sweeney", + "url": "http://wolfiezero.com/", + "email": "neil@wolfiezero.com", + "gravatar": true +} diff --git a/users/wolflee.json b/users/wolflee.json index 72b282e0..f0bf2b6f 100644 --- a/users/wolflee.json +++ b/users/wolflee.json @@ -1 +1,3 @@ -{"copyright":"WolfLee"} \ No newline at end of file +{ + "copyright": "WolfLee" +} diff --git a/users/wong2.json b/users/wong2.json index 0a054fb1..65ef5fe8 100644 --- a/users/wong2.json +++ b/users/wong2.json @@ -1 +1,4 @@ -{"copyright":"Wang Dapeng","url":"http:\/\/wong2.cn"} \ No newline at end of file +{ + "copyright": "Wang Dapeng", + "url": "http://wong2.cn" +} diff --git a/users/wordpresspokhara.json b/users/wordpresspokhara.json index fed20202..6d021522 100644 --- a/users/wordpresspokhara.json +++ b/users/wordpresspokhara.json @@ -1 +1,5 @@ -{"copyright":"WordPress Pokhara","url":"https:\/\/www.facebook.com\/groups\/wordpress.pokhara","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "WordPress Pokhara", + "url": "https://www.facebook.com/groups/wordpress.pokhara", + "theme": "double-windsor" +} diff --git a/users/wozozo.json b/users/wozozo.json index f7dc0d9a..f4232e34 100644 --- a/users/wozozo.json +++ b/users/wozozo.json @@ -1,5 +1,5 @@ { - "copyright": "Yoichi Fujimoto, http://wozozo.jp/", - "url": "http://wozozo.jp/", - "theme": "flesch" + "copyright": "Yoichi Fujimoto, http://wozozo.jp/", + "url": "http://wozozo.jp/", + "theme": "flesch" } diff --git a/users/wp-blank-canvas-framework.json b/users/wp-blank-canvas-framework.json index 31894082..9a4c449a 100644 --- a/users/wp-blank-canvas-framework.json +++ b/users/wp-blank-canvas-framework.json @@ -1 +1,6 @@ -{"copyright":"$1","theme":"$2","email":"$3","format":"$4"} \ No newline at end of file +{ + "copyright": "$1", + "theme": "$2", + "email": "$3", + "format": "$4" +} diff --git a/users/wp-freelancer-client-panel.json b/users/wp-freelancer-client-panel.json index 51550468..04a2497c 100644 --- a/users/wp-freelancer-client-panel.json +++ b/users/wp-freelancer-client-panel.json @@ -1 +1,6 @@ -{"copyright":"Wordpress Freelancer Client Panel","theme":"flesch","email":"support@icodeclarity.com","format":"html"} \ No newline at end of file +{ + "copyright": "Wordpress Freelancer Client Panel", + "theme": "flesch", + "email": "support@icodeclarity.com", + "format": "html" +} diff --git a/users/wp-uptimerobot-dashboard-widget.json b/users/wp-uptimerobot-dashboard-widget.json index 72ee2f47..a0826290 100644 --- a/users/wp-uptimerobot-dashboard-widget.json +++ b/users/wp-uptimerobot-dashboard-widget.json @@ -1 +1,6 @@ -{"copyright":"WP Uptime-Robot Dashboard Widget","theme":"orange","email":"support@icodeclarity.com","format":"html"} \ No newline at end of file +{ + "copyright": "WP Uptime-Robot Dashboard Widget", + "theme": "orange", + "email": "support@icodeclarity.com", + "format": "html" +} diff --git a/users/wph.json b/users/wph.json index d4a42428..55579cae 100644 --- a/users/wph.json +++ b/users/wph.json @@ -1 +1,8 @@ -{"copyright":"Warren Harrison","url":"http:\/\/hungry-media.com","email":"warren@hungry-media.com","format":"html","gravatar":true,"theme":"black beauty"} \ No newline at end of file +{ + "copyright": "Warren Harrison", + "url": "http://hungry-media.com", + "email": "warren@hungry-media.com", + "format": "html", + "gravatar": true, + "theme": "black beauty" +} diff --git a/users/wpk.json b/users/wpk.json index a2a60927..46c48453 100644 --- a/users/wpk.json +++ b/users/wpk.json @@ -1 +1,4 @@ -{"copyright":"Paul Koppen, http:\/\/paulkoppen.com","url":"http:\/\/paulkoppen.com"} \ No newline at end of file +{ + "copyright": "Paul Koppen, http://paulkoppen.com", + "url": "http://paulkoppen.com" +} diff --git a/users/wpsitecare.json b/users/wpsitecare.json index 88dcbf14..47f1ca12 100644 --- a/users/wpsitecare.json +++ b/users/wpsitecare.json @@ -1 +1,6 @@ -{"copyright":"WP Site Care","url":"http:\/\/www.wpsitecare.com","email":"hello@wpsitecare.com","gravatar":true} \ No newline at end of file +{ + "copyright": "WP Site Care", + "url": "http://www.wpsitecare.com", + "email": "hello@wpsitecare.com", + "gravatar": true +} diff --git a/users/wraithan.json b/users/wraithan.json index 1e48a619..8c2dff55 100644 --- a/users/wraithan.json +++ b/users/wraithan.json @@ -1 +1,7 @@ -{"copyright":"Chris McDonald","url":"http:\/\/wraithan.net","email":"xwraithanx@gmail.com","theme":"flesch","gravatar":true} \ No newline at end of file +{ + "copyright": "Chris McDonald", + "url": "http://wraithan.net", + "email": "xwraithanx@gmail.com", + "theme": "flesch", + "gravatar": true +} diff --git a/users/wrl.json b/users/wrl.json index be8eadef..71d7c722 100644 --- a/users/wrl.json +++ b/users/wrl.json @@ -1 +1,5 @@ -{"copyright":"William Light","email":"wrl@illest.net","format":"txt"} \ No newline at end of file +{ + "copyright": "William Light", + "email": "wrl@illest.net", + "format": "txt" +} diff --git a/users/wrong-entertainment.json b/users/wrong-entertainment.json index 3fb67fa3..de337180 100644 --- a/users/wrong-entertainment.json +++ b/users/wrong-entertainment.json @@ -1,7 +1,7 @@ { - "copyright": "wrong-entertainment, https://www.wrong-entertainment.com", - "url": "http://www.wrong-entertainment.com", - "format": "html", - "gravatar": false, - "theme": "plaintext" + "copyright": "wrong-entertainment, https://www.wrong-entertainment.com", + "url": "http://www.wrong-entertainment.com", + "format": "html", + "gravatar": false, + "theme": "plaintext" } diff --git a/users/wsmoak.json b/users/wsmoak.json index ee28b5db..e3398615 100644 --- a/users/wsmoak.json +++ b/users/wsmoak.json @@ -1 +1,6 @@ -{"copyright":"Wendy Smoak","url":"http:\/\/wsmoak.net","email":"wsmoak@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Wendy Smoak", + "url": "http://wsmoak.net", + "email": "wsmoak@gmail.com", + "format": "txt" +} diff --git a/users/wtigert.json b/users/wtigert.json index 99a999ba..a3537ba5 100644 --- a/users/wtigert.json +++ b/users/wtigert.json @@ -1 +1,3 @@ -{"copyright":"Wyatt Tigert"} \ No newline at end of file +{ + "copyright": "Wyatt Tigert" +} diff --git a/users/wttw.json b/users/wttw.json index e90988e5..ae62c0a5 100644 --- a/users/wttw.json +++ b/users/wttw.json @@ -1 +1,6 @@ -{"copyright":"Steve Atkins","url":"http:\/\/labs.wordtothewise.com\/","email":"steve@wordtothewise.com","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "Steve Atkins", + "url": "http://labs.wordtothewise.com/", + "email": "steve@wordtothewise.com", + "theme": "double-windsor" +} diff --git a/users/wty.json b/users/wty.json index ef6c4373..68435bf5 100644 --- a/users/wty.json +++ b/users/wty.json @@ -1 +1,3 @@ -{"copyright":"Tianyu Wang"} \ No newline at end of file +{ + "copyright": "Tianyu Wang" +} diff --git a/users/wty21cn.json b/users/wty21cn.json index ef6c4373..68435bf5 100644 --- a/users/wty21cn.json +++ b/users/wty21cn.json @@ -1 +1,3 @@ -{"copyright":"Tianyu Wang"} \ No newline at end of file +{ + "copyright": "Tianyu Wang" +} diff --git a/users/wuan.json b/users/wuan.json index 738731b7..fb03f54d 100644 --- a/users/wuan.json +++ b/users/wuan.json @@ -1 +1,3 @@ -{"copyright":"Andreas W\u00fcrl"} \ No newline at end of file +{ + "copyright": "Andreas W\u00fcrl" +} diff --git a/users/wuthefwasthat.json b/users/wuthefwasthat.json index 65f675ba..ade97c1d 100644 --- a/users/wuthefwasthat.json +++ b/users/wuthefwasthat.json @@ -1 +1,3 @@ -{"copyright":"Jeff Wu"} \ No newline at end of file +{ + "copyright": "Jeff Wu" +} diff --git a/users/ww24.json b/users/ww24.json index 40991d29..b53641e7 100644 --- a/users/ww24.json +++ b/users/ww24.json @@ -1 +1,4 @@ -{"copyright":"Takenori Nakagawa","url":"https:\/\/github.com\/ww24"} \ No newline at end of file +{ + "copyright": "Takenori Nakagawa", + "url": "https://github.com/ww24" +} diff --git a/users/wwalker.json b/users/wwalker.json index 588a3950..598b2d1e 100644 --- a/users/wwalker.json +++ b/users/wwalker.json @@ -1 +1,4 @@ -{"copyright":"Wayne Walker","email":"wwalker@solid-constructs.com"} \ No newline at end of file +{ + "copyright": "Wayne Walker", + "email": "wwalker@solid-constructs.com" +} diff --git a/users/wwbrannon.json b/users/wwbrannon.json index 66b05de4..0e2787c3 100644 --- a/users/wwbrannon.json +++ b/users/wwbrannon.json @@ -1,7 +1,7 @@ { - "copyright": "William Brannon (@wwbrannon), https://github.com/wwbrannon/", - "url": "https://willbrannon.com/", - "email": "will.brannon@gmail.com", - "gravatar": true, - "format": "html" + "copyright": "William Brannon (@wwbrannon), https://github.com/wwbrannon/", + "url": "https://willbrannon.com/", + "email": "will.brannon@gmail.com", + "gravatar": true, + "format": "html" } diff --git a/users/wy.json b/users/wy.json index 7974981a..42f54913 100644 --- a/users/wy.json +++ b/users/wy.json @@ -1 +1,5 @@ -{"copyright":"William Youmans","url":"http:\/\/www.williamyoumans.com","email":"hello@williamyoumans.com"} \ No newline at end of file +{ + "copyright": "William Youmans", + "url": "http://www.williamyoumans.com", + "email": "hello@williamyoumans.com" +} diff --git a/users/wychoe.json b/users/wychoe.json index 8b687521..daaf5be5 100644 --- a/users/wychoe.json +++ b/users/wychoe.json @@ -1 +1,3 @@ -{"copyright":"Choe Wooyeong"} \ No newline at end of file +{ + "copyright": "Choe Wooyeong" +} diff --git a/users/wytrivail.json b/users/wytrivail.json index d52ec1c6..57120e08 100644 --- a/users/wytrivail.json +++ b/users/wytrivail.json @@ -1 +1,3 @@ -{"copyright":"wytrivail"} \ No newline at end of file +{ + "copyright": "wytrivail" +} diff --git a/users/xcuze.json b/users/xcuze.json index d58556a2..46360ee9 100644 --- a/users/xcuze.json +++ b/users/xcuze.json @@ -1 +1,6 @@ -{"copyright":"Florian Kr\u00fcger","url":"http:\/\/xcuze.me","email":"florian.krueger@projectserver.org","theme":"afterdark"} \ No newline at end of file +{ + "copyright": "Florian Kr\u00fcger", + "url": "http://xcuze.me", + "email": "florian.krueger@projectserver.org", + "theme": "afterdark" +} diff --git a/users/xerula.json b/users/xerula.json index 70e27b7b..3e024441 100644 --- a/users/xerula.json +++ b/users/xerula.json @@ -1 +1,6 @@ -{"copyright":"Joseph Kai Russell","url":"http:\/\/xerula.com","email":"xerula@gmail.com","format":"html"} \ No newline at end of file +{ + "copyright": "Joseph Kai Russell", + "url": "http://xerula.com", + "email": "xerula@gmail.com", + "format": "html" +} diff --git a/users/xffljjqbqvsywxqakpvdbwyqqyt.json b/users/xffljjqbqvsywxqakpvdbwyqqyt.json index 1b629e63..f22aa22e 100644 --- a/users/xffljjqbqvsywxqakpvdbwyqqyt.json +++ b/users/xffljjqbqvsywxqakpvdbwyqqyt.json @@ -1 +1,3 @@ -{"copyright":"xffljjqbqvsywxqakpvdbwyqqyt"} \ No newline at end of file +{ + "copyright": "xffljjqbqvsywxqakpvdbwyqqyt" +} diff --git a/users/xhh.json b/users/xhh.json index 092c7a48..aca68c4b 100644 --- a/users/xhh.json +++ b/users/xhh.json @@ -1 +1,6 @@ -{"copyright":"Xu Hui Hui","url":"http:\/\/xhh.me","email":"xhh@xhh.me","format":"txt"} \ No newline at end of file +{ + "copyright": "Xu Hui Hui", + "url": "http://xhh.me", + "email": "xhh@xhh.me", + "format": "txt" +} diff --git a/users/xiaods.json b/users/xiaods.json index fea3b077..4e7c8b7a 100644 --- a/users/xiaods.json +++ b/users/xiaods.json @@ -1 +1,6 @@ -{"copyright":"Deshi Xiao","url":"http:\/\/coder.858go.com\/","email":"xiaods@gmail.com","format":"html"} +{ + "copyright": "Deshi Xiao", + "url": "http://coder.858go.com/", + "email": "xiaods@gmail.com", + "format": "html" +} diff --git a/users/xight.json b/users/xight.json index f8daa9d2..37da94b6 100644 --- a/users/xight.json +++ b/users/xight.json @@ -1,5 +1,5 @@ { - "copyright":"Yoshiki Sato", - "url":"http://xight.org", - "gravatar":true + "copyright": "Yoshiki Sato", + "url": "http://xight.org", + "gravatar": true } diff --git a/users/ximi.json b/users/ximi.json index 396bdad0..08c923c8 100644 --- a/users/ximi.json +++ b/users/ximi.json @@ -1 +1,6 @@ -{"copyright":"Max (ximi)","url":"http:\/\/ximi.io","email":"max@ximi.io","format":"txt"} \ No newline at end of file +{ + "copyright": "Max (ximi)", + "url": "http://ximi.io", + "email": "max@ximi.io", + "format": "txt" +} diff --git a/users/xinuc.json b/users/xinuc.json index ff496a36..2c23f740 100644 --- a/users/xinuc.json +++ b/users/xinuc.json @@ -1 +1,3 @@ -{"copyright":"Nugroho Herucahyono"} \ No newline at end of file +{ + "copyright": "Nugroho Herucahyono" +} diff --git a/users/xkerman.json b/users/xkerman.json index a4b9fe86..a6336321 100644 --- a/users/xkerman.json +++ b/users/xkerman.json @@ -1 +1,4 @@ -{"copyright":"xKerman","url":"https:\/\/github.com\/xKerman"} \ No newline at end of file +{ + "copyright": "xKerman", + "url": "https://github.com/xKerman" +} diff --git a/users/xlab.json b/users/xlab.json index ecefce5d..c86aeb2f 100644 --- a/users/xlab.json +++ b/users/xlab.json @@ -1 +1,6 @@ -{"copyright":"Maxim Kupriianov","url":"https:\/\/xlab.is","email":"max@kc.vc","format":"txt"} \ No newline at end of file +{ + "copyright": "Maxim Kupriianov", + "url": "https://xlab.is", + "email": "max@kc.vc", + "format": "txt" +} diff --git a/users/xlune.json b/users/xlune.json index 47a24b28..72b3b21e 100644 --- a/users/xlune.json +++ b/users/xlune.json @@ -1,6 +1,6 @@ { - "copyright": "Xlune, http://xlune.com", - "url": "http://xlune.com", - "gravatar": true, - "theme": "silver-style" + "copyright": "Xlune, http://xlune.com", + "url": "http://xlune.com", + "gravatar": true, + "theme": "silver-style" } diff --git a/users/xoebus.json b/users/xoebus.json index 96a5c3c2..3bf56c2e 100644 --- a/users/xoebus.json +++ b/users/xoebus.json @@ -1 +1,6 @@ -{"copyright":"Chris Brown","url":"http:\/\/xoeb.us","email":"chris@xoeb.us","format":"txt"} \ No newline at end of file +{ + "copyright": "Chris Brown", + "url": "http://xoeb.us", + "email": "chris@xoeb.us", + "format": "txt" +} diff --git a/users/xsc.json b/users/xsc.json index 156b0be8..da11e774 100644 --- a/users/xsc.json +++ b/users/xsc.json @@ -1 +1,6 @@ -{"copyright":"Yannick Scherer","url":"https:\/\/xsc.github.io","email":"yannick.scherer@gmail.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Yannick Scherer", + "url": "https://xsc.github.io", + "email": "yannick.scherer@gmail.com", + "gravatar": true +} diff --git a/users/xtansia.json b/users/xtansia.json index 79e8c597..63cf0d7d 100644 --- a/users/xtansia.json +++ b/users/xtansia.json @@ -1 +1,7 @@ -{"copyright":"Thomas Farr, http:\/\/xtansia.github.com","url":"http:\/\/xtansia.github.com","email":"farr.thomas@gmail.com","format":"html","theme":"xtansia"} \ No newline at end of file +{ + "copyright": "Thomas Farr, http://xtansia.github.com", + "url": "http://xtansia.github.com", + "email": "farr.thomas@gmail.com", + "format": "html", + "theme": "xtansia" +} diff --git a/users/xuhong.json b/users/xuhong.json index 8abc7789..4552d274 100644 --- a/users/xuhong.json +++ b/users/xuhong.json @@ -1 +1,5 @@ -{"copyright": "xuhong chen", "url": "http:\/\/xuhong.github.com", "email": "cxh710200711@gmail.com"} +{ + "copyright": "xuhong chen", + "url": "http://xuhong.github.com", + "email": "cxh710200711@gmail.com" +} diff --git a/users/xuncheng.json b/users/xuncheng.json index 46adb8c4..de2b4459 100644 --- a/users/xuncheng.json +++ b/users/xuncheng.json @@ -1,5 +1,5 @@ { - "copyright": "Xuncheng Wang", - "url": "https://xuncheng.github.io", - "email": "w.xun.cheng@gmail.com" + "copyright": "Xuncheng Wang", + "url": "https://xuncheng.github.io", + "email": "w.xun.cheng@gmail.com" } diff --git a/users/xyc.json b/users/xyc.json index ed26f4c6..913557f1 100644 --- a/users/xyc.json +++ b/users/xyc.json @@ -1 +1,3 @@ -{"copyright":"Xiaoyi Chen"} \ No newline at end of file +{ + "copyright": "Xiaoyi Chen" +} diff --git a/users/y3sh.json b/users/y3sh.json index 159a10b0..4cf1ebfe 100644 --- a/users/y3sh.json +++ b/users/y3sh.json @@ -1 +1,6 @@ -{"copyright":"Josh Hibschman","url":"http:\/\/y3sh.com","email":"joshhibschman@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Josh Hibschman", + "url": "http://y3sh.com", + "email": "joshhibschman@gmail.com", + "format": "txt" +} diff --git a/users/y6nH.json b/users/y6nH.json index b037ec0a..69e6ce5e 100644 --- a/users/y6nH.json +++ b/users/y6nH.json @@ -1,4 +1,4 @@ { - "copyright": "Hugh Spiller", - "url": "https://y6nh.github.io/" + "copyright": "Hugh Spiller", + "url": "https://y6nh.github.io/" } diff --git a/users/ya-ota.json b/users/ya-ota.json index a2583a21..9bffc350 100644 --- a/users/ya-ota.json +++ b/users/ya-ota.json @@ -1 +1,6 @@ -{"copyright":"Yasuhiro Ota","url":"http:\/\/ccm-lulu.com","email":"ya-ota@ccm-lulu.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Yasuhiro Ota", + "url": "http://ccm-lulu.com", + "email": "ya-ota@ccm-lulu.com", + "format": "txt" +} diff --git a/users/yadavjpr.json b/users/yadavjpr.json index cbc345a4..0dd29eb0 100644 --- a/users/yadavjpr.json +++ b/users/yadavjpr.json @@ -1,6 +1,6 @@ { - "copyright": "Kailash Yadav", - "url": "http://kailashyadav.in", - "email": "yadavjpr@gmail.com", - "gravatar": true + "copyright": "Kailash Yadav", + "url": "http://kailashyadav.in", + "email": "yadavjpr@gmail.com", + "gravatar": true } diff --git a/users/yaler.json b/users/yaler.json index 2cd6c46f..688b6d7a 100644 --- a/users/yaler.json +++ b/users/yaler.json @@ -1 +1,3 @@ -{"copyright":"Yaler GmbH"} \ No newline at end of file +{ + "copyright": "Yaler GmbH" +} diff --git a/users/yantene.json b/users/yantene.json index 33455165..8b5fff42 100644 --- a/users/yantene.json +++ b/users/yantene.json @@ -1 +1,4 @@ -{"copyright":"yantene","url":"http:\/\/yantene.net"} \ No newline at end of file +{ + "copyright": "yantene", + "url": "http://yantene.net" +} diff --git a/users/yanyiwu.json b/users/yanyiwu.json index 6a55dcc5..81f2bd95 100644 --- a/users/yanyiwu.json +++ b/users/yanyiwu.json @@ -1 +1,6 @@ -{"copyright":"Yanyi Wu","url":"http:\/\/yanyiwu.com","email":"i@yanyiwu.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Yanyi Wu", + "url": "http://yanyiwu.com", + "email": "i@yanyiwu.com", + "format": "txt" +} diff --git a/users/yappo.json b/users/yappo.json index 251dee3f..f26877ea 100644 --- a/users/yappo.json +++ b/users/yappo.json @@ -1,6 +1,6 @@ { - "copyright": "Kazuhiro Osawa, http://search.cpan.org/~yappo/", - "email": "yappo@shibuya.pl", - "url": "http://search.cpan.org/~yappo/", - "theme": "plaintext" + "copyright": "Kazuhiro Osawa, http://search.cpan.org/~yappo/", + "email": "yappo@shibuya.pl", + "url": "http://search.cpan.org/~yappo/", + "theme": "plaintext" } diff --git a/users/yarmomackenbach.json b/users/yarmomackenbach.json index e89090e2..a5786c89 100644 --- a/users/yarmomackenbach.json +++ b/users/yarmomackenbach.json @@ -1 +1,6 @@ -{"copyright":"Yarmo Mackenbach","url":"http:\/\/medea.one","email":"yarmo@medea.one","format":"html"} \ No newline at end of file +{ + "copyright": "Yarmo Mackenbach", + "url": "http://medea.one", + "email": "yarmo@medea.one", + "format": "html" +} diff --git a/users/yaro.json b/users/yaro.json index 5fd749fb..939bd36b 100644 --- a/users/yaro.json +++ b/users/yaro.json @@ -1 +1,7 @@ -{"copyright":"Jaroslav Janukevic","url":"http:\/\/moca.li","email":"yaro@moca.li","format":"html","theme":"hipster-gray"} \ No newline at end of file +{ + "copyright": "Jaroslav Janukevic", + "url": "http://moca.li", + "email": "yaro@moca.li", + "format": "html", + "theme": "hipster-gray" +} diff --git a/users/yashar.json b/users/yashar.json index ae93ae7d..68b4768a 100644 --- a/users/yashar.json +++ b/users/yashar.json @@ -1 +1,6 @@ -{"copyright":"Yashar Imanlou","url":"http:\/\/yash.im","email":"me@yash.im","format":"html"} \ No newline at end of file +{ + "copyright": "Yashar Imanlou", + "url": "http://yash.im", + "email": "me@yash.im", + "format": "html" +} diff --git a/users/yasyf.json b/users/yasyf.json index 88bb8fec..af27d532 100644 --- a/users/yasyf.json +++ b/users/yasyf.json @@ -1 +1,6 @@ -{"copyright":"Yasyf Mohamedali, http:\/\/www.yasyf.com","url":"http:\/\/www.yasyf.com","gravatar":true,"theme":"double-windsor"} +{ + "copyright": "Yasyf Mohamedali, http://www.yasyf.com", + "url": "http://www.yasyf.com", + "gravatar": true, + "theme": "double-windsor" +} diff --git a/users/yatil.json b/users/yatil.json index b8cf4e7e..a6654f04 100644 --- a/users/yatil.json +++ b/users/yatil.json @@ -1,4 +1,4 @@ { - "copyright": "Eric Eggert, http://yatil.net", - "url": "http://yatil.net" + "copyright": "Eric Eggert, http://yatil.net", + "url": "http://yatil.net" } diff --git a/users/yeltsin.json b/users/yeltsin.json index 140dcc93..86e24743 100644 --- a/users/yeltsin.json +++ b/users/yeltsin.json @@ -1 +1,3 @@ -{"copyright":"Yeltsin Lima"} \ No newline at end of file +{ + "copyright": "Yeltsin Lima" +} diff --git a/users/yhnavein.json b/users/yhnavein.json index 9908ef1f..4e2dfd12 100644 --- a/users/yhnavein.json +++ b/users/yhnavein.json @@ -1 +1,3 @@ -{"copyright":"Piotrek D\u0105browski"} \ No newline at end of file +{ + "copyright": "Piotrek D\u0105browski" +} diff --git a/users/yimengtianya.json b/users/yimengtianya.json index 9aa2b955..7a891793 100644 --- a/users/yimengtianya.json +++ b/users/yimengtianya.json @@ -1 +1,3 @@ -{"copyright":"yimengtianya"} \ No newline at end of file +{ + "copyright": "yimengtianya" +} diff --git a/users/yimengtianya1.json b/users/yimengtianya1.json index 7bea4e00..f142bf1d 100644 --- a/users/yimengtianya1.json +++ b/users/yimengtianya1.json @@ -1 +1,6 @@ -{"copyright":"yimengtianya","url":"http:\/\/remysharp.com","email":"support@wilddog.com","format":"txt"} \ No newline at end of file +{ + "copyright": "yimengtianya", + "url": "http://remysharp.com", + "email": "support@wilddog.com", + "format": "txt" +} diff --git a/users/yimengtianya444.json b/users/yimengtianya444.json index 7bea4e00..f142bf1d 100644 --- a/users/yimengtianya444.json +++ b/users/yimengtianya444.json @@ -1 +1,6 @@ -{"copyright":"yimengtianya","url":"http:\/\/remysharp.com","email":"support@wilddog.com","format":"txt"} \ No newline at end of file +{ + "copyright": "yimengtianya", + "url": "http://remysharp.com", + "email": "support@wilddog.com", + "format": "txt" +} diff --git a/users/yiramang.json b/users/yiramang.json index 3aafa12b..f27641ad 100644 --- a/users/yiramang.json +++ b/users/yiramang.json @@ -1 +1,3 @@ -{"copyright":"Yiramang"} \ No newline at end of file +{ + "copyright": "Yiramang" +} diff --git a/users/ylrxeidx.json b/users/ylrxeidx.json index d54902f6..385527e0 100644 --- a/users/ylrxeidx.json +++ b/users/ylrxeidx.json @@ -1,5 +1,5 @@ { - "copyright": "Aldo Iljazi", - "email": "ylrxeidx@openmailbox.org", - "theme": "flesch" + "copyright": "Aldo Iljazi", + "email": "ylrxeidx@openmailbox.org", + "theme": "flesch" } diff --git a/users/yoelp.json b/users/yoelp.json index 2a959702..8bcd40a0 100644 --- a/users/yoelp.json +++ b/users/yoelp.json @@ -1 +1,3 @@ -{"copyright":"Yoel Porgesz"} \ No newline at end of file +{ + "copyright": "Yoel Porgesz" +} diff --git a/users/yogesh.json b/users/yogesh.json index c5d887a8..2c39b65d 100644 --- a/users/yogesh.json +++ b/users/yogesh.json @@ -1,5 +1,5 @@ { - "copyright": "Yogesh Chaudhari, http://www.cyogesh.com", - "url": "http://www.cyogesh.com", - "email": "mr.yogesh@gmail.com" + "copyright": "Yogesh Chaudhari, http://www.cyogesh.com", + "url": "http://www.cyogesh.com", + "email": "mr.yogesh@gmail.com" } diff --git a/users/yoggy.json b/users/yoggy.json index b8b5819f..06516b97 100644 --- a/users/yoggy.json +++ b/users/yoggy.json @@ -1 +1,4 @@ -{"copyright":"yoggy","url":"https:\/\/github.com\/yoggy"} \ No newline at end of file +{ + "copyright": "yoggy", + "url": "https://github.com/yoggy" +} diff --git a/users/yoginth.json b/users/yoginth.json index d734f55f..d3aec3b0 100644 --- a/users/yoginth.json +++ b/users/yoginth.json @@ -1,6 +1,6 @@ { - "copyright": "Yoginth", - "url": "https://yoginth.ml", - "email": "yoginth@zoho.com", - "gravatar": true + "copyright": "Yoginth", + "url": "https://yoginth.ml", + "email": "yoginth@zoho.com", + "gravatar": true } diff --git a/users/yoloconfessions.json b/users/yoloconfessions.json index 643ba280..e821094d 100644 --- a/users/yoloconfessions.json +++ b/users/yoloconfessions.json @@ -1 +1,3 @@ -{"copyright":"John Jensen and Jonah Kirangi"} \ No newline at end of file +{ + "copyright": "John Jensen and Jonah Kirangi" +} diff --git a/users/yoruaki.json b/users/yoruaki.json index a9f5961a..7a6d2875 100644 --- a/users/yoruaki.json +++ b/users/yoruaki.json @@ -1,5 +1,5 @@ { - "copyright": "yoruaki", - "url": "http://simpleism.net/", - "theme": "default" + "copyright": "yoruaki", + "url": "http://simpleism.net/", + "theme": "default" } diff --git a/users/yoshuki.json b/users/yoshuki.json index b66dd7f6..061d6e32 100644 --- a/users/yoshuki.json +++ b/users/yoshuki.json @@ -1 +1,4 @@ -{"copyright":"MIKAMI Yoshiyuki","url":"http:\/\/saikyoline.jp\/"} \ No newline at end of file +{ + "copyright": "MIKAMI Yoshiyuki", + "url": "http://saikyoline.jp/" +} diff --git a/users/yosida95.json b/users/yosida95.json index 01f14015..43ad740e 100644 --- a/users/yosida95.json +++ b/users/yosida95.json @@ -1 +1,7 @@ -{ "copyright": "Kohei YOSHIDA, https://yosida95.com/", "url": "https://yosida95.com", "email": "license@yosida95.com", "theme": "friendly", "gravatar": true } \ No newline at end of file +{ + "copyright": "Kohei YOSHIDA, https://yosida95.com/", + "url": "https://yosida95.com", + "email": "license@yosida95.com", + "theme": "friendly", + "gravatar": true +} diff --git a/users/yosugi.json b/users/yosugi.json index aeac0086..5f6659b2 100644 --- a/users/yosugi.json +++ b/users/yosugi.json @@ -1 +1,3 @@ -{"copyright":"yosugi"} \ No newline at end of file +{ + "copyright": "yosugi" +} diff --git a/users/yotpo.json b/users/yotpo.json index c12e623c..f23f39e1 100644 --- a/users/yotpo.json +++ b/users/yotpo.json @@ -1 +1,6 @@ -{"copyright":"Yotpo","url":"https:\/\/www.yotpo.com","email":"vlad@yotpo.com","format":"md"} \ No newline at end of file +{ + "copyright": "Yotpo", + "url": "https://www.yotpo.com", + "email": "vlad@yotpo.com", + "format": "md" +} diff --git a/users/youhide.json b/users/youhide.json index 09c9b872..b9799d5e 100644 --- a/users/youhide.json +++ b/users/youhide.json @@ -1 +1,3 @@ -{"copyright":"YouHide"} \ No newline at end of file +{ + "copyright": "YouHide" +} diff --git a/users/yousuf.json b/users/yousuf.json index 1c705387..54eb9d2b 100644 --- a/users/yousuf.json +++ b/users/yousuf.json @@ -1 +1,6 @@ -{"copyright":"Yousuf Fauzan","url":"http:\/\/fauzism.com","email":"yousuffauzan@gmail.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Yousuf Fauzan", + "url": "http://fauzism.com", + "email": "yousuffauzan@gmail.com", + "format": "txt" +} diff --git a/users/yousuf2.json b/users/yousuf2.json index 44863f76..548309fd 100644 --- a/users/yousuf2.json +++ b/users/yousuf2.json @@ -1 +1,7 @@ -{"copyright":"Yousuf Fauzan","url":"http:\/\/fauzism.com","email":"yousuffauzan@gmail.com","format":"txt","theme":"default"} \ No newline at end of file +{ + "copyright": "Yousuf Fauzan", + "url": "http://fauzism.com", + "email": "yousuffauzan@gmail.com", + "format": "txt", + "theme": "default" +} diff --git a/users/yousuf3.json b/users/yousuf3.json index 61beec95..300b8fc1 100644 --- a/users/yousuf3.json +++ b/users/yousuf3.json @@ -1 +1,6 @@ -{"copyright":"Yousuf Fauzan","url":"http:\/\/fauzism.com","email":"yousuffauzan@gmail.com","theme":"default"} \ No newline at end of file +{ + "copyright": "Yousuf Fauzan", + "url": "http://fauzism.com", + "email": "yousuffauzan@gmail.com", + "theme": "default" +} diff --git a/users/yrosen.json b/users/yrosen.json index 460dcdea..f26ac393 100644 --- a/users/yrosen.json +++ b/users/yrosen.json @@ -1 +1,4 @@ -{"copyright":"Yudi Rosen, http:\/\/yudirosen.com","url":"http:\/\/yudirosen.com"} \ No newline at end of file +{ + "copyright": "Yudi Rosen, http://yudirosen.com", + "url": "http://yudirosen.com" +} diff --git a/users/ysarbabi.json b/users/ysarbabi.json index 00708de1..d54477c6 100644 --- a/users/ysarbabi.json +++ b/users/ysarbabi.json @@ -1 +1,7 @@ -{"copyright":"Yahya SayadArbabi","url":"http://ysarbabi.ir","email":"yahya.arbabi@gmail.com","format":"html","gravatar": true} +{ + "copyright": "Yahya SayadArbabi", + "url": "http://ysarbabi.ir", + "email": "yahya.arbabi@gmail.com", + "format": "html", + "gravatar": true +} diff --git a/users/yshrsmz.json b/users/yshrsmz.json index 30b54524..3a78b762 100644 --- a/users/yshrsmz.json +++ b/users/yshrsmz.json @@ -1 +1,5 @@ -{"copyright":"Yasuhiro Shimizu","email":"yshrsmz.lab@gmail.com","theme":"eula-modern"} \ No newline at end of file +{ + "copyright": "Yasuhiro Shimizu", + "email": "yshrsmz.lab@gmail.com", + "theme": "eula-modern" +} diff --git a/users/ysong.json b/users/ysong.json index f0fed139..2ddc9b7d 100644 --- a/users/ysong.json +++ b/users/ysong.json @@ -1 +1,6 @@ -{"copyright":"Song Yang","url":"http:\/\/github.com\/ysong","email":"ysong@139.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Song Yang", + "url": "http://github.com/ysong", + "email": "ysong@139.com", + "format": "txt" +} diff --git a/users/ytaler.json b/users/ytaler.json index 1156e0b0..113a2d14 100644 --- a/users/ytaler.json +++ b/users/ytaler.json @@ -1 +1,7 @@ -{"copyright":"Yamil Taler","url":"http:\/\/ytaler.github.io\/","email":"yamil.taler@gmail.com","gravatar":true,"theme":"eula-modern"} \ No newline at end of file +{ + "copyright": "Yamil Taler", + "url": "http://ytaler.github.io/", + "email": "yamil.taler@gmail.com", + "gravatar": true, + "theme": "eula-modern" +} diff --git a/users/yu-cheng-chuang.json b/users/yu-cheng-chuang.json index 430b4de3..18f60e13 100644 --- a/users/yu-cheng-chuang.json +++ b/users/yu-cheng-chuang.json @@ -1 +1,5 @@ -{"copyright":"Yu-Cheng Chuang","url":"http:\/\/yorkxin.org","theme":"hipster-gray"} \ No newline at end of file +{ + "copyright": "Yu-Cheng Chuang", + "url": "http://yorkxin.org", + "theme": "hipster-gray" +} diff --git a/users/yuanyan.json b/users/yuanyan.json index a24cf70b..0b90475b 100644 --- a/users/yuanyan.json +++ b/users/yuanyan.json @@ -1,6 +1,6 @@ { - "copyright": "yuanyan, http://madscript.com", - "url": "http://madscript.com", - "theme": "flesch", - "gravatar": true + "copyright": "yuanyan, http://madscript.com", + "url": "http://madscript.com", + "theme": "flesch", + "gravatar": true } diff --git a/users/yuchi.json b/users/yuchi.json index 85195ceb..3e63d0b3 100644 --- a/users/yuchi.json +++ b/users/yuchi.json @@ -1 +1,3 @@ -{"copyright":"Pier Paolo Ramon"} \ No newline at end of file +{ + "copyright": "Pier Paolo Ramon" +} diff --git a/users/yudoufu.json b/users/yudoufu.json index dce73114..b46e1903 100644 --- a/users/yudoufu.json +++ b/users/yudoufu.json @@ -1,5 +1,5 @@ { - "copyright": "Daichi Kamemoto(a.k.a:yudoufu)", - "url": "http://yudoufu.com/", - "theme": "default" + "copyright": "Daichi Kamemoto(a.k.a:yudoufu)", + "url": "http://yudoufu.com/", + "theme": "default" } diff --git a/users/yudppp.json b/users/yudppp.json index 8bcd6efa..1cef2d23 100644 --- a/users/yudppp.json +++ b/users/yudppp.json @@ -1 +1,3 @@ -{"copyright":"yudppp"} \ No newline at end of file +{ + "copyright": "yudppp" +} diff --git a/users/yuhki50.json b/users/yuhki50.json index eefa38ec..2c3508f4 100644 --- a/users/yuhki50.json +++ b/users/yuhki50.json @@ -1 +1,4 @@ -{"copyright":"Yuuki Taguchi","url":"https:\/\/github.com\/yuhki50"} \ No newline at end of file +{ + "copyright": "Yuuki Taguchi", + "url": "https://github.com/yuhki50" +} diff --git a/users/yulun.json b/users/yulun.json index bd0dbb66..a11b9072 100644 --- a/users/yulun.json +++ b/users/yulun.json @@ -1,7 +1,7 @@ { - "copyright": "YuLun Shih, http://yulun.me", - "url": "http://yulun.me", - "theme": "black-beauty", - "email": "shih@yulun.me", - "gravatar": true + "copyright": "YuLun Shih, http://yulun.me", + "url": "http://yulun.me", + "theme": "black-beauty", + "email": "shih@yulun.me", + "gravatar": true } diff --git a/users/yungsang.json b/users/yungsang.json index b69d0a25..46b8854d 100644 --- a/users/yungsang.json +++ b/users/yungsang.json @@ -1 +1,7 @@ -{"copyright":"YungSang","url":"http:\/\/yungsang.com","email":"info@yungsang.com","theme":"flesch","gravatar":"ture"} \ No newline at end of file +{ + "copyright": "YungSang", + "url": "http://yungsang.com", + "email": "info@yungsang.com", + "theme": "flesch", + "gravatar": "ture" +} diff --git a/users/yuriel.json b/users/yuriel.json index d068336b..48497497 100644 --- a/users/yuriel.json +++ b/users/yuriel.json @@ -1,5 +1,5 @@ { - "copyright": "Yuriel, http://www.zyy1217.com", - "url": "http://www.zyy1217.com", - "theme":"double-windsor" + "copyright": "Yuriel, http://www.zyy1217.com", + "url": "http://www.zyy1217.com", + "theme": "double-windsor" } diff --git a/users/yuriy.json b/users/yuriy.json index 7b80d2df..04358435 100644 --- a/users/yuriy.json +++ b/users/yuriy.json @@ -1 +1,3 @@ -{"copyright":"Yuriy Arabskyy"} \ No newline at end of file +{ + "copyright": "Yuriy Arabskyy" +} diff --git a/users/yurrriq.json b/users/yurrriq.json index f7c5443f..1d7a3bd7 100644 --- a/users/yurrriq.json +++ b/users/yurrriq.json @@ -1 +1,6 @@ -{"copyright":"Eric Bailey","url":"http:\/\/ericb.me","email":"eric@ericb.me","format":"txt"} \ No newline at end of file +{ + "copyright": "Eric Bailey", + "url": "http://ericb.me", + "email": "eric@ericb.me", + "format": "txt" +} diff --git a/users/yusuke.json b/users/yusuke.json index c748e5c8..514f48c7 100644 --- a/users/yusuke.json +++ b/users/yusuke.json @@ -1 +1,4 @@ -{"copyright":"Yusuke Matsubara","url":"http:\/\/whym.org"} \ No newline at end of file +{ + "copyright": "Yusuke Matsubara", + "url": "http://whym.org" +} diff --git a/users/yzlow.json b/users/yzlow.json index ded5ba8d..e1b280bb 100644 --- a/users/yzlow.json +++ b/users/yzlow.json @@ -1 +1,3 @@ -{"copyright":"Low Yong Zhen"} \ No newline at end of file +{ + "copyright": "Low Yong Zhen" +} diff --git a/users/z.json b/users/z.json index 4a346a59..a308f2f8 100644 --- a/users/z.json +++ b/users/z.json @@ -1 +1,5 @@ -{"copyright":"\u6587\u5f3a \u5b8b","email":"z.tar.gz@gmail.com","theme":"double-windsor"} \ No newline at end of file +{ + "copyright": "\u6587\u5f3a \u5b8b", + "email": "z.tar.gz@gmail.com", + "theme": "double-windsor" +} diff --git a/users/zachary.json b/users/zachary.json index 66beb3f1..69c12292 100644 --- a/users/zachary.json +++ b/users/zachary.json @@ -1 +1,5 @@ -{"copyright":"Zachary Espiritu, ","url":"http:\/\/zacharyespiritu.com","email":"me@zacharyespiritu.com"} \ No newline at end of file +{ + "copyright": "Zachary Espiritu, ", + "url": "http://zacharyespiritu.com", + "email": "me@zacharyespiritu.com" +} diff --git a/users/zaki-yama.json b/users/zaki-yama.json index aa5dedac..8548ae0c 100644 --- a/users/zaki-yama.json +++ b/users/zaki-yama.json @@ -1,5 +1,5 @@ { - "copyright": "Shingo Yamazaki", - "url": "https://github.com/zaki-yama", - "email": "shingoyamazaki00@gmail.com" + "copyright": "Shingo Yamazaki", + "url": "https://github.com/zaki-yama", + "email": "shingoyamazaki00@gmail.com" } diff --git a/users/zander.json b/users/zander.json index ea9e705c..dde6aeb8 100644 --- a/users/zander.json +++ b/users/zander.json @@ -1 +1,4 @@ -{"copyright":"Zander Martineau","url":"http:\/\/martineau.tv"} \ No newline at end of file +{ + "copyright": "Zander Martineau", + "url": "http://martineau.tv" +} diff --git a/users/zaploink.json b/users/zaploink.json index 3a51a911..17db88b7 100644 --- a/users/zaploink.json +++ b/users/zaploink.json @@ -1 +1,6 @@ -{"copyright":"Kaspar von Gunten","url":"http:\/\/code.zaploink.org","email":"zaploink@code.zaploink.org","theme":"willpower"} +{ + "copyright": "Kaspar von Gunten", + "url": "http://code.zaploink.org", + "email": "zaploink@code.zaploink.org", + "theme": "willpower" +} diff --git a/users/zaurus.json b/users/zaurus.json index a4b7ff59..4d799911 100644 --- a/users/zaurus.json +++ b/users/zaurus.json @@ -1 +1,3 @@ -{"copyright":"Edge.Blogger"} \ No newline at end of file +{ + "copyright": "Edge.Blogger" +} diff --git a/users/zaz600.json b/users/zaz600.json index 67bff025..c033a222 100644 --- a/users/zaz600.json +++ b/users/zaz600.json @@ -1 +1,5 @@ -{"copyright":"Dmitriy Denisov","email":"zaz600@gmail.com","gravatar":true} \ No newline at end of file +{ + "copyright": "Dmitriy Denisov", + "email": "zaz600@gmail.com", + "gravatar": true +} diff --git a/users/zdwolfe.json b/users/zdwolfe.json index e3074491..382a55e0 100644 --- a/users/zdwolfe.json +++ b/users/zdwolfe.json @@ -1 +1,7 @@ -{"copyright":"Zachary Wolfe","url":"http:\/\/zdwolfe.net","email":"wolfe.zach@gmail.com","format":"txt","gravatar":true} \ No newline at end of file +{ + "copyright": "Zachary Wolfe", + "url": "http://zdwolfe.net", + "email": "wolfe.zach@gmail.com", + "format": "txt", + "gravatar": true +} diff --git a/users/zebmccorkle.json b/users/zebmccorkle.json index 2afbfe9b..185b2f71 100644 --- a/users/zebmccorkle.json +++ b/users/zebmccorkle.json @@ -1,8 +1,8 @@ { - "copyright": "Zebulon McCorkle", - "url": "https://zebmccorkle.me", - "email": "zebmccorkle@gmail.com", - "format": "html", - "gravatar": true, - "theme": "friendly" + "copyright": "Zebulon McCorkle", + "url": "https://zebmccorkle.me", + "email": "zebmccorkle@gmail.com", + "format": "html", + "gravatar": true, + "theme": "friendly" } diff --git a/users/zellio.json b/users/zellio.json index ee63b90f..a8902593 100644 --- a/users/zellio.json +++ b/users/zellio.json @@ -1 +1,5 @@ -{"copyright":"Zachary Elliott","email":"zach@nyu.edu","format":"txt"} \ No newline at end of file +{ + "copyright": "Zachary Elliott", + "email": "zach@nyu.edu", + "format": "txt" +} diff --git a/users/zen.json b/users/zen.json index 0c61d83b..77c9e2d6 100644 --- a/users/zen.json +++ b/users/zen.json @@ -1 +1,6 @@ -{"copyright":"Zen Savona","url":"http:\/\/zensavona.com","email":"z@zensavona.com","format":"txt"} \ No newline at end of file +{ + "copyright": "Zen Savona", + "url": "http://zensavona.com", + "email": "z@zensavona.com", + "format": "txt" +} diff --git a/users/zenjoy.json b/users/zenjoy.json index 49adfc82..e53adf55 100644 --- a/users/zenjoy.json +++ b/users/zenjoy.json @@ -1 +1,6 @@ -{"copyright":"Zenjoy","url":"http:\/\/www.zenjoy.be","email":"hello@zenjoy.be","theme":"flesch"} \ No newline at end of file +{ + "copyright": "Zenjoy", + "url": "http://www.zenjoy.be", + "email": "hello@zenjoy.be", + "theme": "flesch" +} diff --git a/users/zenorocha.json b/users/zenorocha.json index 987c23a6..de1fb658 100644 --- a/users/zenorocha.json +++ b/users/zenorocha.json @@ -1 +1,5 @@ -{"copyright":"Zeno Rocha","url":"http:\/\/zenorocha.com","email":"hi@zenorocha.com"} +{ + "copyright": "Zeno Rocha", + "url": "http://zenorocha.com", + "email": "hi@zenorocha.com" +} diff --git a/users/zenry.json b/users/zenry.json index 00cdd772..940f3402 100644 --- a/users/zenry.json +++ b/users/zenry.json @@ -1 +1,7 @@ -{"copyright":"Henry Louwhoff","url":"http:\/\/zenry.github.io","email":"henry@postb.us","format":"html","gravatar":true} \ No newline at end of file +{ + "copyright": "Henry Louwhoff", + "url": "http://zenry.github.io", + "email": "henry@postb.us", + "format": "html", + "gravatar": true +} diff --git a/users/zhengyi.json b/users/zhengyi.json index 92f22016..f4f74f6e 100644 --- a/users/zhengyi.json +++ b/users/zhengyi.json @@ -3,4 +3,4 @@ "url": "http://zhengyi.one", "email": "zhengyi.one@outlook.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/zhiyuan.json b/users/zhiyuan.json index b0fdb487..89f6fc10 100644 --- a/users/zhiyuan.json +++ b/users/zhiyuan.json @@ -1 +1,3 @@ -{"copyright":"Zhiyuan Shi"} \ No newline at end of file +{ + "copyright": "Zhiyuan Shi" +} diff --git a/users/zhiyuanshi.json b/users/zhiyuanshi.json index b0fdb487..89f6fc10 100644 --- a/users/zhiyuanshi.json +++ b/users/zhiyuanshi.json @@ -1 +1,3 @@ -{"copyright":"Zhiyuan Shi"} \ No newline at end of file +{ + "copyright": "Zhiyuan Shi" +} diff --git a/users/ziloi.json b/users/ziloi.json index b1bd45d7..45e5d9f7 100644 --- a/users/ziloi.json +++ b/users/ziloi.json @@ -1 +1,6 @@ -{"copyright":"Ziloi","url":"http:\/\/ziloi.com","email":"info@ziloi.com","theme":"flesch"} +{ + "copyright": "Ziloi", + "url": "http://ziloi.com", + "email": "info@ziloi.com", + "theme": "flesch" +} diff --git a/users/zimozito.json b/users/zimozito.json index b9309dec..c3d66ed4 100644 --- a/users/zimozito.json +++ b/users/zimozito.json @@ -1 +1,4 @@ -{"copyright":"ZimoZito","url":"http:\/\/zimozito.com"} \ No newline at end of file +{ + "copyright": "ZimoZito", + "url": "http://zimozito.com" +} diff --git a/users/zimp.json b/users/zimp.json index b7c08bf6..be3a5227 100644 --- a/users/zimp.json +++ b/users/zimp.json @@ -1 +1,5 @@ -{"copyright":"Zimp Recompensas","url":"http:\/\/zimp.me","email":"suporte@zimp.me"} \ No newline at end of file +{ + "copyright": "Zimp Recompensas", + "url": "http://zimp.me", + "email": "suporte@zimp.me" +} diff --git a/users/zinc.json b/users/zinc.json index 740e3e52..a798e205 100644 --- a/users/zinc.json +++ b/users/zinc.json @@ -1 +1,5 @@ -{"copyright":"Mihir Singh","url":"http:\/\/citruspi.github.com\/Zinc","email":"me@mihirsingh.com"} \ No newline at end of file +{ + "copyright": "Mihir Singh", + "url": "http://citruspi.github.com/Zinc", + "email": "me@mihirsingh.com" +} diff --git a/users/znck.json b/users/znck.json index fda14efc..93b42ba2 100644 --- a/users/znck.json +++ b/users/znck.json @@ -1 +1,3 @@ -{"copyright":"Rahul Kadyan"} \ No newline at end of file +{ + "copyright": "Rahul Kadyan" +} diff --git a/users/zonble.json b/users/zonble.json index 834f8922..6078512a 100644 --- a/users/zonble.json +++ b/users/zonble.json @@ -1 +1,3 @@ -{"copyright":"Weizhong Yang"} \ No newline at end of file +{ + "copyright": "Weizhong Yang" +} diff --git a/users/zzeris.json b/users/zzeris.json index fe715ad2..ecac9977 100644 --- a/users/zzeris.json +++ b/users/zzeris.json @@ -1 +1,4 @@ -{"copyright":"Jos\u00e9 Luiz","email":"zzeris@gmail.com"} \ No newline at end of file +{ + "copyright": "Jos\u00e9 Luiz", + "email": "zzeris@gmail.com" +} diff --git a/users/zzimbler.json b/users/zzimbler.json index 86c5638f..8d64afea 100644 --- a/users/zzimbler.json +++ b/users/zzimbler.json @@ -1 +1,3 @@ -{"copyright":"Zachary Zimbler"} \ No newline at end of file +{ + "copyright": "Zachary Zimbler" +} diff --git a/users/zzzzbov.json b/users/zzzzbov.json index 4b01125e..28b1fcb3 100644 --- a/users/zzzzbov.json +++ b/users/zzzzbov.json @@ -2,4 +2,4 @@ "copyright": "zzzzBov", "email": "zzzzbov@gmail.com", "url": "http://zzzzbov.com" -} \ No newline at end of file +} From 94bf84b5f254aa42dcaef7eb4d12d5d0bf6b55fe Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Fri, 31 May 2019 19:40:36 +1200 Subject: [PATCH 11/53] Fix non-json user file --- users/ressendpanda | 8 -------- users/ressendpanda.json | 8 ++++++++ 2 files changed, 8 insertions(+), 8 deletions(-) delete mode 100644 users/ressendpanda create mode 100644 users/ressendpanda.json diff --git a/users/ressendpanda b/users/ressendpanda deleted file mode 100644 index d6a3a782..00000000 --- a/users/ressendpanda +++ /dev/null @@ -1,8 +0,0 @@ -{ - "copyright": "Kim Younggeon, http://www.kyg.kr", - "url": "http://www.kyg.kr", - "email": "mail@kyg.kr", - "gravatar": true, - "theme": "friendly", - "format": "html" -} diff --git a/users/ressendpanda.json b/users/ressendpanda.json new file mode 100644 index 00000000..f039e336 --- /dev/null +++ b/users/ressendpanda.json @@ -0,0 +1,8 @@ +{ + "copyright": "Kim Younggeon, http://www.kyg.kr", + "url": "http://www.kyg.kr", + "email": "mail@kyg.kr", + "gravatar": true, + "theme": "friendly", + "format": "html" +} From 46eb2eb45bace69f3307c28b9a48c56a7827572d Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Fri, 31 May 2019 20:28:03 +1200 Subject: [PATCH 12/53] Improve tests and fix broken files discovered --- .travis.yml | 16 +- index.php | 162 +++--- licenses/AGPL-3-0.ejs | 663 ++++++++++++++++++++++++ package.json | 2 + server.ts | 6 +- test.js | 48 +- themes/eula-modern.css | 1 - themes/solarized.css | 2 - users/gokhangunay | 1 - users/gokhangunay.json | 6 + users/hatollint | 8 - users/hatollint.json | 8 + users/jenish | 5 - users/micxer.json-old | 1 - users/mr-mostafa | 8 - users/mr-mostafa.json | 8 + users/pranjal | 6 - users/pranjal.json | 6 + users/prankshaw | 6 - users/prankshaw.json | 6 + users/{tristancode => tristancode.json} | 0 yarn.lock | Bin 143980 -> 144253 bytes 22 files changed, 840 insertions(+), 129 deletions(-) create mode 100644 licenses/AGPL-3-0.ejs delete mode 100644 users/gokhangunay create mode 100644 users/gokhangunay.json delete mode 100644 users/hatollint create mode 100644 users/hatollint.json delete mode 100644 users/jenish delete mode 100644 users/micxer.json-old delete mode 100644 users/mr-mostafa create mode 100644 users/mr-mostafa.json delete mode 100644 users/pranjal create mode 100644 users/pranjal.json delete mode 100644 users/prankshaw create mode 100644 users/prankshaw.json rename users/{tristancode => tristancode.json} (100%) diff --git a/.travis.yml b/.travis.yml index 49f6342d..aee51157 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,13 @@ -language: node_js -sudo: false -node_js: lts/* +language: node_js + +node_js: lts/* + +cache: + - npm + - yarn + +before_install: npm i -g yarn + +install: yarn install + +script: yarn test diff --git a/index.php b/index.php index a5642fc0..5d8968eb 100644 --- a/index.php +++ b/index.php @@ -3,82 +3,83 @@ date_default_timezone_set('Europe/London'); // stop php from whining $format = 'html'; -$theme = 'default'; -$cname = ''; +$theme = 'default'; +$cname = ''; // use a match instead of preg_replace to ensure we got the cname preg_match('/^([a-z0-9\-]+)\.mit-license\..*$/', $_SERVER['HTTP_HOST'], $match); if (count($match) == 2) { - $cname = $match[1]; + $cname = $match[1]; } $user_file = 'users/' . $cname . '.json'; if ($_SERVER['REQUEST_METHOD'] === 'POST' && $cname) { - echo ('>>> curl API has been temporarily disabled. Please send a pull request in the short term. Service will resume as normal again soon ❤'); - exit; + echo ('>>> curl API has been temporarily disabled. Please send a pull request in the short term. Service will resume as normal again soon ❤'); + exit; - try { - $data = json_decode(file_get_contents('php://input')); - if (!property_exists($data, 'copyright')) { - Throw new Exception('>>> JSON requires "copyright" property and value'); + try { + $data = json_decode(file_get_contents('php://input')); + if (!property_exists($data, 'copyright')) { + Throw new Exception('>>> JSON requires "copyright" property and value'); + } + + if (file_exists($user_file)) { + Throw new Exception(wordwrap('>>> User already exists - to update values, please send a pull request on https://github.com/remy/mit-license')); + } + + if (!file_put_contents($user_file, json_encode($data))) { + Throw new Exception(wordwrap('>>> Unable to create new user - please send a pull request on https://github.com/remy/mit-license')); + } + + // try to add to github...! + exec('cd /WWW/mit-license && /usr/bin/git add ' . $user_file . ' && /usr/bin/git commit -m"automated creation of ' . $user_file . '"', $out, $r); + //print_r($out); echo "\n"; print_r($r); echo "\n"; + $out = array(); + exec('cd /WWW/mit-license && /usr/bin/git push origin master -v 2>&1', $out, $r); + //print_r($out); echo "\n"; print_r($r); echo "\n"; + + echo '>>> MIT license page created: https://' . $_SERVER['HTTP_HOST'] . "\n\n"; } - - if (file_exists($user_file)) { - Throw new Exception(wordwrap('>>> User already exists - to update values, please send a pull request on https://github.com/remy/mit-license')); + catch (Exception $e) { + echo $e->getMessage() . "\n\n"; } - - if (!file_put_contents($user_file, json_encode($data))) { - Throw new Exception(wordwrap('>>> Unable to create new user - please send a pull request on https://github.com/remy/mit-license')); - } - - // try to add to github...! - exec('cd /WWW/mit-license && /usr/bin/git add ' . $user_file . ' && /usr/bin/git commit -m"automated creation of ' . $user_file . '"', $out, $r); - //print_r($out); echo "\n"; print_r($r); echo "\n"; - $out = array(); - exec('cd /WWW/mit-license && /usr/bin/git push origin master -v 2>&1', $out, $r); - //print_r($out); echo "\n"; print_r($r); echo "\n"; - - echo '>>> MIT license page created: https://' . $_SERVER['HTTP_HOST'] . "\n\n"; - } catch (Exception $e) { - echo $e->getMessage() . "\n\n"; - } - exit; + exit; } /** * Load up the user.json file and read properties in **/ if ($cname && file_exists($user_file)) { - $user = json_decode(file_get_contents($user_file)); - $holder = htmlentities($user->copyright, ENT_COMPAT | ENT_HTML401, 'UTF-8'); - if (property_exists($user, 'url')) { - $holder = '' . $holder . ''; - } - - if (property_exists($user, 'email')) { - $holder = $holder . ' <' . $user->email . '>'; - - if(property_exists($user, 'gravatar') && $user->gravatar === true){ - $gravatar = ''; + $user = json_decode(file_get_contents($user_file)); + $holder = htmlentities($user->copyright, ENT_COMPAT | ENT_HTML401, 'UTF-8'); + if (property_exists($user, 'url')) { + $holder = '' . $holder . ''; } - } + if (property_exists($user, 'email')) { + $holder = $holder . ' <' . $user->email . '>'; - if (property_exists($user, 'format')) { - if (strtolower($user->format) == 'txt') { - $format = 'txt'; - } - } + if (property_exists($user, 'gravatar') && $user->gravatar === true) { + $gravatar = ''; + } - if (property_exists($user, 'theme')) { - if (file_exists('themes/' . $user->theme . '.css')) { - $theme = $user->theme; } - } + + if (property_exists($user, 'format')) { + if (strtolower($user->format) == 'txt') { + $format = 'txt'; + } + } + + if (property_exists($user, 'theme')) { + if (file_exists('themes/' . $user->theme . '.css')) { + $theme = $user->theme; + } + } } else { - $holder = "<copyright holders>"; + $holder = "<copyright holders>"; } /** @@ -92,14 +93,15 @@ $request = array_pop($request_uri); // in case there's a trailing slash (unlikely) -if ($request == '') $request = array_pop($request_uri); +if ($request == '') + $request = array_pop($request_uri); // url file format overrides user preference if (stripos($request, 'license') === 0) { - $format = array_pop(explode('.', strtolower($request))) == 'txt' ? 'txt' : 'html'; + $format = array_pop(explode('.', strtolower($request))) == 'txt' ? 'txt' : 'html'; - // move down to the next part of the request - $request = array_pop($request_uri); + // move down to the next part of the request + $request = array_pop($request_uri); } // check if we have a year or a year range up front @@ -107,45 +109,45 @@ preg_match('/^(@?\d{4})(?:(?:\-)(\d{4}))?$/', $request, $match); if (count($match) > 1) { - if ($match[2] && $match[1][0] != '@') { // 2nd segment - $year = $match[2]; - } - if ($match[1]) { - if ($match[1][0] == '@') { - $year = substr($match[1], 1); - } else { - $year = $match[1] == $year ? $year : $match[1] . '-' . $year; + if ($match[2] && $match[1][0] != '@') { // 2nd segment + $year = $match[2]; } - } - $request = array_pop($request_uri); + if ($match[1]) { + if ($match[1][0] == '@') { + $year = substr($match[1], 1); + } else { + $year = $match[1] == $year ? $year : $match[1] . '-' . $year; + } + } + $request = array_pop($request_uri); } // check if there's a SHA on the url and read this to switch license versions $sha = ''; if ($request != "" && $request != "/" && $request != "/index.php") { - $sha = preg_replace('/[^a-f0-9]/', '', $request); + $sha = preg_replace('/[^a-f0-9]/', '', $request); } else if (isset($user) && property_exists($user, 'version')) { - $sha = preg_replace('/[^a-f0-9]/', '', $user->version); + $sha = preg_replace('/[^a-f0-9]/', '', $user->version); } // if sha specified, use that revision of licence $license = ''; if ($sha != "") { - $out = array(); - // preg_replace should save us - but: please help me Obi Wan... - exec("/usr/local/bin/git show " . $sha . ":LICENSE.html", $out, $r); - if ($r == 0) { - $license = implode("\n", $out); - } + $out = array(); + // preg_replace should save us - but: please help me Obi Wan... + exec("/usr/local/bin/git show " . $sha . ":LICENSE.html", $out, $r); + if ($r == 0) { + $license = implode("\n", $out); + } } // if we didn't manage to read one in, use latest if ($license == "") { - $license = file_get_contents('LICENSE.html'); + $license = file_get_contents('LICENSE.html'); } // replace info tag and display -$info = $year . ' ' . $holder; +$info = $year . ' ' . $holder; $license = str_replace('{{info}}', $info, $license); $license = str_replace('{{theme}}', $theme, $license); $license = str_replace('{{gravatar}}', $gravatar, $license); @@ -153,11 +155,11 @@ // if we want text format, strip out the license from the article tag // and then strip any other tags in the license. if ($format == 'txt') { - $license = array_shift(explode('', array_pop(explode('
', $license)))); - $license = preg_replace('/<[^>]*>/', '', trim($license)); - $license = html_entity_decode($license, ENT_COMPAT | ENT_HTML401, 'UTF-8'); - $license .= "\n"; - header('content-type: text/plain; charset=UTF-8'); + $license = array_shift(explode('
', array_pop(explode('
', $license)))); + $license = preg_replace('/<[^>]*>/', '', trim($license)); + $license = html_entity_decode($license, ENT_COMPAT | ENT_HTML401, 'UTF-8'); + $license .= "\n"; + header('content-type: text/plain; charset=UTF-8'); } echo $license; diff --git a/licenses/AGPL-3-0.ejs b/licenses/AGPL-3-0.ejs new file mode 100644 index 00000000..faeda924 --- /dev/null +++ b/licenses/AGPL-3-0.ejs @@ -0,0 +1,663 @@ + + + +<% include components/header %> + + +
+ <%- gravatar %> +

GNU Affero General Public License (AGPL-3.0)

+

Copyright © <%= info %>

+ +

Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.

Preamble

+ +

The GNU Affero General Public License is a free, copyleft license for + software and other kinds of works, specifically designed to ensure + cooperation with the community in the case of network server software.

+ +

The licenses for most software and other practical works are designed + to take away your freedom to share and change the works. By contrast, + our General Public Licenses are intended to guarantee your freedom to + share and change all versions of a program--to make sure it remains free + software for all its users.

+ +

When we speak of free software, we are referring to freedom, not + price. Our General Public Licenses are designed to make sure that you + have the freedom to distribute copies of free software (and charge for + them if you wish), that you receive source code or can get it if you + want it, that you can change the software or use pieces of it in new + free programs, and that you know you can do these things.

+ +

Developers that use our General Public Licenses protect your rights + with two steps: (1) assert copyright on the software, and (2) offer + you this License which gives you legal permission to copy, distribute + and/or modify the software.

+ +

A secondary benefit of defending all users' freedom is that + improvements made in alternate versions of the program, if they + receive widespread use, become available for other developers to + incorporate. Many developers of free software are heartened and + encouraged by the resulting cooperation. However, in the case of + software used on network servers, this result may fail to come about. + The GNU General Public License permits making a modified version and + letting the public access it on a server without ever releasing its + source code to the public.

+ +

The GNU Affero General Public License is designed specifically to + ensure that, in such cases, the modified source code becomes available + to the community. It requires the operator of a network server to + provide the source code of the modified version running there to the + users of that server. Therefore, public use of a modified version, on + a publicly accessible server, gives the public access to the source + code of the modified version.

+ +

An older license, called the Affero General Public License and + published by Affero, was designed to accomplish similar goals. This is + a different license, not a version of the Affero GPL, but Affero has + released a new version of the Affero GPL which permits relicensing under + this license.

+ +

The precise terms and conditions for copying, distribution and + modification follow.

+ +

TERMS AND CONDITIONS

+ +

0. Definitions.

+ +

"This License" refers to version 3 of the GNU Affero General Public License.

+ +

"Copyright" also means copyright-like laws that apply to other kinds of + works, such as semiconductor masks.

+ +

"The Program" refers to any copyrightable work licensed under this + License. Each licensee is addressed as "you". "Licensees" and + "recipients" may be individuals or organizations.

+ +

To "modify" a work means to copy from or adapt all or part of the work + in a fashion requiring copyright permission, other than the making of an + exact copy. The resulting work is called a "modified version" of the + earlier work or a work "based on" the earlier work.

+ +

A "covered work" means either the unmodified Program or a work based + on the Program.

+ +

To "propagate" a work means to do anything with it that, without + permission, would make you directly or secondarily liable for + infringement under applicable copyright law, except executing it on a + computer or modifying a private copy. Propagation includes copying, + distribution (with or without modification), making available to the + public, and in some countries other activities as well.

+ +

To "convey" a work means any kind of propagation that enables other + parties to make or receive copies. Mere interaction with a user through + a computer network, with no transfer of a copy, is not conveying.

+ +

An interactive user interface displays "Appropriate Legal Notices" + to the extent that it includes a convenient and prominently visible + feature that (1) displays an appropriate copyright notice, and (2) + tells the user that there is no warranty for the work (except to the + extent that warranties are provided), that licensees may convey the + work under this License, and how to view a copy of this License. If + the interface presents a list of user commands or options, such as a + menu, a prominent item in the list meets this criterion.

+ +

1. Source Code.

+ +

The "source code" for a work means the preferred form of the work + for making modifications to it. "Object code" means any non-source + form of a work.

+ +

A "Standard Interface" means an interface that either is an official + standard defined by a recognized standards body, or, in the case of + interfaces specified for a particular programming language, one that + is widely used among developers working in that language.

+ +

The "System Libraries" of an executable work include anything, other + than the work as a whole, that (a) is included in the normal form of + packaging a Major Component, but which is not part of that Major + Component, and (b) serves only to enable use of the work with that + Major Component, or to implement a Standard Interface for which an + implementation is available to the public in source code form. A + "Major Component", in this context, means a major essential component + (kernel, window system, and so on) of the specific operating system + (if any) on which the executable work runs, or a compiler used to + produce the work, or an object code interpreter used to run it.

+ +

The "Corresponding Source" for a work in object code form means all + the source code needed to generate, install, and (for an executable + work) run the object code and to modify the work, including scripts to + control those activities. However, it does not include the work's + System Libraries, or general-purpose tools or generally available free + programs which are used unmodified in performing those activities but + which are not part of the work. For example, Corresponding Source + includes interface definition files associated with source files for + the work, and the source code for shared libraries and dynamically + linked subprograms that the work is specifically designed to require, + such as by intimate data communication or control flow between those + subprograms and other parts of the work.

+ +

The Corresponding Source need not include anything that users + can regenerate automatically from other parts of the Corresponding + Source.

+ +

The Corresponding Source for a work in source code form is that + same work.

+ +

2. Basic Permissions.

+ +

All rights granted under this License are granted for the term of + copyright on the Program, and are irrevocable provided the stated + conditions are met. This License explicitly affirms your unlimited + permission to run the unmodified Program. The output from running a + covered work is covered by this License only if the output, given its + content, constitutes a covered work. This License acknowledges your + rights of fair use or other equivalent, as provided by copyright law.

+ +

You may make, run and propagate covered works that you do not + convey, without conditions so long as your license otherwise remains + in force. You may convey covered works to others for the sole purpose + of having them make modifications exclusively for you, or provide you + with facilities for running those works, provided that you comply with + the terms of this License in conveying all material for which you do + not control copyright. Those thus making or running the covered works + for you must do so exclusively on your behalf, under your direction + and control, on terms that prohibit them from making any copies of + your copyrighted material outside their relationship with you.

+ +

Conveying under any other circumstances is permitted solely under + the conditions stated below. Sublicensing is not allowed; section 10 + makes it unnecessary.

+ +

3. Protecting Users' Legal Rights From Anti-Circumvention Law.

+ +

No covered work shall be deemed part of an effective technological + measure under any applicable law fulfilling obligations under article + 11 of the WIPO copyright treaty adopted on 20 December 1996, or + similar laws prohibiting or restricting circumvention of such + measures.

+ +

When you convey a covered work, you waive any legal power to forbid + circumvention of technological measures to the extent such circumvention + is effected by exercising rights under this License with respect to + the covered work, and you disclaim any intention to limit operation or + modification of the work as a means of enforcing, against the work's + users, your or third parties' legal rights to forbid circumvention of + technological measures.

+ +

4. Conveying Verbatim Copies.

+ +

You may convey verbatim copies of the Program's source code as you + receive it, in any medium, provided that you conspicuously and + appropriately publish on each copy an appropriate copyright notice; + keep intact all notices stating that this License and any + non-permissive terms added in accord with section 7 apply to the code; + keep intact all notices of the absence of any warranty; and give all + recipients a copy of this License along with the Program.

+ +

You may charge any price or no price for each copy that you convey, + and you may offer support or warranty protection for a fee.

+ +

5. Conveying Modified Source Versions.

+ +

You may convey a work based on the Program, or the modifications to + produce it from the Program, in the form of source code under the + terms of section 4, provided that you also meet all of these conditions:

+ +

a) The work must carry prominent notices stating that you modified + it, and giving a relevant date.

+ +

b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices".

+ +

c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it.

+ +

d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so.

+ +

A compilation of a covered work with other separate and independent + works, which are not by their nature extensions of the covered work, + and which are not combined with it such as to form a larger program, + in or on a volume of a storage or distribution medium, is called an + "aggregate" if the compilation and its resulting copyright are not + used to limit the access or legal rights of the compilation's users + beyond what the individual works permit. Inclusion of a covered work + in an aggregate does not cause this License to apply to the other + parts of the aggregate.

+ +

6. Conveying Non-Source Forms.

+ +

You may convey a covered work in object code form under the terms + of sections 4 and 5, provided that you also convey the + machine-readable Corresponding Source under the terms of this License, + in one of these ways:

+ +

a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange.

+ +

b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge.

+ +

c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b.

+ +

d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements.

+ +

e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d.

+ +

A separable portion of the object code, whose source code is excluded + from the Corresponding Source as a System Library, need not be + included in conveying the object code work.

+ +

A "User Product" is either (1) a "consumer product", which means any + tangible personal property which is normally used for personal, family, + or household purposes, or (2) anything designed or sold for incorporation + into a dwelling. In determining whether a product is a consumer product, + doubtful cases shall be resolved in favor of coverage. For a particular + product received by a particular user, "normally used" refers to a + typical or common use of that class of product, regardless of the status + of the particular user or of the way in which the particular user + actually uses, or expects or is expected to use, the product. A product + is a consumer product regardless of whether the product has substantial + commercial, industrial or non-consumer uses, unless such uses represent + the only significant mode of use of the product.

+ +

"Installation Information" for a User Product means any methods, + procedures, authorization keys, or other information required to install + and execute modified versions of a covered work in that User Product from + a modified version of its Corresponding Source. The information must + suffice to ensure that the continued functioning of the modified object + code is in no case prevented or interfered with solely because + modification has been made.

+ +

If you convey an object code work under this section in, or with, or + specifically for use in, a User Product, and the conveying occurs as + part of a transaction in which the right of possession and use of the + User Product is transferred to the recipient in perpetuity or for a + fixed term (regardless of how the transaction is characterized), the + Corresponding Source conveyed under this section must be accompanied + by the Installation Information. But this requirement does not apply + if neither you nor any third party retains the ability to install + modified object code on the User Product (for example, the work has + been installed in ROM).

+ +

The requirement to provide Installation Information does not include a + requirement to continue to provide support service, warranty, or updates + for a work that has been modified or installed by the recipient, or for + the User Product in which it has been modified or installed. Access to a + network may be denied when the modification itself materially and + adversely affects the operation of the network or violates the rules and + protocols for communication across the network.

+ +

Corresponding Source conveyed, and Installation Information provided, + in accord with this section must be in a format that is publicly + documented (and with an implementation available to the public in + source code form), and must require no special password or key for + unpacking, reading or copying.

+ +

7. Additional Terms.

+ +

"Additional permissions" are terms that supplement the terms of this + License by making exceptions from one or more of its conditions. + Additional permissions that are applicable to the entire Program shall + be treated as though they were included in this License, to the extent + that they are valid under applicable law. If additional permissions + apply only to part of the Program, that part may be used separately + under those permissions, but the entire Program remains governed by + this License without regard to the additional permissions.

+ +

When you convey a copy of a covered work, you may at your option + remove any additional permissions from that copy, or from any part of + it. (Additional permissions may be written to require their own + removal in certain cases when you modify the work.) You may place + additional permissions on material, added by you to a covered work, + for which you have or can give appropriate copyright permission.

+ +

Notwithstanding any other provision of this License, for material you + add to a covered work, you may (if authorized by the copyright holders of + that material) supplement the terms of this License with terms:

+ +

a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or

+ +

b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or

+ +

c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or

+ +

d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or

+ +

e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or

+ +

f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors.

+ +

All other non-permissive additional terms are considered "further + restrictions" within the meaning of section 10. If the Program as you + received it, or any part of it, contains a notice stating that it is + governed by this License along with a term that is a further + restriction, you may remove that term. If a license document contains + a further restriction but permits relicensing or conveying under this + License, you may add to a covered work material governed by the terms + of that license document, provided that the further restriction does + not survive such relicensing or conveying.

+ +

If you add terms to a covered work in accord with this section, you + must place, in the relevant source files, a statement of the + additional terms that apply to those files, or a notice indicating + where to find the applicable terms.

+ +

Additional terms, permissive or non-permissive, may be stated in the + form of a separately written license, or stated as exceptions; + the above requirements apply either way.

+ +

8. Termination.

+ +

You may not propagate or modify a covered work except as expressly + provided under this License. Any attempt otherwise to propagate or + modify it is void, and will automatically terminate your rights under + this License (including any patent licenses granted under the third + paragraph of section 11).

+ +

However, if you cease all violation of this License, then your + license from a particular copyright holder is reinstated (a) + provisionally, unless and until the copyright holder explicitly and + finally terminates your license, and (b) permanently, if the copyright + holder fails to notify you of the violation by some reasonable means + prior to 60 days after the cessation.

+ +

Moreover, your license from a particular copyright holder is + reinstated permanently if the copyright holder notifies you of the + violation by some reasonable means, this is the first time you have + received notice of violation of this License (for any work) from that + copyright holder, and you cure the violation prior to 30 days after + your receipt of the notice.

+ +

Termination of your rights under this section does not terminate the + licenses of parties who have received copies or rights from you under + this License. If your rights have been terminated and not permanently + reinstated, you do not qualify to receive new licenses for the same + material under section 10.

+ +

9. Acceptance Not Required for Having Copies.

+ +

You are not required to accept this License in order to receive or + run a copy of the Program. Ancillary propagation of a covered work + occurring solely as a consequence of using peer-to-peer transmission + to receive a copy likewise does not require acceptance. However, + nothing other than this License grants you permission to propagate or + modify any covered work. These actions infringe copyright if you do + not accept this License. Therefore, by modifying or propagating a + covered work, you indicate your acceptance of this License to do so.

+ +

10. Automatic Licensing of Downstream Recipients.

+ +

Each time you convey a covered work, the recipient automatically + receives a license from the original licensors, to run, modify and + propagate that work, subject to this License. You are not responsible + for enforcing compliance by third parties with this License.

+ +

An "entity transaction" is a transaction transferring control of an + organization, or substantially all assets of one, or subdividing an + organization, or merging organizations. If propagation of a covered + work results from an entity transaction, each party to that + transaction who receives a copy of the work also receives whatever + licenses to the work the party's predecessor in interest had or could + give under the previous paragraph, plus a right to possession of the + Corresponding Source of the work from the predecessor in interest, if + the predecessor has it or can get it with reasonable efforts.

+ +

You may not impose any further restrictions on the exercise of the + rights granted or affirmed under this License. For example, you may + not impose a license fee, royalty, or other charge for exercise of + rights granted under this License, and you may not initiate litigation + (including a cross-claim or counterclaim in a lawsuit) alleging that + any patent claim is infringed by making, using, selling, offering for + sale, or importing the Program or any portion of it.

+ +

11. Patents.

+ +

A "contributor" is a copyright holder who authorizes use under this + License of the Program or a work on which the Program is based. The + work thus licensed is called the contributor's "contributor version".

+ +

A contributor's "essential patent claims" are all patent claims + owned or controlled by the contributor, whether already acquired or + hereafter acquired, that would be infringed by some manner, permitted + by this License, of making, using, or selling its contributor version, + but do not include claims that would be infringed only as a + consequence of further modification of the contributor version. For + purposes of this definition, "control" includes the right to grant + patent sublicenses in a manner consistent with the requirements of + this License.

+ +

Each contributor grants you a non-exclusive, worldwide, royalty-free + patent license under the contributor's essential patent claims, to + make, use, sell, offer for sale, import and otherwise run, modify and + propagate the contents of its contributor version.

+ +

In the following three paragraphs, a "patent license" is any express + agreement or commitment, however denominated, not to enforce a patent + (such as an express permission to practice a patent or covenant not to + sue for patent infringement). To "grant" such a patent license to a + party means to make such an agreement or commitment not to enforce a + patent against the party.

+ +

If you convey a covered work, knowingly relying on a patent license, + and the Corresponding Source of the work is not available for anyone + to copy, free of charge and under the terms of this License, through a + publicly available network server or other readily accessible means, + then you must either (1) cause the Corresponding Source to be so + available, or (2) arrange to deprive yourself of the benefit of the + patent license for this particular work, or (3) arrange, in a manner + consistent with the requirements of this License, to extend the patent + license to downstream recipients. "Knowingly relying" means you have + actual knowledge that, but for the patent license, your conveying the + covered work in a country, or your recipient's use of the covered work + in a country, would infringe one or more identifiable patents in that + country that you have reason to believe are valid.

+ +

If, pursuant to or in connection with a single transaction or + arrangement, you convey, or propagate by procuring conveyance of, a + covered work, and grant a patent license to some of the parties + receiving the covered work authorizing them to use, propagate, modify + or convey a specific copy of the covered work, then the patent license + you grant is automatically extended to all recipients of the covered + work and works based on it.

+ +

A patent license is "discriminatory" if it does not include within + the scope of its coverage, prohibits the exercise of, or is + conditioned on the non-exercise of one or more of the rights that are + specifically granted under this License. You may not convey a covered + work if you are a party to an arrangement with a third party that is + in the business of distributing software, under which you make payment + to the third party based on the extent of your activity of conveying + the work, and under which the third party grants, to any of the + parties who would receive the covered work from you, a discriminatory + patent license (a) in connection with copies of the covered work + conveyed by you (or copies made from those copies), or (b) primarily + for and in connection with specific products or compilations that + contain the covered work, unless you entered into that arrangement, + or that patent license was granted, prior to 28 March 2007.

+ +

Nothing in this License shall be construed as excluding or limiting + any implied license or other defenses to infringement that may + otherwise be available to you under applicable patent law.

+ +

12. No Surrender of Others' Freedom.

+ +

If conditions are imposed on you (whether by court order, agreement or + otherwise) that contradict the conditions of this License, they do not + excuse you from the conditions of this License. If you cannot convey a + covered work so as to satisfy simultaneously your obligations under this + License and any other pertinent obligations, then as a consequence you may + not convey it at all. For example, if you agree to terms that obligate you + to collect a royalty for further conveying from those to whom you convey + the Program, the only way you could satisfy both those terms and this + License would be to refrain entirely from conveying the Program.

+ +

13. Remote Network Interaction; Use with the GNU General Public License.

+ +

Notwithstanding any other provision of this License, if you modify the + Program, your modified version must prominently offer all users + interacting with it remotely through a computer network (if your version + supports such interaction) an opportunity to receive the Corresponding + Source of your version by providing access to the Corresponding Source + from a network server at no charge, through some standard or customary + means of facilitating copying of software. This Corresponding Source + shall include the Corresponding Source for any work covered by version 3 + of the GNU General Public License that is incorporated pursuant to the + following paragraph.

+ +

Notwithstanding any other provision of this License, you have + permission to link or combine any covered work with a work licensed + under version 3 of the GNU General Public License into a single + combined work, and to convey the resulting work. The terms of this + License will continue to apply to the part which is the covered work, + but the work with which it is combined will remain governed by version + 3 of the GNU General Public License.

+ +

14. Revised Versions of this License.

+ +

The Free Software Foundation may publish revised and/or new versions of + the GNU Affero General Public License from time to time. Such new versions + will be similar in spirit to the present version, but may differ in detail to + address new problems or concerns.

+ +

Each version is given a distinguishing version number. If the + Program specifies that a certain numbered version of the GNU Affero General + Public License "or any later version" applies to it, you have the + option of following the terms and conditions either of that numbered + version or of any later version published by the Free Software + Foundation. If the Program does not specify a version number of the + GNU Affero General Public License, you may choose any version ever published + by the Free Software Foundation.

+ +

If the Program specifies that a proxy can decide which future + versions of the GNU Affero General Public License can be used, that proxy's + public statement of acceptance of a version permanently authorizes you + to choose that version for the Program.

+ +

Later license versions may give you additional or different + permissions. However, no additional obligations are imposed on any + author or copyright holder as a result of your choosing to follow a + later version.

+ +

15. Disclaimer of Warranty.

+ +

THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY + APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT + HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY + OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, + THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM + IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF + ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

+ +

16. Limitation of Liability.

+ +

IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING + WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS + THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY + GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE + USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF + DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD + PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), + EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF + SUCH DAMAGES.

+ +

17. Interpretation of Sections 15 and 16.

+ +

If the disclaimer of warranty and limitation of liability provided + above cannot be given local legal effect according to their terms, + reviewing courts shall apply local law that most closely approximates + an absolute waiver of all civil liability in connection with the + Program, unless a warranty or assumption of liability accompanies a + copy of the Program in return for a fee.

+ +

END OF TERMS AND CONDITIONS

+ +

How to Apply These Terms to Your New Programs

+ +

If you develop a new program, and you want it to be of the greatest + possible use to the public, the best way to achieve this is to make it + free software which everyone can redistribute and change under these terms.

+ +

To do so, attach the following notices to the program. It is safest + to attach them to the start of each source file to most effectively + state the exclusion of warranty; and each file should have at least + the "copyright" line and a pointer to where the full notice is found.

+ +

<one line to give the program's name and a brief idea of what it does.> + Copyright © <%= info %>

+ +

This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version.

+ +

This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details.

+ +

You should have received a copy of the GNU Affero General Public License + along with this program. If not, see <https://www.gnu.org/licenses/>.

Also add information on how to contact you by electronic and paper mail.

+ +

If your software can interact with users remotely through a computer + network, you should also make sure that it provides a way for users to + get its source. For example, if your program is a web application, its + interface could display a "Source" link that leads users to an archive + of the code. There are many ways you could offer source, and different + solutions will be better for different programs; see section 13 for the + specific requirements.

+ +

You should also get your employer (if you work as a programmer) or school, + if any, to sign a "copyright disclaimer" for the program, if necessary. + For more information on this, and how to apply and follow the GNU AGPL, see + <https://www.gnu.org/licenses/>.

<% include components/footer %> diff --git a/package.json b/package.json index 468c28dd..3419d253 100644 --- a/package.json +++ b/package.json @@ -35,11 +35,13 @@ }, "devDependencies": { "@types/compression": "^0.0.36", + "@types/css": "^0.0.31", "@types/express": "^4.16.1", "@types/express-minify": "^0.1.34", "@types/md5": "^2.1.33", "@types/tmp": "^0.1.0", "@typescript-eslint/eslint-plugin": "^1.9.0", + "css": "^2.2.4", "eslint": "^5.16.0", "eslint-config-google": "^0.13.0", "ts-node-dev": "^1.0.0-pre.39" diff --git a/server.ts b/server.ts index 6084c5c1..eddd6c1b 100644 --- a/server.ts +++ b/server.ts @@ -68,7 +68,11 @@ app.post('/', (req, res) => { repo: "mit-license", path: `users/${params[0]}.json`, message: `Automated creation of user ${params[0]}.`, - content: btoa() + content: btoa(), + committer: { + name: "MIT License Bot", + email: "remy@leftlogic.com" + } }) }) diff --git a/test.js b/test.js index dcda76ae..b1272c09 100644 --- a/test.js +++ b/test.js @@ -2,14 +2,48 @@ const path = require('path') const fs = require('fs') +const CSS = require('css') +let errored = false + const users = fs.readdirSync('users') users.forEach(async user => { - try { - const content = fs.readFileSync(path.join('users', user), "utf8") - JSON.parse(content) - } catch (e) { - console.error(`Invalid JSON in file: ${user} (${e})`) - process.exit(1) + if (user.endsWith("json")) { + fs.readFile(path.join('users', user), "utf8", async (err, content) => { + if (err) { + errored = true + console.error(`Unable to read ${user}`) + } else { + try { + JSON.parse(content) + } catch (e) { + errored = true + console.error(`Invalid JSON in file: ${user} (${e})`) + } + } + }) + } else { + errored = true + console.error(`${user} is not a json file`) } }) -console.log("All JSON valid!") + +const themes = fs.readdirSync('themes') +themes.forEach(async theme => { + if (theme.endsWith("css")) { + fs.readFile(path.join('themes', theme), "utf8", async (err, content) => { + if (err) { + errored = true + console.error(`Unable to read ${theme}`) + } else { + try { + CSS.parse(content) + } catch (e) { + errored = true + console.error(`Invalid CSS in file: ${theme} (${e})`) + } + } + }) + } +}) + +if (errored) process.exit(1) diff --git a/themes/eula-modern.css b/themes/eula-modern.css index f08c6ab4..40d4058a 100644 --- a/themes/eula-modern.css +++ b/themes/eula-modern.css @@ -131,7 +131,6 @@ footer a:visited { position: absolute; right: 0; border: 3px solid #ccc; - // top: 4.5em; z-index: 1; border-radius: 10px; } diff --git a/themes/solarized.css b/themes/solarized.css index 95208f5b..8b4d6b25 100644 --- a/themes/solarized.css +++ b/themes/solarized.css @@ -89,5 +89,3 @@ a:active, a:focus, a:hover { font-size: 2.5em } } - -sour diff --git a/users/gokhangunay b/users/gokhangunay deleted file mode 100644 index edf705b6..00000000 --- a/users/gokhangunay +++ /dev/null @@ -1 +0,0 @@ -{"copyright":"Gökhan GÜNAY","url":"http://github.com/gokhangunay","theme":"ecijol","gravatar": true} diff --git a/users/gokhangunay.json b/users/gokhangunay.json new file mode 100644 index 00000000..f26ddbbb --- /dev/null +++ b/users/gokhangunay.json @@ -0,0 +1,6 @@ +{ + "copyright": "Gökhan GÜNAY", + "url": "http://github.com/gokhangunay", + "theme": "ecijol", + "gravatar": true +} diff --git a/users/hatollint b/users/hatollint deleted file mode 100644 index 9485e37f..00000000 --- a/users/hatollint +++ /dev/null @@ -1,8 +0,0 @@ -{ - "copyright": "Hatollint, https://github.com/hatollint", - "url": "https://vk.com/keelvel", - "format": "txt", - "email": "hatollint@gmail.com", - "gravatar": true, - "theme" : "default" -} diff --git a/users/hatollint.json b/users/hatollint.json new file mode 100644 index 00000000..f8fc94e1 --- /dev/null +++ b/users/hatollint.json @@ -0,0 +1,8 @@ +{ + "copyright": "Hatollint, https://github.com/hatollint", + "url": "https://vk.com/keelvel", + "format": "txt", + "email": "hatollint@gmail.com", + "gravatar": true, + "theme": "default" +} diff --git a/users/jenish b/users/jenish deleted file mode 100644 index 99dfc079..00000000 --- a/users/jenish +++ /dev/null @@ -1,5 +0,0 @@ - -{ - "copyright": "Rakholiya Jenish", - "theme": "double-windsor" -} diff --git a/users/micxer.json-old b/users/micxer.json-old deleted file mode 100644 index 55c98088..00000000 --- a/users/micxer.json-old +++ /dev/null @@ -1 +0,0 @@ -{"copyright":"micxer","url":"http:\/\/micxer.de\/blog","email":"micxer@micxer.de","format":"html","theme":"double-windsor"} \ No newline at end of file diff --git a/users/mr-mostafa b/users/mr-mostafa deleted file mode 100644 index 58dbcf43..00000000 --- a/users/mr-mostafa +++ /dev/null @@ -1,8 +0,0 @@ -{ - "copyright": "Mostafa Rahmati, http://mrmostafa.ir", - "url": "http://mrmostafa.ir", - "email": "me@mrmostafa.ir", - "format": "html", - "gravatar": true, - "theme": "dusk" -} diff --git a/users/mr-mostafa.json b/users/mr-mostafa.json new file mode 100644 index 00000000..35b13695 --- /dev/null +++ b/users/mr-mostafa.json @@ -0,0 +1,8 @@ +{ + "copyright": "Mostafa Rahmati, http://mrmostafa.ir", + "url": "http://mrmostafa.ir", + "email": "me@mrmostafa.ir", + "format": "html", + "gravatar": true, + "theme": "dusk" +} diff --git a/users/pranjal b/users/pranjal deleted file mode 100644 index 21b2758e..00000000 --- a/users/pranjal +++ /dev/null @@ -1,6 +0,0 @@ -{ - "copyright": "Pranjal Rastogi, https://prankshaw.github.io/", - "url": "https://prankshaw.github.io/", - "email": "pranjalrastogi1998@gmail.com", - "gravatar": true -} diff --git a/users/pranjal.json b/users/pranjal.json new file mode 100644 index 00000000..449184c2 --- /dev/null +++ b/users/pranjal.json @@ -0,0 +1,6 @@ +{ + "copyright": "Pranjal Rastogi, https://prankshaw.github.io/", + "url": "https://prankshaw.github.io/", + "email": "pranjalrastogi1998@gmail.com", + "gravatar": true +} diff --git a/users/prankshaw b/users/prankshaw deleted file mode 100644 index a4fe109d..00000000 --- a/users/prankshaw +++ /dev/null @@ -1,6 +0,0 @@ -{ - "copyright": "Pranjal Rastogi, https://prankshaw.github.io/", - "url": "https://prankshaw.github.io/", - "email": "pranjalrastogi1998@gmail.com", - "theme": "8bits-monochrome-blue-white" -} diff --git a/users/prankshaw.json b/users/prankshaw.json new file mode 100644 index 00000000..c36eea5e --- /dev/null +++ b/users/prankshaw.json @@ -0,0 +1,6 @@ +{ + "copyright": "Pranjal Rastogi, https://prankshaw.github.io/", + "url": "https://prankshaw.github.io/", + "email": "pranjalrastogi1998@gmail.com", + "theme": "8bits-monochrome-blue-white" +} diff --git a/users/tristancode b/users/tristancode.json similarity index 100% rename from users/tristancode rename to users/tristancode.json diff --git a/yarn.lock b/yarn.lock index 7f1e207a4f69aee2aa49c041b51b19d408f27cc9..ff9c6cc1c0413e400751389801ca1e7a3c988d24 100644 GIT binary patch delta 229 zcmaF!gyZisjtxmda>>QT4siy0271PZN>*G73T3H9#hLke3QAzH$p;;ECMQU-+W?j6 z>*@nZU5Hw}lJqKNBV*I#Gz)`N6H80OM9UO&Gt0CTGZTX(lOzi>6O$x^L=!_}OAE`% z2k(eQM3fj;6jjSpWb4 From 549dbb9627d25feb5750ea6f8736174c41f2a9a7 Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Fri, 31 May 2019 23:19:18 +1200 Subject: [PATCH 13/53] Catch invalid copyright info and fix broken files --- test.js | 26 ++++++++++++++++---------- users/jesusurrutia.json | 2 +- 2 files changed, 17 insertions(+), 11 deletions(-) diff --git a/test.js b/test.js index b1272c09..7f21472c 100644 --- a/test.js +++ b/test.js @@ -6,18 +6,22 @@ const CSS = require('css') let errored = false const users = fs.readdirSync('users') -users.forEach(async user => { - if (user.endsWith("json")) { - fs.readFile(path.join('users', user), "utf8", async (err, content) => { +users.forEach(async (user) => { + if (user.endsWith('json')) { + fs.readFile(path.join('users', user), 'utf8', async (err, content) => { if (err) { errored = true console.error(`Unable to read ${user}`) } else { try { - JSON.parse(content) + const u = JSON.parse(content) + if (!u.locked && !u.copyright) { + errored = true + console.error(`Copyright not specified in ${user} (${e})`) + } } catch (e) { errored = true - console.error(`Invalid JSON in file: ${user} (${e})`) + console.error(`Invalid JSON in ${user} (${e})`) } } }) @@ -28,9 +32,9 @@ users.forEach(async user => { }) const themes = fs.readdirSync('themes') -themes.forEach(async theme => { - if (theme.endsWith("css")) { - fs.readFile(path.join('themes', theme), "utf8", async (err, content) => { +themes.forEach(async (theme) => { + if (theme.endsWith('css')) { + fs.readFile(path.join('themes', theme), 'utf8', async (err, content) => { if (err) { errored = true console.error(`Unable to read ${theme}`) @@ -39,11 +43,13 @@ themes.forEach(async theme => { CSS.parse(content) } catch (e) { errored = true - console.error(`Invalid CSS in file: ${theme} (${e})`) + console.error(`Invalid CSS in ${theme} (${e})`) } } }) } }) -if (errored) process.exit(1) +setTimeout(() => { + if (errored) process.exit(1) +}, 500) diff --git a/users/jesusurrutia.json b/users/jesusurrutia.json index d05ab4cb..65fbeca9 100644 --- a/users/jesusurrutia.json +++ b/users/jesusurrutia.json @@ -1,5 +1,5 @@ { - "copyright": "", + "copyright": "Jesús Urrutia", "url": "http://jesusurrutia.com", "email": "jesus.urrutia@gmail.com", "version": "html", From cd4dcaaf34e315e64d279c3eb3eeb497696f0d86 Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Fri, 31 May 2019 23:44:35 +1200 Subject: [PATCH 14/53] Add extra copyright, links in the copyright owner and year range --- .travis.yml | 5 +- README.md | 52 +++++------- licenses/0BSD.ejs | 2 +- licenses/AFL-3-0.ejs | 2 +- licenses/AGPL-3-0.ejs | 4 +- licenses/ISC.ejs | 2 +- licenses/MIT.ejs | 2 +- licenses/NCSA.ejs | 2 +- licenses/OFL.ejs | 2 +- licenses/UPL.ejs | 2 +- licenses/components/footer.ejs | 2 +- licenses/components/header.ejs | 7 +- package.json | 11 ++- robots.txt | 2 + server.ts | 146 ++++++++++++++++++++++++--------- users/example.json | 5 ++ users/localhost.json | 9 +- users/null.json | 5 ++ yarn.lock | Bin 144253 -> 145005 bytes 19 files changed, 169 insertions(+), 93 deletions(-) create mode 100644 robots.txt create mode 100644 users/example.json create mode 100644 users/null.json diff --git a/.travis.yml b/.travis.yml index aee51157..3a172df0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,4 +10,7 @@ before_install: npm i -g yarn install: yarn install -script: yarn test +script: + - yarn test + - yarn lint + - yarn build diff --git a/README.md b/README.md index 5c461a15..a28415f4 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,6 @@ Available fields: - email - format - gravatar -- version - theme ### copyright @@ -59,13 +58,29 @@ You can also use an array to hold multiple copyright holders: ```json { - "copyright": ["Remy Sharp (http://remysharp.com)", "Richie Bendall (https://richienb.github.io)"] + "copyright": ["Remy Sharp", "Richie Bendall"] } ``` Which will be formatted as: - Remy Sharp (http://remysharp.com) and Richie Bendall (https://richienb.github.io) + Remy Sharp and Richie Bendall + +If you additionally want to include a URL and email with each copyright holder, use objects in the array: + +```json +{ + "copyright": [{ + "name": "Remy Sharp, https://remysharp.com", + "url": "https://remysharp.com", + "email": "remy@remysharp.com" + }, { + "name": "Richie Bendall, https://www.richie-bendall.ml", + "url": "https://www.richie-bendall.ml", + "email": "richiebendall@gmail.com" + }] +} +``` ### url @@ -117,28 +132,6 @@ And if you want to show your gravatar, just add the `gravatar` boolean property: Note that the gravatar requires the email property. You also need to check the compatibility of the chosen theme. Currently, only the default theme supports Gravatar. -### License version targeting - -License version targeting allows you to link your MIT license to a specific revision in this project - therefore fixing it permanently to a specific license text. - -Though I don't expect the license text to change ever, this is just some extra assurance for you. - -Targeting requires the [sha from the license commit](https://github.com/remy/mit-license/commits/master/LICENSE.html). This can be specified on the URL (in your permalink) or in the JSON file. - -For example: (make sure to view-source) shows an older version of the LICENSE.html file (compared to the [latest version](http://rem.mit-license.org) - the older version didn't have the new themes). - -This can also be targeted in my JSON file: - -```json -{ - "copyright": "Remy Sharp, http://remysharp.com", - "url": "http://remysharp.com", - "version": "a526rbf7" -} -``` - -Note that if no version is supplied, the latest copy of the LICENSE.html will be displayed with your information included. - ### Themes If you've got an eye for design (or like me: not): you can contribute a theme by adding a CSS file to the `themes` directory. You can use the latest CSS technologies since they are automatically polyfilled. The default theme is simple and clean, but you can add your own as you like. @@ -198,13 +191,6 @@ The following types of requests can be made to this project: the json file (currently none specified on `rem`) - HTML - Text -- a526bf7ad1 version, HTML, or the - default format specified in the json file (again, none specified for - `rem` so defaults to HTML) -- a526bf7ad1 version, - HTML -- a526bf7ad1 version, - text The url also supports including a start year: @@ -212,7 +198,7 @@ The url also supports including a start year: show a license year range of 2009-2016 (2016 being the current year) - [http://rem.mit-license.org/2009-2010](http://rem.mit-license.org/2009-2010/) allows me to force the year range -- a526bf7ad1 version, with year range of 2009-2010 in plain text +- year range of 2009-2010 in plain text Finally, the url also supports pinning the year diff --git a/licenses/0BSD.ejs b/licenses/0BSD.ejs index 290691ac..21e00d8f 100644 --- a/licenses/0BSD.ejs +++ b/licenses/0BSD.ejs @@ -7,7 +7,7 @@
<%- gravatar %>

BSD Zero Clause License (0BSD)

-

Copyright © <%= info %>

+

Copyright © <%- info %>

Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted.

diff --git a/licenses/AFL-3-0.ejs b/licenses/AFL-3-0.ejs index d45d9b93..918ee59e 100644 --- a/licenses/AFL-3-0.ejs +++ b/licenses/AFL-3-0.ejs @@ -7,7 +7,7 @@
<%- gravatar %>

Academic Free License v3.0 (AFL-3.0)

-

Copyright © <%= info %>

+

Copyright © <%- info %>

This Academic Free License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the diff --git a/licenses/AGPL-3-0.ejs b/licenses/AGPL-3-0.ejs index faeda924..e1c449f5 100644 --- a/licenses/AGPL-3-0.ejs +++ b/licenses/AGPL-3-0.ejs @@ -7,7 +7,7 @@

<%- gravatar %>

GNU Affero General Public License (AGPL-3.0)

-

Copyright © <%= info %>

+

Copyright © <%- info %>

Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.

Preamble

@@ -634,7 +634,7 @@ the "copyright" line and a pointer to where the full notice is found.

<one line to give the program's name and a brief idea of what it does.> - Copyright © <%= info %>

+ Copyright © <%- info %>

This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published diff --git a/licenses/ISC.ejs b/licenses/ISC.ejs index 4b1b8695..0e6f7b8b 100644 --- a/licenses/ISC.ejs +++ b/licenses/ISC.ejs @@ -7,7 +7,7 @@

<%- gravatar %>

The ISC License (ISC)

-

Copyright © <%= info %>

+

Copyright © <%- info %>

Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above diff --git a/licenses/MIT.ejs b/licenses/MIT.ejs index f29c83a1..bcda400c 100644 --- a/licenses/MIT.ejs +++ b/licenses/MIT.ejs @@ -7,7 +7,7 @@

<%- gravatar %>

The MIT License (MIT)

-

Copyright © <%= info %>

+

Copyright © <%- info %>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal diff --git a/licenses/NCSA.ejs b/licenses/NCSA.ejs index 76d97885..03d68af5 100644 --- a/licenses/NCSA.ejs +++ b/licenses/NCSA.ejs @@ -7,7 +7,7 @@

<%- gravatar %>

NCSA Open Source License (NCSA)

-

Copyright © <%= info %>

+

Copyright © <%- info %>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files diff --git a/licenses/OFL.ejs b/licenses/OFL.ejs index e355c318..37905617 100644 --- a/licenses/OFL.ejs +++ b/licenses/OFL.ejs @@ -7,7 +7,7 @@

<%- gravatar %>

The SIL Open Font License (OFL)

-

Copyright © <%= info %>

+

Copyright © <%- info %>

This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: diff --git a/licenses/UPL.ejs b/licenses/UPL.ejs index 01948e90..025ff880 100644 --- a/licenses/UPL.ejs +++ b/licenses/UPL.ejs @@ -7,7 +7,7 @@

<%- gravatar %>

The Universal Permissive License (UPL)

-

Copyright © <%= info %>

+

Copyright © <%- info %>

Subject to the condition set forth below, permission is hereby granted to any person obtaining a copy of this software, associated documentation and/or data diff --git a/licenses/components/footer.ejs b/licenses/components/footer.ejs index 414ecfd1..2107f147 100644 --- a/licenses/components/footer.ejs +++ b/licenses/components/footer.ejs @@ -1,3 +1,3 @@

diff --git a/licenses/components/header.ejs b/licenses/components/header.ejs index 0b4f192d..290e278b 100644 --- a/licenses/components/header.ejs +++ b/licenses/components/header.ejs @@ -1,7 +1,10 @@ MIT License - - + + + + XzS|2%tsrFo~y-ViJ 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 literal 0 HcmV?d00001 diff --git a/package.json b/package.json index a3f1c47f..313a2178 100644 --- a/package.json +++ b/package.json @@ -1,59 +1,58 @@ { - "author": "Remy Sharp (http://remysharp.com/)", - "name": "mit-licence", - "description": "Hosted MIT License with details controlled through this repo", - "private": true, - "version": "1.0.0", - "repository": { - "type": "git", - "url": "git@github.com:remy/mit-license.git" - }, - "scripts": { - "build": "tsc server.ts", - "start": "ts-node-dev --respawn --transpileOnly --no-notify server.ts", - "serve": "yarn build && node server.js", - "test": "node test.js", - "lint": "eslint server.ts util.ts test.js --color" - }, - "bugs": { - "url": "https://github.com/remy/mit-license/issues" - }, - "license": "MIT", - "dependencies": { - "@octokit/rest": "^16.28.2", - "btoa": "^1.2.1", - "compression": "^1.7.4", - "dayjs": "^1.8.14", - "ejs": "^2.6.2", - "express": "^4.17.1", - "express-minify": "^1.0.0", - "git-pull": "^0.1.0", - "humanize-list": "^1.0.1", - "md5": "^2.2.1", - "node-html-parser": "^1.1.15", - "postcss-middleware": "^1.1.4", - "postcss-preset-env": "^6.6.0", - "tmp": "^0.1.0", - "typescript": "^3.5.2" - }, - "devDependencies": { - "@types/btoa": "^1.2.3", - "@types/compression": "^0.0.36", - "@types/css": "^0.0.31", - "@types/ejs": "^2.6.3", - "@types/express": "^4.17.0", - "@types/express-minify": "^0.1.34", - "@types/md5": "^2.1.33", - "@types/node": "^12.0.8", - "@types/tmp": "^0.1.0", - "@typescript-eslint/eslint-plugin": "^1.10.2", - "@typescript-eslint/parser": "^1.10.2", - "css": "^2.2.4", - "eslint": "^5.16.0", - "eslint-config-google": "^0.13.0", - "ts-node-dev": "^1.0.0-pre.40" - }, - "resolutions": { - "postcss-middleware/vinyl-fs/glob-stream/micromatch/braces": "^2.3.1" - } + "author": "Remy Sharp (http://remysharp.com/)", + "name": "mit-licence", + "description": "Hosted MIT License with details controlled through this repo", + "private": true, + "version": "2.0.0", + "main": "server.js", + "repository": { + "type": "git", + "url": "git@github.com:remy/mit-license.git" + }, + "engines": { + "node": "12" + }, + "scripts": { + "start": "node .", + "serve": "node server.js", + "test": "node test.js", + "lint": "eslint server.js middleware/*.js routes/*.js test.js --color" + }, + "bugs": { + "url": "https://github.com/remy/mit-license/issues" + }, + "license": "MIT", + "dependencies": { + "@octokit/rest": "^16.28.2", + "btoa": "^1.2.1", + "caniuse-lite": "^1.0.30000974", + "ejs": "^2.6.2", + "express": "^4.17.1", + "express-minify": "^1.0.0", + "md5": "^2.2.1", + "node-html-parser": "^1.1.15", + "postcss-middleware": "^1.1.4", + "postcss-preset-env": "^6.6.0", + "typescript": "^3.5.2" + }, + "devDependencies": { + "@types/btoa": "^1.2.3", + "@types/compression": "^0.0.36", + "@types/css": "^0.0.31", + "@types/ejs": "^2.6.3", + "@types/express": "^4.17.0", + "@types/express-minify": "^0.1.34", + "@types/md5": "^2.1.33", + "@types/node": "^12.0.8", + "@types/tmp": "^0.1.0", + "@typescript-eslint/eslint-plugin": "^1.10.2", + "@typescript-eslint/parser": "^1.10.2", + "css": "^2.2.4", + "eslint": "^5.16.0", + "eslint-plugin-node": "^9.1.0", + "ts-node-dev": "^1.0.0-pre.40" + }, + "resolutions": { + "postcss-middleware/vinyl-fs/glob-stream/micromatch/braces": "^2.3.1" + } } diff --git a/routes/get.js b/routes/get.js new file mode 100644 index 00000000..572cfd5c --- /dev/null +++ b/routes/get.js @@ -0,0 +1,93 @@ +const md5 = require('md5'); +const path = require('path'); +const { stripTags, escapeTags } = require('./utils'); + +function getCopyrightHTML(user, plain) { + let html = ''; + + const name = plain + ? user.name || user.copyright + : escapeTags(user.name || user.copyright); + + if (user.url) { + html = `${name}`; + } else { + html = name; + } + + if (user.email) { + html += ` <${ + plain ? user.email : escapeTags(user.email) + }>`; + } + + return html; +} + +module.exports = (req, res) => { + const { user, options } = res.locals; + let name; + let gravatar; + + // No error and valid + if (user.copyright) { + if (typeof user.copyright === 'string') { + name = getCopyrightHTML(user, options.format !== 'html'); + } else if (user.copyright.every(val => typeof val === 'string')) { + // Supports: ['Remy Sharp', 'Richie Bendall'] + name = user + .map(_ => (options.format !== 'html' ? _ : escapeTags(_))) + .join(', '); + } else { + name = user.copyright.map(getCopyrightHTML); + } + } + + if (user.gravatar && user.email) { + // Supports regular format + gravatar = `Profile image`; + } else if (typeof user.copyright[0] === 'object' && user.gravatar) { + // Supports multi-user format + gravatar = `Profile image`; + } + + const year = options.pinnedYear + ? options.pinnedYear + : [options.startYear, options.endYear].filter(Boolean).join('-'); + const license = (user.license || 'MIT').toLowerCase(); + const format = options.format || user.format || 'html'; + + const args = { + info: `${year} ${name}`, + theme: user.theme || 'default', + gravatar, + }; + + const filename = path.join(__dirname, '..', 'licenses', license); + req.app.render(filename, args, (error, content) => { + if (error) { + res.status(500).send(error); + return; + } + + if (format === 'txt') { + const plain = content.match(/
(.*)<\/article>/ms)[1]; + + res + .set('Content-Type', 'text/plain; charset=UTF-8') + .send(stripTags(plain).trim()); + return; + } + + if (format === 'html') { + res.send(content); + return; + } + + res.json({ ...user, ...options }); + }); +}; diff --git a/routes/post.js b/routes/post.js new file mode 100644 index 00000000..d7a93586 --- /dev/null +++ b/routes/post.js @@ -0,0 +1,106 @@ +const fs = require('fs'); +const path = require('path'); +const { promisify } = require('util'); +const access = promisify(fs.access); +const writeFile = promisify(fs.writeFile); +const btoa = require('btoa'); +var github = require('@octokit/rest')({ + // GitHub personal access token + auth: process.env.github_token, + // User agent with version from package.json + userAgent: 'mit-license v' + require(__dirname + '/../package.json').version, +}); + +function getUserData({ query, body }) { + // If query parameters provided + if (Object.keys(query).length > 0) return query; + // If the data parsed as {'{data: "value"}': ''} + const keys = Object.keys(body); + if (keys.length === 1 && !Object.values(body)[0]) return JSON.parse(keys[0]); + // Fallback + return body; +} + +const validDomain = s => /^[\w-_]+$/.test(s); + +// HTTP POST API +module.exports = async (req, res) => { + const { hostname } = req; + // Get different parts of hostname (example: remy.mit-license.org -> ['remy', 'mit-license', 'org']) + const params = hostname.split('.'); + + // This includes the copyright, year, etc. + const userData = getUserData(req); + + // If there isn't enough part of the hostname + if (params.length < 2) { + res.status(400).send('Please specify a subdomain in the URL.'); + return; + } + + // Extract the name from the URL + const id = params[0]; + + if (!validDomain(id)) { + // return a vague error intentionally + res + .status(400) + .send( + 'User already exists - to update values, please send a pull request on https://github.com/remy/mit-license' + ); + + return; + } + + // Check if the user file exists in the users directory + try { + const res = await access(path.join(__dirname, '..', 'users', `${id}.json`)); // will throw if doesn't exist + res + .status(409) + .send( + 'User already exists - to update values, please send a pull request on https://github.com/remy/mit-license' + ); + + return; + } catch (e) { + console.log(e); + // FIXME only allow file doesn't exist to continue + } + + // File doesn't exist + // If copyright property and key doesn't exist + if (!userData.copyright) { + res.status(400).send('JSON requires "copyright" property and value'); + return; + } + + try { + const success = await github.repos.createFile({ + owner: 'remy', + repo: 'mit-license', + path: `users/${id}.json`, + message: `Automated creation of user ${id}.`, + content: btoa(JSON.stringify(userData, 0, 2)), + committer: { + name: 'MIT License Bot', + email: 'remy@leftlogic.com', + }, + }); + + // TODO copy the user.json into the users/ directory, it'll work + writeFile( + `${__dirname}/../users/${id}.json`, + JSON.stringify(userData, 0, 2) + ); + + console.log(success); + res.status(201).send(`MIT license page created: https://${hostname}`); + } catch (err) { + console.log(err); + res + .status(502) + .send( + 'Unable to create new user - please send a pull request on https://github.com/remy/mit-license' + ); + } +}; diff --git a/routes/utils.js b/routes/utils.js new file mode 100644 index 00000000..9a0ae698 --- /dev/null +++ b/routes/utils.js @@ -0,0 +1,7 @@ +const tags = { + '<': '<', + '>': '>', + '&': '&', +}; +exports.escapeTags = str => (str || '').replace(/[<>&]/g, m => tags[m]); +exports.stripTags = str => (str || '').replace(/<(?:.|\n)*?>/gm, ''); diff --git a/server.js b/server.js new file mode 100644 index 00000000..75c4ec8e --- /dev/null +++ b/server.js @@ -0,0 +1,64 @@ +/* +IMPORTANT: Set the `github_token` environment variable to a personal access token + with at least the `public_repo` scope for the API. + +Server port: The `PORT` environment variable can also be set to control the port the server + should be hosted on. +*/ + +const express = require('express'); +const minify = require('express-minify'); +const postcssMiddleware = require('postcss-middleware'); +const tmpdir = require('os').tmpdir(); +const path = require('path'); +// License viewing + +// Server +var PORT = process.env.PORT || 8080; + +// Prepare application +const app = express(); +app.use(minify({ cache: tmpdir })); +app.set('views', path.join(__dirname, '/licenses')); +app.set('view engine', 'ejs'); + +// Setup static files +app.use('/robots.txt', express.static('robots.txt')); +app.use('/favicon.ico', express.static(`${__dirname}/favicon.ico`)); +app.use( + '/themes', + // postcssMiddleware({ + // plugins: [ + // require('postcss-preset-env')({ + // overrideBrowserslist: 'last 2 versions', + // stage: 0, + // }), + // ], + // src(req) { + // return path.join(__dirname, 'themes', req.path); + // }, + // }), + express.static('themes') +); + +// middleware + +// CORS +app.use(require('./middleware/cors')); +// Parse URL-encoded bodies (as sent by HTML forms) +app.use(express.urlencoded({ extended: true })); +// Parse JSON bodies (as sent by API clients) +app.use(express.json()); + +// capture the id from the subdomain +app.use(require('./middleware/load-user')); +app.use(require('./middleware/load-options')); + +// HTTP POST API +app.post('/', require('./routes/post')); +app.get('/*', require('./routes/get')); + +// Start listening for HTTP requests +app.listen(PORT, () => { + console.log(`🚀 on http://localhost:${PORT}`); +}); diff --git a/server.ts b/server.ts deleted file mode 100644 index abbc357f..00000000 --- a/server.ts +++ /dev/null @@ -1,286 +0,0 @@ -/* -IMPORTANT: Set the `github_token` environment variable to a personal access token - with at least the `public_repo` scope for the API. - -Server port: The `PORT` environment variable can also be set to control the port the server - should be hosted on. -*/ - -// Core -import * as path from 'path' -import * as fs from 'fs' - -// Server -const PORT = process.env.PORT || 80 -import express = require('express') -import compression = require('compression') -import minify = require('express-minify') -import postcssMiddleware = require('postcss-middleware') - -// License viewing -import * as ejs from 'ejs' -import { yearNow, stripTags, trimArray } from './util' -import * as HTML from 'node-html-parser' -import md5 = require('md5'); -import humanizeList from 'humanize-list' -import dayjs from 'dayjs' - -// License creation -import btoa = require('btoa') -import gitpull = require('git-pull') -const github = require('@octokit/rest')({ - // GitHub personal access token - auth: process.env.github_token, - - // User agent with version from package.json - userAgent: `mit-license v${require('./package.json').version}`, -}) - -// Helpers -const yearNow = dayjs().year() -const stripTags = (val: any) => val.replace(/<(?:.|\n)*?>/gm, '') -function trimArray(arr: any[]) { - // Example: trimArray(['', '', 'abc', '', 'abc', 'abc', '', '']) -> ["abc", "", "abc", "abc"] - const handleVal = (val: any) => { - if (val !== '') { - valPassed = true - return val - } - else if (!valPassed) return null - else return val - } - let valPassed = false - arr = arr.map(handleVal) - valPassed = false - arr = arr.reverse().map(handleVal) - return arr.reverse().filter((val) => val !== null) -} - -// Prepare application -const app = express() -app.use(compression()) -app.use(minify({ - cache: require('tmp').dirSync().name, -})) -app.set('view engine', 'ejs') - -// Setup static files -app.use('/robots.txt', express.static('robots.txt')) -app.use('/users', express.static('users')) -app.use('/themes', postcssMiddleware({ - plugins: [require('postcss-preset-env')({ browsers: '>= 0%', stage: 0 })], - src: (req) => path.join(__dirname, 'themes', req.path), -})) -app.use('/themes', express.static('themes')) -app.use('/favicon.ico', express.static(__dirname + '/favicon.ico')) - -// Allow CORS -app.use((_req, res, next) => { - res.header('Access-Control-Allow-Origin', '*') - res.header('Access-Control-Allow-Headers', 'Origin, X-Requested-With, Content-Type, Accept') - next() -}) - -// Parse URL-encoded bodies (as sent by HTML forms) -app.use(express.urlencoded({ extended: true })) - -// Parse JSON bodies (as sent by API clients) -app.use(express.json()) - -// HTTP POST API -app.post('/', (req, res) => { - // Get differnet parts of hostname (example: remy.mit-license.org -> ['remy', 'mit-license', 'org']) - const params = req.hostname.split('.') - - const conf = (() => { - // If query parameters provided - if (Object.keys(req.query).length > 0) return req.query - - // If the data parsed as {'{data: "value"}': ''} - const keys = Object.keys(req.body) - if (keys.length === 1 && !Object.values(req.body)[0]) return JSON.parse(keys[0]) - - // Fallback - return req.body - })() - - // If there isn't enough part of the hostname - if (params.length < 2) res.status(400).send('Please specify a subdomain in the URL.') - - // Extract the name from the URL - const name = params[0] - - // Check if the user file exists in the users directory - fs.access(path.join('users', `${name}.json`), fs.constants.F_OK, (err) => { - if (!err) { - // File already exists - res.status(409).send('User already exists - to update values, please send a pull request on https://github.com/remy/mit-license') - } else { - try { - // File doesn't exist - - // If copyright property and key doesn't exist - if (!conf.copyright) res.status(400).send(`JSON requires "copyright" property and value`) - else { - github.repos.createFile({ - owner: 'remy', - repo: 'mit-license', - path: `users/${params[0]}.json`, - message: `Automated creation of user ${params[0]}.`, - content: btoa(JSON.stringify(conf, null, 4)), - committer: { - name: 'MIT License Bot', - email: 'remy@leftlogic.com', - }, - }) - - gitpull(__dirname, (err: any, _consoleOutput: any) => { - if (err) { - res.status(502).send(`Unable to create new user - please send a pull request on https://github.com/remy/mit-license`) - } else { - res.status(201).send(`MIT license page created: https://${req.hostname}`) - } - }) - } - } catch (e) { - res.status(502).send(`Unable to create new user - please send a pull request on https://github.com/remy/mit-license`) - } - } - }) -}) - -// Any other HTTP GET request -app.get('*', (req, res) => { - // Get user id (example: 'rem.mit-license.org/@2019' -> 'rem') - const id = req.hostname.split('.')[0] - - // Get params (example: 'rem.mit-license.org/@2019' -> ['@2019']) - const params = req.path.split('/') - params.shift() - - // Load the user data (example: from 'rem.mit-license.org/@2019' -> 'users/rem.json') - fs.readFile(path.join('users', `${id}.json`), 'utf8', (err, data: string) => { - let name: string; let theme: string; let gravatar: string - const user = JSON.parse(data || '{}') - // If error opening - if (err) { - if (err.code !== 'ENOENT') { - // Error is not "File not found" - res.status(500).end() - return - } - } else if (!user.locked && user.copyright) { - // No error and valid - name = (() => { - if (typeof user.copyright === 'string') { - // Supports regular format - let template: string - - if (user.url) template = `${user.copyright}` - else template = user.copyright - - if (user.email) template += ` <${user.email}>` - - return template - } else if (user.copyright.every((val: any) => typeof val === 'string')) { - // Supports: ['Remy Sharp', 'Richie Bendall'] - return humanizeList(user) - } else { - /* - Supports: - [{ - "name": "Remy Sharp, https://remysharp.com", - "url": "https://remysharp.com", - "email": "remy@remysharp.com" - },{ - "name": "Richie Bendall, https://www.richie-bendall.ml", - "url": "https://www.richie-bendall.ml", - "email": "richiebendall@gmail.com", - }] - */ - let template: string - - return humanizeList(user.copyright.map((val) => { - if (val.url) template = `${val.name}` - else template = val.copyright - - if (val.email) template += ` <${val.email}>` - - return template - })) - } - })() - - theme = user.theme - - gravatar = (() => { - if (user.gravatar && user.email) { - // Supports regular format - return `Profile image` - } - else if (typeof user.copyright[0] === 'object' && user.gravatar) { - // Supports mutli-user format - return `Profile image` - } - else return '' - })() - } - - const year = (() => { - // rem.mit-license.org/@2019 - const customYear = params.find((val) => val.startsWith('@')) - - // rem.mit-license.org/2019 - const fromYear = params.find((val) => !isNaN(parseInt(val.replace('-', '')))) - - // rem.mit-license.org/2018-2019 - const rangeYear = params.find((val) => val.split('-').length === 2) - - // If current year - if (customYear) return customYear.replace(/[@-]/g, '') - - // If range year - if (rangeYear) return rangeYear - - // If from year - if (fromYear) { - // If from year is same as current - if (parseInt(fromYear) === yearNow) return yearNow - - return `${fromYear.replace('-', '')}-${yearNow.toString().replace('-', '')}` - } - - return yearNow - })() - - const customLicense = params.find((val) => val.startsWith('+')) - const license = customLicense ? customLicense.replace('+', '') : user.license || 'MIT' - - const format = params.find((val) => val === 'license.html') ? 'html' : params.find((val) => val === 'license.txt') ? 'txt' : user.format || 'html' - - const args = { - info: `${year} ${name || '<copyright holders>'}`, - theme: theme || 'default', - gravatar, - } - - if (format === 'html') res.render(path.join(__dirname, 'licenses', license), args) - else { - ejs.renderFile(path.join(__dirname, 'licenses', `${license}.ejs`), args, (_err: any, str: string) => - res - .set('Content-Type', 'text/plain; charset=UTF-8') - .send( - trimArray( - stripTags(HTML.parse(str).childNodes[0].childNodes[3].childNodes[1].toString()) - .split('\n') - .map((val: string) => val.trim()) - ) - .join('\n') - ) - ) - } - }) -}) - -// Start listening for HTTP requests -app.listen(PORT) diff --git a/test.js b/test.js index 82b4a38d..b704080d 100644 --- a/test.js +++ b/test.js @@ -1,60 +1,60 @@ #!/bin/env node -const path = require('path') -const fs = require('fs') -const CSS = require('css') -let errored = false +const path = require('path'); +const fs = require('fs'); +const CSS = require('css'); +let errored = false; -const users = fs.readdirSync('users') -users.forEach(async (user) => { - if (user.endsWith('json')) { - if (encodeURIComponent(user) === user) { - fs.readFile(path.join('users', user), 'utf8', async (err, content) => { - if (err) { - errored = true - console.error(`Unable to read ${user}`) - } else { - try { - const u = JSON.parse(content) - if (!u.locked && !u.copyright) { - errored = true - console.error(`Copyright not specified in ${user} (${e})`) - } - } catch (e) { - errored = true - console.error(`Invalid JSON in ${user} (${e})`) - } - } - }) +const users = fs.readdirSync('users'); +users.forEach(async user => { + if (user.endsWith('json')) { + if (encodeURIComponent(user) === user) { + fs.readFile(path.join('users', user), 'utf8', async (err, content) => { + if (err) { + errored = true; + console.error(`Unable to read ${user}`); } else { - errored = true - console.error(`${user} is not URL safe`) - } - } else { - errored = true - console.error(`${user} is not a json file`) - } -}) - -const themes = fs.readdirSync('themes') -themes.forEach(async (theme) => { - if (theme.endsWith('css')) { - fs.readFile(path.join('themes', theme), 'utf8', async (err, content) => { - if (err) { - errored = true - console.error(`Unable to read ${theme}`) - } else { - try { - CSS.parse(content) - } catch (e) { - errored = true - console.error(`Invalid CSS in ${theme} (${e})`) - } + try { + const u = JSON.parse(content); + if (!u.locked && !u.copyright) { + errored = true; + console.error(`Copyright not specified in ${user} (${e})`); } - }) + } catch (e) { + errored = true; + console.error(`Invalid JSON in ${user} (${e})`); + } + } + }); + } else { + errored = true; + console.error(`${user} is not URL safe`); } -}) + } else { + errored = true; + console.error(`${user} is not a json file`); + } +}); + +const themes = fs.readdirSync('themes'); +themes.forEach(async theme => { + if (theme.endsWith('css')) { + fs.readFile(path.join('themes', theme), 'utf8', async (err, content) => { + if (err) { + errored = true; + console.error(`Unable to read ${theme}`); + } else { + try { + CSS.parse(content); + } catch (e) { + errored = true; + console.error(`Invalid CSS in ${theme} (${e})`); + } + } + }); + } +}); setTimeout(() => { - if (errored) process.exit(1) -}, 500) + if (errored) process.exit(1); +}, 500); diff --git a/tsconfig.json b/tsconfig.json deleted file mode 100644 index 8dd41b43..00000000 --- a/tsconfig.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "compilerOptions": { - "target": "es5", - "lib": ["es2017"], - "moduleResolution": "node", - "esModuleInterop": true, - "declaration": true, - "strict": true, - "sourceMap": true - } -} diff --git a/users/leftlogic.json b/users/leftlogic.json index bb3a59dd..19a9bf9a 100644 --- a/users/leftlogic.json +++ b/users/leftlogic.json @@ -1,4 +1,4 @@ { - "copyright": "Left Logic Ltd, http://leftlogic.com", - "url": "http://leftlogic.com" + "copyright": "Left Logic Ltd, http://leftlogic.com", + "url": "http://leftlogic.com" } diff --git a/yarn.lock b/yarn.lock deleted file mode 100644 index 7cc2dd8ada054675c6206e672026183ed661d751..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 159804 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 I)YP8>{D0ZXX2& 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 Date: Thu, 20 Jun 2019 20:43:12 +1200 Subject: [PATCH 26/53] fix: Remove .nvmrc, migrate to Yarn, use Travis-compatible node version Signed-off-by: Richie Bendall --- .nvmrc | 1 - package-lock.json | Bin 226578 -> 0 bytes package.json | 15 +++++---------- yarn.lock | Bin 0 -> 140843 bytes 4 files changed, 5 insertions(+), 11 deletions(-) delete mode 100644 .nvmrc delete mode 100644 package-lock.json create mode 100644 yarn.lock diff --git a/.nvmrc b/.nvmrc deleted file mode 100644 index 48082f72..00000000 --- a/.nvmrc +++ /dev/null @@ -1 +0,0 @@ -12 diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index 4637f0453cc634ae40bb94f8ed607fd146e89634..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 226578 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 diff --git a/package.json b/package.json index 313a2178..d80e8dfc 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "url": "git@github.com:remy/mit-license.git" }, "engines": { - "node": "12" + "node": ">=10.x.x" }, "scripts": { "start": "node .", @@ -25,15 +25,13 @@ "dependencies": { "@octokit/rest": "^16.28.2", "btoa": "^1.2.1", - "caniuse-lite": "^1.0.30000974", "ejs": "^2.6.2", "express": "^4.17.1", "express-minify": "^1.0.0", "md5": "^2.2.1", "node-html-parser": "^1.1.15", "postcss-middleware": "^1.1.4", - "postcss-preset-env": "^6.6.0", - "typescript": "^3.5.2" + "postcss-preset-env": "^6.6.0" }, "devDependencies": { "@types/btoa": "^1.2.3", @@ -44,15 +42,12 @@ "@types/express-minify": "^0.1.34", "@types/md5": "^2.1.33", "@types/node": "^12.0.8", - "@types/tmp": "^0.1.0", - "@typescript-eslint/eslint-plugin": "^1.10.2", - "@typescript-eslint/parser": "^1.10.2", "css": "^2.2.4", "eslint": "^5.16.0", - "eslint-plugin-node": "^9.1.0", - "ts-node-dev": "^1.0.0-pre.40" + "eslint-plugin-node": "^9.1.0" }, "resolutions": { - "postcss-middleware/vinyl-fs/glob-stream/micromatch/braces": "^2.3.1" + "postcss-middleware/vinyl-fs/glob-stream/micromatch/braces": "^2.3.1", + "caniuse-lite": "1.0.30000974" } } diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 0000000000000000000000000000000000000000..d352ecc494832256ed0cbb6e199ff9b4d1cefd43 GIT binary patch literal 140843 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 literal 0 HcmV?d00001 From a88b22819f842ce7cd4006e796b42b313204bf91 Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Thu, 20 Jun 2019 20:44:28 +1200 Subject: [PATCH 27/53] feat: Enforce 2 spaces and swap IntelliJ for VSCode in gitignore Signed-off-by: Richie Bendall --- .editorconfig | 14 ++++ .gitignore | 178 +++----------------------------------------------- 2 files changed, 22 insertions(+), 170 deletions(-) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..b219b5b7 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +# editorconfig.org + +root = true + +[*] +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +indent_style = space +indent_size = 2 + +[*.md] +trim_trailing_whitespace = false diff --git a/.gitignore b/.gitignore index 35330c21..211c5f18 100644 --- a/.gitignore +++ b/.gitignore @@ -1,89 +1,6 @@ -.vscode -# Created by https://www.gitignore.io/api/node,linux,macos,windows,intellij -# Edit at https://www.gitignore.io/?templates=node,linux,macos,windows,intellij - -### Intellij ### -# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm -# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 - -# User-specific stuff -.idea/**/workspace.xml -.idea/**/tasks.xml -.idea/**/usage.statistics.xml -.idea/**/dictionaries -.idea/**/shelf - -# Generated files -.idea/**/contentModel.xml - -# Sensitive or high-churn files -.idea/**/dataSources/ -.idea/**/dataSources.ids -.idea/**/dataSources.local.xml -.idea/**/sqlDataSources.xml -.idea/**/dynamic.xml -.idea/**/uiDesigner.xml -.idea/**/dbnavigator.xml - -# Gradle -.idea/**/gradle.xml -.idea/**/libraries - -# Gradle and Maven with auto-import -# When using Gradle or Maven with auto-import, you should exclude module files, -# since they will be recreated, and may cause churn. Uncomment if using -# auto-import. -# .idea/modules.xml -# .idea/*.iml -# .idea/modules - -# CMake -cmake-build-*/ - -# Mongo Explorer plugin -.idea/**/mongoSettings.xml - -# File-based project format -*.iws - -# IntelliJ -out/ - -# mpeltonen/sbt-idea plugin -.idea_modules/ - -# JIRA plugin -atlassian-ide-plugin.xml - -# Cursive Clojure plugin -.idea/replstate.xml - -# Crashlytics plugin (for Android Studio and IntelliJ) -com_crashlytics_export_strings.xml -crashlytics.properties -crashlytics-build.properties -fabric.properties - -# Editor-based Rest Client -.idea/httpRequests - -# Android studio 3.1+ serialized cache file -.idea/caches/build_file_checksums.ser - -# JetBrains templates -**___jb_tmp___ - -### Intellij Patch ### -# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 - -# *.iml -# modules.xml -# .idea/misc.xml -# *.ipr - -# Sonarlint plugin -.idea/sonarlint +# Created by https://www.gitignore.io/api/linux,macos,windows,visualstudiocode +# Edit at https://www.gitignore.io/?templates=linux,macos,windows,visualstudiocode ### Linux ### *~ @@ -128,91 +45,12 @@ Network Trash Folder Temporary Items .apdisk -### Node ### -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* -lerna-debug.log* +### VisualStudioCode ### +.vscode/* -# Diagnostic reports (https://nodejs.org/api/report.html) -report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json - -# Runtime data -pids -*.pid -*.seed -*.pid.lock - -# Directory for instrumented libs generated by jscoverage/JSCover -lib-cov - -# Coverage directory used by tools like istanbul -coverage - -# nyc test coverage -.nyc_output - -# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) -.grunt - -# Bower dependency directory (https://bower.io/) -bower_components - -# node-waf configuration -.lock-wscript - -# Compiled binary addons (https://nodejs.org/api/addons.html) -build/Release - -# Dependency directories -node_modules/ -jspm_packages/ - -# TypeScript v1 declaration files -typings/ - -# Optional npm cache directory -.npm - -# Optional eslint cache -.eslintcache - -# Optional REPL history -.node_repl_history - -# Output of 'npm pack' -*.tgz - -# Yarn Integrity file -.yarn-integrity - -# dotenv environment variables file -.env -.env.test - -# parcel-bundler cache (https://parceljs.org/) -.cache - -# next.js build output -.next - -# nuxt.js build output -.nuxt - -# vuepress build output -.vuepress/dist - -# Serverless directories -.serverless/ - -# FuseBox cache -.fusebox/ - -# DynamoDB Local files -.dynamodb/ +### VisualStudioCode Patch ### +# Ignore all local history of files +.history ### Windows ### # Windows thumbnail cache files @@ -239,4 +77,4 @@ $RECYCLE.BIN/ # Windows shortcuts *.lnk -# End of https://www.gitignore.io/api/node,linux,macos,windows,intellij +# End of https://www.gitignore.io/api/linux,macos,windows,visualstudiocode From 592e4939ae8123ef619d46f5eab2f25af3c76f88 Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Thu, 20 Jun 2019 21:41:31 +1200 Subject: [PATCH 28/53] feat: Add Node gitignore rules and .nvmrc exclusion --- .gitignore | 98 ++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 95 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 211c5f18..d4bf39d4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,8 @@ +# Node Version Manager configuration. +.nvmrc -# Created by https://www.gitignore.io/api/linux,macos,windows,visualstudiocode -# Edit at https://www.gitignore.io/?templates=linux,macos,windows,visualstudiocode +# Created by https://www.gitignore.io/api/node,linux,macos,windows,visualstudiocode +# Edit at https://www.gitignore.io/?templates=node,linux,macos,windows,visualstudiocode ### Linux ### *~ @@ -45,8 +47,98 @@ Network Trash Folder Temporary Items .apdisk +### Node ### +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* + +# Diagnostic reports (https://nodejs.org/api/report.html) +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# TypeScript v1 declaration files +typings/ + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variables file +.env +.env.test + +# parcel-bundler cache (https://parceljs.org/) +.cache + +# next.js build output +.next + +# nuxt.js build output +.nuxt + +# vuepress build output +.vuepress/dist + +# Serverless directories +.serverless/ + +# FuseBox cache +.fusebox/ + +# DynamoDB Local files +.dynamodb/ + ### VisualStudioCode ### .vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json ### VisualStudioCode Patch ### # Ignore all local history of files @@ -77,4 +169,4 @@ $RECYCLE.BIN/ # Windows shortcuts *.lnk -# End of https://www.gitignore.io/api/linux,macos,windows,visualstudiocode +# End of https://www.gitignore.io/api/node,linux,macos,windows,visualstudiocode From 24d6d10a0db9ffcb24b5a1eb63699cd215aa15f1 Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Fri, 21 Jun 2019 02:11:12 +1200 Subject: [PATCH 29/53] fix: Make sure Travis CI actually works and simplify some code --- .travis.yml | 1 - package.json | 7 ++++--- routes/get.js | 4 ++-- routes/post.js | 10 ++++++---- server.js | 27 +++++++++++++-------------- test.js | 2 -- yarn.lock | Bin 140843 -> 171237 bytes 7 files changed, 25 insertions(+), 26 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3a172df0..12cec136 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,4 +13,3 @@ install: yarn install script: - yarn test - yarn lint - - yarn build diff --git a/package.json b/package.json index d80e8dfc..e677f355 100644 --- a/package.json +++ b/package.json @@ -13,10 +13,10 @@ "node": ">=10.x.x" }, "scripts": { - "start": "node .", + "start": "nodemon .", "serve": "node server.js", "test": "node test.js", - "lint": "eslint server.js middleware/*.js routes/*.js test.js --color" + "lint": "eslint server.js middleware/*.js routes/*.js --color" }, "bugs": { "url": "https://github.com/remy/mit-license/issues" @@ -44,7 +44,8 @@ "@types/node": "^12.0.8", "css": "^2.2.4", "eslint": "^5.16.0", - "eslint-plugin-node": "^9.1.0" + "eslint-plugin-node": "^9.1.0", + "nodemon": "^1.19.1" }, "resolutions": { "postcss-middleware/vinyl-fs/glob-stream/micromatch/braces": "^2.3.1", diff --git a/routes/get.js b/routes/get.js index 572cfd5c..9a7447dd 100644 --- a/routes/get.js +++ b/routes/get.js @@ -18,7 +18,7 @@ function getCopyrightHTML(user, plain) { if (user.email) { html += ` <${ plain ? user.email : escapeTags(user.email) - }>`; + }>`; } return html; @@ -58,7 +58,7 @@ module.exports = (req, res) => { const year = options.pinnedYear ? options.pinnedYear : [options.startYear, options.endYear].filter(Boolean).join('-'); - const license = (user.license || 'MIT').toLowerCase(); + const license = (user.license || 'MIT').toUpperCase(); const format = options.format || user.format || 'html'; const args = { diff --git a/routes/post.js b/routes/post.js index d7a93586..a7e92585 100644 --- a/routes/post.js +++ b/routes/post.js @@ -8,7 +8,7 @@ var github = require('@octokit/rest')({ // GitHub personal access token auth: process.env.github_token, // User agent with version from package.json - userAgent: 'mit-license v' + require(__dirname + '/../package.json').version, + userAgent: 'mit-license v' + require(path.join(__dirname, "..", "package.json")).version, }); function getUserData({ query, body }) { @@ -75,12 +75,14 @@ module.exports = async (req, res) => { } try { + const fileContent = JSON.stringify(userData, 0, 2) + const success = await github.repos.createFile({ owner: 'remy', repo: 'mit-license', path: `users/${id}.json`, message: `Automated creation of user ${id}.`, - content: btoa(JSON.stringify(userData, 0, 2)), + content: btoa(fileContent), committer: { name: 'MIT License Bot', email: 'remy@leftlogic.com', @@ -89,8 +91,8 @@ module.exports = async (req, res) => { // TODO copy the user.json into the users/ directory, it'll work writeFile( - `${__dirname}/../users/${id}.json`, - JSON.stringify(userData, 0, 2) + path.join(__dirname, "..", "users", `${id}.json`), + fileContent ); console.log(success); diff --git a/server.js b/server.js index 75c4ec8e..e54e495b 100644 --- a/server.js +++ b/server.js @@ -11,7 +11,6 @@ const minify = require('express-minify'); const postcssMiddleware = require('postcss-middleware'); const tmpdir = require('os').tmpdir(); const path = require('path'); -// License viewing // Server var PORT = process.env.PORT || 8080; @@ -27,21 +26,21 @@ app.use('/robots.txt', express.static('robots.txt')); app.use('/favicon.ico', express.static(`${__dirname}/favicon.ico`)); app.use( '/themes', - // postcssMiddleware({ - // plugins: [ - // require('postcss-preset-env')({ - // overrideBrowserslist: 'last 2 versions', - // stage: 0, - // }), - // ], - // src(req) { - // return path.join(__dirname, 'themes', req.path); - // }, - // }), + postcssMiddleware({ + plugins: [ + require('postcss-preset-env')({ + overrideBrowserslist: 'last 2 versions', + stage: 0, + }), + ], + src(req) { + return path.join(__dirname, 'themes', req.path); + }, + }), express.static('themes') ); -// middleware +// Middleware // CORS app.use(require('./middleware/cors')); @@ -50,7 +49,7 @@ app.use(express.urlencoded({ extended: true })); // Parse JSON bodies (as sent by API clients) app.use(express.json()); -// capture the id from the subdomain +// Capture the id from the subdomain app.use(require('./middleware/load-user')); app.use(require('./middleware/load-options')); diff --git a/test.js b/test.js index b704080d..66ab0151 100644 --- a/test.js +++ b/test.js @@ -1,5 +1,3 @@ -#!/bin/env node - const path = require('path'); const fs = require('fs'); const CSS = require('css'); diff --git a/yarn.lock b/yarn.lock index d352ecc494832256ed0cbb6e199ff9b4d1cefd43..d325659e33d84f6b7648935a6cd70672152d0682 100644 GIT binary patch delta 20826 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 &`ss^~UM#F7*-W`rFaf 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 Date: Fri, 21 Jun 2019 15:34:01 +1200 Subject: [PATCH 30/53] fix: Use nodemon in dev script instead of start Signed-off-by: Richie Bendall --- .gitignore | 4 ---- Procfile | 2 +- package.json | 3 ++- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index d4bf39d4..110bba10 100644 --- a/.gitignore +++ b/.gitignore @@ -135,10 +135,6 @@ typings/ ### VisualStudioCode ### .vscode/* -!.vscode/settings.json -!.vscode/tasks.json -!.vscode/launch.json -!.vscode/extensions.json ### VisualStudioCode Patch ### # Ignore all local history of files diff --git a/Procfile b/Procfile index 56b33d13..2be5f808 100644 --- a/Procfile +++ b/Procfile @@ -1 +1 @@ -web: yarn serve +web: yarn start diff --git a/package.json b/package.json index e677f355..a1b7f5ef 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,8 @@ "node": ">=10.x.x" }, "scripts": { - "start": "nodemon .", + "start": "node .", + "dev": "nodemon .", "serve": "node server.js", "test": "node test.js", "lint": "eslint server.js middleware/*.js routes/*.js --color" From 26e1505e45587f75904b985a002fbd5163ca0b6c Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Fri, 21 Jun 2019 15:37:18 +1200 Subject: [PATCH 31/53] chore: Update deps Signed-off-by: Richie Bendall --- yarn.lock | Bin 171237 -> 171254 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/yarn.lock b/yarn.lock index d325659e33d84f6b7648935a6cd70672152d0682..4eae059430023c17cecb225422af4d6dceef4ac3 100644 GIT binary patch delta 541 zcmW-dyKd7^0EXo!kl8r&owx6_7EGYn?rSIuG$dkdfH zSfj2rH2vO8(V&jka5?s>jroWzU99uvVx>6&y?MtR_A6dpHPi`J-d72~Y<9cWy4X&S zbrsu{H_=35!De&U_Yz4ld@Q636%^&n6GF6C_ z%~pt1GO|l-P^PJ!R(q8$FSMbq57Hgtmujwo^J1NE@#pSYZs4QVRQqsry*aw(PNm@Y z^H*Ww2NwxHf8)g0a4(2#3>9UUj35UgM`pm55eCS1REIJNJ9Kw7*$cM4G4BIbvAa{- zE6LQ s=(1MxyJ=PpV$b5?)s}n2DdEj`E*WmWat}A#E%zsN0F}+{KMsBR4-a~)?f?J) delta 511 zcmW;Gy^GUO003~J$kl>~gHjL<@y3+)z2xP+1RT8U$9>rJ+UBEaoszt~G)=Efn|`nU z0|!B(Hwf+ufFSDPDJLy;dRz4YK?DyfH2=l#*MX&8%J=jFBadmS&th zc$`b}nR~Z|0{r|e^XojhDm+iZw>fYPH%EeP$Pkewt^vBDgy;QHxrH>%jytqfug@cNI9@?Z zUAv{B9`u8#N6Z6(SXOi*JMH5BF$e@xJLpQ19?`>|IuS{zYEg@I${>NSbLsh(yPtme S#(~Xt%l$5FuKsd+@BRTYD5#16 From 3689c60f55d1f64a138be22fb962d6f8a4be7279 Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Fri, 21 Jun 2019 16:00:38 +1200 Subject: [PATCH 32/53] feat: Make server concurrent (multi-process) Signed-off-by: Richie Bendall --- server.js | 32 +++++++++++++++++++++++++------- 1 file changed, 25 insertions(+), 7 deletions(-) diff --git a/server.js b/server.js index e54e495b..65365793 100644 --- a/server.js +++ b/server.js @@ -5,19 +5,22 @@ IMPORTANT: Set the `github_token` environment variable to a personal access to Server port: The `PORT` environment variable can also be set to control the port the server should be hosted on. */ - const express = require('express'); const minify = require('express-minify'); const postcssMiddleware = require('postcss-middleware'); const tmpdir = require('os').tmpdir(); const path = require('path'); +const cluster = require('cluster'); +const numCPUs = require('os').cpus().length; // Server var PORT = process.env.PORT || 8080; // Prepare application const app = express(); -app.use(minify({ cache: tmpdir })); +app.use(minify({ + cache: tmpdir +})); app.set('views', path.join(__dirname, '/licenses')); app.set('view engine', 'ejs'); @@ -45,7 +48,9 @@ app.use( // CORS app.use(require('./middleware/cors')); // Parse URL-encoded bodies (as sent by HTML forms) -app.use(express.urlencoded({ extended: true })); +app.use(express.urlencoded({ + extended: true +})); // Parse JSON bodies (as sent by API clients) app.use(express.json()); @@ -57,7 +62,20 @@ app.use(require('./middleware/load-options')); app.post('/', require('./routes/post')); app.get('/*', require('./routes/get')); -// Start listening for HTTP requests -app.listen(PORT, () => { - console.log(`🚀 on http://localhost:${PORT}`); -}); +// If the current process is the main one +if (cluster.isMaster) { + // Create processes relative to amount of CPUs + Array.from({ + length: numCPUs + }, () => cluster.fork()); + + // When worker closed + cluster.on('exit', worker => { + console.log(`❌ Worker ${worker.process.pid} died.`); + }); +} else { + // Start listening for HTTP requests + app.listen(PORT, () => { + console.log(`🚀 on http://localhost:${PORT}`); + }); +} From 4f2825fcc7f178c0a147d3768f2937fc2f8567dd Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Fri, 21 Jun 2019 16:11:45 +1200 Subject: [PATCH 33/53] fix: Fix error when no user specified in hostname Signed-off-by: Richie Bendall --- routes/get.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/get.js b/routes/get.js index 9a7447dd..2893d6c3 100644 --- a/routes/get.js +++ b/routes/get.js @@ -48,7 +48,7 @@ module.exports = (req, res) => { gravatar = `Profile image`; - } else if (typeof user.copyright[0] === 'object' && user.gravatar) { + } else if (user.copyright && typeof user.copyright[0] === 'object' && user.gravatar) { // Supports multi-user format gravatar = `Profile image res.locals.user = JSON.parse(data)) + .catch(({code, message}) => { + if (code !== 'ENOENT') res.code(500).send(`An internal error occurred - open an issue on https://github.com/remy/mit-license with the following information: ${message}`) + }) + .finally(() => next()) }; diff --git a/routes/post.js b/routes/post.js index a7e92585..4624e321 100644 --- a/routes/post.js +++ b/routes/post.js @@ -1,6 +1,8 @@ const fs = require('fs'); const path = require('path'); -const { promisify } = require('util'); +const { + promisify +} = require('util'); const access = promisify(fs.access); const writeFile = promisify(fs.writeFile); const btoa = require('btoa'); @@ -11,7 +13,10 @@ var github = require('@octokit/rest')({ userAgent: 'mit-license v' + require(path.join(__dirname, "..", "package.json")).version, }); -function getUserData({ query, body }) { +function getUserData({ + query, + body +}) { // If query parameters provided if (Object.keys(query).length > 0) return query; // If the data parsed as {'{data: "value"}': ''} @@ -25,7 +30,9 @@ const validDomain = s => /^[\w-_]+$/.test(s); // HTTP POST API module.exports = async (req, res) => { - const { hostname } = req; + const { + hostname + } = req; // Get different parts of hostname (example: remy.mit-license.org -> ['remy', 'mit-license', 'org']) const params = hostname.split('.'); @@ -42,7 +49,7 @@ module.exports = async (req, res) => { const id = params[0]; if (!validDomain(id)) { - // return a vague error intentionally + // Return a vague error intentionally res .status(400) .send( @@ -53,56 +60,46 @@ module.exports = async (req, res) => { } // Check if the user file exists in the users directory - try { - const res = await access(path.join(__dirname, '..', 'users', `${id}.json`)); // will throw if doesn't exist - res - .status(409) - .send( - 'User already exists - to update values, please send a pull request on https://github.com/remy/mit-license' - ); + access(path.join(__dirname, '..', 'users', `${id}.json`)) + .then(() => { + res + .status(409) + .send( + 'User already exists - to update values, please send a pull request on https://github.com/remy/mit-license' + ) + }) + .catch(({code, message}) => { + if (code !== 'ENOENT') { + res.code(500).send(`An internal error occurred - open an issue on https://github.com/remy/mit-license with the following information: ${message}`) + return; + } - return; - } catch (e) { - console.log(e); - // FIXME only allow file doesn't exist to continue - } + // File doesn't exist + // If copyright property and key doesn't exist + if (!userData.copyright) { + res.status(400).send('JSON requires "copyright" property and value'); + return; + } - // File doesn't exist - // If copyright property and key doesn't exist - if (!userData.copyright) { - res.status(400).send('JSON requires "copyright" property and value'); - return; - } + const fileContent = JSON.stringify(userData, 0, 2) - try { - const fileContent = JSON.stringify(userData, 0, 2) - - const success = await github.repos.createFile({ - owner: 'remy', - repo: 'mit-license', - path: `users/${id}.json`, - message: `Automated creation of user ${id}.`, - content: btoa(fileContent), - committer: { - name: 'MIT License Bot', - email: 'remy@leftlogic.com', - }, - }); - - // TODO copy the user.json into the users/ directory, it'll work - writeFile( - path.join(__dirname, "..", "users", `${id}.json`), - fileContent - ); - - console.log(success); - res.status(201).send(`MIT license page created: https://${hostname}`); - } catch (err) { - console.log(err); - res - .status(502) - .send( - 'Unable to create new user - please send a pull request on https://github.com/remy/mit-license' - ); - } + github.repos.createFile({ + owner: 'remy', + repo: 'mit-license', + path: `users/${id}.json`, + message: `Automated creation of user ${id}.`, + content: btoa(fileContent), + committer: { + name: 'MIT License Bot', + email: 'remy@leftlogic.com', + }, + }) + .then(() => writeFile( + path.join(__dirname, "..", "users", `${id}.json`), + fileContent + ) + .then(() => res.status(201).send(`MIT license page created: https://${hostname}`)) + .catch(() => res.status(500).send('Unable to create new user - please send a pull request on https://github.com/remy/mit-license')) + ) + }) }; From 042301995d7b7df0281c2580b2da5791d8254950 Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Fri, 21 Jun 2019 17:56:02 +1200 Subject: [PATCH 35/53] fix: Roll back multithreading Signed-off-by: Richie Bendall --- server.js | 23 ++++------------------- 1 file changed, 4 insertions(+), 19 deletions(-) diff --git a/server.js b/server.js index 65365793..34824383 100644 --- a/server.js +++ b/server.js @@ -10,8 +10,6 @@ const minify = require('express-minify'); const postcssMiddleware = require('postcss-middleware'); const tmpdir = require('os').tmpdir(); const path = require('path'); -const cluster = require('cluster'); -const numCPUs = require('os').cpus().length; // Server var PORT = process.env.PORT || 8080; @@ -62,20 +60,7 @@ app.use(require('./middleware/load-options')); app.post('/', require('./routes/post')); app.get('/*', require('./routes/get')); -// If the current process is the main one -if (cluster.isMaster) { - // Create processes relative to amount of CPUs - Array.from({ - length: numCPUs - }, () => cluster.fork()); - - // When worker closed - cluster.on('exit', worker => { - console.log(`❌ Worker ${worker.process.pid} died.`); - }); -} else { - // Start listening for HTTP requests - app.listen(PORT, () => { - console.log(`🚀 on http://localhost:${PORT}`); - }); -} +// Start listening for HTTP requests +app.listen(PORT, () => { + console.log(`🚀 on http://localhost:${PORT}`); +}); From 7f473b10f47918f46a8d202555e89e0b6d4512db Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Fri, 21 Jun 2019 19:55:00 +1200 Subject: [PATCH 36/53] a Signed-off-by: Richie Bendall --- .eslintrc.json | 18 ----------------- .gitignore | 2 ++ package.json | 55 -------------------------------------------------- 3 files changed, 2 insertions(+), 73 deletions(-) delete mode 100644 .eslintrc.json delete mode 100644 package.json diff --git a/.eslintrc.json b/.eslintrc.json deleted file mode 100644 index cd57d612..00000000 --- a/.eslintrc.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "env": { - "browser": true, - "es6": true, - "node": true - }, - "plugins": ["node"], - "extends": ["eslint:recommended", "plugin:node/recommended"], - "parserOptions": { - "ecmaVersion": 2018, - "sourceType": "module", - "warnOnUnsupportedTypeScriptVersion": false - }, - "rules": { - "node/no-deprecated-api": 0, - "no-console": 0 - } -} diff --git a/.gitignore b/.gitignore index 110bba10..bf9b59a1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ +/*.json + # Node Version Manager configuration. .nvmrc diff --git a/package.json b/package.json deleted file mode 100644 index a1b7f5ef..00000000 --- a/package.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "author": "Remy Sharp (http://remysharp.com/)", - "name": "mit-licence", - "description": "Hosted MIT License with details controlled through this repo", - "private": true, - "version": "2.0.0", - "main": "server.js", - "repository": { - "type": "git", - "url": "git@github.com:remy/mit-license.git" - }, - "engines": { - "node": ">=10.x.x" - }, - "scripts": { - "start": "node .", - "dev": "nodemon .", - "serve": "node server.js", - "test": "node test.js", - "lint": "eslint server.js middleware/*.js routes/*.js --color" - }, - "bugs": { - "url": "https://github.com/remy/mit-license/issues" - }, - "license": "MIT", - "dependencies": { - "@octokit/rest": "^16.28.2", - "btoa": "^1.2.1", - "ejs": "^2.6.2", - "express": "^4.17.1", - "express-minify": "^1.0.0", - "md5": "^2.2.1", - "node-html-parser": "^1.1.15", - "postcss-middleware": "^1.1.4", - "postcss-preset-env": "^6.6.0" - }, - "devDependencies": { - "@types/btoa": "^1.2.3", - "@types/compression": "^0.0.36", - "@types/css": "^0.0.31", - "@types/ejs": "^2.6.3", - "@types/express": "^4.17.0", - "@types/express-minify": "^0.1.34", - "@types/md5": "^2.1.33", - "@types/node": "^12.0.8", - "css": "^2.2.4", - "eslint": "^5.16.0", - "eslint-plugin-node": "^9.1.0", - "nodemon": "^1.19.1" - }, - "resolutions": { - "postcss-middleware/vinyl-fs/glob-stream/micromatch/braces": "^2.3.1", - "caniuse-lite": "1.0.30000974" - } -} From f0a7eb433f27812fb8237292d6b6c8f7e57bdcbb Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Fri, 21 Jun 2019 20:13:50 +1200 Subject: [PATCH 37/53] chore: Change promises back to await Signed-off-by: Richie Bendall --- middleware/load-user.js | 24 +++++---- routes/post.js | 81 ++++++++++++++++-------------- routes/utils.js | 1 + test.js | 106 +++++++++++++++++++++------------------- yarn.lock | Bin 171254 -> 171511 bytes 5 files changed, 115 insertions(+), 97 deletions(-) diff --git a/middleware/load-user.js b/middleware/load-user.js index a56f6e28..182567a7 100644 --- a/middleware/load-user.js +++ b/middleware/load-user.js @@ -10,17 +10,21 @@ module.exports = async (req, res, next) => { return next(); } - // otherwise load up the user json file + // Otherwise load up the user json file res.locals.user = { copyright: '', }; - readFile( - path.join(__dirname, '..', 'users', `${id}.json`), - 'utf8' - ) - .then(data => res.locals.user = JSON.parse(data)) - .catch(({code, message}) => { - if (code !== 'ENOENT') res.code(500).send(`An internal error occurred - open an issue on https://github.com/remy/mit-license with the following information: ${message}`) - }) - .finally(() => next()) + + try { + const data = await readFile( + path.join(__dirname, '..', 'users', `${id}.json`), + 'utf8' + ); + res.locals.user = JSON.parse(data); + } catch ({code, message}) { + res.code(500).send(`An internal error occurred - open an issue on https://github.com/remy/mit-license with the following information: ${message}`) + return; + } + + next(); }; diff --git a/routes/post.js b/routes/post.js index 4624e321..fc0cdf53 100644 --- a/routes/post.js +++ b/routes/post.js @@ -12,6 +12,7 @@ var github = require('@octokit/rest')({ // User agent with version from package.json userAgent: 'mit-license v' + require(path.join(__dirname, "..", "package.json")).version, }); +const { validDomainId } = require('./utils'); function getUserData({ query, @@ -26,8 +27,6 @@ function getUserData({ return body; } -const validDomain = s => /^[\w-_]+$/.test(s); - // HTTP POST API module.exports = async (req, res) => { const { @@ -48,7 +47,7 @@ module.exports = async (req, res) => { // Extract the name from the URL const id = params[0]; - if (!validDomain(id)) { + if (!validDomainId(id)) { // Return a vague error intentionally res .status(400) @@ -59,47 +58,53 @@ module.exports = async (req, res) => { return; } - // Check if the user file exists in the users directory - access(path.join(__dirname, '..', 'users', `${id}.json`)) - .then(() => { - res + try { + // Check if the user file exists in the users directory + await access(path.join(__dirname, '..', 'users', `${id}.json`)); + res .status(409) .send( 'User already exists - to update values, please send a pull request on https://github.com/remy/mit-license' ) + return; + } catch ({code, message}) { + if (code !== "ENOENT") { + res.code(500).send(`An internal error occurred - open an issue on https://github.com/remy/mit-license with the following information: ${message}`) + return; + } + } + + // File doesn't exist + // If copyright property and key doesn't exist + if (!userData.copyright) { + res.status(400).send('JSON requires "copyright" property and value'); + return; + } + + try { + const fileContent = JSON.stringify(userData, 0, 2) + + await github.repos.createFile({ + owner: 'remy', + repo: 'mit-license', + path: `users/${id}.json`, + message: `Automated creation of user ${id}.`, + content: btoa(fileContent), + committer: { + name: 'MIT License Bot', + email: 'remy@leftlogic.com', + }, }) - .catch(({code, message}) => { - if (code !== 'ENOENT') { - res.code(500).send(`An internal error occurred - open an issue on https://github.com/remy/mit-license with the following information: ${message}`) - return; - } - // File doesn't exist - // If copyright property and key doesn't exist - if (!userData.copyright) { - res.status(400).send('JSON requires "copyright" property and value'); - return; - } + writeFile( + path.join(__dirname, "..", "users", `${id}.json`), + fileContent + ); - const fileContent = JSON.stringify(userData, 0, 2) + res.status(201).send(`MIT license page created: https://${hostname}`); + } catch(err) { + res.status(500).send(`Unable to create new user - please send a pull request on https://github.com/remy/mit-license`) + } - github.repos.createFile({ - owner: 'remy', - repo: 'mit-license', - path: `users/${id}.json`, - message: `Automated creation of user ${id}.`, - content: btoa(fileContent), - committer: { - name: 'MIT License Bot', - email: 'remy@leftlogic.com', - }, - }) - .then(() => writeFile( - path.join(__dirname, "..", "users", `${id}.json`), - fileContent - ) - .then(() => res.status(201).send(`MIT license page created: https://${hostname}`)) - .catch(() => res.status(500).send('Unable to create new user - please send a pull request on https://github.com/remy/mit-license')) - ) - }) + next(); }; diff --git a/routes/utils.js b/routes/utils.js index 9a0ae698..3e78ed8b 100644 --- a/routes/utils.js +++ b/routes/utils.js @@ -5,3 +5,4 @@ const tags = { }; exports.escapeTags = str => (str || '').replace(/[<>&]/g, m => tags[m]); exports.stripTags = str => (str || '').replace(/<(?:.|\n)*?>/gm, ''); +exports.validDomainId = s => /^[\w-_]+$/.test(s); diff --git a/test.js b/test.js index 66ab0151..957dbd5c 100644 --- a/test.js +++ b/test.js @@ -1,58 +1,66 @@ const path = require('path'); const fs = require('fs'); const CSS = require('css'); +const { + validDomainId +} = require('./routes/utils'); +const { + promisify +} = require('util'); +const readFile = promisify(fs.readFile); +const readdir = promisify(fs.readdir); +const hasFlag = require('has-flag') + let errored = false; -const users = fs.readdirSync('users'); -users.forEach(async user => { - if (user.endsWith('json')) { - if (encodeURIComponent(user) === user) { - fs.readFile(path.join('users', user), 'utf8', async (err, content) => { - if (err) { - errored = true; - console.error(`Unable to read ${user}`); - } else { - try { - const u = JSON.parse(content); - if (!u.locked && !u.copyright) { - errored = true; - console.error(`Copyright not specified in ${user} (${e})`); - } - } catch (e) { - errored = true; - console.error(`Invalid JSON in ${user} (${e})`); - } - } - }); - } else { - errored = true; - console.error(`${user} is not URL safe`); - } - } else { - errored = true; - console.error(`${user} is not a json file`); - } -}); +function report(content, fix) { + errored = true; + console.error(content); + if (fix && hasFlag("--fix")) fix() +} -const themes = fs.readdirSync('themes'); -themes.forEach(async theme => { - if (theme.endsWith('css')) { - fs.readFile(path.join('themes', theme), 'utf8', async (err, content) => { - if (err) { - errored = true; - console.error(`Unable to read ${theme}`); - } else { - try { - CSS.parse(content); - } catch (e) { - errored = true; - console.error(`Invalid CSS in ${theme} (${e})`); - } +(async () => { + const users = await readdir('users'); + await users.forEach(async user => { + if (!user.endsWith('json')) report(`${user} is not a json file`, () => fs.unlink(path.join('users', user), () => {})) + if (!validDomainId(user.replace(".json", ""))) report(`${user} is not a valid domain id.`) + try { + const data = await readFile(path.join('users', user), "utf8") + try { + const u = JSON.parse(data); + if (!u.locked && !u.copyright) report(`Copyright not specified in ${user}`) + const stringified = JSON.stringify(u, 0, 2) + if (data !== stringified) report(`Non-regular formatting in ${user}`, () => fs.writeFile(path.join('users', user), stringified, () => {})) + } catch ({ + message + }) { + report(`Invalid JSON in ${user} (${message})`) } - }); - } -}); + } catch ({ + message + }) { + report(`Unable to read ${user} (${message})`) + } + }); -setTimeout(() => { + const themes = await readdir('themes'); + await themes.forEach(async theme => { + if (theme.endsWith('css')) { + try { + const data = await readFile(path.join('themes', theme), "utf8") + try { + CSS.parse(data); + } catch ({ + message + }) { + report(`Invalid CSS in ${theme} (${message})`) + } + } catch ({ + message + }) { + report(`Unable to read ${theme} (${message})`) + } + } + }); if (errored) process.exit(1); -}, 500); +})() diff --git a/yarn.lock b/yarn.lock index 4eae059430023c17cecb225422af4d6dceef4ac3..7527ce61e4114516b0b7702ca98aa3ec1606edb9 100644 GIT binary patch delta 182 zcmeyilk59#u7)j)tpY4*If?0$>&;!JUl3qqna(G`C}3owX8?pH=~c>>CMM?QhG{95 z$rgq{WMpQVY?5MTX<}$$W{{F-V3w3*YH4C_nKaq4S}d$G+bcvr(9k<8Bs{sKpdj7T zF+DBV-=M@htTZY#Dv$k05yFr+lsH^ Date: Fri, 21 Jun 2019 20:23:01 +1200 Subject: [PATCH 38/53] chore: Set the indent of all CSS and theme files back to Remy's recommendation, 2 spaces. --- themes/8bits-monochrome-amber.css | 126 +- themes/8bits-monochrome-blue-white.css | 126 +- themes/8bits-monochrome-green.css | 126 +- themes/8bits-monochrome-white.css | 126 +- themes/8bits-monochrome.css | 126 +- themes/afterdark.css | 62 +- themes/black-beauty.css | 92 +- themes/blackwood.css | 170 +- themes/cherry-white.css | 140 +- themes/cherry.css | 136 +- themes/default-dark.css | 88 +- themes/default.css | 98 +- themes/double-windsor.css | 90 +- themes/dusk.css | 142 +- themes/eula-modern.css | 158 +- themes/flesch.css | 58 +- themes/friendly.css | 100 +- themes/hacker.css | 6478 +++++++++---------- themes/hipster-gray.css | 380 +- themes/hmt-blue.css | 304 +- themes/magic-mint.css | 116 +- themes/material-amber.css | 172 +- themes/material-blue.css | 172 +- themes/material-brown.css | 172 +- themes/material-cyan.css | 172 +- themes/material-deep-orange.css | 172 +- themes/material-deep-purple.css | 172 +- themes/material-green.css | 172 +- themes/material-grey.css | 172 +- themes/material-indigo.css | 172 +- themes/material-light-blue.css | 172 +- themes/material-light-green.css | 172 +- themes/material-lime.css | 172 +- themes/material-orange.css | 172 +- themes/material-pink.css | 172 +- themes/material-purple.css | 172 +- themes/material-red.css | 172 +- themes/material-teal.css | 172 +- themes/material-yellow.css | 172 +- themes/material.css | 172 +- themes/mitserrat.css | 76 +- themes/open-sans.css | 64 +- themes/orange.css | 90 +- themes/page_gradient_linear.svg | 10 +- themes/page_gradient_radial.svg | 10 +- themes/plaintext.css | 4 +- themes/rokkitt.css | 82 +- themes/silver-style.css | 78 +- themes/solarized.css | 102 +- themes/willpower.css | 64 +- themes/xtansia.css | 86 +- users/1000ch.json | 8 +- users/10kb.json | 10 +- users/135yshr.json | 14 +- users/15minuteslate.json | 12 +- users/1natsu172.json | 12 +- users/1up.json | 10 +- users/2357gi.json | 10 +- users/284km.json | 8 +- users/2nate.json | 10 +- users/321maker.json | 10 +- users/360slider.json | 10 +- users/3846.json | 6 +- users/3846masa.json | 6 +- users/4soft.json | 4 +- users/4thace.json | 10 +- users/5310.json | 12 +- users/5509.json | 8 +- users/59.json | 8 +- users/59naga.json | 6 +- users/623hs.json | 8 +- users/6n38.json | 10 +- users/844196.json | 6 +- users/9joneg.json | 4 +- users/ArvinH.json | 12 +- users/BrentonCozby.json | 14 +- users/DanielArthurUK.json | 10 +- users/SITZ.json | 14 +- users/a-tech.json | 4 +- users/a.json | 10 +- users/aaaaaa.json | 10 +- users/aarjithn.json | 10 +- users/aaron.json | 4 +- users/aaroncaito.json | 10 +- users/aarontrostle.json | 12 +- users/aashutoshrathi.json | 12 +- users/aayush.json | 10 +- users/ab2d.json | 4 +- users/abas.json | 14 +- users/abensur.json | 8 +- users/abhisekp.json | 10 +- users/abhshkdz.json | 10 +- users/abitgone.json | 12 +- users/abnersajr.json | 10 +- users/abovethewater.json | 10 +- users/abrambleninja.json | 6 +- users/abs.json | 10 +- users/abuasmaa.json | 4 +- users/abulava.json | 10 +- users/ac.json | 8 +- users/acaua.json | 8 +- users/acenode.json | 10 +- users/achilles.json | 10 +- users/achun.json | 4 +- users/aclemen1.json | 10 +- users/acolchado.json | 4 +- users/acollington.json | 10 +- users/adafruit.json | 4 +- users/adam-lynch.json | 10 +- users/adam.json | 12 +- users/adamh.json | 6 +- users/adampritchard.json | 4 +- users/adamreeve.json | 8 +- users/adamroberts.json | 4 +- users/adi.json | 6 +- users/aditya.json | 10 +- users/adjohnson916.json | 6 +- users/adopi.json | 8 +- users/adr1enbe4udou1n.json | 10 +- users/adtaylor.json | 6 +- users/adthul.json | 10 +- users/adultlink.json | 10 +- users/ael.json | 6 +- users/aen.json | 4 +- users/aendrew.json | 8 +- users/aereal.json | 8 +- users/aergonaut.json | 6 +- users/aetheris.json | 6 +- users/af.json | 12 +- users/afein.json | 6 +- users/afghah.json | 4 +- users/afiore.json | 4 +- users/afonsof.json | 12 +- users/agentmilindu.json | 12 +- users/agnium.json | 12 +- users/ago6e.json | 8 +- users/ahaasler.json | 14 +- users/aheissenberger.json | 4 +- users/ahluntang.json | 10 +- users/ahmet.json | 8 +- users/ahsanhabib.json | 4 +- users/ai-create-team.json | 8 +- users/aike.json | 6 +- users/ailen0ada.json | 6 +- users/airtonix.json | 10 +- users/aj9.json | 6 +- users/ajay.json | 4 +- users/ajaykarwal.json | 10 +- users/ajenjo.json | 12 +- users/ajmal.json | 6 +- users/ajmichael.json | 6 +- users/ajsquared.json | 10 +- users/ak.json | 4 +- users/akash.json | 10 +- users/akervern.json | 4 +- users/akizor.json | 12 +- users/akkartik.json | 4 +- users/akky.json | 4 +- users/aknosis.json | 6 +- users/akshay.json | 4 +- users/akshaymhatre.json | 4 +- users/alberto.json | 12 +- users/albertofdzm.json | 12 +- users/albertogasparin.json | 4 +- users/alco.json | 4 +- users/alcore.json | 14 +- users/aldenquimby.json | 10 +- users/aldo.json | 10 +- users/aldoborrero.json | 4 +- users/ale.json | 10 +- users/aleksi.json | 4 +- users/alessioalex.json | 8 +- users/aleung.json | 8 +- users/alex.json | 4 +- users/alexaaronfrancisco.json | 4 +- users/alexander.json | 8 +- users/alexb.json | 8 +- users/alexgleason.json | 4 +- users/alexh.json | 10 +- users/alexluke.json | 8 +- users/alexowl.json | 14 +- users/ali-sdk.json | 10 +- users/ali.json | 10 +- users/alias.json | 10 +- users/alibabatajine.json | 10 +- users/aliel.json | 10 +- users/alimd.json | 12 +- users/alisch.json | 10 +- users/alisdair.json | 4 +- users/allthingssmitty.json | 10 +- users/almad.json | 12 +- users/alno.json | 8 +- users/alphawhy.json | 4 +- users/altun.json | 10 +- users/amaan.json | 4 +- users/amarlearning.json | 12 +- users/amiranda.json | 4 +- users/amitmerchant1990.json | 10 +- users/amjad.json | 12 +- users/analogj.json | 4 +- users/anant.json | 4 +- users/ancy.json | 8 +- users/and3k5.json | 4 +- users/andersonaguiar.json | 8 +- users/andre.json | 4 +- users/andreasonny.json | 12 +- users/andreif.json | 8 +- users/andreisebastianc.json | 8 +- users/andrel.json | 12 +- users/andreloureiro.json | 10 +- users/andrew.json | 8 +- users/andreyknupp.json | 10 +- users/andrezero.json | 10 +- users/androidnix.json | 10 +- users/andrsd.json | 12 +- users/andxyz.json | 10 +- users/andyedinborough.json | 4 +- users/andystubbs.json | 4 +- users/angrychimp.json | 12 +- users/angus.json | 4 +- users/angusm.json | 4 +- users/anish.json | 10 +- users/anishathalye.json | 10 +- users/ankur.json | 12 +- users/anmoljagetia.json | 10 +- users/anon.json | 14 +- users/anovsiradj.json | 10 +- users/anrodon.json | 10 +- users/anshul.json | 6 +- users/anthkris.json | 12 +- users/anthony.json | 12 +- users/antimatter15.json | 8 +- users/anton.json | 4 +- users/antonhalim.json | 10 +- users/antonholmgren.json | 10 +- users/antonio.json | 6 +- users/antonybailey.json | 10 +- users/anunay.json | 10 +- users/anuraj.json | 10 +- users/anwarjaved.json | 12 +- users/anze.json | 10 +- users/apnerve.json | 4 +- users/apollojustice.json | 12 +- users/aponxi.json | 12 +- users/apopelo.json | 4 +- users/appsattic.json | 8 +- users/apriendeau.json | 8 +- users/aps.json | 10 +- users/ar.json | 4 +- users/arashmilani.json | 12 +- users/ariporad.json | 10 +- users/arizzol.json | 4 +- users/arjun.json | 8 +- users/arlo.json | 6 +- users/armpit.json | 4 +- users/armujahid.json | 12 +- users/arnavroy.json | 10 +- users/arroxa.json | 6 +- users/artemave.json | 4 +- users/arthurfigueiredo.json | 10 +- users/arthurguy.json | 4 +- users/artnc.json | 4 +- users/aruhan.json | 4 +- users/arulrajnet.json | 10 +- users/arunoda.json | 4 +- users/arvid.json | 6 +- users/asante.json | 4 +- users/asbubam.json | 10 +- users/aschn.json | 4 +- users/asdbasjdbaskjd.json | 4 +- users/asdbjasbdja.json | 4 +- users/aseemk.json | 8 +- users/ashchan.json | 8 +- users/ashtonwar.json | 4 +- users/ask11.json | 8 +- users/askesian.json | 8 +- users/asolkar.json | 8 +- users/assefamaru.json | 14 +- users/astrocb.json | 14 +- users/ata.json | 8 +- users/atbox.json | 14 +- users/atelierbram.json | 8 +- users/atilafassina.json | 12 +- users/atran.json | 6 +- users/ats.json | 4 +- users/audreyr.json | 10 +- users/aus3ris.json | 10 +- users/aus3ys.json | 6 +- users/austegard.json | 8 +- users/austin.json | 10 +- users/avdaredevil.json | 12 +- users/avelino.json | 10 +- users/average-studios.json | 4 +- users/avidal.json | 10 +- users/avidenie.json | 10 +- users/avm99963.json | 12 +- users/awles.json | 12 +- users/axe312.json | 4 +- users/axelav.json | 10 +- users/axisthemes.json | 8 +- users/axot.json | 10 +- users/axross.json | 12 +- users/ayahya.json | 14 +- users/ayesh.json | 6 +- users/azamara.json | 6 +- users/azder.json | 8 +- users/azizur.json | 4 +- users/azlab.json | 4 +- users/azu.json | 6 +- users/b.json | 8 +- users/b4b4r07.json | 10 +- users/baenziger-hug.json | 10 +- users/bai.json | 6 +- users/baivong.json | 14 +- users/balbeko.json | 10 +- users/bamorim.json | 10 +- users/bankfacil.json | 6 +- users/banyan.json | 10 +- users/bardi.json | 10 +- users/barnik.json | 6 +- users/bartaz.json | 4 +- users/bat.json | 4 +- users/batu.json | 8 +- users/bauglir.json | 10 +- users/bazilio.json | 12 +- users/bbuecherl.json | 12 +- users/bcse.json | 8 +- users/bdukes.json | 6 +- users/bear.json | 10 +- users/becevka.json | 12 +- users/bee.json | 8 +- users/beedaan.json | 10 +- users/beingtomgreen.json | 10 +- users/beintoo.json | 8 +- users/belldandu.json | 10 +- users/beloi.json | 6 +- users/ben.json | 4 +- users/benatkin.json | 4 +- users/benbarber.json | 6 +- users/benizi.json | 6 +- users/benjie.json | 4 +- users/benniemosher.json | 4 +- users/bensarmiento.json | 10 +- users/benspotatoes.json | 10 +- users/berbaquero.json | 4 +- users/berngfilho.json | 10 +- users/bescott.json | 10 +- users/beshr.json | 8 +- users/besson.json | 12 +- users/bethanyr.json | 10 +- users/betomuniz.json | 4 +- users/beyondweb.json | 6 +- users/bezoerb.json | 6 +- users/bfoxwell.json | 4 +- users/bh.json | 10 +- users/bharath063.json | 4 +- users/bigab.json | 4 +- users/bih.json | 8 +- users/bilger.json | 10 +- users/biomassives.json | 4 +- users/bipbop.json | 10 +- users/birdi.json | 12 +- users/birkof.json | 14 +- users/bitbonsai.json | 14 +- users/bitmxittz.json | 12 +- users/bjeanes.json | 10 +- users/blacklite.json | 12 +- users/blahah.json | 4 +- users/blake.json | 10 +- users/blaulan.json | 10 +- users/blazeworx.json | 10 +- users/blim.json | 4 +- users/blitzkraft.json | 10 +- users/blueberrystream.json | 12 +- users/blueimp.json | 6 +- users/blunderboy.json | 10 +- users/bmaeser.json | 6 +- users/bmelton.json | 4 +- users/bmintz.json | 6 +- users/boardintelligence.json | 8 +- users/bobby-tables.json | 6 +- users/bobuk.json | 8 +- users/bobylito.json | 6 +- users/boj.json | 10 +- users/boldoutlook.json | 10 +- users/bookworm.json | 4 +- users/boopathi.json | 10 +- users/boska.json | 8 +- users/bottom.json | 10 +- users/bowsersenior.json | 10 +- users/bozd4g.json | 12 +- users/bracke.json | 4 +- users/brandon.json | 10 +- users/brandonhimpfen.json | 10 +- users/brandtleymcminn.json | 14 +- users/brasil-js.json | 12 +- users/braziljs.json | 10 +- users/bregor.json | 8 +- users/brendon.json | 10 +- users/brenopolanski.json | 8 +- users/bretonics.json | 12 +- users/brian.json | 6 +- users/briancarr.json | 8 +- users/brianmhunt.json | 8 +- users/briba.json | 10 +- users/bricebou.json | 4 +- users/briends.json | 4 +- users/bripkens.json | 10 +- users/bro.json | 8 +- users/brummelte.json | 12 +- users/brunowego.json | 10 +- users/brutalhonesty.json | 8 +- users/bryan.json | 8 +- users/bsilivestru.json | 6 +- users/bubblecubestudios.json | 12 +- users/bucho.json | 6 +- users/buell.json | 10 +- users/bugsnag.json | 8 +- users/building-blocks.json | 4 +- users/burriep.json | 8 +- users/buttsex.json | 4 +- users/buzzdecafe.json | 4 +- users/bwht.json | 4 +- users/byjml.json | 10 +- users/byscripts.json | 10 +- users/c.json | 10 +- users/c0nfus3d.json | 14 +- users/c3.json | 4 +- users/c9s.json | 4 +- users/cabforward.json | 4 +- users/cactusjs.json | 8 +- users/caedes.json | 4 +- users/caio-ribeiro-pereira.json | 8 +- users/caius.json | 10 +- users/caleb.json | 10 +- users/calvert.json | 6 +- users/camspiers.json | 6 +- users/cantino.json | 6 +- users/cap11235.json | 4 +- users/caprinova.json | 8 +- users/caraya.json | 8 +- users/carlesm.json | 10 +- users/carlton.json | 6 +- users/carvalho.json | 8 +- users/casdr.json | 8 +- users/casey.json | 4 +- users/caseybecking.json | 10 +- users/cassianomon.json | 8 +- users/cb.json | 10 +- users/cboone.json | 8 +- users/cccheng.json | 10 +- users/cdipietro.json | 12 +- users/cedric-luthi.json | 6 +- users/cedx.json | 10 +- users/ceej.json | 14 +- users/cel.json | 10 +- users/cendaeg.json | 4 +- users/centerified.json | 8 +- users/ceottaki.json | 8 +- users/cesardenis.json | 14 +- users/cfarajpour.json | 4 +- users/cfddream.json | 10 +- users/cgack.json | 4 +- users/cgm.json | 10 +- users/cgrinds.json | 6 +- users/cheeaun.json | 6 +- users/cheer.json | 6 +- users/chehsun.json | 4 +- users/chehsunliu.json | 10 +- users/chevron.json | 14 +- users/chezou.json | 4 +- users/chh.json | 10 +- users/chiastolite.json | 4 +- users/chiayu.json | 10 +- users/chibicode.json | 4 +- users/chick307.json | 6 +- users/chilijung.json | 8 +- users/chilts.json | 10 +- users/chintan.json | 4 +- users/chocoby.json | 8 +- users/choly.json | 6 +- users/chris.json | 4 +- users/chrisdasie.json | 4 +- users/chrisdigital.json | 12 +- users/chrismayer.json | 6 +- users/christianbundy.json | 10 +- users/christianwenzel.json | 12 +- users/christopher.json | 4 +- users/christophermanning.json | 6 +- users/christophersu.json | 4 +- users/chromy.json | 10 +- users/chuckcarpenter.json | 6 +- users/chute.json | 10 +- users/chuyeow.json | 4 +- users/ciarand.json | 12 +- users/cicloid.json | 8 +- users/cipherdevelopment.json | 10 +- users/cisneiros.json | 14 +- users/citrusui.json | 8 +- users/cjpatoilo.json | 10 +- users/ck.json | 4 +- users/ckaznocha.json | 10 +- users/ckuijjer.json | 8 +- users/clarkeash.json | 14 +- users/claudiosanches.json | 8 +- users/claudiosmweb.json | 8 +- users/clayallsopp.json | 4 +- users/claylo.json | 12 +- users/cleargifltd.json | 4 +- users/cleentfaar.json | 4 +- users/clemenst.json | 4 +- users/clemos.json | 4 +- users/clinton.json | 12 +- users/clkao.json | 4 +- users/cloudgenius.json | 10 +- users/clu.json | 4 +- users/clvrobj.json | 8 +- users/cmtoomey.json | 8 +- users/cnord.json | 4 +- users/co-sche.json | 4 +- users/co.json | 4 +- users/cocoanaut.json | 14 +- users/codecafe.json | 4 +- users/codeclarity-jquerytools.json | 10 +- users/codeclarity.json | 10 +- users/codeclaritytm.json | 10 +- users/codeflyer.json | 8 +- users/codekoala.json | 10 +- users/codemaster.json | 10 +- users/codemaxx.json | 6 +- users/codeout.json | 6 +- users/coderarity.json | 8 +- users/codespaces.json | 8 +- users/codesquire.json | 14 +- users/cogsy.json | 8 +- users/colingourlay.json | 4 +- users/colinmarshall.json | 10 +- users/colinodell.json | 10 +- users/colken.json | 4 +- users/collin.json | 10 +- users/colstrom.json | 10 +- users/conradk.json | 10 +- users/constellation.json | 10 +- users/cookieo9.json | 6 +- users/coredumpcat.json | 6 +- users/cork-labs.json | 10 +- users/corpix.json | 4 +- users/cos.json | 12 +- users/cotapreco.json | 4 +- users/cotorusso.json | 10 +- users/couac.json | 4 +- users/couch.json | 10 +- users/count0.json | 6 +- users/couto.json | 10 +- users/coyotevz.json | 10 +- users/cpage.json | 8 +- users/cptmashek.json | 12 +- users/craveytrain.json | 6 +- users/creador.json | 6 +- users/creativepunch.json | 8 +- users/crossjs.json | 8 +- users/crosspop.json | 6 +- users/crunch.json | 4 +- users/cruz.json | 8 +- users/cryptographics.json | 10 +- users/cs.json | 4 +- users/csmacnz.json | 12 +- users/cssgalore.json | 10 +- users/csu.json | 4 +- users/ctchen.json | 8 +- users/ctiml.json | 6 +- users/cushon.json | 4 +- users/cvan.json | 4 +- users/cyril.json | 10 +- users/cziemba.json | 8 +- users/d-ash.json | 8 +- users/d.json | 10 +- users/d10.json | 6 +- users/d1p.json | 10 +- users/d3fkon.json | 12 +- users/d41d8cd98f00b204e9800998ecf8427e.json | 4 +- users/dacbarbos.json | 14 +- users/daimatz.json | 4 +- users/daishihmr.json | 8 +- users/damonoehlman.json | 8 +- users/dan.json | 12 +- users/dan9186.json | 8 +- users/dana.json | 14 +- users/danherbert.json | 4 +- users/danidemi.json | 12 +- users/daniel.json | 8 +- users/danielfurze.json | 12 +- users/danielgbullido.json | 12 +- users/daniellamb.json | 12 +- users/danielleining.json | 6 +- users/daniellmb.json | 12 +- users/danielpataki.json | 8 +- users/danieltorres.json | 4 +- users/daniguardiola.json | 12 +- users/danijelj.json | 10 +- users/danilobjr.json | 12 +- users/danilovaz.json | 10 +- users/danjarvis.json | 4 +- users/danreeves.json | 10 +- users/danro.json | 8 +- users/daramkun.json | 10 +- users/darnley.json | 8 +- users/darrennoble.json | 10 +- users/darthsim.json | 6 +- users/dartokloning.json | 8 +- users/das.json | 8 +- users/datawraith.json | 4 +- users/davejustice.json | 10 +- users/daveross.json | 10 +- users/davestern.json | 10 +- users/david.json | 4 +- users/davidcmoulton.json | 6 +- users/davidgovea.json | 10 +- users/davidsonfellipe.json | 8 +- users/davidzitting.json | 12 +- users/daviesgeek.json | 12 +- users/davisonio.json | 10 +- users/davoclavo.json | 4 +- users/dawneraq.json | 10 +- users/daxlab.json | 12 +- users/dayflower.json | 6 +- users/dayvsonlima.json | 8 +- users/dbohdan.json | 4 +- users/dcgauld.json | 4 +- users/dch.json | 10 +- users/dcronkite.json | 6 +- users/dcunited001.json | 14 +- users/dd.json | 4 +- users/ddd.json | 10 +- users/ddeaguiar.json | 6 +- users/ddl1st.json | 10 +- users/ddproxy.json | 10 +- users/deacalion.json | 12 +- users/deanlandolt.json | 10 +- users/decached.json | 4 +- users/decklin.json | 4 +- users/deecewan.json | 10 +- users/deefour.json | 14 +- users/deepak.json | 10 +- users/deeplysimple.json | 8 +- users/definedcode.json | 10 +- users/degree9.json | 4 +- users/dehnavi.json | 12 +- users/deif.json | 6 +- users/deirdre.json | 10 +- users/dejal.json | 6 +- users/dejay.json | 8 +- users/delicatebits.json | 8 +- users/delorean.json | 10 +- users/delphidabbler.json | 10 +- users/denbuzze.json | 4 +- users/denis.json | 4 +- users/denji.json | 14 +- users/derek-palmer.json | 12 +- users/derekahmedzai.json | 8 +- users/desandro.json | 8 +- users/designa.json | 10 +- users/deuxhuithuit.json | 10 +- users/dev-dipesh.json | 12 +- users/dev.json | 8 +- users/devan.json | 6 +- users/devgru.json | 8 +- users/devin.json | 8 +- users/devinus.json | 10 +- users/devssay.json | 8 +- users/dexafree.json | 4 +- users/dexterind.json | 10 +- users/deyvisonrocha.json | 8 +- users/dgoodlad.json | 8 +- users/dgt.json | 10 +- users/dh.json | 10 +- users/dhainzl.json | 12 +- users/dhaval.json | 14 +- users/dhavalkapil.json | 14 +- users/dhawal.json | 14 +- users/dhuyy.json | 8 +- users/dhyegofernando.json | 12 +- users/diadatp.json | 8 +- users/diessica.json | 12 +- users/digipars.json | 12 +- users/digitalnatives.json | 6 +- users/dimakovalevskyi.json | 12 +- users/disposaboy.json | 10 +- users/dissimile.json | 10 +- users/diti.json | 14 +- users/divyanshu.json | 14 +- users/djakobik.json | 4 +- users/djalmaaraujo.json | 10 +- users/djdch.json | 8 +- users/djohnson.json | 14 +- users/dkiyatkin.json | 12 +- users/dlambert.json | 8 +- users/dlukov.json | 10 +- users/dmcclccam.json | 10 +- users/dmg.json | 6 +- users/dmk.json | 4 +- users/dmorrison42.json | 4 +- users/dn.json | 10 +- users/dobtco.json | 4 +- users/dochang.json | 8 +- users/dog2puppy.json | 14 +- users/dogan.json | 4 +- users/doiio.json | 4 +- users/don.json | 4 +- users/dongilbert.json | 10 +- users/donortega.json | 6 +- users/donoskaro.json | 14 +- users/doossy.json | 10 +- users/dopppler.json | 8 +- users/dorian.json | 4 +- users/dotamir.json | 10 +- users/dougborg.json | 10 +- users/dougneiner.json | 6 +- users/dragonfly.json | 4 +- users/dreams.json | 6 +- users/dreamysource.json | 12 +- users/druznek.json | 6 +- users/drzax.json | 10 +- users/ds82.json | 10 +- users/dsc.json | 4 +- users/dsernst.json | 8 +- users/dshaw.json | 6 +- users/ducky.json | 12 +- users/duncanmcdougall.json | 10 +- users/dusong.json | 10 +- users/dva.json | 10 +- users/dvni.json | 8 +- users/dvrein.json | 12 +- users/dwettstein.json | 12 +- users/dwradcliffe.json | 6 +- users/dydx.json | 4 +- users/dylanthomas.json | 12 +- users/dym.json | 12 +- users/earaujoassis.json | 8 +- users/ebith.json | 4 +- users/echo.json | 8 +- users/eddiemonge.json | 6 +- users/eddywashere.json | 10 +- users/ederribeiro.json | 12 +- users/ederssouza.json | 12 +- users/edferras.json | 8 +- users/editorconfig.json | 8 +- users/edmondmajoriii.json | 12 +- users/edsurge.json | 4 +- users/eduan.json | 12 +- users/eduardorabelo.json | 12 +- users/eduardostuart.json | 12 +- users/eduncan911.json | 12 +- users/edvinas.json | 4 +- users/eek.json | 10 +- users/eeleater.json | 4 +- users/ef-labs.json | 10 +- users/efrainc.json | 12 +- users/efrea2004k.json | 14 +- users/efreak.json | 14 +- users/efreak2004.json | 14 +- users/efries.json | 4 +- users/egeriis.json | 10 +- users/eggforsale.json | 10 +- users/egoist.json | 14 +- users/ehealthafrica.json | 8 +- users/ehecatl.json | 4 +- users/ehsan.json | 12 +- users/eib.json | 6 +- users/einaru.json | 4 +- users/ekamil.json | 4 +- users/ekin.json | 4 +- users/elegwance.json | 4 +- users/elektronaut.json | 6 +- users/eleven.json | 8 +- users/elgook.json | 4 +- users/elifiner.json | 10 +- users/elim.json | 6 +- users/elisaado.json | 10 +- users/ellekasai.json | 4 +- users/elliotec.json | 4 +- users/ellis.json | 4 +- users/elmer.json | 12 +- users/elsknerd.json | 10 +- users/elsmore.json | 10 +- users/emabrey.json | 8 +- users/emanuelpessoa.json | 8 +- users/emberads.json | 6 +- users/emd.json | 8 +- users/emir.json | 12 +- users/emiw.json | 10 +- users/emma.json | 4 +- users/emmanuel.json | 4 +- users/endel-test.json | 12 +- users/endel.json | 10 +- users/ender.json | 10 +- users/endorama.json | 8 +- users/enfos.json | 14 +- users/englishtown.json | 10 +- users/enigmaticflare.json | 4 +- users/enov.json | 4 +- users/entist.json | 4 +- users/eoc-lover.json | 4 +- users/eoin.json | 10 +- users/erbesharat.json | 14 +- users/erbridge.json | 4 +- users/ere.json | 10 +- users/erfan.json | 14 +- users/ericcristhiano.json | 6 +- users/ericdouglas.json | 8 +- users/eriklindebratt.json | 8 +- users/erikvorhes.json | 10 +- users/erkobridee.json | 8 +- users/errordeveloper.json | 10 +- users/estupendo.json | 10 +- users/ether.json | 8 +- users/ethercycle.json | 4 +- users/evan.json | 4 +- users/evansolomon.json | 4 +- users/evenchange4.json | 12 +- users/evenellie.json | 8 +- users/evertton.json | 12 +- users/ew.json | 8 +- users/ewafford.json | 4 +- users/ewerton-araujo.json | 8 +- users/example.json | 8 +- users/expbytes.json | 4 +- users/eyecatchup.json | 10 +- users/f.json | 8 +- users/fabdouglas.json | 10 +- users/fabian.json | 10 +- users/fabianbeiner.json | 10 +- users/fabianmoronzirfas.json | 14 +- users/fabianperez.json | 4 +- users/fabiantheblind.json | 6 +- users/fabien.json | 4 +- users/fabioluciano.json | 14 +- users/fabryz.json | 4 +- users/facundofarias.json | 10 +- users/faeliaso.json | 4 +- users/fancyguy.json | 4 +- users/fanestra.json | 8 +- users/fannheyward.json | 12 +- users/fauzism.json | 10 +- users/fd.json | 8 +- users/fdavidcl.json | 6 +- users/fefc.json | 4 +- users/felipe.json | 6 +- users/felipefialho.json | 8 +- users/felix-schuetz.json | 10 +- users/felix.json | 10 +- users/felixsanz.json | 14 +- users/fendi.json | 12 +- users/fengmk2.json | 10 +- users/fenris-studios.json | 10 +- users/feross.json | 8 +- users/ff.json | 4 +- users/ffljjqbqvsywxqakpvdbwyqqyt.json | 4 +- users/ffljjqbqvsywxqakpvdbwyqqytt.json | 4 +- users/fgsdhkdfjghdksfgjsg.json | 4 +- users/fh.json | 14 +- users/fiber-miniapp.json | 4 +- users/fiber.json | 4 +- users/fibo.json | 6 +- users/filepang.json | 4 +- users/filipebarros.json | 6 +- users/filosottile.json | 12 +- users/fireball.json | 4 +- users/firebase.json | 8 +- users/fireflies.json | 10 +- users/firejune.json | 10 +- users/fitjs.json | 10 +- users/fixate.json | 8 +- users/fjellerup.json | 4 +- users/fjorgemota.json | 6 +- users/fka.json | 4 +- users/flat.json | 6 +- users/flattr.json | 8 +- users/fleeting.json | 8 +- users/flesch.json | 8 +- users/fletc3her.json | 10 +- users/flexd.json | 10 +- users/floppy.json | 10 +- users/florian.json | 8 +- users/floydpink.json | 12 +- users/flyjs.json | 4 +- users/fm.json | 4 +- users/foak.json | 10 +- users/foat.json | 10 +- users/foobar.json | 4 +- users/ford.json | 6 +- users/forresty.json | 4 +- users/forsvikgroup.json | 8 +- users/foss-haas.json | 10 +- users/fov.json | 6 +- users/fp.json | 4 +- users/fpcs.json | 10 +- users/fr.json | 4 +- users/francisbesset.json | 10 +- users/frebro.json | 8 +- users/fredi.json | 4 +- users/fredrik.json | 10 +- users/fredwu.json | 10 +- users/freewheel.json | 10 +- users/freewizard.json | 10 +- users/fremy.json | 10 +- users/frendon.json | 4 +- users/freshbox.json | 10 +- users/freshmade.json | 8 +- users/frickreich.json | 4 +- users/friedcell.json | 8 +- users/fristonio.json | 12 +- users/frozenskys.json | 12 +- users/frozzare.json | 8 +- users/frwrdnet.json | 12 +- users/fs.json | 10 +- users/fuckthebitch.json | 8 +- users/fujieda.json | 4 +- users/fujimoto.json | 10 +- users/fullaf.json | 4 +- users/functioncallback.json | 10 +- users/fusco.json | 10 +- users/futoase.json | 4 +- users/fwolf.json | 6 +- users/fyhuang.json | 10 +- users/g0nh1n.json | 14 +- users/g0v.json | 6 +- users/gabev.json | 8 +- users/gableroux.json | 10 +- users/gabriel.json | 8 +- users/gabrielecanepa.json | 8 +- users/gabrielgfa.json | 10 +- users/gabrielgodoy.json | 8 +- users/gabrielizaias.json | 12 +- users/gabrieljmj.json | 14 +- users/gabrielrcouto.json | 10 +- users/gabskoro.json | 10 +- users/gae-tap.json | 4 +- users/gamajo.json | 4 +- users/gammasoft.json | 12 +- users/gao.json | 6 +- users/gasolwu.json | 8 +- users/gauntlt.json | 6 +- users/gaurav.json | 10 +- users/gautam.json | 8 +- users/gavin.json | 4 +- users/gavinhungry.json | 8 +- users/gb.json | 4 +- users/gbleux.json | 6 +- users/gdqyn.json | 10 +- users/geeky.json | 4 +- users/genesislive.json | 14 +- users/georapbox.json | 14 +- users/georgerogers42.json | 4 +- users/georgeyue.json | 8 +- users/geota.json | 4 +- users/geovation.json | 4 +- users/gep13.json | 6 +- users/ger.json | 4 +- users/gersonthiago.json | 10 +- users/geta6.json | 6 +- users/getify.json | 12 +- users/gfk.json | 4 +- users/gggkiller.json | 14 +- users/ghedo.json | 4 +- users/gherlein.json | 10 +- users/ghozylab.json | 12 +- users/giancarlovillena.json | 8 +- users/gianu.json | 14 +- users/gibsjose.json | 14 +- users/gigony.json | 6 +- users/gilmoreorless.json | 8 +- users/gine.json | 6 +- users/ginger.json | 4 +- users/girvo.json | 4 +- users/girvo2.json | 6 +- users/github.json | 8 +- users/gkatsev.json | 10 +- users/gkralik.json | 14 +- users/gld1982ltd.json | 14 +- users/glsee.json | 4 +- users/glynford.json | 10 +- users/gmanricks.json | 8 +- users/gmph.json | 10 +- users/gogoout.json | 12 +- users/goji.json | 12 +- users/gojigeje.json | 12 +- users/gokaygurcan.json | 12 +- users/gokhangunay.json | 10 +- users/gokmen.json | 10 +- users/goldsborough.json | 8 +- users/goodybag.json | 10 +- users/googledrivewpmedia.json | 10 +- users/gordondiggs.json | 10 +- users/gossi.json | 6 +- users/gphofficial.json | 12 +- users/gpl.json | 6 +- users/gplv2.json | 6 +- users/gplv3.json | 6 +- users/graham.json | 8 +- users/grapestack.json | 10 +- users/grapevine.json | 10 +- users/grawity.json | 10 +- users/gre.json | 8 +- users/greatwizard.json | 14 +- users/green.json | 4 +- users/greenify.json | 14 +- users/gregarmer.json | 12 +- users/grekko.json | 14 +- users/greweb.json | 10 +- users/greyhoundforty.json | 4 +- users/greystate.json | 8 +- users/groenewege.json | 6 +- users/grvcoelho.json | 6 +- users/gryftir.json | 10 +- users/gsimard.json | 4 +- users/gtierney.json | 10 +- users/gtomitsuka.json | 4 +- users/gtrrz-victor.json | 14 +- users/gugod.json | 4 +- users/guicheffer.json | 12 +- users/guidokessels.json | 6 +- users/guilhermemarconi.json | 12 +- users/guilhermeprates.json | 4 +- users/gunar.json | 12 +- users/gus.json | 4 +- users/gustavohenke.json | 10 +- users/gvv.json | 6 +- users/gyoshev.json | 8 +- users/h.json | 10 +- users/hadb.json | 14 +- users/hail2u.json | 8 +- users/halid.json | 14 +- users/halil.json | 10 +- users/halit.json | 10 +- users/hallme.json | 10 +- users/hamano.json | 4 +- users/hamidshavarean.json | 10 +- users/hanksudo.json | 10 +- users/haoxiong.json | 10 +- users/hardeep.json | 6 +- users/harold.json | 10 +- users/harry.json | 16 +- users/harryd.json | 12 +- users/harrydeluxe.json | 8 +- users/harshjain.json | 12 +- users/harshjv.json | 8 +- users/hashanp.json | 10 +- users/hashnuke.json | 4 +- users/hassankhan.json | 12 +- users/hassox.json | 4 +- users/hatena.json | 6 +- users/hatollint.json | 14 +- users/hbc.json | 10 +- users/hd.json | 10 +- users/he7d3r.json | 6 +- users/healthx.json | 4 +- users/hecticjeff.json | 4 +- users/hello.json | 10 +- users/hemersonvianna.json | 8 +- users/henrikbjorn.json | 10 +- users/henrikhodne.json | 6 +- users/henriquemoody.json | 8 +- users/henvic.json | 10 +- users/heppler.json | 10 +- users/herson.json | 10 +- users/heyday.json | 8 +- users/hfm.json | 4 +- users/hh.json | 4 +- users/hika69.json | 6 +- users/hildor.json | 8 +- users/hinassan.json | 6 +- users/hippiehacker.json | 4 +- users/hiremaga.json | 4 +- users/hirokiky.json | 10 +- users/hitode909.json | 4 +- users/hlfcoding.json | 10 +- users/hlomzik.json | 10 +- users/hmkz.json | 6 +- users/hobogrammer.json | 4 +- users/hokaccha.json | 4 +- users/hokypoky.json | 6 +- users/honyovk.json | 8 +- users/hoop33.json | 14 +- users/hope.json | 10 +- users/hor.json | 10 +- users/horacioibrahim.json | 10 +- users/horiuchi.json | 6 +- users/hotoo.json | 10 +- users/hotplate.json | 4 +- users/housetrip.json | 4 +- users/hpg.json | 10 +- users/hr.json | 10 +- users/hss.json | 10 +- users/hsyn.json | 4 +- users/htdvisser.json | 10 +- users/htjson.json | 10 +- users/hug.json | 12 +- users/hugorper.json | 8 +- users/husniadil.json | 12 +- users/hwthorn.json | 8 +- users/i.json | 14 +- users/iadvize.json | 4 +- users/iagodahlem.json | 10 +- users/iamale.json | 8 +- users/iamgabeortiz.json | 10 +- users/ian.json | 10 +- users/ianaya89.json | 10 +- users/ianfoo.json | 4 +- users/ianhammondcooper.json | 10 +- users/iantearle.json | 8 +- users/ianvaughan.json | 8 +- users/ianwang.json | 10 +- users/ianwinter.json | 4 +- users/ic.json | 8 +- users/ichizok.json | 8 +- users/icq4ever.json | 4 +- users/idkazuma.json | 8 +- users/idlua.json | 10 +- users/idomusha.json | 10 +- users/iet-ou.json | 14 +- users/if.json | 8 +- users/ifdattic.json | 6 +- users/igliu.json | 4 +- users/igneous.json | 4 +- users/ignitelabs.json | 10 +- users/igorcorradi.json | 6 +- users/igorprado.json | 4 +- users/iknew.json | 8 +- users/ilee.json | 10 +- users/imahmoodz.json | 10 +- users/imalliaros.json | 10 +- users/imjching.json | 10 +- users/immae.json | 8 +- users/imryan.json | 4 +- users/incertia.json | 4 +- users/indutny.json | 4 +- users/indy.json | 8 +- users/inetpeople.json | 4 +- users/instaphp.json | 10 +- users/intergrated.json | 10 +- users/inviz.json | 12 +- users/ionicabizau.json | 4 +- users/ionut.json | 4 +- users/irex.json | 10 +- users/is-uz.json | 10 +- users/isekaf.json | 6 +- users/isekivacenz.json | 4 +- users/ishands.json | 10 +- users/isle.json | 4 +- users/ismay.json | 4 +- users/isoden.json | 8 +- users/istanbulphp.json | 10 +- users/it-ony.json | 10 +- users/itacirgabral.json | 12 +- users/italoqueiroz.json | 12 +- users/ithings4u.json | 4 +- users/itscassa.json | 4 +- users/ivangaravito.json | 12 +- users/iwark.json | 4 +- users/izumin.json | 8 +- users/j.json | 8 +- users/ja.json | 6 +- users/jaanek.json | 10 +- users/jabbrwcky.json | 10 +- users/jackfischer.json | 4 +- users/jadn.json | 4 +- users/jaeckel.json | 8 +- users/jaequery.json | 6 +- users/jafnee.json | 4 +- users/jagregory.json | 4 +- users/jaimeneves.json | 8 +- users/jais.json | 4 +- users/jakebellacera.json | 4 +- users/jakejohnson.json | 10 +- users/jakemolnar.json | 4 +- users/jakschu.json | 10 +- users/jalanb.json | 10 +- users/james.json | 8 +- users/jameschen.json | 10 +- users/jamesclebio.json | 6 +- users/jameslawson.json | 10 +- users/jameswyse.json | 10 +- users/jamieh.json | 10 +- users/jamiemason.json | 6 +- users/jamiesonroberts.json | 12 +- users/jan.json | 8 +- users/jancbeck.json | 10 +- users/janders223.json | 8 +- users/jaredverdi.json | 12 +- users/jas0ncn.json | 14 +- users/jasl.json | 6 +- users/jasondavis.json | 10 +- users/jasondemeuse.json | 4 +- users/jasvir.json | 4 +- users/jaswinder.json | 12 +- users/jautero.json | 8 +- users/jay.json | 4 +- users/jaydson.json | 10 +- users/jaylynch.json | 8 +- users/jaymecd.json | 10 +- users/jballard.json | 6 +- users/jbb.json | 4 +- users/jbenet.json | 4 +- users/jbonnier.json | 14 +- users/jbradach.json | 14 +- users/jbrodriguez.json | 8 +- users/jbrooksuk.json | 12 +- users/jc.json | 4 +- users/jcarouth.json | 8 +- users/jcart1666.json | 6 +- users/jcfausto.json | 12 +- users/jcuri.json | 4 +- users/jczimm.json | 12 +- users/jd.json | 8 +- users/jdalton.json | 8 +- users/jdavis.json | 10 +- users/jden.json | 10 +- users/jdiamond.json | 4 +- users/jdrd.json | 10 +- users/jeanperez.json | 10 +- users/jeanpimentel.json | 10 +- users/jeff.json | 10 +- users/jeffdecola.json | 12 +- users/jeffmccoy.json | 10 +- users/jeffreymeng.json | 14 +- users/jefsama.json | 14 +- users/jellekralt.json | 10 +- users/jelmer.json | 6 +- users/jemos.json | 4 +- users/jenish.json | 4 +- users/jeremy.json | 10 +- users/jeremykendall.json | 8 +- users/jericho.json | 4 +- users/jermorin.json | 10 +- users/jeroenvisser.json | 12 +- users/jeroenvisser101.json | 12 +- users/jesseflorig.json | 10 +- users/jesusurrutia.json | 14 +- users/jet.json | 10 +- users/jetienne.json | 6 +- users/jfgodoy.json | 8 +- users/jfsiii.json | 6 +- users/jgrossi.json | 8 +- users/jhink.json | 10 +- users/ji.json | 6 +- users/jibreil.json | 10 +- users/jimeh.json | 8 +- users/jimjum.json | 4 +- users/jimmyking.json | 12 +- users/jin.json | 4 +- users/jinnovation.json | 4 +- users/jitinl.json | 4 +- users/jizoo.json | 8 +- users/jj1bdx.json | 10 +- users/jkeyes.json | 8 +- users/jkimbo.json | 10 +- users/jmazz.json | 10 +- users/jmblog.json | 6 +- users/jmendeth.json | 10 +- users/jmeosbn.json | 6 +- users/jmhodges.json | 10 +- users/jmiller.json | 6 +- users/jmm.json | 4 +- users/jmparsons.json | 4 +- users/jnf.json | 4 +- users/jnj.json | 12 +- users/jnjosh.json | 8 +- users/jnw.json | 10 +- users/joaos.json | 14 +- users/jobquest.json | 12 +- users/jody.json | 6 +- users/joe.json | 8 +- users/joelambert.json | 4 +- users/joelbladt.json | 12 +- users/joelpurra.json | 10 +- users/joelself.json | 4 +- users/joelwalters.json | 4 +- users/joeyblake.json | 8 +- users/joeyespo.json | 10 +- users/jogy.json | 6 +- users/johan.json | 6 +- users/johanekhager.json | 10 +- users/johanhalse.json | 10 +- users/john.json | 4 +- users/johnathanjenkins.json | 4 +- users/johndyer.json | 4 +- users/johnjensen.json | 4 +- users/johnmcc.json | 4 +- users/johnmdonahue.json | 6 +- users/johnny.json | 6 +- users/johnschult.json | 10 +- users/johnsullivan.json | 6 +- users/johntfoster.json | 10 +- users/jokliu.json | 6 +- users/jonas.json | 10 +- users/jonathanheaven.json | 10 +- users/jonathanwiesel.json | 12 +- users/jongretar.json | 10 +- users/jonmcpherson.json | 8 +- users/jonnung-grp.json | 4 +- users/jonscottclark.json | 8 +- users/jonstites.json | 10 +- users/joom.json | 10 +- users/joostlawerman.json | 12 +- users/jordimorillo.json | 8 +- users/joren.json | 8 +- users/jorge-matricali.json | 14 +- users/jorge.json | 4 +- users/joseandro.json | 10 +- users/josh.json | 8 +- users/joshboehm.json | 4 +- users/joshbuhler.json | 4 +- users/joshje.json | 4 +- users/joshua.json | 12 +- users/joshuacanfield.json | 10 +- users/joshuaptfan.json | 10 +- users/joslyn.json | 4 +- users/josue.json | 4 +- users/josuer.json | 8 +- users/josuerodriguez.json | 8 +- users/jotschi.json | 10 +- users/joyce.json | 10 +- users/joyceschan.json | 10 +- users/jp.json | 4 +- users/jprice.json | 12 +- users/jpsirois.json | 10 +- users/jquery-client.json | 10 +- users/jr.json | 6 +- users/jrattanpal.json | 8 +- users/jre.json | 4 +- users/jrudenstam.json | 10 +- users/jruhland.json | 12 +- users/jryans.json | 10 +- users/js.json | 12 +- users/jsbin.json | 6 +- users/jseppi.json | 10 +- users/jsumners.json | 12 +- users/jtb.json | 4 +- users/jtkendall.json | 12 +- users/jtr.json | 4 +- users/jtwalters.json | 8 +- users/jtyost2.json | 10 +- users/juanitofatas.json | 10 +- users/julesj.json | 10 +- users/julien-breux.json | 4 +- users/julienw.json | 8 +- users/junookyo.json | 14 +- users/justin.json | 6 +- users/justinian.json | 12 +- users/justinm.json | 8 +- users/justinrainbow.json | 6 +- users/justmarkup.json | 10 +- users/justmoon.json | 4 +- users/jwark.json | 4 +- users/jwathen.json | 6 +- users/jwehrman.json | 4 +- users/jwngr.json | 4 +- users/jxck.json | 8 +- users/jxson.json | 4 +- users/jylhis.json | 6 +- users/k-yoshida.json | 10 +- users/k2wanko.json | 6 +- users/k33nice.json | 10 +- users/ka2n.json | 4 +- users/kabuku-inc.json | 8 +- users/kabuku.json | 8 +- users/kafene.json | 4 +- users/kagee.json | 6 +- users/kai.json | 10 +- users/kaichop.json | 4 +- users/kakehashi.json | 6 +- users/kale.json | 6 +- users/kanade.json | 4 +- users/kandoi.json | 10 +- users/kaneel.json | 8 +- users/kaneshin.json | 12 +- users/kaos.json | 8 +- users/karami.json | 14 +- users/karbassi.json | 8 +- users/karimsa.json | 14 +- users/karl-sjogren.json | 10 +- users/karl.json | 10 +- users/karlc.json | 8 +- users/karlcoelho.json | 10 +- users/karteek.json | 10 +- users/karupanerura.json | 10 +- users/kataring.json | 4 +- users/katsuma.json | 4 +- users/katsyoshi.json | 4 +- users/kaukeb.json | 6 +- users/kawakawaritsuki.json | 12 +- users/kawanet.json | 6 +- users/kawaz.json | 10 +- users/kaxla.json | 4 +- users/kayframework.json | 10 +- users/kb.json | 12 +- users/kbond.json | 8 +- users/kcak11.json | 12 +- users/kcj.json | 8 +- users/kclarke.json | 8 +- users/kdy.json | 12 +- users/ke.json | 12 +- users/keegoid.json | 12 +- users/keifukuda.json | 6 +- users/keita.json | 4 +- users/keithamus.json | 6 +- users/keithcirkel.json | 6 +- users/kenjiyamamoto.json | 10 +- users/kenta.json | 10 +- users/kentaro.json | 8 +- users/kerem.json | 8 +- users/ketchum.json | 4 +- users/kevin.json | 10 +- users/kevinaloys.json | 12 +- users/kevinfling.json | 4 +- users/kevinmmarlow.json | 4 +- users/key.json | 14 +- users/keyup.json | 8 +- users/kezho.json | 6 +- users/kgarg.json | 10 +- users/kgisl.json | 8 +- users/khanio.json | 10 +- users/khushraj.json | 8 +- users/khuxkm.json | 12 +- users/kieranties.json | 12 +- users/kilian.json | 10 +- users/kilokahn.json | 10 +- users/kimiamania.json | 12 +- users/kindy.json | 8 +- users/kinetik.json | 14 +- users/kishorm23.json | 4 +- users/kit.json | 8 +- users/kitak.json | 6 +- users/kiwigrid.json | 4 +- users/kjirou.json | 6 +- users/kjohnston.json | 4 +- users/kkung.json | 10 +- users/kloptops.json | 8 +- users/kma.json | 8 +- users/kmix.json | 6 +- users/kmonsoor.json | 12 +- users/knagano.json | 4 +- users/knakayama.json | 12 +- users/knimon-software.json | 4 +- users/knockout-components.json | 8 +- users/knutwalker.json | 10 +- users/koba789.json | 6 +- users/koeberle.json | 4 +- users/kohenkatz.json | 12 +- users/kojiwakayama.json | 10 +- users/konsumer.json | 10 +- users/kopplin.json | 4 +- users/koshigoe.json | 4 +- users/kossnocorp.json | 4 +- users/kothawale.json | 8 +- users/koustuvs.json | 8 +- users/kozakky.json | 4 +- users/kpeatt.json | 12 +- users/kraga.json | 14 +- users/krinkle.json | 10 +- users/kris.json | 8 +- users/kristoffer.json | 4 +- users/kristopher.json | 12 +- users/kriwil.json | 4 +- users/kroisse.json | 8 +- users/krolow.json | 10 +- users/krrrr38.json | 4 +- users/ksomemo.json | 4 +- users/kswedberg.json | 8 +- users/kt3k.json | 4 +- users/ktat.json | 10 +- users/ktravis.json | 4 +- users/ktrysmt.json | 12 +- users/kucoe.json | 8 +- users/kuenishi.json | 6 +- users/kujohnln.json | 14 +- users/kumatch.json | 6 +- users/kuni-uec-takada-lab.json | 8 +- users/kuniwak.json | 4 +- users/kurmis.json | 10 +- users/kuronekomichael.json | 6 +- users/kvz.json | 4 +- users/kvz2.json | 10 +- users/kyanny.json | 4 +- users/kyle.json | 10 +- users/kylebaker.json | 8 +- users/kylebshr.json | 8 +- users/kylestev.json | 10 +- users/kylewelsby.json | 12 +- users/kyrias.json | 8 +- users/kyungw00k.json | 14 +- users/l04m33.json | 10 +- users/laka.json | 8 +- users/lalit.json | 10 +- users/laradic.json | 10 +- users/lareg.json | 4 +- users/larrybotha.json | 8 +- users/lars.json | 10 +- users/larste.json | 4 +- users/lavoie-sl.json | 12 +- users/layer7tech.json | 10 +- users/lbesson.json | 12 +- users/lbuell.json | 10 +- users/leandromatos.json | 10 +- users/leanix.json | 10 +- users/ledsun.json | 6 +- users/leeym.json | 4 +- users/leftlogic.json | 2 +- users/legato.json | 8 +- users/legraphista.json | 14 +- users/lehmannro.json | 8 +- users/lemieux.json | 10 +- users/lemolsoft.json | 10 +- users/lemurs.json | 8 +- users/len.json | 6 +- users/lenet.json | 6 +- users/leniglo.json | 14 +- users/lenilson.json | 10 +- users/leonardomerlin.json | 8 +- users/leonardorifeli.json | 8 +- users/leonardosoares.json | 12 +- users/lepture.json | 10 +- users/lequioscreative.json | 4 +- users/levelup.json | 4 +- users/lgalfaso.json | 4 +- users/lgn21st.json | 8 +- users/lh.json | 10 +- users/lhl.json | 4 +- users/li.json | 12 +- users/liam-kerr.json | 4 +- users/lidonghua.json | 6 +- users/likerrr.json | 12 +- users/lindsayevans.json | 6 +- users/lionel-m.json | 6 +- users/lira.json | 12 +- users/lishiyu.json | 6 +- users/litenjacob.json | 4 +- users/liuderchi.json | 12 +- users/livebreathedigital.json | 10 +- users/liz.json | 10 +- users/lizzie.json | 10 +- users/ljos.json | 10 +- users/llaraujo.json | 8 +- users/llun.json | 6 +- users/lmarburger.json | 10 +- users/lmullen.json | 10 +- users/lng.json | 4 +- users/lnmunhoz.json | 8 +- users/lo.json | 4 +- users/localhost.json | 8 +- users/localpcguy.json | 8 +- users/lolcat.json | 4 +- users/longsl.json | 10 +- users/loopj.json | 8 +- users/lorenz-lo-sauer.json | 14 +- users/louisremi.json | 6 +- users/louist.json | 14 +- users/lp.json | 8 +- users/lpa.json | 8 +- users/lpg.json | 8 +- users/lpghatguy.json | 10 +- users/lqez.json | 4 +- users/lqian.json | 10 +- users/lrenhrda.json | 4 +- users/lsauer.json | 14 +- users/lsh.json | 12 +- users/lsong.json | 8 +- users/ltej.json | 4 +- users/luanmuniz.json | 8 +- users/lucasgreen.json | 4 +- users/lucasmartins.json | 8 +- users/luis.json | 4 +- users/luisdalmolin.json | 4 +- users/luizbills.json | 10 +- users/luizpicolo.json | 14 +- users/luke.json | 10 +- users/lukeed.json | 10 +- users/lukew.json | 10 +- users/lukmdo.json | 10 +- users/lulalachen.json | 12 +- users/lussier.json | 4 +- users/luwes.json | 6 +- users/lvillani.json | 4 +- users/lynn.json | 8 +- users/lynnwallenstein.json | 4 +- users/m.json | 10 +- users/m0s.json | 10 +- users/m42e.json | 8 +- users/m4i.json | 6 +- users/ma.json | 4 +- users/ma124.json | 12 +- users/mach3.json | 4 +- users/maciejczyzewski.json | 8 +- users/macobo.json | 6 +- users/mactkg.json | 10 +- users/maddes.json | 10 +- users/madethemes.json | 10 +- users/madness.json | 8 +- users/madrona-labs.json | 4 +- users/magarcia-mail.json | 4 +- users/magarcia.json | 4 +- users/magicdawn.json | 12 +- users/magno.json | 10 +- users/magnus.json | 4 +- users/mahdaen.json | 10 +- users/majd.json | 10 +- users/majodev.json | 8 +- users/makenowjust.json | 12 +- users/makimoto.json | 4 +- users/malayaleecoder.json | 4 +- users/mallim.json | 12 +- users/mamund.json | 10 +- users/managenet.json | 8 +- users/mandre.json | 4 +- users/manish.json | 4 +- users/manparvesh.json | 12 +- users/manual.json | 6 +- users/manuel.json | 10 +- users/manuglez.json | 14 +- users/maoo.json | 10 +- users/mapjam.json | 8 +- users/mapjam1.json | 6 +- users/mapjam2.json | 8 +- users/maqina.json | 8 +- users/marc.json | 6 +- users/marcastel.json | 4 +- users/marceloboeira.json | 10 +- users/marcelobrito.json | 8 +- users/marco-loche.json | 10 +- users/marco.json | 6 +- users/marcoagner.json | 10 +- users/marcocanc.json | 10 +- users/marconi.json | 10 +- users/marcqualie.json | 8 +- users/marcroberts.json | 6 +- users/marcusw.json | 12 +- users/marebucks.json | 10 +- users/marek-saji.json | 10 +- users/marek.json | 10 +- users/marge.json | 10 +- users/mario-chavez.json | 4 +- users/mark.json | 10 +- users/markdalgleish.json | 6 +- users/marksteve.json | 6 +- users/marnulombard.json | 10 +- users/marshall.json | 8 +- users/martinblech.json | 10 +- users/marucc.json | 6 +- users/marvinede.json | 8 +- users/masch.json | 10 +- users/mashihua.json | 8 +- users/mast.json | 4 +- users/masutaka.json | 8 +- users/mateusortiz.json | 4 +- users/matheus.json | 10 +- users/mathias.json | 6 +- users/mathieu.json | 12 +- users/matin.json | 4 +- users/matsukaz.json | 4 +- users/matt-deacalion.json | 8 +- users/matt.json | 6 +- users/mattaimonetti.json | 10 +- users/mattcg.json | 8 +- users/mattclements.json | 8 +- users/mattetti.json | 10 +- users/mattgauf.json | 6 +- users/mattgoucher.json | 10 +- users/mattgross.json | 4 +- users/matth.json | 10 +- users/matthew-campbell.json | 6 +- users/matthew.json | 12 +- users/matthewdavies.json | 12 +- users/matthewmcvickar.json | 10 +- users/matthieuaussaguel.json | 8 +- users/mattn.json | 10 +- users/mattstevens.json | 4 +- users/mavidser.json | 10 +- users/max.json | 4 +- users/maximz.json | 8 +- users/maxmanders.json | 4 +- users/maxroecker.json | 8 +- users/maxwell.json | 4 +- users/maxx.json | 10 +- users/mayankjha.json | 10 +- users/mb.json | 4 +- users/mbasanta.json | 8 +- users/mbilbillee.json | 4 +- users/mbo.json | 4 +- users/mbs.json | 4 +- users/mc2.json | 10 +- users/mckamey.json | 4 +- users/mckay.json | 8 +- users/mckelvaney.json | 8 +- users/mckomo.json | 10 +- users/mdag.json | 14 +- users/mdd.json | 4 +- users/mdhheydari.json | 12 +- users/mdibaiee.json | 10 +- users/mdt.json | 12 +- users/meetparikh7.json | 8 +- users/meghprkh.json | 8 +- users/memega.json | 4 +- users/memph1s.json | 10 +- users/mestes.json | 12 +- users/mestrada.json | 10 +- users/mf.json | 14 +- users/mfah.json | 10 +- users/mfmer.json | 4 +- users/mgonto.json | 6 +- users/mhaidarh.json | 12 +- users/mheap.json | 8 +- users/mhenry.json | 8 +- users/mhm5000.json | 14 +- users/mhweiner.json | 10 +- users/mi-roh.json | 6 +- users/micaelbergeron.json | 4 +- users/micalevisk.json | 14 +- users/michael.json | 4 +- users/michaeldanilov.json | 10 +- users/michaelhsu.json | 12 +- users/michaelhsutw.json | 12 +- users/michaelobi.json | 4 +- users/michaelstanden.json | 12 +- users/michaeltaranto.json | 8 +- users/micromvc.json | 4 +- users/microsoft.json | 6 +- users/micxer.json | 12 +- users/midupuis.json | 8 +- users/mignev.json | 10 +- users/miguelfrde.json | 10 +- users/miguelmota.json | 10 +- users/mikael.json | 4 +- users/mikaeljorhult.json | 6 +- users/mike.json | 4 +- users/mike2duo.json | 4 +- users/mikeanthony.json | 6 +- users/mikejolley.json | 8 +- users/mikejolly.json | 8 +- users/mikelyons.json | 4 +- users/mikl.json | 6 +- users/mikuiro.json | 8 +- users/milosgavrilovic.json | 10 +- users/minhee.json | 8 +- users/minidfx.json | 14 +- users/miro.json | 12 +- users/mirrajabi.json | 8 +- users/mislav.json | 4 +- users/miszo.json | 6 +- users/mizzy.json | 4 +- users/mjf.json | 4 +- users/mk.json | 6 +- users/mk23.json | 8 +- users/mkhl.json | 8 +- users/mlxy.json | 12 +- users/mm.json | 4 +- users/mnicnc404.json | 4 +- users/moacirosa.json | 14 +- users/mohan.json | 4 +- users/mohayonao.json | 6 +- users/mohebifar.json | 12 +- users/mohnish.json | 4 +- users/mohsend.json | 10 +- users/mokemokechicken.json | 4 +- users/mollifier.json | 4 +- users/mongorito.json | 10 +- users/monkey.json | 10 +- users/monks.json | 8 +- users/monmon.json | 6 +- users/moongift.json | 6 +- users/moore.json | 4 +- users/mootoh.json | 4 +- users/moox.json | 4 +- users/mooyoul.json | 10 +- users/moqada.json | 8 +- users/moroshko.json | 4 +- users/mortdeus.json | 12 +- users/morteza.json | 14 +- users/mostly-magic.json | 8 +- users/motemen.json | 4 +- users/motss.json | 8 +- users/moyashiki.json | 4 +- users/mp.json | 8 +- users/mpd.json | 4 +- users/mpdreamz.json | 8 +- users/mpogoda.json | 4 +- users/mr-mostafa.json | 14 +- users/mressex.json | 12 +- users/mrgnrdrck.json | 8 +- users/mrinaljain17.json | 10 +- users/mrkn.json | 4 +- users/mrmarbles.json | 6 +- users/mrsiir.json | 4 +- users/mschaer.json | 6 +- users/mseri.json | 8 +- users/mshertzberg.json | 4 +- users/msmosso.json | 8 +- users/msmprojects.json | 10 +- users/mstade.json | 4 +- users/mstum.json | 10 +- users/msudgh.json | 12 +- users/mteckert.json | 4 +- users/mtsagias.json | 10 +- users/mtsmfm.json | 10 +- users/mturcotte.json | 6 +- users/muet.json | 10 +- users/mullen.json | 10 +- users/muratk.json | 4 +- users/muriel.json | 4 +- users/murphy.json | 8 +- users/musicgig.json | 8 +- users/mustafa.json | 8 +- users/mutedsolutions.json | 8 +- users/mutlicorp.json | 10 +- users/mutoso.json | 12 +- users/muyuu.json | 6 +- users/mvdnes.json | 4 +- users/mvr.json | 8 +- users/mw.json | 4 +- users/mway.json | 10 +- users/mwm.json | 10 +- users/mwmeyer.json | 8 +- users/mwmnj.json | 8 +- users/myles.json | 10 +- users/mynetx.json | 8 +- users/mysticatea.json | 6 +- users/n.json | 6 +- users/n0nick.json | 4 +- users/nacyot.json | 10 +- users/nadeemkhan.json | 10 +- users/nadi.json | 10 +- users/naereen.json | 12 +- users/nak2k.json | 6 +- users/nanahositento.json | 8 +- users/nanha.json | 6 +- users/nanotaboada.json | 8 +- users/naota.json | 4 +- users/nat.json | 4 +- users/nate.json | 6 +- users/natevw.json | 6 +- users/nathan.json | 8 +- users/nathan7.json | 4 +- users/nathanallen.json | 8 +- users/natzim.json | 4 +- users/naufraghi.json | 4 +- users/navarr.json | 6 +- users/nblackburn.json | 14 +- users/ncb000gt.json | 8 +- users/nctg.json | 6 +- users/ndw.json | 8 +- users/nectktar.json | 6 +- users/neil.json | 4 +- users/nemo.json | 12 +- users/neo.json | 10 +- users/neodevelop.json | 12 +- users/neos21.json | 12 +- users/nerdfiles.json | 4 +- users/nerdsec.json | 10 +- users/nergal.json | 10 +- users/nethru.json | 10 +- users/neutroncreations.json | 6 +- users/nevir.json | 4 +- users/newleaders.json | 12 +- users/nex.json | 6 +- users/nexzhu.json | 6 +- users/nfreear.json | 8 +- users/ngenerio.json | 8 +- users/ngoldman.json | 4 +- users/ngtk.json | 4 +- users/ngyuki.json | 6 +- users/nhan.json | 12 +- users/nhanderu.json | 8 +- users/nhayato.json | 4 +- users/nhoizey.json | 6 +- users/nichom.json | 10 +- users/nickmanos.json | 6 +- users/nicksp.json | 12 +- users/nico.json | 6 +- users/niftylettuce.json | 10 +- users/nightw.json | 8 +- users/nik.json | 4 +- users/nikbobo.json | 10 +- users/nikhilgohil11.json | 4 +- users/nikolay.json | 14 +- users/nil.json | 10 +- users/nilesh.json | 10 +- users/nilkesede.json | 10 +- users/nilswloka.json | 4 +- users/niltoncms.json | 12 +- users/nima.json | 12 +- users/nimbu.json | 10 +- users/nisargrthakkar.json | 12 +- users/nishanths.json | 4 +- users/nitori.json | 4 +- users/nitriques.json | 10 +- users/njordon.json | 10 +- users/nk.json | 10 +- users/nks.json | 10 +- users/nlr.json | 14 +- users/nm.json | 4 +- users/nmanos.json | 8 +- users/nnexus.json | 4 +- users/nntoan.json | 10 +- users/no.json | 10 +- users/nodaguti.json | 6 +- users/nodejsbrasil.json | 10 +- users/noeldavies.json | 4 +- users/nojb.json | 4 +- users/nooblad.json | 4 +- users/noodlehaus.json | 8 +- users/norcross.json | 10 +- users/noriaki.json | 12 +- users/noromanba.json | 8 +- users/norris.json | 8 +- users/noty.json | 4 +- users/novalagung.json | 12 +- users/nqngo.json | 8 +- users/nrakochy.json | 8 +- users/nrm.json | 6 +- users/ns.json | 10 +- users/nsisodiya.json | 10 +- users/null.json | 8 +- users/numediaweb.json | 10 +- users/nuri.json | 4 +- users/nv.json | 10 +- users/nvcnvn.json | 4 +- users/nyarla.json | 12 +- users/o.json | 10 +- users/oaeide.json | 4 +- users/obihann.json | 8 +- users/object505.json | 8 +- users/oc.json | 8 +- users/octavioturra.json | 10 +- users/odsod.json | 4 +- users/ofer-shaham.json | 10 +- users/ofer.json | 4 +- users/oguching.json | 8 +- users/ohtomi.json | 6 +- users/oidong1.json | 4 +- users/ojoaofernandes.json | 4 +- users/ok.json | 6 +- users/okeyaki.json | 4 +- users/ol.json | 10 +- users/olalonde.json | 8 +- users/olav.json | 10 +- users/olgabot.json | 4 +- users/oliciv.json | 8 +- users/olivere.json | 4 +- users/olivernn.json | 4 +- users/olivier.json | 10 +- users/ollej.json | 12 +- users/olly.json | 4 +- users/olmokramer.json | 4 +- users/omarithawi.json | 4 +- users/omg.json | 14 +- users/omi.json | 10 +- users/omidgharib.json | 14 +- users/omtinez.json | 4 +- users/onarray.json | 6 +- users/onecmf.json | 10 +- users/onedge.json | 4 +- users/onenorth.json | 8 +- users/oojs.json | 10 +- users/openjtalkgolang.json | 8 +- users/oppara.json | 8 +- users/opsworks-ruby.json | 6 +- users/orgachem.json | 6 +- users/origami-tower.json | 12 +- users/origamitower.json | 12 +- users/originalmachine.json | 10 +- users/orlin.json | 14 +- users/orzfly.json | 12 +- users/os0x.json | 8 +- users/oshida.json | 6 +- users/oswaldoacauan.json | 8 +- users/othree.json | 8 +- users/outline.json | 6 +- users/outsider.json | 10 +- users/owebboy.json | 4 +- users/owm.json | 10 +- users/oxguy3.json | 10 +- users/oxy.json | 6 +- users/ozh.json | 10 +- users/ozzyr.json | 10 +- users/pablodv.json | 4 +- users/pablojim.json | 4 +- users/pacbard.json | 6 +- users/padde.json | 4 +- users/pagoda.json | 4 +- users/pagodabox.json | 10 +- users/pahnin.json | 10 +- users/palleas.json | 10 +- users/panjiesw.json | 10 +- users/pankaj.json | 10 +- users/parker.json | 10 +- users/parkere.json | 4 +- users/parryc.json | 10 +- users/partkyle.json | 4 +- users/passcod.json | 6 +- users/passelin.json | 6 +- users/patrick.json | 4 +- users/patricmutwiri.json | 12 +- users/paul-vollmer.json | 12 +- users/paul.json | 6 +- users/paulcuth.json | 6 +- users/paulf.json | 10 +- users/paulmillr.json | 6 +- users/paulmoore.json | 10 +- users/paulredmond.json | 4 +- users/paulrobertlloyd.json | 6 +- users/payliu.json | 12 +- users/pb.json | 12 +- users/pci.json | 4 +- users/pcole.json | 10 +- users/pdfrod.json | 4 +- users/pdostal.json | 14 +- users/peatio.json | 8 +- users/peccu.json | 6 +- users/pedrolamas.json | 8 +- users/pelletier.json | 4 +- users/pemrouz.json | 4 +- users/penguin4games.json | 10 +- users/per.json | 8 +- users/petamoriken.json | 6 +- users/pete.json | 14 +- users/peter.json | 10 +- users/peterc.json | 6 +- users/petite.json | 4 +- users/petitviolet.json | 12 +- users/pf.json | 12 +- users/pfiled.json | 4 +- users/pg.json | 6 +- users/pgrenaud.json | 8 +- users/phakin.json | 8 +- users/phanimahesh.json | 10 +- users/phaserstudio.json | 10 +- users/phawk.json | 8 +- users/phgarcia.json | 10 +- users/phiber.json | 12 +- users/phibermit.json | 4 +- users/philippbosch.json | 6 +- users/philippwiddra.json | 8 +- users/philtr.json | 8 +- users/philworthington.json | 10 +- users/phlipper.json | 12 +- users/phlux.json | 12 +- users/phm.json | 10 +- users/phucnm.json | 4 +- users/phuu.json | 10 +- users/pid.json | 12 +- users/piecioshka.json | 4 +- users/pierre.json | 6 +- users/pietervanderwerff.json | 6 +- users/pigmon.json | 4 +- users/pikesley.json | 10 +- users/piksel.json | 12 +- users/pine.json | 6 +- users/pinjasaur.json | 14 +- users/pipwerks.json | 4 +- users/pirosikick.json | 6 +- users/pitomba.json | 8 +- users/piyush.json | 12 +- users/piyushvarshney.json | 10 +- users/pjbgf.json | 8 +- users/pjhampton.json | 4 +- users/plasticpanda.json | 4 +- users/pluma.json | 6 +- users/pluschnikow.json | 8 +- users/pm.json | 6 +- users/pm5.json | 4 +- users/pmac.json | 8 +- users/pmk.json | 8 +- users/pmowrer.json | 6 +- users/pmuellr.json | 6 +- users/poapfel.json | 4 +- users/polem.json | 4 +- users/polossk.json | 10 +- users/ponko2.json | 6 +- users/popomore.json | 10 +- users/popoway.json | 14 +- users/porada.json | 6 +- users/porras.json | 4 +- users/posa88.json | 14 +- users/pothibo.json | 4 +- users/pouya.json | 14 +- users/poying.json | 8 +- users/poyu.json | 8 +- users/pragai.json | 10 +- users/pragmaticivan.json | 4 +- users/prajankya.json | 12 +- users/pranavrajs.json | 4 +- users/pranay.json | 10 +- users/pranayt.json | 10 +- users/pranjal.json | 10 +- users/prankshaw.json | 10 +- users/prashant0598.json | 12 +- users/prashcr.json | 10 +- users/pratyk.json | 10 +- users/praveen.json | 6 +- users/pravj.json | 6 +- users/preco.json | 10 +- users/prescott.json | 10 +- users/preston.json | 4 +- users/probablywrong.json | 10 +- users/prodicus.json | 4 +- users/proudlygeek.json | 6 +- users/prsly.json | 6 +- users/pschlosser.json | 8 +- users/psykzz.json | 14 +- users/psyrendust.json | 8 +- users/pt.json | 10 +- users/pthangeda.json | 10 +- users/pti.json | 8 +- users/punkish.json | 10 +- users/purdy.json | 14 +- users/pushandplay.json | 14 +- users/pwmckenna.json | 4 +- users/pwn.json | 10 +- users/pwnall.json | 8 +- users/px.json | 12 +- users/pxc.json | 8 +- users/pxgamer.json | 14 +- users/pyyoshi.json | 4 +- users/qfox.json | 10 +- users/qing.json | 4 +- users/qix1986.json | 12 +- users/qorbani.json | 14 +- users/qrawl.json | 10 +- users/quantumgraph.json | 4 +- users/queryli.json | 12 +- users/questbeat.json | 4 +- users/qwertypants.json | 4 +- users/r15ch13.json | 14 +- users/raananw.json | 10 +- users/racklin.json | 6 +- users/radic.json | 14 +- users/radio-t.json | 8 +- users/raegen.json | 12 +- users/raf.json | 10 +- users/rafamello.json | 12 +- users/raindrop.json | 8 +- users/raja.json | 6 +- users/rajarshi.json | 10 +- users/rajeevkannav.json | 14 +- users/rajinwonderland.json | 14 +- users/ramanan.json | 10 +- users/ramin.json | 10 +- users/ramirio.json | 6 +- users/ramonpage.json | 10 +- users/ramsey.json | 12 +- users/random-rem.json | 4 +- users/randsonjs.json | 10 +- users/raphael.json | 6 +- users/raphaelbronsveld.json | 4 +- users/raphaelfabeni.json | 8 +- users/rappa.json | 12 +- users/rappasoft.json | 12 +- users/rapson.json | 4 +- users/rares.json | 10 +- users/rasch.json | 10 +- users/ravigehlot.json | 4 +- users/raw-engineering.json | 8 +- users/raweng.json | 6 +- users/rawengineering.json | 6 +- users/raypatterson.json | 10 +- users/rbardini.json | 12 +- users/rcpeters.json | 8 +- users/rcta.json | 10 +- users/readytalk.json | 4 +- users/recoye.json | 10 +- users/redpumpkin.json | 10 +- users/reedia.json | 4 +- users/reefaq.json | 6 +- users/rei.json | 8 +- users/rejack.json | 12 +- users/relequestual.json | 4 +- users/relu.json | 4 +- users/rem-test.json | 10 +- users/rem-test2.json | 10 +- users/rem.json | 12 +- users/rem123.json | 10 +- users/rematin.json | 4 +- users/reminisceme.json | 8 +- users/remybach.json | 8 +- users/remyg.json | 10 +- users/remz.json | 4 +- users/renatoargh.json | 8 +- users/rene.json | 10 +- users/ress.json | 10 +- users/ressendpanda.json | 14 +- users/return1.json | 6 +- users/revathskumar.json | 4 +- users/revi.json | 10 +- users/revolunet.json | 8 +- users/reza.json | 12 +- users/rflpazini.json | 8 +- users/rg.json | 8 +- users/rgoyard.json | 4 +- users/rhardih.json | 4 +- users/rhiokim.json | 4 +- users/rhlnair.json | 4 +- users/rhnvrm.json | 10 +- users/rhynl.json | 12 +- users/ri7nz.json | 14 +- users/riadloukili.json | 12 +- users/ribeiroevandro.json | 12 +- users/ricardo.json | 10 +- users/ricardogouveia3.json | 12 +- users/richardcooper.json | 12 +- users/richie-bendall.json | 14 +- users/richiebendall.json | 14 +- users/richienb.json | 14 +- users/richo.json | 10 +- users/richsage.json | 4 +- users/rickary.json | 6 +- users/rictorres.json | 8 +- users/rigging.json | 4 +- users/riju.json | 12 +- users/rinaldi.json | 6 +- users/ringe.json | 10 +- users/rip.json | 6 +- users/river24.json | 10 +- users/rixius.json | 8 +- users/rizky.json | 6 +- users/rjw57.json | 8 +- users/rkh.json | 4 +- users/rkjun.json | 6 +- users/rko.json | 6 +- users/rl.json | 12 +- users/rloopteam.json | 8 +- users/rm.json | 4 +- users/rmartin.json | 8 +- users/rmf.json | 12 +- users/rmlewisuk.json | 10 +- users/rmm5t.json | 12 +- users/rmsubekti.json | 8 +- users/rmunn.json | 6 +- users/rnelson.json | 12 +- users/rob.json | 10 +- users/robario.json | 6 +- users/robdodson.json | 10 +- users/roberthernandez.json | 12 +- users/robertlucian.json | 12 +- users/robin.json | 14 +- users/robotblake.json | 10 +- users/robxu9.json | 10 +- users/rock.json | 8 +- users/rodchyn.json | 8 +- users/rogeriopradoj.json | 8 +- users/rogeriorc.json | 12 +- users/rohanc.json | 10 +- users/rohithasrk.json | 12 +- users/rok.json | 14 +- users/romac.json | 8 +- users/romain.json | 4 +- users/roman-boiko.json | 10 +- users/romanboiko.json | 10 +- users/romkey.json | 10 +- users/ron975test.json | 4 +- users/ronnchyran.json | 12 +- users/rootulp.json | 4 +- users/rosarior.json | 10 +- users/rosebudandmoon.json | 4 +- users/ross.json | 4 +- users/rossjones.json | 4 +- users/roy.json | 4 +- users/rpavlik.json | 8 +- users/rpetz.json | 10 +- users/rpetz1.json | 10 +- users/rpowis.json | 4 +- users/rubensfernandes.json | 8 +- users/rud.json | 12 +- users/ruedap.json | 8 +- users/ruhland.json | 12 +- users/rumpl.json | 6 +- users/runphp.json | 12 +- users/rur.json | 10 +- users/ruucm.json | 10 +- users/rverrips.json | 10 +- users/rx14.json | 4 +- users/ryan.json | 4 +- users/ryanjacobs.json | 10 +- users/ryanleland.json | 4 +- users/ryanmjacobs.json | 10 +- users/ryanscott.json | 8 +- users/ryanseddon.json | 6 +- users/ryanwu.json | 12 +- users/ryck.json | 4 +- users/ryepdx.json | 10 +- users/ryf.json | 4 +- users/rylee.json | 8 +- users/ryotahirano.json | 4 +- users/s-a.json | 10 +- users/s.json | 8 +- users/saas-ninja.json | 12 +- users/sachinjain.json | 10 +- users/sadko.json | 6 +- users/saeid.json | 10 +- users/sagru.json | 14 +- users/sails-spinnaker.json | 10 +- users/sails.json | 4 +- users/sailxjx.json | 12 +- users/sallar.json | 12 +- users/sam.json | 6 +- users/sambhav2612.json | 10 +- users/samirtalwar.json | 10 +- users/sammyt.json | 4 +- users/samsoffes.json | 4 +- users/samuel.json | 10 +- users/samuelstiles.json | 4 +- users/san.json | 14 +- users/sand.json | 10 +- users/sandeep.json | 10 +- users/sandropadin.json | 4 +- users/sanfyin.json | 12 +- users/sangliere.json | 4 +- users/santtu.json | 10 +- users/saravanan.json | 4 +- users/sarith.json | 10 +- users/sarkasper.json | 4 +- users/sascha.json | 4 +- users/saschame.json | 4 +- users/saschamzh.json | 12 +- users/sasha.json | 4 +- users/sashko.json | 10 +- users/sauerlo.json | 14 +- users/saulhardman.json | 10 +- users/sauravtom.json | 10 +- users/sbuzonas.json | 12 +- users/scarf.json | 10 +- users/schiff.json | 10 +- users/schjetne.json | 4 +- users/schlaus.json | 12 +- users/schoolapply.json | 10 +- users/scio.json | 12 +- users/scottrobertson.json | 10 +- users/scottsauyet.json | 12 +- users/scoundrels.json | 12 +- users/scr.json | 10 +- users/scribe.json | 12 +- users/scritt.json | 12 +- users/scrittit.json | 12 +- users/sdailey.json | 6 +- users/sdqali.json | 4 +- users/sean-vieira.json | 6 +- users/seanecoffey.json | 8 +- users/seanirby.json | 4 +- users/seb.json | 4 +- users/sebacruz.json | 8 +- users/sebelga.json | 4 +- users/secretery.json | 10 +- users/seikichi.json | 6 +- users/seiran.json | 6 +- users/selwin.json | 10 +- users/sendcloud.json | 4 +- users/senura.json | 4 +- users/senuraa.json | 8 +- users/serdar.json | 4 +- users/sergeibelov.json | 4 +- users/sergey.json | 10 +- users/serverside-boilerplate.json | 10 +- users/serversidetools.json | 10 +- users/sesser.json | 10 +- users/sevagf.json | 4 +- users/sevos.json | 4 +- users/sexyfishhorse.json | 10 +- users/seyedi.json | 8 +- users/sg.json | 4 +- users/sgehlich.json | 10 +- users/sgerrand.json | 4 +- users/sguidetti.json | 10 +- users/sha2nk.json | 10 +- users/shad0wcore.json | 14 +- users/shagen.json | 14 +- users/shagun.json | 12 +- users/shaieilat.json | 4 +- users/shaun.json | 6 +- users/shawnsi.json | 10 +- users/sheedy.json | 6 +- users/sheknows.json | 6 +- users/sheldonrupp.json | 10 +- users/shepjeng.json | 10 +- users/shibu.json | 6 +- users/shidhincr.json | 4 +- users/shiftkey.json | 10 +- users/shimizukawa.json | 4 +- users/shionryuu.json | 14 +- users/shirkey.json | 10 +- users/shivapoudel.json | 8 +- users/shldrs.json | 10 +- users/shps.json | 8 +- users/shreyas.json | 10 +- users/shumate.json | 10 +- users/shy.json | 6 +- users/siamak.json | 8 +- users/sid.json | 12 +- users/sidak.json | 4 +- users/sienikasvusto.json | 10 +- users/sigfried.json | 4 +- users/signicode.json | 10 +- users/sija.json | 10 +- users/sil.json | 4 +- users/sillysina.json | 14 +- users/silvers.json | 10 +- users/sim.json | 8 +- users/simbo.json | 10 +- users/simgeker.json | 12 +- users/simon.json | 4 +- users/simonkberg.json | 12 +- users/simonwalsh.json | 10 +- users/singh.json | 6 +- users/singingwolfboy.json | 8 +- users/siteware.json | 8 +- users/siutsin.json | 14 +- users/sivasankarnc.json | 14 +- users/siwatpru.json | 10 +- users/sjs.json | 8 +- users/sjwilliams.json | 8 +- users/skeletonframework.json | 4 +- users/sketchmore.json | 8 +- users/skidding.json | 6 +- users/skinofstars.json | 10 +- users/skip.json | 8 +- users/skwasha.json | 4 +- users/skymaiden.json | 6 +- users/slackit.json | 6 +- users/slashsbin.json | 12 +- users/sliceofcode.json | 4 +- users/slikts.json | 10 +- users/sloria.json | 4 +- users/sm.json | 10 +- users/smg.json | 4 +- users/smirking-ninja.json | 10 +- users/smly.json | 4 +- users/smt.json | 8 +- users/sndnvaps.json | 14 +- users/snhack.json | 10 +- users/snhackspace.json | 6 +- users/snig.json | 10 +- users/snwflake.json | 10 +- users/softcreatr.json | 12 +- users/softnayr.json | 10 +- users/softwave.json | 10 +- users/sohalt.json | 10 +- users/solid-constructs.json | 4 +- users/solidworx.json | 8 +- users/somya.json | 4 +- users/sonalraj.json | 10 +- users/songdu.json | 10 +- users/songmu.json | 4 +- users/sonnywebdesign.json | 8 +- users/soong.json | 10 +- users/sorairo.json | 8 +- users/soralv9.json | 8 +- users/soren121.json | 6 +- users/sotayamashita.json | 10 +- users/soulis.json | 14 +- users/souri.json | 8 +- users/specimen.json | 4 +- users/sphw.json | 4 +- users/spier.json | 6 +- users/spirited.json | 4 +- users/spockz.json | 4 +- users/spooky.json | 4 +- users/sputnik27.json | 10 +- users/sqneffect.json | 4 +- users/src-run.json | 12 +- users/srezic.json | 4 +- users/srivathsa.json | 10 +- users/srmor.json | 12 +- users/ss.json | 4 +- users/ssiefkas.json | 10 +- users/stacey.json | 6 +- users/stack72.json | 4 +- users/stakats.json | 8 +- users/stanzheng.json | 4 +- users/stefan.json | 12 +- users/stephdatu.json | 10 +- users/stephendavis89.json | 8 +- users/stephenhay.json | 4 +- users/steve.json | 12 +- users/stevegraham.json | 4 +- users/stevegrunwell.json | 10 +- users/stever.json | 8 +- users/stewart.json | 4 +- users/stoshiya.json | 6 +- users/strainno.json | 10 +- users/straub.json | 10 +- users/strawson.json | 4 +- users/streethub.json | 10 +- users/struktur.json | 10 +- users/stuart.json | 4 +- users/studer.json | 4 +- users/styleshare.json | 8 +- users/suaoc.json | 4 +- users/sublee.json | 10 +- users/subtub.json | 14 +- users/succhiello.json | 6 +- users/sudhq.json | 10 +- users/sue445.json | 4 +- users/sugarshin.json | 4 +- users/sun.json | 6 +- users/sungchi.json | 4 +- users/sunny.json | 8 +- users/sunoru.json | 12 +- users/superbil.json | 4 +- users/superdev.json | 4 +- users/surender.json | 8 +- users/suriyaakudo.json | 14 +- users/susheel.json | 4 +- users/swarnava.json | 14 +- users/swarnavabhattacharya.json | 14 +- users/swinton.json | 4 +- users/symphonycms.json | 10 +- users/synack.json | 8 +- users/synvox.json | 10 +- users/szelcsanyi.json | 10 +- users/szgal.json | 4 +- users/t-ashula.json | 10 +- users/t.json | 10 +- users/tad.json | 14 +- users/tadejm.json | 10 +- users/tadeo.json | 10 +- users/takano32.json | 10 +- users/takanopontaro.json | 6 +- users/takashi.json | 4 +- users/takashisite.json | 14 +- users/takuro.json | 4 +- users/talkative.json | 4 +- users/tam.json | 10 +- users/tamberg.json | 4 +- users/tameraydin.json | 6 +- users/tanel.json | 4 +- users/tangocoder.json | 14 +- users/tanja.json | 8 +- users/tantalor.json | 8 +- users/tap5.json | 4 +- users/tarcisio.json | 6 +- users/taschetto.json | 14 +- users/tastapod.json | 10 +- users/taye.json | 10 +- users/taylor.json | 4 +- users/taylorcc.json | 4 +- users/tbaltrushaitis.json | 10 +- users/tbekolay.json | 10 +- users/tbr.json | 12 +- users/tbrennan.json | 4 +- users/tc.json | 10 +- users/tchel.json | 12 +- users/tclh123.json | 10 +- users/tdsh.json | 6 +- users/tdue21.json | 8 +- users/teambition.json | 10 +- users/teamosc.json | 10 +- users/tec.json | 10 +- users/teenst.json | 4 +- users/tellnes.json | 4 +- users/tenacioushusky.json | 12 +- users/teppeis.json | 10 +- users/terkel.json | 6 +- users/test.json | 4 +- users/test12.json | 10 +- users/testdouble.json | 10 +- users/testermotherfucker.json | 4 +- users/tetwis.json | 10 +- users/texty.json | 10 +- users/texty1.json | 8 +- users/texty2.json | 8 +- users/tf.json | 6 +- users/th.json | 8 +- users/thangeda.json | 10 +- users/thasmo.json | 12 +- users/the-zumata-team.json | 10 +- users/theboshy.json | 12 +- users/thedersen.json | 6 +- users/theflow0360.json | 12 +- users/thehippo.json | 4 +- users/thehodge.json | 6 +- users/thekhenzie.json | 10 +- users/thelonelyghost.json | 12 +- users/theodi.json | 10 +- users/therebelrobot.json | 14 +- users/thescoundrels.json | 10 +- users/theuves.json | 4 +- users/thewebguy.json | 10 +- users/theyranos.json | 4 +- users/thi.json | 4 +- users/thiagohagy.json | 8 +- users/thibautd.json | 6 +- users/thingsinjars.json | 10 +- users/thj.json | 6 +- users/tholu.json | 4 +- users/thomas.json | 10 +- users/thomd.json | 4 +- users/thompsonemerson.json | 4 +- users/throger.json | 4 +- users/thulioph.json | 10 +- users/thypon.json | 8 +- users/tiaan.json | 10 +- users/tian.json | 10 +- users/ticking.json | 10 +- users/tigra.json | 4 +- users/tih.json | 10 +- users/tilgovi.json | 8 +- users/tim.json | 4 +- users/timjb.json | 4 +- users/timmolendijk.json | 6 +- users/timon-josh.json | 4 +- users/timothy.json | 4 +- users/timothyandrew.json | 4 +- users/timtjtim.json | 14 +- users/timuruski.json | 4 +- users/timzenner.json | 10 +- users/tiryoh.json | 12 +- users/tkahn.json | 10 +- users/tleb.json | 14 +- users/tloep.json | 8 +- users/tlvince.json | 6 +- users/tmn.json | 12 +- users/tmpvar.json | 10 +- users/tmw.json | 6 +- users/tnoda.json | 4 +- users/tnviking.json | 14 +- users/to4iki.json | 6 +- users/toblea.json | 4 +- users/tocttou.json | 10 +- users/todor.json | 6 +- users/toedter.json | 8 +- users/tokuhirom.json | 10 +- users/tolu.json | 12 +- users/tom.json | 12 +- users/tomalec.json | 6 +- users/tomasmcguinness.json | 8 +- users/tomass1996.json | 12 +- users/tombuildsstuff.json | 4 +- users/tomchentw.json | 10 +- users/tomdavies.json | 10 +- users/tommarshall.json | 4 +- users/tommy.json | 12 +- users/tomohiro.json | 8 +- users/tomoya.json | 8 +- users/tomraithel.json | 12 +- users/toneden.json | 4 +- users/tonekk.json | 6 +- users/tonivdv.json | 10 +- users/tony.json | 12 +- users/tonyb.json | 4 +- users/tonyb486.json | 4 +- users/tonypelletier.json | 4 +- users/tonyphelps.json | 8 +- users/tonyskn.json | 6 +- users/toolbear.json | 10 +- users/toomore.json | 12 +- users/toonketels.json | 6 +- users/torjue.json | 8 +- users/tornqvist.json | 8 +- users/towry.json | 10 +- users/tpojka.json | 14 +- users/tracking.json | 12 +- users/transrate.json | 8 +- users/tregusti.json | 6 +- users/trev.json | 8 +- users/trevorburnham.json | 4 +- users/trey.json | 6 +- users/trialtrialtrial.json | 12 +- users/triplein.json | 10 +- users/trisk.json | 6 +- users/tristancode.json | 10 +- users/troopjs.json | 6 +- users/troutowicz.json | 4 +- users/troy.json | 4 +- users/true.json | 4 +- users/trueserver.json | 4 +- users/trykickoff.json | 8 +- users/tschaub.json | 6 +- users/tscm.json | 6 +- users/tulos.json | 8 +- users/turnbullm.json | 8 +- users/tvsloot.json | 8 +- users/twada.json | 6 +- users/twotoasters.json | 8 +- users/tyabe.json | 6 +- users/tzi.json | 6 +- users/tzmartin.json | 14 +- users/uda.json | 12 +- users/udondokodoon.json | 8 +- users/udzura.json | 4 +- users/uec-azlab.json | 6 +- users/uersi.json | 6 +- users/uglybugger.json | 10 +- users/ugurceylan.json | 10 +- users/uiwwnw.json | 8 +- users/ulysse.json | 6 +- users/umaar.json | 4 +- users/umputun.json | 10 +- users/undozen.json | 12 +- users/unicodejs.json | 10 +- users/unisharp.json | 14 +- users/unmoremaster.json | 10 +- users/uservoice.json | 10 +- users/usuck.json | 4 +- users/utkarsh.json | 4 +- users/uu59.json | 8 +- users/uv.json | 10 +- users/uvd.json | 4 +- users/v.json | 10 +- users/vagnersantana.json | 10 +- users/vagnervjs.json | 10 +- users/vaibhavsingh97.json | 12 +- users/vakiliy.json | 6 +- users/vardy.json | 12 +- users/varundey.json | 12 +- users/varunkumar.json | 10 +- users/varzea.json | 6 +- users/vbalien.json | 10 +- users/ve.json | 10 +- users/venomvendor.json | 10 +- users/vevix.json | 8 +- users/vi3okryulfqjthl6.json | 4 +- users/via.json | 4 +- users/vicey.json | 10 +- users/vicnicius.json | 10 +- users/victor.json | 10 +- users/victordavydov.json | 4 +- users/victordieggo.json | 8 +- users/viditor.json | 10 +- users/vieiralucas.json | 8 +- users/vijayendra.json | 12 +- users/viktorbergehall.json | 4 +- users/viktort.json | 4 +- users/vineetdhanawat.json | 6 +- users/vinipalma.json | 12 +- users/vinnyguitar.json | 8 +- users/vinwz.json | 4 +- users/visav.json | 4 +- users/vishal.json | 8 +- users/visionmedia.json | 4 +- users/vitalk.json | 6 +- users/vito.json | 10 +- users/vitor.json | 14 +- users/vitorbal.json | 8 +- users/vitorbritto.json | 8 +- users/vitornogueira.json | 4 +- users/vjpr.json | 4 +- users/vko-online.json | 4 +- users/vmanot.json | 4 +- users/vnk.json | 10 +- users/vocksel.json | 8 +- users/voltdb.json | 10 +- users/voodootikigod.json | 4 +- users/voxpelli.json | 10 +- users/vsisk.json | 8 +- users/vsouza.json | 14 +- users/vsr.json | 6 +- users/vt47.json | 12 +- users/vtalbot.json | 8 +- users/vtence.json | 4 +- users/vulk.json | 6 +- users/vuquochuy.json | 10 +- users/vvakame.json | 6 +- users/vzool.json | 6 +- users/w.json | 14 +- users/wangbin.json | 8 +- users/wangchi.json | 12 +- users/wangeleile.json | 8 +- users/wanja.json | 4 +- users/warwick.json | 6 +- users/warwickmasson.json | 4 +- users/watchout.json | 10 +- users/wavell.json | 6 +- users/waynesan.json | 14 +- users/wbinnssmith.json | 6 +- users/wd.json | 8 +- users/web-xaser.json | 10 +- users/web.json | 12 +- users/webbson.json | 12 +- users/webcomponentsorg.json | 8 +- users/webdevrich.json | 12 +- users/webpro.json | 12 +- users/weejames.json | 10 +- users/wei.json | 12 +- users/weijunji.json | 12 +- users/werle.json | 8 +- users/wesbos.json | 6 +- users/wesley.json | 10 +- users/wesleydesouza.json | 12 +- users/weslly.json | 8 +- users/wfxr.json | 10 +- users/wglab.json | 4 +- users/whatsim.json | 4 +- users/whittle.json | 4 +- users/whizark.json | 6 +- users/whostolemyhat.json | 6 +- users/whym.json | 12 +- users/wickett.json | 6 +- users/widged.json | 8 +- users/widnyana.json | 12 +- users/wiesner.json | 8 +- users/wilddog.json | 8 +- users/will.json | 8 +- users/will3942.json | 10 +- users/william17.json | 6 +- users/willianduarte.json | 10 +- users/willin.json | 14 +- users/willpower.json | 12 +- users/wind4869.json | 10 +- users/witchard.json | 6 +- users/wjr3.json | 12 +- users/wmwragg.json | 4 +- users/wolfiezero.json | 10 +- users/wolflee.json | 4 +- users/wong2.json | 6 +- users/wordpresspokhara.json | 8 +- users/wouterjanson.json | 14 +- users/wozozo.json | 8 +- users/wp-blank-canvas-framework.json | 10 +- users/wp-freelancer-client-panel.json | 10 +- users/wp-uptimerobot-dashboard-widget.json | 10 +- users/wph.json | 14 +- users/wpk.json | 6 +- users/wpsitecare.json | 10 +- users/wraithan.json | 12 +- users/wrl.json | 8 +- users/wrong-entertainment.json | 12 +- users/wsmoak.json | 10 +- users/wtigert.json | 4 +- users/wttw.json | 10 +- users/wty.json | 4 +- users/wty21cn.json | 4 +- users/wuan.json | 4 +- users/wuthefwasthat.json | 4 +- users/ww24.json | 6 +- users/wwalker.json | 6 +- users/wwbrannon.json | 12 +- users/wy.json | 8 +- users/wychoe.json | 4 +- users/wytrivail.json | 4 +- users/xcuze.json | 10 +- users/xerula.json | 10 +- users/xffljjqbqvsywxqakpvdbwyqqyt.json | 4 +- users/xhh.json | 10 +- users/xiaods.json | 10 +- users/xight.json | 8 +- users/ximi.json | 10 +- users/xinuc.json | 4 +- users/xkerman.json | 6 +- users/xlab.json | 10 +- users/xlune.json | 10 +- users/xoebus.json | 10 +- users/xsc.json | 10 +- users/xtansia.json | 12 +- users/xuhong.json | 8 +- users/xuncheng.json | 8 +- users/xyc.json | 4 +- users/y3sh.json | 10 +- users/y6nH.json | 6 +- users/ya-ota.json | 10 +- users/yadavjpr.json | 10 +- users/yaler.json | 4 +- users/yantene.json | 6 +- users/yanyiwu.json | 10 +- users/yappo.json | 10 +- users/yarmomackenbach.json | 10 +- users/yaro.json | 12 +- users/yashar.json | 10 +- users/yasyf.json | 10 +- users/yatil.json | 6 +- users/yeltsin.json | 4 +- users/yhnavein.json | 4 +- users/yimengtianya.json | 4 +- users/yimengtianya1.json | 10 +- users/yimengtianya444.json | 10 +- users/yiramang.json | 4 +- users/ylrxeidx.json | 8 +- users/yoelp.json | 4 +- users/yogesh.json | 8 +- users/yoggy.json | 6 +- users/yoginth.json | 10 +- users/yoloconfessions.json | 4 +- users/yoruaki.json | 8 +- users/yoshuki.json | 6 +- users/yosida95.json | 12 +- users/yosugi.json | 4 +- users/yotpo.json | 10 +- users/youhide.json | 4 +- users/yousuf.json | 10 +- users/yousuf2.json | 12 +- users/yousuf3.json | 10 +- users/yrosen.json | 6 +- users/ysarbabi.json | 12 +- users/yshrsmz.json | 8 +- users/ysong.json | 10 +- users/ytaler.json | 12 +- users/yu-cheng-chuang.json | 8 +- users/yuanyan.json | 10 +- users/yuchi.json | 4 +- users/yudoufu.json | 8 +- users/yudppp.json | 4 +- users/yuhki50.json | 6 +- users/yulun.json | 12 +- users/yungsang.json | 12 +- users/yuniorusop.json | 12 +- users/yuriel.json | 8 +- users/yuriy.json | 4 +- users/yurrriq.json | 10 +- users/yusuke.json | 6 +- users/yzlow.json | 4 +- users/z.json | 8 +- users/zachary.json | 8 +- users/zaki-yama.json | 8 +- users/zander.json | 6 +- users/zaploink.json | 10 +- users/zaurus.json | 4 +- users/zaz600.json | 8 +- users/zdwolfe.json | 12 +- users/zebmccorkle.json | 14 +- users/zellio.json | 8 +- users/zen.json | 10 +- users/zenjoy.json | 10 +- users/zenorocha.json | 8 +- users/zenry.json | 12 +- users/zhengyi.json | 10 +- users/zhiyuan.json | 4 +- users/zhiyuanshi.json | 4 +- users/ziloi.json | 10 +- users/zimozito.json | 6 +- users/zimp.json | 8 +- users/zinc.json | 8 +- users/znck.json | 4 +- users/zonble.json | 4 +- users/zzeris.json | 6 +- users/zzimbler.json | 4 +- users/zzzzbov.json | 8 +- 2933 files changed, 18319 insertions(+), 18319 deletions(-) diff --git a/themes/8bits-monochrome-amber.css b/themes/8bits-monochrome-amber.css index 4cec6017..08304f33 100644 --- a/themes/8bits-monochrome-amber.css +++ b/themes/8bits-monochrome-amber.css @@ -3,116 +3,116 @@ @import url('https://fonts.googleapis.com/css?family=PT+Mono|VT323'); body { - font-family: 'PT Mono', monospace; - padding: .4em; - font-size: 1.1em; - background: #000; - color: #ffbf00; + font-family: 'PT Mono', monospace; + padding: .4em; + font-size: 1.1em; + background: #000; + color: #ffbf00; } a:link, a:visited { - text-decoration: none; - color: #ffbf00; + text-decoration: none; + color: #ffbf00; } article { - display: block; - margin: 1em; - position: relative; - max-width: 800px; - margin: 10px auto 0; + display: block; + margin: 1em; + position: relative; + max-width: 800px; + margin: 10px auto 0; } article h1 { - color: #ffbf00; - width: 100%; - margin: 0 auto; - padding-top: 1.5em; - font-size: 3em; + color: #ffbf00; + width: 100%; + margin: 0 auto; + padding-top: 1.5em; + font-size: 3em; } article h1, article h1+p { - font-family: 'VT323', monospace; - padding-left: 6%; + font-family: 'VT323', monospace; + padding-left: 6%; } article h1+p { - margin-top: 0; - margin-bottom: 3em; + margin-top: 0; + margin-bottom: 3em; } article h1+p a:link, article h1+p a:visited { - color: #ffbf00; + color: #ffbf00; } article p { - padding: 0 2em; - text-align: justify; + padding: 0 2em; + text-align: justify; } article p:last-child { - padding-bottom: 1.8em; - font-size: 0.9em; + padding-bottom: 1.8em; + font-size: 0.9em; } footer { - margin: 0 auto; - font-size: .8em; - text-align: center; + margin: 0 auto; + font-size: .8em; + text-align: center; } #gravatar { - display: block; - float: right; + display: block; + float: right; } @media (min-width: 750px) { - #gravatar { - position: absolute; - top: 4em; - right: 3em; - } + #gravatar { + position: absolute; + top: 4em; + right: 3em; + } - #gravatar+h1+p+p { - padding-top: 2em; - } + #gravatar+h1+p+p { + padding-top: 2em; + } - h1+p { - padding-right: 6em; - } + h1+p { + padding-right: 6em; + } - h1+p+p { - padding-top: 0.8em; - } + h1+p+p { + padding-top: 0.8em; + } } @media (max-width: 750px) { - body { - font-size: 14px; - } + body { + font-size: 14px; + } - #gravatar { - position: relative; - top: 4em; - right: 2em; - } + #gravatar { + position: relative; + top: 4em; + right: 2em; + } - article h1+p { - padding-bottom: 1em; - } + article h1+p { + padding-bottom: 1em; + } - article h1+p+p { - padding-top: 0.8em; - } + article h1+p+p { + padding-top: 0.8em; + } - footer { - padding-bottom: 4em; - } + footer { + padding-bottom: 4em; + } } img { - filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10); + filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10); } diff --git a/themes/8bits-monochrome-blue-white.css b/themes/8bits-monochrome-blue-white.css index 8c331374..32dea2f1 100644 --- a/themes/8bits-monochrome-blue-white.css +++ b/themes/8bits-monochrome-blue-white.css @@ -3,116 +3,116 @@ @import url('https://fonts.googleapis.com/css?family=PT+Mono|VT323'); body { - font-family: 'PT Mono', monospace; - padding: .4em; - font-size: 1.1em; - background: #00f; - color: #fff; + font-family: 'PT Mono', monospace; + padding: .4em; + font-size: 1.1em; + background: #00f; + color: #fff; } a:link, a:visited { - text-decoration: none; - color: #fff; + text-decoration: none; + color: #fff; } article { - display: block; - margin: 1em; - position: relative; - max-width: 800px; - margin: 10px auto 0; + display: block; + margin: 1em; + position: relative; + max-width: 800px; + margin: 10px auto 0; } article h1 { - color: #fff; - width: 100%; - margin: 0 auto; - padding-top: 1.5em; - font-size: 3em; + color: #fff; + width: 100%; + margin: 0 auto; + padding-top: 1.5em; + font-size: 3em; } article h1, article h1+p { - font-family: 'VT323', monospace; - padding-left: 6%; + font-family: 'VT323', monospace; + padding-left: 6%; } article h1+p { - margin-top: 0; - margin-bottom: 3em; + margin-top: 0; + margin-bottom: 3em; } article h1+p a:link, article h1+p a:visited { - color: #fff; + color: #fff; } article p { - padding: 0 2em; - text-align: justify; + padding: 0 2em; + text-align: justify; } article p:last-child { - padding-bottom: 1.8em; - font-size: 0.9em; + padding-bottom: 1.8em; + font-size: 0.9em; } footer { - margin: 0 auto; - font-size: .8em; - text-align: center; + margin: 0 auto; + font-size: .8em; + text-align: center; } #gravatar { - display: block; - float: right; + display: block; + float: right; } @media (min-width: 750px) { - #gravatar { - position: absolute; - top: 4em; - right: 3em; - } + #gravatar { + position: absolute; + top: 4em; + right: 3em; + } - #gravatar+h1+p+p { - padding-top: 2em; - } + #gravatar+h1+p+p { + padding-top: 2em; + } - h1+p { - padding-right: 6em; - } + h1+p { + padding-right: 6em; + } - h1+p+p { - padding-top: 0.8em; - } + h1+p+p { + padding-top: 0.8em; + } } @media (max-width: 750px) { - body { - font-size: 14px; - } + body { + font-size: 14px; + } - #gravatar { - position: relative; - top: 4em; - right: 2em; - } + #gravatar { + position: relative; + top: 4em; + right: 2em; + } - article h1+p { - padding-bottom: 1em; - } + article h1+p { + padding-bottom: 1em; + } - article h1+p+p { - padding-top: 0.8em; - } + article h1+p+p { + padding-top: 0.8em; + } - footer { - padding-bottom: 4em; - } + footer { + padding-bottom: 4em; + } } img { - filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%); + filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%); } diff --git a/themes/8bits-monochrome-green.css b/themes/8bits-monochrome-green.css index 4dd57571..f62f2c26 100644 --- a/themes/8bits-monochrome-green.css +++ b/themes/8bits-monochrome-green.css @@ -3,116 +3,116 @@ @import url('https://fonts.googleapis.com/css?family=PT+Mono|VT323'); body { - font-family: 'PT Mono', monospace; - padding: .4em; - font-size: 1.1em; - background: #000; - color: #0f0; + font-family: 'PT Mono', monospace; + padding: .4em; + font-size: 1.1em; + background: #000; + color: #0f0; } a:link, a:visited { - text-decoration: none; - color: #0f0; + text-decoration: none; + color: #0f0; } article { - display: block; - margin: 1em; - position: relative; - max-width: 800px; - margin: 10px auto 0; + display: block; + margin: 1em; + position: relative; + max-width: 800px; + margin: 10px auto 0; } article h1 { - color: #0f0; - width: 100%; - margin: 0 auto; - padding-top: 1.5em; - font-size: 3em; + color: #0f0; + width: 100%; + margin: 0 auto; + padding-top: 1.5em; + font-size: 3em; } article h1, article h1+p { - font-family: 'VT323', monospace; - padding-left: 6%; + font-family: 'VT323', monospace; + padding-left: 6%; } article h1+p { - margin-top: 0; - margin-bottom: 3em; + margin-top: 0; + margin-bottom: 3em; } article h1+p a:link, article h1+p a:visited { - color: #0f0; + color: #0f0; } article p { - padding: 0 2em; - text-align: justify; + padding: 0 2em; + text-align: justify; } article p:last-child { - padding-bottom: 1.8em; - font-size: 0.9em; + padding-bottom: 1.8em; + font-size: 0.9em; } footer { - margin: 0 auto; - font-size: .8em; - text-align: center; + margin: 0 auto; + font-size: .8em; + text-align: center; } #gravatar { - display: block; - float: right; + display: block; + float: right; } @media (min-width: 750px) { - #gravatar { - position: absolute; - top: 4em; - right: 3em; - } + #gravatar { + position: absolute; + top: 4em; + right: 3em; + } - #gravatar+h1+p+p { - padding-top: 2em; - } + #gravatar+h1+p+p { + padding-top: 2em; + } - h1+p { - padding-right: 6em; - } + h1+p { + padding-right: 6em; + } - h1+p+p { - padding-top: 0.8em; - } + h1+p+p { + padding-top: 0.8em; + } } @media (max-width: 750px) { - body { - font-size: 14px; - } + body { + font-size: 14px; + } - #gravatar { - position: relative; - top: 4em; - right: 2em; - } + #gravatar { + position: relative; + top: 4em; + right: 2em; + } - article h1+p { - padding-bottom: 1em; - } + article h1+p { + padding-bottom: 1em; + } - article h1+p+p { - padding-top: 0.8em; - } + article h1+p+p { + padding-top: 0.8em; + } - footer { - padding-bottom: 4em; - } + footer { + padding-bottom: 4em; + } } img { - filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10) hue-rotate(40deg); + filter: contrast(700%) sepia(100%) saturate(100) sepia(100%) saturate(10) hue-rotate(40deg); } diff --git a/themes/8bits-monochrome-white.css b/themes/8bits-monochrome-white.css index 3cef6a58..3c2cb98f 100644 --- a/themes/8bits-monochrome-white.css +++ b/themes/8bits-monochrome-white.css @@ -3,116 +3,116 @@ @import url('https://fonts.googleapis.com/css?family=PT+Mono|VT323'); body { - font-family: 'PT Mono', monospace; - padding: .4em; - font-size: 1.1em; - background: #fff; - color: #000; + font-family: 'PT Mono', monospace; + padding: .4em; + font-size: 1.1em; + background: #fff; + color: #000; } a:link, a:visited { - text-decoration: none; - color: #000; + text-decoration: none; + color: #000; } article { - display: block; - margin: 1em; - position: relative; - max-width: 800px; - margin: 10px auto 0; + display: block; + margin: 1em; + position: relative; + max-width: 800px; + margin: 10px auto 0; } article h1 { - color: #000; - width: 100%; - margin: 0 auto; - padding-top: 1.5em; - font-size: 3em; + color: #000; + width: 100%; + margin: 0 auto; + padding-top: 1.5em; + font-size: 3em; } article h1, article h1+p { - font-family: 'VT323', monospace; - padding-left: 6%; + font-family: 'VT323', monospace; + padding-left: 6%; } article h1+p { - margin-top: 0; - margin-bottom: 3em; + margin-top: 0; + margin-bottom: 3em; } article h1+p a:link, article h1+p a:visited { - color: #000; + color: #000; } article p { - padding: 0 2em; - text-align: justify; + padding: 0 2em; + text-align: justify; } article p:last-child { - padding-bottom: 1.8em; - font-size: 0.9em; + padding-bottom: 1.8em; + font-size: 0.9em; } footer { - margin: 0 auto; - font-size: .8em; - text-align: center; + margin: 0 auto; + font-size: .8em; + text-align: center; } #gravatar { - display: block; - float: right; + display: block; + float: right; } @media (min-width: 750px) { - #gravatar { - position: absolute; - top: 4em; - right: 3em; - } + #gravatar { + position: absolute; + top: 4em; + right: 3em; + } - #gravatar+h1+p+p { - padding-top: 2em; - } + #gravatar+h1+p+p { + padding-top: 2em; + } - h1+p { - padding-right: 6em; - } + h1+p { + padding-right: 6em; + } - h1+p+p { - padding-top: 0.8em; - } + h1+p+p { + padding-top: 0.8em; + } } @media (max-width: 750px) { - body { - font-size: 14px; - } + body { + font-size: 14px; + } - #gravatar { - position: relative; - top: 4em; - right: 2em; - } + #gravatar { + position: relative; + top: 4em; + right: 2em; + } - article h1+p { - padding-bottom: 1em; - } + article h1+p { + padding-bottom: 1em; + } - article h1+p+p { - padding-top: 0.8em; - } + article h1+p+p { + padding-top: 0.8em; + } - footer { - padding-bottom: 4em; - } + footer { + padding-bottom: 4em; + } } img { - filter: contrast(700%) grayscale(100%) saturate(100); + filter: contrast(700%) grayscale(100%) saturate(100); } diff --git a/themes/8bits-monochrome.css b/themes/8bits-monochrome.css index 91fc4cd0..176a0030 100644 --- a/themes/8bits-monochrome.css +++ b/themes/8bits-monochrome.css @@ -3,116 +3,116 @@ @import url('https://fonts.googleapis.com/css?family=PT+Mono|VT323'); body { - font-family: 'PT Mono', monospace; - padding: .4em; - font-size: 1.1em; - background: #000; - color: #fff; + font-family: 'PT Mono', monospace; + padding: .4em; + font-size: 1.1em; + background: #000; + color: #fff; } a:link, a:visited { - text-decoration: none; - color: #fff; + text-decoration: none; + color: #fff; } article { - display: block; - margin: 1em; - position: relative; - max-width: 800px; - margin: 10px auto 0; + display: block; + margin: 1em; + position: relative; + max-width: 800px; + margin: 10px auto 0; } article h1 { - color: #fff; - width: 100%; - margin: 0 auto; - padding-top: 1.5em; - font-size: 3em; + color: #fff; + width: 100%; + margin: 0 auto; + padding-top: 1.5em; + font-size: 3em; } article h1, article h1+p { - font-family: 'VT323', monospace; - padding-left: 6%; + font-family: 'VT323', monospace; + padding-left: 6%; } article h1+p { - margin-top: 0; - margin-bottom: 3em; + margin-top: 0; + margin-bottom: 3em; } article h1+p a:link, article h1+p a:visited { - color: #fff; + color: #fff; } article p { - padding: 0 2em; - text-align: justify; + padding: 0 2em; + text-align: justify; } article p:last-child { - padding-bottom: 1.8em; - font-size: 0.9em; + padding-bottom: 1.8em; + font-size: 0.9em; } footer { - margin: 0 auto; - font-size: .8em; - text-align: center; + margin: 0 auto; + font-size: .8em; + text-align: center; } #gravatar { - display: block; - float: right; + display: block; + float: right; } @media (min-width: 750px) { - #gravatar { - position: absolute; - top: 4em; - right: 3em; - } + #gravatar { + position: absolute; + top: 4em; + right: 3em; + } - #gravatar+h1+p+p { - padding-top: 2em; - } + #gravatar+h1+p+p { + padding-top: 2em; + } - h1+p { - padding-right: 6em; - } + h1+p { + padding-right: 6em; + } - h1+p+p { - padding-top: 0.8em; - } + h1+p+p { + padding-top: 0.8em; + } } @media (max-width: 750px) { - body { - font-size: 14px; - } + body { + font-size: 14px; + } - #gravatar { - position: relative; - top: 4em; - right: 2em; - } + #gravatar { + position: relative; + top: 4em; + right: 2em; + } - article h1+p { - padding-bottom: 1em; - } + article h1+p { + padding-bottom: 1em; + } - article h1+p+p { - padding-top: 0.8em; - } + article h1+p+p { + padding-top: 0.8em; + } - footer { - padding-bottom: 4em; - } + footer { + padding-bottom: 4em; + } } img { - filter: contrast(700%) grayscale(100%) saturate(100); + filter: contrast(700%) grayscale(100%) saturate(100); } diff --git a/themes/afterdark.css b/themes/afterdark.css index dac33bb1..98726ade 100644 --- a/themes/afterdark.css +++ b/themes/afterdark.css @@ -1,66 +1,66 @@ body { - margin: 0; - padding: 50px; - background: #242f3a; - font: 16px/28px "Garamond", serif; - color: #94979e; + margin: 0; + padding: 50px; + background: #242f3a; + font: 16px/28px "Garamond", serif; + color: #94979e; } article, footer { - display: block; - max-width: 720px; - margin: 0 auto; + display: block; + max-width: 720px; + margin: 0 auto; } article { - padding: 28px; + padding: 28px; } footer { - padding: 0 28px; - text-align: center; + padding: 0 28px; + text-align: center; } h1 { - margin: 0; - font-size: 24px; - line-height: 32px; - color: #d7721a + margin: 0; + font-size: 24px; + line-height: 32px; + color: #d7721a } a, a:visited { - color: #577446; - padding: 4px; - text-decoration: none; + color: #577446; + padding: 4px; + text-decoration: none; } a:active, a:hover { - color: #5dd912; + color: #5dd912; } a img { - position: absolute; - top: 0; - right: 0; - border: 0; + position: absolute; + top: 0; + right: 0; + border: 0; } :-moz-any-link:focus { - background: #bc4a46; + background: #bc4a46; } ::selection { - background: #bc4a46; + background: #bc4a46; } ::-moz-selection { - background: #bc4a46; + background: #bc4a46; } #gravatar { - position: relative; - float: right; - margin-bottom: 1em; - margin-left: 1em; - border: 1px solid #ddd; + position: relative; + float: right; + margin-bottom: 1em; + margin-left: 1em; + border: 1px solid #ddd; } diff --git a/themes/black-beauty.css b/themes/black-beauty.css index 837d966f..9c5d441e 100644 --- a/themes/black-beauty.css +++ b/themes/black-beauty.css @@ -1,85 +1,85 @@ @import url(https://fonts.googleapis.com/css?family=Lato:300); html { - font-size: 16px; - background-color: #1a1a1a; + font-size: 16px; + background-color: #1a1a1a; } body { - font-family: "Lato", Helvetica, Arial, sans-serif; - font-size: 1.3em; - font-weight: 300; - color: #CCC; + font-family: "Lato", Helvetica, Arial, sans-serif; + font-size: 1.3em; + font-weight: 300; + color: #CCC; } article, footer { - max-width: 877px; - margin: 0 auto; - text-align: center; + max-width: 877px; + margin: 0 auto; + text-align: center; } article { - margin-top: 1em; - background-color: #2a2a2a; - padding: 1em; - text-align: center; - position: relative; + margin-top: 1em; + background-color: #2a2a2a; + padding: 1em; + text-align: center; + position: relative; } article p { - text-align: left; + text-align: left; } article p:first-of-type { - text-align: center; - font-size: .8em; + text-align: center; + font-size: .8em; } article p:last-of-type { - border-left: 3px solid #CCC; - padding-left: 15px; + border-left: 3px solid #CCC; + padding-left: 15px; } #gravatar { - width: 70px; - border-radius: 35px; - display: block; - margin: 0 auto; - position: absolute; - right: -6px; - bottom: -20px; + width: 70px; + border-radius: 35px; + display: block; + margin: 0 auto; + position: absolute; + right: -6px; + bottom: -20px; } h1 { - font-size: 1.5em; - font-weight: 300; - text-transform: uppercase; - display: inline-block; - padding-bottom: 12px; - border-bottom: 2px dashed #CCC; - margin: 0; + font-size: 1.5em; + font-weight: 300; + text-transform: uppercase; + display: inline-block; + padding-bottom: 12px; + border-bottom: 2px dashed #CCC; + margin: 0; } a { - color: #ff6666; - text-decoration: none; - word-wrap: break-word; + color: #ff6666; + text-decoration: none; + word-wrap: break-word; } a:hover, a:focus, a:active { - color: white; + color: white; } @media (min-width: 640px) { - h1 { - font-size: 2.4em; - } + h1 { + font-size: 2.4em; + } - body { - font-size: 1.4em; - } + body { + font-size: 1.4em; + } - article p:first-of-type { - font-size: 1em; - } + article p:first-of-type { + font-size: 1em; + } } diff --git a/themes/blackwood.css b/themes/blackwood.css index 6fa5dbc2..2aab4ccf 100644 --- a/themes/blackwood.css +++ b/themes/blackwood.css @@ -1,137 +1,137 @@ @import url(https://fonts.googleapis.com/css?family=Lustria); body { - background: url(data:image/jpeg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAAA8AAD/4QMtaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjAtYzA2MSA2NC4xNDA5NDksIDIwMTAvMTIvMDctMTA6NTc6MDEgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDUzUuMSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QzNEOEQ3NzU1NDBBMTFFMTk4MjJCQ0IwQTI2N0M1ODUiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QzNEOEQ3NzY1NDBBMTFFMTk4MjJCQ0IwQTI2N0M1ODUiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDM0Q4RDc3MzU0MEExMUUxOTgyMkJDQjBBMjY3QzU4NSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDM0Q4RDc3NDU0MEExMUUxOTgyMkJDQjBBMjY3QzU4NSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pv/uACZBZG9iZQBkwAAAAAEDABUEAwYKDQAAGHMAABm8AAAzCQAA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JNptJpNJpJJpJJNJNtppNptppJNNtpNpNtppNNNNJJNJpJpNNNJtNtNNppNJpppNJtJtppJtJtppppNpptJtpNJpJNtJNptNpttpttJNJppJtttpJJNNtJJNNJNtJtNNpNttttNNJJtpJtNpJtNNNJpNNJJtNttJJJJNNJJJptNJtNJpJpNtpNJNtJJtNNptJppNttJtJtptpJJNpJJpttJpJttJNttNttJJJtttJNpNNNNJtpJpJNtpNJpJJpptpNNpppppNNtJJtJpJppNJNptJptJtptNJpJpNJttJJJpNJNNNJpptJpttJNNpNNpppJpNpJttNNtNppJttJtptttJtJJNNJNJNJNpttpJtNptpptpptJpNpNJNJJJttNJNptJJJpJpttpNNpJJNppJJppttJJJJptJtJptttpNNpNJJJtNpJJJJpNNtNpNtJtNNJptNpNtptptJptpJNNNptNtpNJtJtttJpJNNJJNNNpNpNNNtNJNJtptJptJNtpNttNtpNtpJJNJpppptpNtNNJttpNpJNtNJJNNNNNptptJtttJttNtpppNJNpJtJNNppptJttJJtJtJppJNNJNJNppptNNtNtNtJJtpJpNNJJJppNtpttJJJtNNJNNJNJJJpNNNppNpptJptttNttJtJNtJNtJppNpNtNNppptptttNpNJNtNtNJJpppttNtJJptNtJNtpNpNJtptNNJtpptpNJJptNJtJptpNNtNppNNpNtJJNtpptNptttJJptNJpJJJJtNpJNJpJpJNpJNNtptpppNJpJpJpptJttJNtJttJJNpJppJNtttNtptNNJtJJNNJtJpJJJJNpJNNJJpJtpJNpNNtNtNNpNJNNNptpppJtttNttptptNtpJpNNJJNNpNpNtJJpptptJJtptNJJNNNJptJJJppJppptpJpNptNJpJJNNtpJNJJtNNpJJttJppNJpNNNJNtttttJtNNtttNpNttJNpJNtNNNNptJptNNtJtpJtJNppJJtttJtJJpNJtJtJppttNtNJJNJttJtNJtNJpJJtpNJJJttNNJJNJJJpJNNJJNptppptJNJpNppptttJpJpptNJJpJtJJpNNJNJtJtpNNttpptJJNJNJJNNJppJpJJpJpJJptNtJtptJtpNJJNttpNNtJJJttNJJpJNpJNppJppNJNNttJtJpJNtNJtptNtpJtptNtNtpNJppJJpJJNNNJNNNJNJNtNpNptJppptpJNJtJJNNtJNNtptNtJpNtNJNtNpNNptJNNJJJJNNtNttJJtttttJNtpJNptJJtNJpNJtJtJtpJNpptJtJJtJNttNptptNtNtJtNtNJttptJtttNNJtJttNJptJJttNNJtJttNtpJNJtNJNtttJtpNNpptJJpJJpJJJtpJtpNtJtNNptJppNtJpppppJNNNttpttpNtNNJtJptppJJNtpNNNtNttJtJpNptJpJNptNtJtNttpttpNJNppJJtJNtNNNNttNtpJJNNptJJJNJppNttJNttptpptNpJtpNpNtpJtNNNJJtJJtttptJNtNNNNpJNptJNJNNNJtJpNpNJNpJJNJtpJtNJNNptJNtNNtppNJpttNpJNJtpNtJNJttNNNptJJJJNppJpJNNNJNNpNtttNNJJtNJJtNJttptpptJpNNJppNJtNJpJptpJpttpJttttNNppppJpNtJpptNNJttpNptttJtJJppJpJJppNpNJNttNNtpJNNJtJtpJNNpJppJNpNJppttJNtJJNJpNpJNNJtNNNpJNNtJtNJpJppJJJNNpptpNptp/9oACAEBAwE/EASOYxW+RYUtXaFbqND7/wBQgorzPdFyfUaTNGKFdlcujFboavhE56ClQuruRKrUYY0fkmvMQXcs+TH11ZdcmThyTYpSGglW1Iapcp/hrYkVMA+H3EXcY8dA0qmy9joWKUqxRz1+CjrT5FUHlR6gS75iV3cRuC8qPJXKySdBksl/Y6SJM18junFoYkq6Onn8Mtl/jFbZ5UMinNQZpNYcNjOH0VEUIqTuScT1HdrVQxKM/wDkl1vAlBXhvwNS2tEc/XuIZlMqkx+lgqDx9EaHMpecqCo1Nk/I2qEqUqUac/pb+8xdxMU9RQrm2+xe836ErXpHsebA5U8z8KkeY9jctN3SzuSKlZS9x4WlmfAlesGu5FSUSuuhRyJDRk+juOJONnU7Ka7iQ56v0QLd4/SpVq0iw0FRFSo1UYSjsUM+sGwVj2VLqJ9piynLFMm6JpJjtN6Civn8FCjNU8oMRq0px3FcPye6zyH6EqT2JX3/ANRVI1efDGnXyeyZY7pz5Qzch5GJCXPwJ1qq7kURRKKDp5eR0ma0FJtKa26lI118iQn9gmkcjVwvhDh5P4TM8tNosbWFKIl9rexobF29wK3Bqt1syXPSGVQLl0ThMdnOUhRIQUJ4eRjpa8dxWsmtCG/Arcbh/wCJE2KOKoqSbVNDoqx4HYd2iKuyj9llzN06Dz/OBaucJljeq+CqFVocDUp+TIls1X6JMH9QanJEl5ZUz0RXyFNdhxVigMlyWEweKllZWHUTr8oQ8L3FcquJ3vEROxSp5uRa9TXghpJupfSSUiqpafUSvZB2QRuG8/C2FHWV0K4cqeCiVOiuvA5gq1TMw6PnuZc5p0Z/XYTxjyeOiEwtncSryaEqvMR6kiZjLQ0p3iJ7HtFbIJQy1I8jxegpLWjoTS5Ke5Q2Lpy9hCyymkQS9+8COMateGXSrDcTsQoTfOfIo3oXcx1U9qEpdVTftkUtvI9CcWGjvHbo2iqGhI01dT8FJuuvVIcyavCT2E66M7oY4LoikxKUsZ3MKBa4EYRWh+h5qpZ2Rq718CP3Qyi5MvQ8mxDoPSjKpxl4RC5kepjhblDsJKa5gSgU6iftFC5F+jbSiZX+CVZOzfolwfJkO6uqIlWZUtDSwt0iXVMEjLRP0iRNmgq96udh4aulD7jTPDidxkausdyKWsULqnHsJENCMCtD9DSpUrHZCu63ab7Cb5hofrJiGC0tYSnuVMjVFW1+o9XT2IjfWDlASvRMw45igjRs8wgXVTXqNtNI6FSTs48Dbi81+GJ/0MTwUFkJb2Kp2f6JGujVB4ezb8osXJfEXbaenwdRLt8I2CTBf4LRThfRJYVWu7RLhSnEu0CryfQVByfkp6V7RpYhPyRjPLwhUZzRjtKlVfqGupQJ7UMgkoeGvA7gp2P1IR5SftDQ23ZIjYlXaqciZ0TfZCQm1epJp5CqLRFz6tUk0Z/wqXdiJt81TsvhRU/pJx3jsXlz/CiDJJEG3+iyusCU5EIpK2O4266cSU8izq30gSZRnvKE8EaKIkdSn+QN1oT7odqpNX5RFF/YGcJpHsioHiJ/thrqUwOX3PhCG8+ilM7SpsQ4byiBdJFim/sSnIW9vYtQt+j+Csy0EqL+Tn4X/PA9W7yl6GpNYV9WL1RG6JdIk9CmiF2G34ZKULquMMesYn6XjsqDxhP+ebMfMxvSyrZIbEWVUr2K+tBOtYj2WJMwmJYIlyEyyv5VD1TZDOKfVDdJU96DfMR8FVmw0Mlb/RKObi1OfwtlaCRH8sjvl9knZVSVk1n/AAhzWE1JSndwThsV6FFEXHdNL0N15UvGo1UsFy8KHngvafgvrcNWReI1uLRCivsr806mlZpeyKqTCfa5aaiQuUTkleEWJsm/IzrI1lpclQlpL9lTOxb2LDqO+kmXNhV7yJ7gkJFvwkof6NgpuFoiehY6VKNlfZeZy8kDEhSn3EmoeNoJRuoWtPkM5Zjsh1HMo7kXPZz6KE6kJKWy9DSi1lP0bgTb3FoRVXkemwQJy+kNgaoQ0lprsJVHhvUjSHK8Q+h3sbcfpeWodCfCMLWCEJcnJfC6sdFKtT4KiNHQeHLRNex06LfzJ8pEE9hbPd0IGdkz3Ecl42RdV/8AQlBfygkUrSOluh3RRJTVOP0rFeGu9CLXREf5zQ7zFL3sJCIhq8+R+1dhE3SnUalS8vYJNPk8iVN/2RureuehPtgrbjQfsl55okTCairQnhes9WNuOHFtxqNZgur0fcm294Glt3o8Wpe/JfRYJrVGNQ2tivlRNx3JKPT4WpdGSSHWt+gq/vQdpSbaTeUOoP5i9wq3OtEYpuqQ3C4rjwUKGUxG9rxKJ9r1IijU23G0FDepW3Cpr09DJqtI8ChsWEvY8NeXRYe0D1SirS9De6jJclnFeo36Fg7Soa6iOW3wbsfhfc6lxyQ1EuUPsNRzH+CwwpjuVTxovTGqdB9mTiuW9SKIcpNKRU+uvoigrwK7/QnUOt/AqpKqdGWOsp+hG0tVXpI7mpz8khTzN0HpHP2NS1zjukxV5CQ6o5HgfC1S7Xow3hVfguS6iaaPMemi1pIr9LE7yhEZ7P0WZ/kDNqnkvJlf8QN1am7/AMK45fsjtKX4KGs2flFCubfgShzj4Kvs6EyzlBHs+QI5xWbdULBuiiVsVE03JHPRlLlhKR0JrHoRNJ5T9pDlSzZ2Gl0tULKvT0OoeZbunW0GhzhV6Id21BNPXivRoaZ0uKx1gzclHY8h6GhSrRsit1pS6RBMupCtIchJmI01ySYsDl8LO1RttdV6IeruRo1mU+lBy5ltxIIQ4Ul2nLJM70R4ZSpWIkdHm/giaNf0pEtVyXVsnboJUK/4L6f1Be2y1svh6I9Duo/qlG3GJjuPLJ4bjwLDvnnkYFdOfAkNFk3oWl6KxY/PzDKn3dFaMImno8okpc3sqRNXo7Fs5hCxrJT3SJRa2E2mYn4N1t7MmnjJhtMQMSerD0solMSGTtb1EpZaIQO8SOTUq6RJjTxQQnizOpoqNk5Niwmr1izt/UVhvMNdyEU0INIw/wDB2Ho4LrdodU+SQsPFseglbRcLi80aKHSDW+UOVKtxQ7bpemP3gLDuUPdEq0PAz6E1t6NMSiS1JS0bUeCwXSE9BiSuhtPvQSGTt/oW3NB2He/WBinVKW7CJzOLFIbtL+HoH8Dx2WuntF0nOifcWqS79SjEhx4FmDbwfx1KOd/gvOT9DuOJXxiqpayhrNX6lTI5Oh1XbKHco8E90L4LCdwxfxgm2S2062GaRvVDSzvnIsmv47QLQm7p90VdD7K9m+xOzmiogZKEVTTqJQ3pDXY7DSY1Qe00Gl1o53q+iqtcQ11ExydSYhjAkyWVHhi0ap7jpuH8PIdpIpKjwIlujslrCkqRxRboULpI6k1j0yUc0keBYRuO0pCDWovLf9kTcj1Q09VcxUVwaJRzbpHgsXlON1/4TbvFDZWlrrsKTyorbjU0qoddxIb7djJ6y10K3/MFSclUWpzFqbUFJwrUjvJNWev1it9ZeBorz8pDTQ71afUxTWrrzG5e9RbeElPWgs8RBJCzmraBITVK/JqSTV8n8K+ZT8GlI0Q1bk/RDZ/CBFoJYv5Ds5NVFinKfs0Kruu4svSMDHUHJs0ah9ULflQNl36k02typOzLVVlQPC5sVJ6nGSntYwJUrC0yPKb5saYGivjmpEksxKfcuS5X7jS8/wBqW9KSLd4HJVlX6MoXNZ5NSVIEqTlQxk7aIXX/AFi0xOIbDUKoo4LNKTRiVFn9HVQqupLZtirzpZYlj2sZRrKWfUSreJoO4T36kky5v2VQthyuidOw6hodmn6EluUEo2eZFNOX6GrXUu6Hss0iNkOr3V7DcMwml3GBeFY5RYg971QkvdI6IhdynYR7kiqlsvDZ4DO5VDKHUJaVLRlr0O0jaw45sihr/ohKLShcXJiyqXZKMWGolxW3oTRO8z/eBty63XtEK82n3X+FyVzCanB/hGS0cVR5SVht5Jp+RNE4bXdFyaiUNzzkbhNhJLvJ3TfR96BKN4r7KPdE9xqW2UdJIXQsJNzhtFW8CbfZ+izsZmqyHSOUMkXmJaZsNe0JS7Uf6GlYqUpsIk65MWtckuVh7G4pPIdtlcmp/wBAhPm69zBNVyLdhD9seG2Q8x/ZFVUV/hlYaz+C1neKrue2uwkLpR2PcYqlsS4vpBLbKLsjrIv1glQi8+mUxUyvAlDlh26lhv7Fq8qCNJSU9C6VqLyO3+wXnNPc18HuvsNLbMnFLKjwJA1UU2LMmauGxpw40gxyUIVw1q5n2QI4ok4ISav5LOuRjlf0SNO2L5tCw3S8rqXS8yQ46PE8Et9CVf8AXK16JdDcv9gwovQtyqhqidVQtMwxVCdKCRApUqq35jupykhIjqXFqqe6MPHkrJd2xM/Yic0swTisulC3JmJEaTjYVJ5S+ivZUUdlug5L2aFEP64k1JaUlpaRXTGZNpc0n5ZWS6QmMopglqaREU2ZCmbVmp/ZsRNc0vIrN37RzcOPA6pPMl3ZudxrVWl7IvCiLK5lDwG0ZfwScvSCqRW3X0L2/g2qiW+qSITwk3HVCp0U6CbqzT8Fhrd0KNLmnTcvcxc5JPnoJQ61/RyhiheCpliSG3OlPpQc2iRYwTgvuaO4qn5FfdwEif67YlRDUwkaaq9C9ufc06tL2KGilEu5FTWV2ZOYjD9l2kV/CuyJ9jy+gXoCzb8ORMVdYRDucdhuJ5fGV9H0o0w2K5N3a+D1bEKXlqGRYtaDXfJG0MWx5aaLU1e0dZFp1iJLOrdSziICVMJfgtGHD7FUQjzo9EuG/wADzPS5aH/WPCI3oovYrTOKai0rh9SsdWk/Be5Nz4NeSEVStUdLZkXeNr4Rm7D+CJ85v1QTnanPZjv0UU3MuKyMbN3addiTqLsWU1eIY1TGXQrZvTkVKeaBKqLiU7qeginm79x1aw15FrYgemBpjyHq1/GxOi6+ETLbV5UnPYtgv5JDOKL2hGlSohOe4syeO420aKtNkp/y6Q/8OYqCVq+hk8XkjE7v/BJRcheiL5zflUFVuVxSm/rs6Ks9STTLztf6US5opvo/Akqc1puxTHT4NSmxWPBcWIkSTeFYa6DjYgPlsVSVJcz0P5NiFF6MVlu+0IakNJe0jojW3Ys2MVcxjRzHuNdhoTlCLmHLG45NSxrmVT1TFb2UiSTf4VbGEhLyf0Y2WWlXuRq4tDJQ67TuNRRSr3BQocQ1KTjKqtyhFo/RU2948FZcJsUWbHiP2Wp5C0NZip6fhGWuTEt/UgnDCTexBUWscBCOrXwaEt20Mp1qpY0RVqR1EvY8aMfpp0ftG7ExXXoEfIUyVRuJEVr+kfruxVZtDHhMzsNx5HNdr9FUrVGkhCidD8P9JLrilKMNythdxfRKE1l+kJG0KpTpRc0JSkh683sRSbRMVlSZIQ2qh90Q6P8AwgZoo9hG2JTRiRpW+rEpYx2HKaMNexUZPM1TV4JNOayOj6ORK8w6bEkozMpbMdpnaZje4mOVD6zBb2qHBrafJQi0SJTyN7Y8O1jlMV0k/ooTLkn5IEfNwK04w5glclz6REO/66FhHJlmdKISnyN1k/ZUp0RhSZ/C5qbpJkLNV7grGkPArhNKf8CadTiVl8yYdYa+ClPFmb8lD6H5KoxdfpVq1liUE6OaC6OHD9CbnUDwjtNtxqtrWH5gcPt9jjeaI9CEnVkjzH+DU1Xt4ZFI5fKLDo10Enlio1heqFa0JU6CNdV8KudVT6CU5OPwZJOTPIlOUL2J+Gp6kqWn1E03cbXZW2a1p0gWVU1h06IVATrt/g74zHwzaxKjoRDSeYJd1qqEJa19DeMmpnnjnI6vTZ9hpzNqfo0MiySF0VHKfsva2OqkQcV4+FTc3x2Y1S0S8wWXNK6CS+j9oi1zp0KErR46iQy0Z90kQaaqq7HzKaMKRaaIXsauzU9USpGir1Mp1iPJU/NaCSqmG29E0p812K2WovFBpz0dIK1nFCKq9L9GJtK1WqoRk1zL2xW5646l0opViUTzLKYj2IkiKNOSjcvovdZm6MUx1pAnadfSYzky49E9BU9EzMcm3Y7YWE5RYhxT4VPRym58MruSl1G6+Q53ZJB8vI2uWpT7JkPpRkW/N+8ltxVX7DolPOBGnStVDijb4XDtUToTpH4UUavWdiSU8L4R3qGWuax1Q4aeFC9ocTzIbhegtY1iu4qbl6J9UZGE/A2nnjsMqaKegzmy2I7ui/8ACK2M02y9jujhSP5bF28qf0lVMRX1Nog53ZYPVeRlHJRPdkO+zaZ4LfcWjafA21Jza7MZqnDjyJNfL6Xb1XsqS8Jz2IRE09Z2EaXpPo6gbr1rHZo0WX+jiK1dix0yvZfWqVS9bMfvP0RFn0uBwnGnwyyJygnDStK+jV5O4jblq6EYPbkxqGsR8Eo1dNv4UG9Wp9DiJ0iPIsGiHs2NSpUq/RddTwrdzVVIQkIHfZ+Ipq1SPWDaSHyKvqbXZjdv4LRsbCUvRWVLJV2oLqiaiTBcvYtBmEJSvNMj168DqP8AYHbeMt+GUJcL++iouUymYsUEl9WOaRoqEYPNxyaQyi1iBKleUVn5D7QRitEeRTllVsIcRStPJVyIR1UVGy8FD2JJtXn2WSdp2kj14E0p+XoRvaW11TJNp+hKuZZxM/TJ4TRjyYufQJDvVR5K1O5PqM1EU+Dbs+JEhXz+Ms7CEk2a7jynZ+ipFReiq2kRE7Q/EETXch4jU58jaVV2TDJx0T9i5CKuoqzI1DkShRcOWlzVBoamFHV3EmHM+vodb6r6JQnP/RnDtXoJKWqQxoS7NL6JULo1HkSjJIkmRX/0aVyRPRweBtejzQ+WJVN4LLvdmbVP2RRc5nzAnDhomu48JvWvkeGI/RIGpK2SFXKggTokxkm0sEMlPdtPyQb616GpOkJPWS7lzJ9BolZePhLelCqlc11FsepW3Shhn/KokGjXxjOSfOutCpE7DJInav0aVPMR3ElCWtxFJtBp6aiUc4qX/P4TsWELPf6Ec16BKk7ki5W/YqLYvSFg1yK2zTKGayuUJSKxqyfQeeSZb5SSLW1GxjcsUIfM/wDRA3mntDy20jQ9LgJThKqSjQ9XHeefpNTxR4HENbQzvQSqYSHaYuY0tHaIKCRSH4cmSZaJTGJ/vZItoeV+iXa3FbZ6iVZSPCfgt1vK8oqE0qmJXWn6KIc0RXGi+i03J8Et5xyiJKVhuHshk0rfyJGr1JHMNL0Si06ggbMT5RU3V+BoniBTHVRM7k2srdySgtRWnd1RDdOK7EE9UE7tPhJIx00TtVF3Rx7Kkd3K9sctF/XJtyhCXsVb3waOg1aVGu0X6RdXbqKIbEr8IcKQlVcmNQ0b8iSrk2vA8luay3zkkHg/EndQOJc37TGfSkbon+F96NOxLkKtbUaFTSjDrBNa2alvwSaFdfojVLhOXHcaWUFgWeXkZQvElaVHKdmec9Emlz+Ir5WfwoU6eLIbn0WN1AqhsTnQhHd+x0D0nyUhDooeCzhhX8kvRMrTwIsHkOuXvIxtsPRU71hexR1tT1RKzR9G7v648NyT9E4sRcu0YvA6XNG3pgdwLFWuwrScPBxzyNNK3qg9m/wWG2qOpr+wXqxy0Zeor2OPBEpy+ihtzfaC9kP60PUo7EIq6TMYKBMKd7Ti44hzP0ViENoamdpQva/BQmP5IxM1EN1XUrGHHoTl/wAuTRGVTpA0SQsuVyl0Jwo0tuhnBt1gywlo9jVMu5CU3/UITCZgoJp/jUWVRkulRSMZz+D6P+gXsde3+FDR6yvQvRwgu5whpJ1gtNx4oViJxcit4izT8oLqQik+GuesC1NIJpoz+lDFEOrXUejm0vZUVhqOgztyoXkbJXjPcrcrOZ7EmoaDcjd4r2EkN5YmW5fyCFYo0lDVHXsVo0oeo9lTKP6gyhNcyxuaDyfBcWYnxBdpRUF4/g8Jo1HgkpXqxtwaq1DRSksLGg1rJa9E2k0kXZiUN6SLRvEJ1uPCPp6IcSrROORWn1r1Ypw0hpkikoU/UKlnI/I0cr/RlNLJ3hjRuXokSUzLFGKIXggaaNJejpOJ8C8Ei0aOGeT+iNoSUaHokS5QJNkVr+y97JskoXiPIz5Cp5Ld0eFeHSBtyd9R3DX8DlItCaWgtyzT0SeiKdmhOtAlniLrcZLUbQjhFpJjrOz9iG0UhH5YkOlSv0go5SSBvQ6TpVfkgavMogZMw607oUNLUJkKGoZXRRwnBUmmBzoqkTKtl/RlRovolm6/CROTXsUqjmGqPqUTmF7RCXQmNpk9Oz6EUxqxWi38y48jtSdoZlTNZ9yUTGPwizVLXkkHbsTeRtq8xo1a+2JuEhd1ar9oSoulmw6bJ5sv7ck2X7FaS1IndEErczK9DG7VNvqVmv4GUWUmp6Cwmy0Nt6tB00v6elCKhycCTTMoUttas0M07WnUaqry9j2b0dD2icIeClHUWzsNCl9A7TTdpTK3a1MbQjJmUdxurUdCUpvL2UdH0bcXNCUsrC1uXex5VO7GnZctTyNGrMyl7GdBS2rS+DKnKSSZS8KzEEnMqC25P6XdvpCbRpPhCuSymqimq1qXStWoF53p4JS1miHbsNZaUi5OaWjoJOS0ajsTKMxYals6zuIOtHcrUPKFhuv0SmcGwoMpaefjFbqkJaZ5lyRS8NNR1ZBrpdiVdLDJk3yaEJWvwdJtdUF57+iSqlLl4RWW0NEqLKa/StmrZZLkIml/lxM6X8jTZiXC5P0zJtN+5KLMJGLmINMoVSnN3EE4a0oE7Mlba8zzybwrFo8qvUSHWgQlPFRGwxRLWsexTzFH0er+wRTaijs6McOG2SU/K4ySXSBlK5udMjcZFFitHyXooiUuEJDjDXclU5TX6j3/AETgl19jqtwvvS48pRyFB6JfseVY/UxF2FCSi2VBVMZkbrjQVhZtrYe1oSeipraK+R24atLUdhEkLnTuQu/qEFOctfSRnlN03kZpGqOw4k9fgUk5ptUUg8tL9L7lHZEiaMfJFJE4no4G20WrmC6OhVRuJg6jN1K3nwIq2Up9CRgmy2RpsfGNvlm3mxmoeHQdJtYhLvJg73bGvGiYimVVHwh0sjByRGayi1/3Ig1CySaTx+oSWlmlJLbRRyYqShZL4OpLkiKByrtTdsdoXNwlsX92RjnEbCVeZU7lHYSoq39CKJOaT5FM12bjvTSgg3TcOFHkZtpNauekIakylPoSlajhbKC5P6zKzdqqbk1N2bgdKdKL6ZKjuy5bPAuWVA4XXGhHy+FNOrY6PmTTcdOwlFinpMdJptGzGHcnsNPd6ZW6nHwlXNPwMqlP/RfMse4qut5CiJ1TbSugsqrOfRIpWhyXeGvgp0aQxpxaISseiEnFMJ/3kmZ6JQhphrCp5Lj3ZHaXtDV5vwQSbr2Y9P8AwaetxZDh9ZCTRRugkPYxoRrQSHLVsWGy2pnqO02WthqjAyTlvDqWYcyUlSff0NL7R4JS9H+DaitP9EhrQfKCrnkVUNSomVqkJOBj01ZJz0KFf9YXKmIIbSeomHeAtUYj+8k7egoW6GTa0UeSLZ5abfUhR6KvYYipDmvZ0622RWTvDt0KqMsxnEnsIo/pYsdfRDTko/CIy0h66oa9kLZQ15KGeLOw46yTa8MrR8n+Eev9ElTv9HVWlNHCGoalmp0DSidlPsiOr6Kpov8A6U8l/CpFzlErZoi+GiklLl5UFaeygVmm8EoLm9CxLkvCNSdUr9iL5NMVK1oRJrNewzSZ6eSZW9ULH9YKCWt4n2JpiF8DLoSmizbyJIwVvJsDYh4n4K2az+HPlDZ9SKlarMwuxUcn8EUbsv0JUWn+kZNUy2v6w7e5v4QpLEYrJVnpQRrQSXWUNVLEeSU0sCmf9RMutXQhN8NMUKZy1USSlZr2JKu0QLvUkRdb4WE7Q47EYMu5dtyU9ittKNV2EUrd+yEMnBltDTJaabwIodEUobUuc5K45THcbrSG0nPX4GhU/wCSVasOmxJwWqZJJuU+TLVNxwm+rQoW6hCWVpp6Gg9aky82/D5ERSp/8QqSZO0SusHejzAlVjLp0FUSsi7iVOXKnuKu4/AlE6UIODu7lTvkkSj3PwIlRoIQ9JQ5rq1/o8u3lON4EQO0L2LQ2P0fuagWeRMITqWtSC/lYyj1gReNw52J0sv4PLLOPwwa0IJuaeWMuY2kQo0Ts9h1nuTPo1TomX/7BDpKnwSUyek+Ry558wOJIzboKq+gsC9SvgWdSKE26ySsNDarGULnHUunSX8Ek16NL2WTiaiNt1T8IczQqyV03UnHUQhFoxuc0UsvR6/Arhn+ZDeQW1lvUigpXQlGinURpqszUjKcShZSoNEtnIi7WXucClDK/BVKlSb9TypflCt1iJo8wJkC/wB8hZ1MClpOyStzkeHXUP3QZJNK8Pyzk8/AksrlDbxCp0Fb5SfhB86jFOgckuh/CECzMnha9nkZCPsMvtxLGnwW3T8Q7OXsTJqspo1vJVsLGlKWIm20uOJvd+C+KSXKp0ZYkUbVSN/8Y6N/2pc5YUwuns8VMToJi0p7Gphocrnn6Vs1dJkzDaqtdy9mHkcklmZ0oLVqkmu6EsUSdVygpW2SVB9A7kYU7kZWs1dEK0i5skuXPpkOW9No+k0y5Ets5NouUYSjsVO8SMk+E09jyucexnRyYkwzQlW6JtJ9hUc3/SNqul47lEmndCTdWw7ilp8ycdU9r0JWPYuTdL6KUucr2Os7Eyx3RM4YKR2klidheyGu48rJTQbh7JEKfJx3LiOgqLXLyOVz38JqbQenb4K5f2BpfV2G8rCQVJ+a+jxoY9x5IFRWKbMmzEBJ3kpHRMkyyc8vBCrAoaWWl3kY1FqOO4rHzRQjVCtpFGHdCnIqRzTkwWUuH1F6nImVP/Ra7zToVdD0LVtD8DVf2CEabCJbyfoSpnX0bFlqNXpDNt3Wqk6tXHUeUNeBKG1o9MWSlKDpIxT4RmNRuHGsvYSVvSEUktJEcIvT0X2iROw4Tl5lN9RQ0mzuhp20TfQrqKIfUhXEc81ArpOH/hLg1TVFTbSn2LDUl0fUwtfwihqYaXH5QXfL4L3pJiy5hpSktcCTstCy2aL9EpUMpehrnhyHo5UyQfT8Gq3pC8CuVtBCisKEvonS1q7sVN5L2RT8IUJekolGMliatUTsNJSfOWyD5yO4ruuk+0jOS8tp9RqlaQM+mN2BOmiCAPDj2SUXTIsneepWZzZ7DctPFZ3GOO6ihFLiU5fYelToLEWExFTtD9IeWOlC8Mu5mfhCQlumu6HTTqmxC3pGp4CpEcvoqfJE8Mii9eyEJKpxzgaS1Zfo1xAuaY9BOUUI6L8JcnzFEl6ehaNZUvcue4pTYy0uOSMQ/g5JNXn9Fr1eSxNXSh7NoTl3o47odSxSNyK5iKmgkJNYfyIqFoY0uWGl4Hvzhjst00P1ZgUqtESVXWzfYurjXxLEjqtCjsO3/gSVFqnHKAlE9YEh+Zfo1GSDY2PCqZQlLTtDwM2j5NeijHfuiK/7J79SqK/kFcf2JFW4/wBKOo/JWezjuInDnNfA1DJkjsVvkJKlevaEJRyYksDHcZwo4kukEY5GnPKCgzlu8C+vws2P6Qi3hfB3tHDE6crHVC+HwwWkmCT1QyUm9hy+q/BCGt/BS5bo8bCuW7RFRIfKPSEhPb2duvJXm/8ATzPsWUS0oVLbJC66PA6Jbz7JQ4wn+jSaOdJ7yRElijgCSnPwWuwRaSC2ljbil3djLk56QKkrXdxr0ErRFX5kipvQZx5wY21rv5RCW0O4MShohJ4akZpRN/Yxcm/DRCC3ZSk26I6bDJmzVZE8/UiRTeROlPeEJ/NxO8xadvhZJ08+jyNHsV2VD9wMUt1lUZDJ4KrUSFcpg8R/BqsKpLoJz0xNJF1XGqGq1s/ZcPnHc1sL8Pc+l1cvhNraDWk0s1ZLb9F4HhiDCtpEoDSp6MxchrzZfom5cidlaf8AwbonL4Vq9vJQ9BeJOwXi0+jVKfyhhNX/AKWdI7yTSXWCjsNOCwqsst34JwajVwSVEJzk/YNpPlXyNEBXHhIPku5q2XkEpZigaqaWV5FLT3q+g1XFhSqqpPoVtRV1XsrZcvo9KdlPljNuvYejEufhcWavwOvXTqP7ex6I1gsf3MVQc0knbFWylONHHcmuR+ibmGqfZk0Fo+FaOTfoohz+D0fMOo4OSKp90NNMuSpsS6TFqT0jwLFOzY6SWwySnVOWKCXon8ET6HpDi3T4K/ZzuRioqlWR9Amu5BsX0emTWpDXINUbeE/UidHK8JPoPTuhKs817MHP6HpciMPmhXbV8FdS1YlRxaFBWa002Zd6kKe0x+hLIJ8qH6oq8kUk0kVzXK20Fnen0xK0S22x0t6jwOrqzDFSmn/gIm+vwhDjVDKbNt8xKFFUhpTomvpBRhL2OTFdy+4s+USNNM309idHk3E9D+nMWbafeEzchgoq2oGs1cuerGddnlbjVLdeS2XKGupORLos8Vz4Nf8AWYkS90JRNu1HYSqU0Vu4jUOjLC5teGThdav0eN8KGydJanoN4vwWr1JU3zfhFsN1qxolnDKIeYjeoO4BFK5t07Fml43QofZ6IPbA0ll/JGiHOLfySKEUVcQTWruU90JupUpYmkbIcUO2o5gJS3fCMeQrtyexEjbJ9hIqbdkY5pjuhWoNHpi6inhklLVYP4bCUg20qSKJLk6wLeqOK+BlGx4ErW6qpTbWVDGrLLYjaR/IZtEOKasXeKm6GqWyn4IXUXojVH9djwPgnCnCc+UWnOUMmrznpAsvFfYnR8CcvqmEMtpMtzaBVqtKjnKZeb5+aCuU3H59kdBJS+wSKLDbEhGz8CTtueiG3Dc58Dfa+l5zgRzfNG7FdiMhZ5jyNOR8x4YsRIqN2Imzz+pEpM/gSU+UDiYvbwxQVUBqGr+Ew5slXtAlQ5n5HTTZl4garQbrVZUXQatrRBc2Y9JchOeWEvI5hP8AIPWpyjlHQhGyyRbiQjlPgSjZz2Hbgasi6P6sCuI2aRuVBIooRIfnYlW9GUSWInseB+ipy1j8JKeYXhEK7F/JCWr2IQnzr2Yn88j+DmkVidkLHqRcGHT0JylfP2Xvf0iwtHJBBbAsvRfhZ0U51Kuo15KEYg09HlFDut17HRUXX07lRKnKHukST1zXgnJH8iub0hnfzPkuWjsUtVE6SN7lm0+4tB2j2LQzKIhO8yMSSqT2ihCqYo7CiWJaF548iSZWWq8uGWf4yict8oLkfySLpwpT3hDhtH/WFjcmvQdy0BY5UxeaQWbF3kdV2ldjoYNFVLmQaGrp6ZNGsfBKuqae6JwjQdp8YQnU0UiSaOU9yUuawNTxd42FLiJT7iw6dJfMidUoeVO9Q5XVJ/whVMKgycnSShrmxqH89j+LmKK50T7jVDmr1KcDHQSW3un5MEstlHMkthYUxK+CqrsNWtYex1bRy9D8PyVDkT3w4EhHKfAxQkJ5qlbc4p5E2p1JF0Uz6G0GE6buiXgihN3+C+0z/TsVOVVgetRVOVO5EPYzCjMM7sXDCr2GqXN7P4boqVzy8i1bq9UTDYSjwJTLm14KiOfstuPisnDAkrOXsdrVX7FSuOXpJZu5c8npjmFF0qCwjk/QzS7CrUt7FWvn7GcitUSeXORHtRHNukCWPPtCzyYyVJe+hbd7EGDKaanmNNefBg+pqWpavIsu39GfoJVRaaexlXw/sRveY9H0cc02SyImR4Zmak3MLO1fRbsqkjqzrPRlDSylfk1JVLk7kSzKGTizQ7n4Ow/BoRc/aFiGJHZ6WFiikoxKuZXeTI6EhGgy5U0n1EtYHqnnXqSldSpphOGYFk0EIO5a+QdVLESmlbC8jacuT9oabS5GNeuZ7DTbm8llMOA7YLb2kimiPpUiziH0ZJQylfk02Ynl5oLMvKXwbmOi8E5+T9FklpWYXuSKtRcdjGWyIhmsuRZbSq1XcmPNltqMVGtRqBddLPqiJSMWJ1u/UlMc2X2UZpWToMqLc7Vv0KnsMUx/qklykHnrTuUMsuIMtqilYyaR5o9yOkEqzYRPcGp6pR0TkpCFZKgjuK3ySpOafT+TkWi02qyhIbVQyk9Q7Sp2VIXMSFzCKKyqEYuXwXUwoxYtN0pPIZyXn6G61X9QhGd2n3Rhisp7sRDRM/o5DKKeg76lXcrPkvpdZ5oVKZbp4P3+Bmn4hHjPh9iPpBOZfRZbanRMUNLrTsK23z+GKq1U9M8V+i3sdRzGWqhrqyhLN9gm0knooLXzQiELSgm7g3tIxYTphdyFbca3Gq3NKdqFF1u0+57K+RbPCmD+GyH7TGs/rkHGrxQSqt2vIs3SlurJpuiHyvgXakLloKap0gp5JcFJrF/A2o5uPDIjTuuyHSSmgvrMfopK5wpVKrkxLnokO/8AaiX86lk+p5nofywSglloSZJJ3ceBWqmJabEaUL2XgjabvBCTg3f6PkCdC7mfyh6OSMVyqSnBmzqK+xonLpqhus6z6R4iXY8d8GUNyXskk0SQ1ecX7oXK8/hfpKXook0U7kEnOAtG1BKEhSnFVy3IytKez6hqs2rUy2oXbvTgzOWTklmBKExKS8Es7JuosO5pIr27skSiP6zkVur/AA8UpXNBUaY/0gXiztIsJpIdmtvbKQl0anyJqhh56FT9GgrHNIpc0rSS/uFhrb2V/nUuVcOPA8tNXn4JX1d5MGrX1EXaokVvmUCsW/s5NalzWCoPd9F7/WLSizbdoRDu8kN22UdB3Vktysbla1OaD9yeiTbL4REP644Edoceyc4dKk5c5gcRV0iR6ppQh0mIjq7J7l3R9EirK9yWPd/GSonFBuUnmV6OwTc7o0bpextNUiiXouvNx4LHI/Y3pi5OjDkqHkv0WJrH4YomFL6qEOJdYj2Ght6dD2optr7FdTu89B/45Is3l0fQaqS1oO90LlBUh5OO4lG1dQNLpQ33FROW6j8ir0LQ8BodK2nsPLLMhqNY9Cbwn/wcNNVM+BWPYubfpCJuKoVqBKGpldRLtO9iXOp1JRYmo1xUCtUd0XJCGT/CCuYnwInzm/KUF+RfsKaxb9M9KpjG13c12G9PgVX6pJiUxrCGnknTkLQeUy5tcixa2noxFHlqpF4KMXaoN1fT6NPNH6Rm+PUjOHu/Qyb1QvoqLcjAz+iFziwjTdFEJytmJUvRt7DbfNBLp/UNHoRMLV6DpYvPYjNZf+ENSy7IhPrPlDbc2HXySXpO1Pwl3/DYVfopZzRCdeZHfaVuxS00+MVW4dhTDWBJclWh+UPY7UXcsbVJhyVtuIylj4CUL+tA1aYS9j039Fr/ALYSdV/g6SruyXc/rsTjKIRb3Y8Tzb9iUrCnyVTVhjToKeRyNy1u7dCIbSEo9YqOJIyeyTVV24LXj/YiUnqiMHkUWrzPVDxHRNdi7cYYqkwn7TK+7Q/CywnaUZRmKiy1sVKub0Lfd9oRe2tQdIXP4Z8xCNav8Gict0XkVm7ElK8UGXJf2TC6i0NPpVtU/TEddo9CwtGSjb3oNRBa/RK6nEvuQjkbeGUr/YJ9R+iZNrHKbeVA8dZ4f6STT3/SShhtQJz0kQ28y/g12f0wPSi5oStJDV39qKCejHmY8otdRqH3KTKxP4RO0h4EdaU0ENpd9WQ5U07IVHTD+lKPqVwauSqVkojtDFh6cOuw2SwvLQ1MG043oJTGkPrMCX6eSA15g33Hgzhzt7jGvImWyqNQUIek/PpJI9Qk03g7DdZcn5Fq2jY1CeTPWhF3oPHMT9lbT0YzzWnYvVo0PsNqDXL3BUuLKPArbEpoOnm8OryYp2htFYZWUvJBOeSfkTmkaDlFNZ/waiK1adBaJzDHsr2JcN2m29BLOXD7lz/lRtv61LH0fgvufwjzhZkv/hFUtHsFYvHQRPoQtF4KNpYrTLr7QKkaqz6FK0OPwZJno2Eo9BNXycuqG3Rz/goTNabZIt01iI6CSlWos05EtL/KDXQ4oX5UpJqBzBMZwmuVC+5MrTkhmth46iqrVVn1EcXZxfoxarEDRWUbqWtbMz5sMuZHwqab29iGl6e0haVvQg76IS1eFHgSE60kWFcz+EHy4c9BdBhko5KfYtXhBquTr1RjGfQTlrEeSLfNYdPAsrWsFRHtTkJypUo5chHPRv6VLKEl5JKJJVrDsRnGZ9cGSk+eOok2KZo+wyu3MoZpWQQppR3PdH9nJFimyHN/QVx/UYzlswvQrWll0kS8Bmm5VGkjDSjwvjEmk5Uz4ZjbKXUbkIudx0TE7NufA5SLDhkOdElqcWSGae3InjLaXcatfL6USdqiqidLyQJGsTOzFhOi+EI6wPVMpfIM6f8AoqgtUyydM/g9I1dyhrmjPd6Ys1aMcpk747DqPuO5cufgjh6R+hK40/vQzWxSPLtYTlFnMv0vQcq/sV9LPPWS1sRc7lSnqvI6haJKe0jTS5QmoKncm/ZljA1M9OxJKFokvY1RP9UuN/1SppOl/RQhrnOwrStPwva/4Mql05Xoy1ZT9RCE1KWUDTrcW7H6Idb4egfoT7HCjp+P9HRtOUdhOjX8oXIc1TGCx7xvQtNYp4LWryhobzjxBCO0JeQipVhQ6SNWdUdhy2uSRLvrscujSRNa1hnrNsgqrSlPc+WiUnnkSaRar8DTtiuEXaEpWoFM1tSpazEod3zjpUWFqU8i+DIytxCL0j0X+pQi6STDmp4GrG3gq40j4x0qwlQgit45NFSGILC8r4XHJJ+UXqkIOlmEhZhLkVbPlEFxzGopQqOI/kh24XcJeEULNrTsQlT+kdKL5EnySa6oeet6Fnmf+HbcGG8SYrw/pXzPoWhrKSLL0leEe4/BCMv+Iapek/Shm/o8T4NqjyjwU1xCfkcy0U7cWwqB2afoaGugxkk0stvsOpp3g/I6aJDewZ94Il6aLwPXuyUL+wJtz5UHindyurEtxP6XrZnNr+iyWjQzjelxJW7RcZNTtC9FQk7wRSvIlDFeE33Y6i0VStHpKLluFUW3FPg0u70b+lDbFjnNSYSbMVE5PTgu4aC9wdEIosQNEdEn4GScLCfY6uu4fkcNXNr0WFaGvM/gszdoZzWiaJQj+QM23tToNLJWuhJKtC5TqULk4fhjODTPQVNTt/g6UXagigTvbuPcloSGLCXseUnpCZCK4r4Rd7kK1hMjsCOatV4Ngs2OxowoTS5L0iUv6JpapJrmU5REljh0eyGTbeJN7EzVtcSTXTS8ISmuo2Dd7voytVmrGaNiPhQilESWirPUnKNWTg8VXgaX49iHSJ1g7TkNWnsVuVF2MmStU8r0ysmn+CVTW4ycxJBeKkic0zUYaHVTlpiTPJteR6fL0Xw0C5cxeCh2rjlESOjng+wyo2+Eivi/Qc0bDj0JVRcGk5SK0bvwNDMNCb8yU6Ux3HdJkkjurGvh7D05wn2ZPnR8GaWNR7HyF0H+ma5dPpODkvYtxHh7c6fCbmhmzJSGqt26jKScJ7CVFujPkx6Ok9hZRycdhpDdkveR44N2k8qSO++CXZ9Kw9CemR42J+RG10i+Likk1l1gaied8mhnHpWCSWHCrTnkdYxMSWnL8Fjuhk8zBW1ZLIs93RCtvdLxAqtOKJOSsnz8QR8X3KHuDQvNDTNo4L7cqRPWw4qmkr2Q27R+glRajpPlCp+ASNresvcY2eDjoeZL0Z8/ZDuGy+junuNDYsn2gm0WIW1Bw3rMXaKk9z0di0YQjSw4asc8j2QXJcn8KNhT1GVPYrhKOxR8wk2uePBKT0KU3/KH2iD/ALwd2FHYV2afBqYWrfoJ6at33ZBIynFj/RBVzSUJWcp8HgfCBwsinvJFKkNuV1HrYaS8Dcrl8UGrHNF0ZJI9blTVq8InBrFhvauPVG0aXO7iexGOiHVqNXqeIbxvZVT09mG79lym3+Ec6VEFEHe/wWenov0SK01hQUIrxJWiygZJZVZviskVqT9FYtI7JHUBoPhynpAqm5DlUWbIpUhxK6wNRsNfCo6INcs0XdkOjwX6yCOzT4VuvSRrH8kaWeYr0INXpgam1ixClJXcbsjljymVJMgUJxeRK/JSyzddVBVSKJ/Svqeh2k2HCgodqht1KrSoHKTUVBOZPyTdVIUdmjtN0EziGhoXWI8CTlxaWmWnOrqSJiIY0AoqXogkK8h4J1QrJ3LF1hR2GSKTajuUKtEDIUNR6GpijuJNjESha9GkxuyMoNEvYkkXRIktP8EaeN/Ylexc5JeRsrKhZPV6Ha0GoIHd6juMXSFairUa5VFeQn/om6qQfY0d8wtJxDXWCJdZSEcNq00+iJUaZ2cinBUiGQAoU/gijl+mND7kZJVb8oGiOaiOg2EHWjHRsOEfUxtQ/wBMajiSA3GwtUWaT4Y3YhE6MQSK0/SSY1XsSW23ov5iPiMuh4LJRh4QoolvX7FEN6T2Hak+YsvVe6ibTQQ6pryQL6rsTbLtR2t1+yVHJdh1RarflCQ9RNjponlUXWRp5Ch9itNuYhKt1EDttzF5jaXwdRQqNk6Dk9EP22de0hE4Mok5WU7km2rU+GWmrOKF5Ty9jUjome6Ssatkg6L/AOjseo0M+ShbMdpy+THq3v8ApaG8iLdzXZkW8hS3bq21Rib1p8Gq1mF6Ep3heZR+2OmmnmyGnZcqTHMSJnVfR3BaxJRztDaisogma7ohj14S7HbJ/S7t+k0GifoVtRlO47lc6+TLLVHOy0Tqht7KHhFZwql0zyJpro6dxallISZ4bFBrahcTEjpfsQycKnYmOhCh5b2h36pIrItakFpQ6EGmiUjXzFIbEl2JSes3HSisJF3avQlUlLgeFvZocoZPEZNpV6TspY0mnsdMqNMRRx8gej5fQ01a/pPsIwXP6GjRS5W6qSqc4HKjoIOePpWj1X4VulOw7Ly5Hi/QqRqIly+CETy18HnWF9LjW/ghJcrdxU13kVS8qDxDekoaDm5Ghp3VPRV1E07Slx9Q3QOV3KtRP4X2GJwS69JETT0aGbT++jUhhL2PyBphO0uepkVhV7HgSnQIpLI8l/UZGSWUo1Ez/i6FVRaEmVhvExG5FNGlu5GU/wBQhMWU3NZU3GaghdDPm3sjDaprYSgnzS/S+/qIkV9PBEo0VBVZcjOmEVNShtUHcFo5kRVMqpttGyLV5fGTW7aBmpuzQpN6R/oslDzBcjSew0qxmB1TkyFq2RGusoglDzuRkllU1JNHj/CtJWDfPURHIVJo0+DKGsoVSYTNrQ1TeRNs1dMdjyOGK060fcbJpu8pCV+XwkTXj8EUFOGxyl5Lbo5dUyLRTDhR1Ym4rmkz4FVNYU+iibKdNkYbDZ0ooTU4pMDQoxCX0ydHMs/0KqcUblCVd/Q8MWUUeQ6Oy3+jtMWNRK1So0Vc2+DRQ63DUc1+lvOC1uaf4Oq1Kv2JlrMXvYqrvKfZDWTTajWhJwzK8IeUJ0TT6KGat+EKYwksk6iVB6fomlRhf3smXIlCE5c6JwX3MQhtG9Mi5yoUwrZexZcKUfoiE7uHRdip+abFDhKjcoSrphjxJaF3WfJ1V/JNWxNCIcIZJG+b8ImsHWK9h6f5ZjUolJNPwTTT/wBHUzX6EnnlSXtO6tCvrQ5ouknJdcn6HZNLySc39Qao0xa9nseWyQuhdzpR0kvvWfRCVyVRqg6TLmJsr8Er3WtEOn5fQlE82JQ/gS7ajzKKehqRtK9CdjvMDoeFEeRQZrMIauySj2JM9W8lUmV9JJ8xVJKXEEOpSzehFIt9MinURl1Gp/1ReQhR1K2i0VGdWIdBWtBQhak3glPTAWOW9IttXQjYGqCpfQrXlB+CaSZ/2B35FgK07FEU3smylzUU9MjVK1fRKjrb2QRspjyODMNfBDnZJHhlTdTuGvZEy2p3JOGq4IVLM1ElE7JT7EqOdfwgnaCaT/WJlzv6FFGk/DlwqjOo6U9jFNLEujSEqZ0bH+LoUz5LwJcnZX6kmBr4IJWwqNONoPsThtU11IR1mpDdZFqdooKHDLVR3uSnsJSmllr0NJJH8kRPK5KXMM3J2im8CKHRNRam5ezzv5FT5RMdxuec58lOwTY8v7K2Wd3QVuHVeELQGq+SqKzBXPXG5GHNwQiNpcdCZSKbbOOg6jOj9QYEpVX0EknJ4UrnJKusJCiSNnRCqU8Iq84FlLLyQmmoqRO1IETpmbk221V1Qk0Wja7DSsvJfc0xn1K2lB5k9KbwIhdEFq5l7PJ/pS/DcdxTLnXyKFLoUNJ6/SDdZExW3r+oM51JSULs/g4UvX6OpPLheSMQtrsoIzZqMn0epIXWgSGSRRJmvBLBXp3gdU3Gfgqlw57n/9oACAECAwE/EP8A4AD/2gAIAQMDAT8Q/wDgAP/Z) repeat scroll 0 0 transparent; - font-family: 'Lustria', serif; - font-weight: 400; - margin: 0 auto; - max-width: 450px; - padding-top: 70px; - position: relative; - width: 80%; - font-size: 0.9em; + background: url(data:image/jpeg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAAA8AAD/4QMtaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjAtYzA2MSA2NC4xNDA5NDksIDIwMTAvMTIvMDctMTA6NTc6MDEgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDUzUuMSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QzNEOEQ3NzU1NDBBMTFFMTk4MjJCQ0IwQTI2N0M1ODUiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QzNEOEQ3NzY1NDBBMTFFMTk4MjJCQ0IwQTI2N0M1ODUiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDM0Q4RDc3MzU0MEExMUUxOTgyMkJDQjBBMjY3QzU4NSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDM0Q4RDc3NDU0MEExMUUxOTgyMkJDQjBBMjY3QzU4NSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pv/uACZBZG9iZQBkwAAAAAEDABUEAwYKDQAAGHMAABm8AAAzCQAAbpX/2wCEAAYEBAQFBAYFBQYJBgUGCQsIBgYICwwKCgsKCgwQDAwMDAwMEAwODxAPDgwTExQUExMcGxsbHB8fHx8fHx8fHx8BBwcHDQwNGBAQGBoVERUaHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fH//CABEIAgACAAMBEQACEQEDEQH/xACbAAEBAQEBAQAAAAAAAAAAAAACAQADBAcBAQAAAAAAAAAAAAAAAAAAAAAQAAEFAQEBAQEBAAAAAAAAAAEAEDFBAiAyQhEhwBEBAAMBAQEBAQEAAAAAAAAAASAwQFAQgQBgERIBAAAAAAAAAAAAAAAAAAAAwBMAAgEDAgcBAQEBAQEAAAAAAAERITFBUXEQYYGRobHB0fDhIPHA/9oADAMBAAIRAxEAAAH5qdDkIZDEMQJ0MdDkUhglKEwgCMUwjFCY5jKYhSBAMYjmMgSDMYB1AYIwHQgQnU5lKYpDGOZ2IM5lMEgwkMUJSmMMxSEAIxjGMEAxlOZ0IAoyFAMJDGCdChCdDmURCkKQB1IIBTECMJCFCURSCKIgQFGExikOQxmCIwTHQAjmMgTCIUpAjAURihKEh0MUBjGCMJDGMQZCCKMwAmEYoBBAMRQCMAp0AUB0McymIUpiCAYZSkMEgzFAUwQnQJjEIYZAjEUZyCYRTEMQAhGAdDHMx0CM5HQISmCMoTCCQZhAKUB0MQIiBCdCEMExSmIUR0McjEKUQCkAIZAnQhzIdQjOZSGIUIimIIJBmEApQHQxgCMEB6AnMoCmMUhRDIEJTFEApACGQJ0IAJ2CUBSGCMAimIIJBlKEoSHQhTmIoAnQZyKYJDHQJSiKEBSmEEwQiGQB0McyHQpgHU5ECdQFKYggFEYQShCdDGAIoCDKApDBMdSBGYpAFMUQChCIYQjKAJ0EYAzkYJ2CEZCDOZRFKApgHQpAFEEB0MEoSkCdgmEQRjmIxihMYAhhCMoQHQpQCAYB2AQZDCOZRGKERAHUhglMQAyhKEggHYwRAOoQCMYxCkAMQSCMQB1MUBQCOZ2IARDDOZjoQoREAdQlIQpACEARgFIdgkEA6EAIxjEKQ5jEQxhBAdTFAM5mAdwEKQwzmYQjGMQB1MUBjBCMQDCCYJ1IQQRGCUgiGMQ5nQRAiMQB1KY5nUBAHYBDGIdAEGUhTEAdSFCYwQiGAwjBCIxRBEUBilIYhjmdBECMhAHQRTkdgBOYyGEYggGGUhSGCMpglMEAhBMIwSDIYYRhCQRQlIY5nQYQjMEIxFOR2OZAHUBBkIIBRCCUIgDKYAiEAMoTDCAQyBGQYQmKIAgmOZ0EQIzBCdBGOR1OZAnYABmIUJRmKEpgDKYAjAIIRzKIJDHQhBEOhyMUpjEMEIxECMwCHQRDmdDmYJ2AERiFCY6EMUhQDKYAjACMRzKUhCjIQRDocTCMUhQkAdBECIoAnUxgHQBgHYBClCUAhCIQpgiMUBTECYYClIYwjGEEZyIdAjCYhgDKYIigIMpQCCUB0CYpCCOQylKYxCFIM5lEEhhgMUJTDIUxhHMIjFMUgQjMUAygMMxTmdAFAdAlMQgjmIpSiAYB0AdAFKEhhnMpiCIIxTCKcglKUpgkAdCDAIRzMMhQDMQAyCIYIjmIpSmMQJSHQBShCIRzKYxjCMIxhHIAiiIYoADMMAhHMh0IUAhACMgwmCI5jKYpCmOZTHQ5DKAgygMYpjGEYRCnMB0IIwRBOZSjAMoCHQRDmIQQCKUhgiAMxikKU5mIdjkUxAnUgTGMYxRGEYpyIMIwmKQ5CMdDmMhAnURDmIpACMIhiFOYymKQpCEEM5FMQh0IApikMIghGKciCIIJSgCUQjmIxCHQpjmMJQDIMhAiOYykGEQSFMM5FKEJ1IAwiGKUxRGKcgiKUhihCURQFKEh0MYB0AUAwjMQJQDKQRBEAIwzmUwQnUBCiCYwiCKUxzCIpjGKEAijOYiBMdAiAdQECMIzEAUIhGKYQQiIM5lIEgzBMMBSHQAjCIAgjFMUhAlKIAghMdQiAdTmYB1AIxAlCIRjCMYAwlCYoQjIQwjEIdACMUpzCIRDDCYAjFCIgSHQxQHQwTmdTmMhglAMZDGMI5nQIzmYoQiKQxjGIdAlCMRyCMpiCCYAhFCUhAnUgjmIQQDCIJQlAMRClIYB1CMBjECIwSkKYwiFIYZzAdCkMIhDmMRQiCU5nUhQmKYAiFIQwgCGQxinMx1IIBTBCUpCCIYwwiMQQTmMRDFIcyCGUIwmAMpTkdQGCdACMQIgCGQxjEAdSDOZTBIIhDCIYwgjMYxDmIZDGIEAxlAMJQHQhTmdAkIMIjBCdDmIQREKQ5nYxQFKcylIYhTEKUgzGIU5iKEpSEOYxmCMhAnUAzkIhjFCMxAiCY6BKQRDmdTGCYQDCAUhjEEUgjFIU5lGExjGOQxkIIxAnU5jOYgFMIIikCIJRkKEQQnQxQGKEgwFIYoRkMIxTGOZRGMQxADEYIiEIdQCOYiEKYhREIUJjoYpChAdDFAUoAnQAgmIYZAnQpCmOZRGKYJgCGQIjBCdQHU5FCYpQDKEpiEGUoSmAMpAiMAJ0IQxCFKQwilMYBilKExgCGEh0CQB1CM5kIIhQiKYxgmGYQSkCdDGAURzCdRHIwSkKUIylMY5lEYoTGAMQSHQhDkdyFAEggjAIpiFCYZhEIQh0MY5iEciDGczCAEp0AMghACYRikMEB0GEIzBOZ1KUAzkQh1AIxjGCURhBMYB1IYJhnMIxgIUISnQxClOhyCYRikMQ5HUQSCKEB1MI5iAEh2AUpCCAY6GKApgHUxAFGA5nQxDGIQx1CUpjocglKYoTGOR1EEgikOZ1IIBQkCdgFEApQGOhiEKYB1IYJhBOZ1CYxgiCdChEQ7HEhimMQpDkdRECIpjidiCAU5jOZ2CYoTCAY6EKEpgHUJSEEE5nUJCjORSHUhikGAJhGMQpDidRhMUpjidiFCM5FAdzmUoTCAYZSGII5nUxQGMQ5nUwSHQJAnUJTFMYBiiIUJjidToEgiGOR3IU5nUAQHcBiGIMBDqQhTGAdDFCYoTmdTBIdQhCMgimMY5mGYggmOR0OgDCMQ5nUpjmdSHMB0IYpiFCY6GCUxQDKYJTACdDBIdQhIdAmEYpDmURQCCI4nQ6nMgzEOZ1KY5nUhzCdQkEExQmOhiGIIAymAIgQnUwCHQISnUARFKEJSlCIAjidDoAgyEAdSmAMhzIdghEExQmOpDEMYgimAIwAnQpzKIJDHY5mKIoDEEYhQFOYzoAwjBAdBhCIgCHUgREIYJToQxjGCMxiFIEJ0KcylMQh1AUwjAMYpiCAU5iOoDCIQB1KEIigIdQGKQhTmMRSGKQgjFAUoQDEcxEMYwwiKEQQCKUhQmOYjoEgjGOZ0EQJikCdAlKAxTmMRjFMQIwjAUoQiEApiGMMgiEEE5jKYxQmOYhmAMxgDEQJSGCdCFMEhQCEQRjBCdAHQBTBIIQCkMYwjCMQoQiIUwgGOYylCIoQnQpAmKQIzFKEJTmMRjGGAIgnQBSgIMwSkKQwjCMQoQjCUgiEAYQgiKEB2MEhikCMwjBCU5jEYpBBCYx0OZRHMgzEKQpDFEUxChCMIgiMQ5mEIAygCdiGCQRAiEYoCFAMpSGEQBQnY5mMQhSkMUxDFEYxikAdACIUxABGMAiBIdiGAYpgiKUwTGAIRjFKAxBDORTEIMhDFMYhSiMQQAiMUIjBCQ6GAIwTHUJglKQIzFKEJgjEQpBAMUwzmYoCHYATHQBimKUQShAdCGMUwQmGYJSgMdQkIdAhIMxhBCUAxEMYpAiMdDkYoDDCQx1OZjCIIpDEAdCGMUwQFGUAjAMdAlCdAECdCFEAJQiEYxTEIIh0ORjBIIxCHQ5iIMIikIYIyFMUwQlEUAiECdSGCIJQHUJikCUIhGIMJQiCMJDECIxCCMYwgiKQxADKQwwmAURgiIYB0MYJTGAdAlMYhQCEYxiFCdAjAQoQiMYhSCIIhSCIQAhGMYhTmIRQFKEgzFAUxQDIYhQiAIpilIYB0MIBjEAMhjEMUxhEKYhjmdDGMIJjmMRQiIQIymAUxgiMUgTDAURBEMAx0MM5lIQJSkIIAimKYpiGOYymMUhzIMZgiIQIymOZ1AYIwDME//2gAIAQEAAQUCXwPPWvOWy1lj5zCDCUV8588GAtoQjHB8Di0UYxCtgtL5zHFI+B560sKw1lj5xDibK+c+bctpZhHi9ecuXKrEXZYLS+cR0fI8tbmMsHKKrCCtB/keXotuc+UeL+cuXKMYhWqDfOYanPnPhii5jKCDlFFZilbCPnPlgqVanPlFFFrMBBjDFViFbBV85jrXnPly9Z8hUgjJRWVSu9LKrPlgqbSz5DFFrMCAiwYwVmKLFGMtiGHB858uXKzAQcyUYyqaystiOSisxzZgQFaDUVlUWKMZkrCLU5jMdaWYCCpGVWW/P4rKDZgxwUVmBxVlCA1NRjLFBFHyJKwjCpUjGfLl6zCDmVWWvgrMcBWUPPNmBAalaoQrCK+TOljoIwPLmXwgg1mSiswrQcwIRagr0vnorMDi0VmHKEWYyx5MDy5lUYyghCssYzFKwixQhzAkLaHlFU5QgdFCKYwT/FpZ7MDy9qllhDFjGYa8yVZWYssYsLaHmjyUIHJWkFTUWKyvxGeD5HnqswhDFjAimzLGB5R50s+XDlUOStIRSqmMZhGeD5z55qswswqLGBAhsyxgQEedIeaVOVQ6MBUqc+cqjyfI89VmFlyxgQIDD0ijAhVxpZ8tTlUOjAiuCjGe/nPlygqrMIQ2mKEUFeZRVZizHBWIYQ5igjyUIrgo+csXLfOfNsXMDyhBYsUIQYSiqzCpwtLEWhDmKCKPGllqcoxjkoI+c+LcNWfKyixYoRQYSiqxxSC0s+bQh/keRCPGllqEOYxyUEfI883WfIWXLGBFBX9NWOgtIeWEK18iMwi9lZ4LnzjoI+RDW1mMQg5YxmEGtvnEcFtLLiFaMZ8iDyVngufOOTIXyHEiEZrEUHpGMMIsS1Yg8FXpYcQFZRgQIKpBqwrEcHzjksfIi1ayivnPkPDlYew5WfJly2lmLPBRgecwVSDFYenMYVuZCPkRatBjGYcuYw5kOYz5MuUEVlWeLMCMouGrHFMfOFblBHyItHgj+ZhjwYw5kOYz510UIsow5gQEUYCDGMuXKPnCMuZCPnKvk+c+UEVbGMvYa9LHkwOLKzCMU5geQxiwxjLWiiijGEUFVlvnKvkrMLPJjLFWGsrEagcWVmEYqlekIDVYYxjgsUYwtIIMUF85V86WfKCpiqwqKEsZKxB854srKsw96Q8BjCCMVh7MVqdRhUIYoL5y5ayj5Hms8FGMrMFXlrKxFZ4srMKkXMfIhVYYxlzKpGMMHKC+coNTFfGfIjLW1ZcyGsxmFlBwisvRcwPIhVYfKKsowGKyw5rCDhBFa848iAgrahwEJRjLBqLFZQ4CsoeQ1W1ZRVoxlXpY5LVlBwgq15z5Q5rLWwlHzhhyVlBUGDFCA4QVVmFaMBjGGrj5ygwQaj5xFB7RjPkL6YMfOI6KyxQezGYDVYbUZhWisoLUYVcnzmGCDVrziFlDgxmOjGPPNFZiqCtjGYew2ozBVorLGMR18iHDFHxmFlBzJjMPaKMZ829UUIRQ4PkRbWxjPngIqsxxS+cx1rzmEODJjDWUFZXzjzfOlmEedQItrasxfGl84hqc+R5V2585hDgoxmGMh6z560hFHkwI6rEK+KzDCH1GfKsy585QQ4KrMK/pgqz5V8aQ81yYEBihxmFbiPnMUhxqMwrMtVZ8hU5RWY+b+r0stjyetIeXLmB5CLBqKyjDFFBViCwRRbUZhWZQYxnyEHMmCsqgr+ig2IPFBaWY6MCA4ajAguVpBVhFqVIxmArMqkYzCCpWYMZQX5/Lt8QeKWlmB0UOQq+RxpFCSsIj+KlSMZhjL/OYQVKyqDhWjJWIPWlnzzdDm18iFYjTWVhHigjGYa3MZYPekYy4QQRXzmCijxpZ89GBxdowIViC1nzlFHk+cw1tRjMIQ5RjKpg9Z8ozxpDzxaoOVbHyIVhFFfqKzD0x858qzL1mEHsoxlUGDXWIszxpZ89UHMoMYHJVlZVlqY+cwxl6zCEOUYyqtCWMZ8iTJe9LPlU90HMuYD0grMZhFHg+c+eqzCzHFBVaEoqs+Qjx9aWfKrihCCtBvkOWCKMCOj5zHeYWeaCq0JRis+eLvSHlVTXQhBHj5EcBaVCD185hW9GMwhyVmKYMYrMDi0VmL5MCGMuYEcBaVZVqmr5zFocUPKEHgrLBhJRVY8iHtFYgzQgvVMeCs9abL0wR858sOKz5QR5ywYSUVWI+eAis+VQ4+RCCPBWeiqx0F858sOKzAWUecqgwlFViKRlgis+WDWvkMJYMUOC9ZcosEfOebVYhBF6rCoMHrHksXCKz0VWezGUXL1hFii5855sqsQgjCpGMMIWVarEFi4RWXCDFUFThjGUeA1YRYouYEGeCjGfIYwZpGMMEUFZRjPky5bSzBngowIew1YgsUYVFYRljKCMZV3wVmAxRcxhgig5jPky5QWlmLPJgRwG+cooIqmMZRcsEYzFo8FZhjDmMuZDFGM+dS5QWkPNnkwIYoSGrLBFUxjK1LGWMZVqnMZgILStjGYYyG1JjPnSy+m2swiqVBGB5YqwxgQxRYrSwtIMZYxlWxhBFYhBFWVRWYRYK9SYzGllBtNtZhUHCKHlWVbFZVsYRkxlaQYooL5zwWC0swgjFoxWVR41JjEGMvptLLU4RQ8sVYRRjHBgIyVhGA5QVZ4LnzmAgqssYygrMiUVWYWX1K0swqRf5+aa0UYy5YQisoocBfOeC/wA58iMqrLVly91mEEG1K0swwgv8jzQa2rLlUxWUUOfnPZ848hBBWWrLXxWWDVqVpZgIuGPnPmmtjGeKYxlFBqLfIV8VqMwhwYWYVsGrCqmLaQgIuGPkRS/EGqstaMMYwiq4+RHWowhAazKMZhXYQYxmDFMW0hARQ4PnMCEVbajMKyjGWMZRjn4EKnrUYbLWZR85hXYf5z54KC2hAVByj5yqDWxjMK0YDHziGMN//9oACAECAAEFAv8AAAf/2gAIAQMAAQUC/wAAB//aAAgBAgIGPwIAB//aAAgBAwIGPwIAB//aAAgBAQEGPwL84GtuJuM3F7jPCow/LCTAkTMxNsLGRgKngMiJlbCD47X80NDR8m/nxk8B8JPjUQfGTwHQ0PCOsyP4A7TI7TIsOc6PmJxMHR8xOZkdpkVnPZHIMTxGoxPEdL684xmA/F5nYvrgdjY0MCx7RJ2NjofHmGJ8bDU3HjMwtDMpcjY8BwPAcD6XlzqZPpa6Twi4H0qdTS4H0i6PlDA9Mht+UMDOUPNayLwSLlIP5/HAM76Xmc/NzWRaHw3OMtfDQ6SLI8dTJxkWR6dIiyPS9odDQ0l7M/PAdHyhodDo+UNDznhONu/ze4Gol84DgcHyb4YzhHnzYYjAefJuUmSMBP5N8NRNgYvk3YRYuP5N/OsrKyfybhazqvAfxvaG4rNBe6TjuB4DgfS15/8A/9oACAEBAwE/IVYZWDI7IV4GWfQdupc5EXBncs2kR9F6NOIbQZGeHquB3cFVZIwYfG/BbFcvCvHCIaHfgVhCxyHfiu4KzwYaY7MtZoHdw5k1MGB2GC4WjJgZHbg56FrLNjUWvqTHY+i9DwSlwGpMjvw1ci0yLHDqYMb/AKJIi/pwSuWmTHQyhzPQaosNWfhctjJqXD4VlxMMvgs4lzPDCH7GjBdLZox8DA5GhcLRGRoZL1wGbEZju5DuXGZZdCuLZkwKy58FiFaS4LAtS0yY43cWCsx/CziwLh6DPAboZGRjc1Fdw3jiMeDCL/EkIJYyaDVlpYizuPAteZciwsfUp6CwV9+BXM9+DlwUX4YcLshoeIWBWGoJYTgi1ZaWdh/OAWvCwdw0dBhjtIHYhTZ+jEgLY1Q5CVEY4FYucFEVHx2U6DXgWODJHw+hAsLGWEl34MuCzgWh+yKcDDsh2ZlsWOBli4MFmeglXBzLTC5cEV4FjPQO4uXDMsDUgxwbxz4JQYwuMaiD4EVKU1yLZYXM1EWtix7Fws6EUF1JnhxMB2HoHYVhGGjCLC3oWRD+DsHYTp/yGMY4Hd9B+hYyzpwVCsjMslgy2LSwQg3UdkIvmEVhXRnuO4rGQwtGRY+o1VBksbDt0GWArIu8jPAjhF6H9D+IlT78MPYnInRFTgv2DULgZhcMh8DtcB/BrEVzL2Q/TgLOnBKcFojgWDLqNQS7vwXBgIu8XQyXCEP0LQslHkxBmC2MZWIVtw7hfPhNUYLPhWh2DwLT+sOxYZl724SMGBgV2PgFouGhpM8GiHwLAwtB6GCGGXC7GguGEZF/jozxMN8x2LOhkW9XxWuCzgsIyFcuFObkSyUi0Rfhz04LxXGWwrRGDCGZY8luzgXs0MdTI7ugyhcQ7sQlGSuPYlfwxQu4Iz0EX+G8/wDA7iPoLTI+w6dR+xf0GXHxDIheN5E8FvQtk1Y32KPtwHoEl9T4LPEheR3fCzoWy9mB0W5k1H8LXwsHsZM8CDcJ4LOhYShuqFwyhXL/AB2O7Q8i/kVnUdhaLJ9h3Wgy4Oxe6jUGEZELBV0ELXsWBLwLuIrOG7oW+LgVy/Yx0LHtwb3wduQxUZ8FjLR/HDCGK0JVLenDdPARgeBXL23Dg0HeRlmYRltwMC+47jtwHYvFoTGUZ4GpFR32C0C+F4x2P0VjVyLBFBmE+BUGWdBcKKDHbpw/BbxuRh3H+EVHKDHCdxfoxXL3BWD/AAf0ZqYHqZ6eHkkfwwLuC6WiwIarBhMsajg2yzoVcJHbqaIs6cc7cCxw0LHsK3gwYMLg/wA4Vovng1YYg/wtwLBCqDImMVy5w0f4fo8CHbqeji2dxuhguGhdLPAwMi+XCzibmBhwjIxKpY9uCmOzFwI0LHsIWcG6Pjkv8JX8GNXMDexvcsHYwhkUHcwO7bgK5mDXfghA8ObH4iztw9jGjBhwtLYv+Q2jNgVi4GpgfC3gcjV+p7OCg5FzYVhYZD4ajLenGLwMdjQwLnXhzHUs4KxcKw+Ov6LgKxFDwi0ZPcyxGO5jwtZaFbgzx3GxbQsMdhgwO4lBqcQdmL5DEIuitLDIs/4y2LRBC8Dt1HZbDVHFjNWOyMGC5/8AJH78Fk1JGh6+CrFnVmPGwjMtiFjFfh68DRsQrDt1FkSD4PkycGOEhTUyO7irzwI1GZbFosiFjkOz3HZDErZ8CsxiyYLnwXR7TIn7Fd8JrwPh1hhux1jiPAtX9gtEix8GXB8Ngkdh3FbsSi0z2K4GUYJBGRkd3HXd8CEMLR7HwamDGxmPBcucGq3HYyYG0ZF8tGT9FcKxkdm54XDRb1Y+FnBc4E0RYZFfxYsjMcFZCQ2IvexahmGWNxGQ7nr4lkPIhGSxlvQyKyMGXBng2GTBAy4XDvLUZ4WC4JVGDrwlBqdzE8hOphwuFn/AvmSo7uDc+GhjjXPYsRI3RljiXFXcW+G19h3OQnXgyO4w2MOArDsxXFZLhazIzAy4RcLIx+mkXBeh04oTMPsOpbGFwtZaOBWGLn1MswWvhWzBoOxcmZLntwmMjECuISpQ/EHvsh/As10E4WPYsWw4kngdmZQx6y0YZjqP+78ZdLQi7jKYoMrchzBaRO/IWhjf9MDKXPhfPjgrcC/hkvFotFIZlFkYFxe9ihCGXDUXBGWsFkajPcdmPBetzUd5gVkio7D4Do+BYMYZ+j/u5fwXRKBB43L0JXNDKKx8FN9xXEoJ4MobS4WGxoLK4F/fhlF7jBTUWBDXsV3yMthZQSFglPDBkW7fgGoytsUNVIu7fRtKeBiZEqwZDsOyMODZwKwKxkSriVgg8bjxwf5xtgSUsVuxYuFXXD1FqFwd5cO47OBYLT3HpUQr7D+iuL3twM8K6mr2Ip2Mj1dSwKoY1eOJv6GOBYjIn4DuPAsRhw7DUNQQ/RkIYWCGm5oYZk/SlG2V7iVG6C7e5khwXNK8Kt0Lugq8B5HYWiyWN+FCuPJkXvZ8LJZFYO4yZFE80WywirGFVi4ihcMCsk+jLLO3Cgv7FnBYWH+l5cZFghgZloV9lw/XB/XwtUEJMV0tC1j8kYCb8BcxgsF54NoegucmMWkQ8iuMti3g9JjkPK5iuK4+WWizrwTzIUl+w4fkjAbJoJ8AQTvLhaOoYa78d3AsFV8LB37Cs4apjwotWpYz/DJmeTLBjjwGqx06S5CyYdCzgXwH4K6MiuM9uBdjD+cCuh3ZX0iop7ibmXBk+Q7cLEiB34LsLMbt0LhYYLOC4uRbwZMzTYSrwWEkou7hx24VdDuO8pE6IeenA+BVMOAtD9OD44N1LmZbD0EP7wYCVQ7s9AklauGYj8GUOz42RcXCtGS1lprsWCJuO6Fn/iMmGNbYw4LvFFoVXPpmeoiGhktiKIyPJ8MsDuLpajXbhXEd2ZbFpcMRJgPiq1kCq0iCFSBhYhD4P84GA0isZgY6CsIwfHGtLuC4NR5TxJW6lrEoXc/TK6jsN1FiMIx4mD4FiHnYsFdmD8HbgWFzGMDHAr8zPjv8EoXVlxkO0d3Ad+FfOA+dBa8uNdntwLJkeNhDCxMuNNuDDhHkMpcBcHBnr8MDPCWCwyHkXzj9XBYjJWB4KwZbFiYizpw5IuJXjVPcscEWGFQXPb/hDuIO/QsZayyD0Fg/AxwcyPArLiFXX/Akd5cH8BWgt4Hd7mV1HfqX+HIzJqZFkdBvHgZFkaMMeOfD6uCg/Q+R+xPFegV4FgVlwXPY0/sl0sly4FfoWMsZZjcBgYZFDLHjmKwytiuhhUccFuC9yK0LHoYGXuPHXgewWtiJQ7wMXBp4vJm/DUfiJ1Gexb4WPgdywy5y4SyCCshBZ2HdcFaHcyR6Hk0D44+bk3FbrwdnLgysiuZORW4Oeg1S4bvJmW7Gdw/3hXC1CuZcF4sOF8Azrw+kU6cMtiwYLOOEOdhcXH6DdhXGuxlD4Wyrn4LIrwNKP1wXd8+C9hjRjhPULDGLKsLQfESsZ7GEa9B/TEu8LUyyxwZTZM8e7rfhpz4YXDMW+C0V44Yjc14iz0Pwdgrmo/gd/AzwNmH0NGyZM+G7dTQscx4HZGC4eg0E5FfIji1RaWFjHZCs9x434XcOMbodgwrod+5YZloaHQJVTMdDCHb/AIpNGQPUfBitHwP4WDWLg7McPgip/h/eOAri2NB3LOo7DsjBcPSIRe4wI1aMarLBaYBW2FkaqupaZcLHgfFMYfFMQx2QrMve3CWTXbiwY6i1lg+CxrkacuFKvTgsZYfAyZ/tC58P/niPsNFnBYhWLvCQh9xgYrbnwVgs6l7MMRY4VjLRK0T/AIN6MP8A5eoxoL+jLYrM/DQZ9Ml7gsh3ey4XGdnE+osXQvw/JgYDu2LCwQg3wKxfPUWC8vAQruBuBlkyIqgyOzhXOC9FzkK7hciuTRjFaSZ4cx8F/QscGBY4YHfoNRlhWR27DVKCuXPY+B3Fo8EX3QrcCuOFYxqFB54+ZhuLhvSIV+AVhZFkdxaNeHJGR2lo7y1CDu+IuFYyyWsfDA7EX2L+nAVzHQ04ZPgfrwPgdIHaBXFfsYSHcWh4Pvg5bmBi0WFnDCXD04L5Z4K4fBhmJ4C01LTHUyO3+zxCxcGWXMu3M5uXMyLIheXLYXDVHyWOGHsLGw7mo79OBgamP7QdxDLY04qYuBz3FMObl24FgluB4MCEXiztwyHcajEEr24SyXh06juXZbwViGSdRXfBMTzJpA7iwNqRheNjBlEFnQtjHboKxqO4z0Q/QsQhgpe/ArvYwXOA7Iy6lhZ1GpuJoaLeUcBtT0Gy8DCEXixsYPYXUIuKyH4OEslvc00GKhWcA1EYcTVImeB3bFgingacHdbk1SLehZHYduhiORkdWZ6DuLODCOwZKH04q0dkaiokN06lVBC17cMdEF3ExFwsmBX3GQRENGg/BwkKGO3QyLEXNiwIrjFZjVRmVo0LHHLA7rcmkz2ZY4uYizHZsO/YsNSKLiLhdLSy4YbmD/wQHcuBkuXDgdhF0sGBX3Dv3FYZhMfiPSI+nDArh2Q7tuEig1jgLIkId5YLyp9zQTqZW42PU+ArcGODux3Q+APJVA+D4NB3FgrLoYEolufpeJBd4Wmw8DEx2FwVkVhXXDHDC3HbbwdSwbpwyjK3GLQgv+DaHfwqmg8CXgwIqZ6uEjLYXEwfAHkv4kK63Hd14GDToPHXjwG6uFOgsDsxKmwzA7+FqJU7mevDBo5ngEI7cLO4zAxlnQsCuFkyXjLQ7y2XeR278FcwHkzC+HBESKw+DxwFgeRY4CFn/kWB3gwXGA7uFj/RhZGIO8tcGVuJ5GYQkPxHqEfQtMGTJZ0MRWZkaFrgeiG6jAXmOyMLjSoy3iR3MucEDQyVnBY4ULJoW7CwZjqZHYQ1huhaPL4Yjux5LC6WB3Fdb/DAw+GDPbgot7ny+D4P4WoVmWMWOMtGq9hfAXEjPJBkfPDdzIsMsrUZlwccF/QQvi4fJYMx3FYduFiGquB54YHkeehYMms4K634FYzwz4dh9Mr7cNODVHsYiYs4l3KkO8sE2D14CE1XoWnwMDJoyzucjIeTIsQrFgfwRd0RkWhahmDXfjuZ8Lu1wuR+CkduIWId2ab/AAyK3Ax+hUVkt7nwf4YRkMPgkWsyXmRjv4FnBdwi/FWIdhqjFYQ7vgd2xYjD6CH8FcXxGC4WDWNNh2MhE2GbC4VhLF/YaEeRwZJqhYFZ9OCwdegsCsxqPqXHyJq+hSBjiDskTGS/gc0Hfw8OF3B8VgZJoWI/A78B8FkT6HnYTrxXC0vEYHbgrCHcWF74l/Yf4LBf4Vwycj/BClDcQrMudijsMN+F4sHBai7jWF7hWtuDvwyCx/wQ7PkLQXBJkocssVmN3HZroW4GB37HoIiuWcBXH7FjLOMxe6DuWF0s6DuHYO7MMXCEPWBaTLkhFm5cYTmZ47BYi/hyOhdLRSEkZMMtFnGmPgVzUxPBCWsFsWR+x5Mov4MW9OC4tQwhlwtReKzMi9j4L4kjIYWjMPfghaTy4BO4vovgJ1geCUnwqYExWS4V/C9F3biJSK/BbFmxiFoEhYiKIZhC9BbuXBTfcdWKNYfj6NpDvLFsO5ki1D4GXC3gVg0Lg/oi+WmQw6sOz34IulkRTkI2nGpYO/cY58Ygd+heLzJYL2xaRq5jai4UCMOAV0WIQ1MOh6C+WSLiVaFh9l3C5wsid9ixos5DvwWMsNQ9KmnBf0RfLeJgubmTIp6CwKa8xblqL7hgQLXoegSoi7oO7LuIvbFvjXEUL+GHAK47C0dmYLthT0Fo1EhgKrbivwtejLeB2ew7cDPAvbFpiWo0LizgdxgVln87GIwZLmK5n/w7H1FMJMuY78hYHdzRiJ0ULn0JqxXLt8C9wVQYVxWLxZMRahTIwrDu1zFbahds4WL+iuJQhJkXRoWno4G6yY7E3LAk8OzYWcJ6IdGPJZwO8sLsX86DMNxXMFUhoNjktYxkYMdi6XocYo4DEjSx3FgdnwK4rcBZMduEr9eBW4EZew6yE6D6ExmQsvirSIY7l5gyjdUWC0hD4WajtwZFghY/sCMCBWGVkIhlvwZmCHcyHhzyMIzwq4qokPiC1vgX3gqzPnhLUx1GFwkZe3CkqJeZcuCKoO47uFxIzEYVUiaos6iw+C0eCb7jFngYCuaCuTRf8xafQ0ppn3wLDuEoYXAxaCsO6HdtwsdC0T/4HxxGQrE1Pgy+Kr3IyXuLhguCh3MwMZ0KULnDZ0LB/wDAgtQhhCuzCEL24N8RYxKPIr9R4nguz2LJpwZZA1+Dv2PQN1CKzwu/52xi4Xmp6OGrtz/Ch9y4XgYbqLUZHZw8Aq9j84q3oIPJgYuFaZkwhZNCCKTzGNvQuCU7jt3LdRYXI/eEsGEMMXFjFc9JafAUS4fpcI+SxwWPgyJVIqxuwsF00P1wZfDuC1/xXBPArxyPWW8BRD3H9P0eBWGVszxM9Rsfvw3p0FaCzuIyLBpue4WCZSHfyXBcLJYb4Jowxqhh7nvwfHHPh5JqjLhNRbCwMDPBljL+paHgfGZjo+IuxrAnA7I//9oACAECAwE/If8A4AD/2gAIAQMDAT8h/wDgAP/aAAwDAQACEQMRAAAQJpJttNptpJNJptpppppptpJJJtttJpJtJNpNpppNJJtJJtptNJJNtNppptNJJNtNJptJtpppNtNttppJttNpJtJJpJJtNpJttptJNNNNpJJtNtNpptNNJJpJNJtJNNNpttpJNNJJtptJNtNNJNJppJppJJJpNtJttNNtppNJtNJJNpNptNtJNppJNppNNpNttNttptJJpJpJptJptJtJttpJppptNpNptNppJNptJpNJpJJpJJNJNtppNptppJNNtpNpNtppNNNNJJNJpJpNNNJtNtNNppNJpppNJtJtppJtJtppppNpptJtpNJpJNtJNptNpttpttJNJppJtttpJJNNtJJNNJNtJtNNpNttttNNJJtpJtNpJtNNNJpNNJJtNttJJJJNNJJJptNJtNJpJpNtpNJNtJJtNNptJppNttJtJtptpJJNpJJpttJpJttJNttNttJJJtttJNpNNNNJtpJpJNtpNJpJJpptpNNpppppNNtJJtJpJppNJNptJptJtptNJpJpNJttJJJpNJNNNJpptJpttJNNpNNpppJpNpJttNNtNppJttJtptttJtJJNNJNJNJNpttpJtNptpptpptJpNpNJNJJJttNJNptJJJpJpttpNNpJJNppJJppttJJJJptJtJptttpNNpNJJJtNpJJJJpNNtNpNtJtNNJptNpNtptptJptpJNNNptNtpNJtJtttJpJNNJJNNNpNpNNNtNJNJtptJptJNtpNttNtpNtpJJNJpppptpNtNNJttpNpJNtNJJNNNNNptptJtttJttNtpppNJNpJtJNNppptJttJJtJtJppJNNJNJNppptNNtNtNtJJtpJpNNJJJppNtpttJJJtNNJNNJNJJJpNNNppNpptJptttNttJtJNtJNtJppNpNtNNppptptttNpNJNtNtNJJpppttNtJJptNtJNtpNpNJtptNNJtpptpNJJptNJtJptpNNtNppNNpNtJJNtpptNptttJJptNJpJJJJtNpJNJpJpJNpJNNtptpppNJpJpJpptJttJNtJttJJNpJppJNtttNtptNNJtJJNNJtJpJJJJNpJNNJJpJtpJNpNNtNtNNpNJNNNptpppJtttNttptptNtpJpNNJJNNpNpNtJJpptptJJtptNJJNNNJptJJJppJppptpJpNptNJpJJNNtpJNJJtNNpJJttJppNJpNNNJNtttttJtNNtttNpNttJNpJNtNNNNptJptNNtJtpJtJNppJJtttJtJJpNJtJtJppttNtNJJNJttJtNJtNJpJJtpNJJJttNNJJNJJJpJNNJJNptppptJNJpNppptttJpJpptNJJpJtJJpNNJNJtJtpNNttpptJJNJNJJNNJppJpJJpJpJJptNtJtptJtpNJJNttpNNtJJJttNJJpJNpJNppJppNJNNttJtJpJNtNJtptNtpJtptNtNtpNJppJJpJJNNNJNNNJNJNtNpNptJppptpJNJtJJNNtJNNtptNtJpNtNJNtNpNNptJNNJJJJNNtNttJJtttttJNtpJNptJJtNJpNJtJtJtpJNpptJtJJtJNttNptptNtNtJtNtNJttptJtttNNJtJttNJptJJttNNJtJttNtpJNJtNJNtttJtpNNpptJJpJJpJJJtpJtpNtJtNNptJppNtJpppppJNNNttpttpNtNNJtJptppJJNtpNNNtNttJtJpNptJpJNptNtJtNttpttpNJNppJJtJNtNNNNttNtpJJNNptJJJNJppNttJNttptpptNpJtpNpNtpJtNNNJJtJJtttptJNtNNNNpJNptJNJNNNJtJpNpNJNpJJNJtpJtNJNNptJNtNNtppNJpttNpJNJtpNtJNJttNNNptJJJJNppJpJNNNJNNpNtttNNJJtNJJtNJttptpptJpNNJppNJtNJpJptpJpttpJttttNNppppJpNtJpptNNJttpNptttJtJJppJpJJppNpNJNttNNtpJNNJtJtpJNNpJppJNpNJppttJNtJJNJpNpJNNJtNNNpJNNtJtNJpJppJJJNNpptpNptp/9oACAEBAwE/EASOYxW+RYUtXaFbqND7/wBQgorzPdFyfUaTNGKFdlcujFboavhE56ClQuruRKrUYY0fkmvMQXcs+TH11ZdcmThyTYpSGglW1Iapcp/hrYkVMA+H3EXcY8dA0qmy9joWKUqxRz1+CjrT5FUHlR6gS75iV3cRuC8qPJXKySdBksl/Y6SJM18junFoYkq6Onn8Mtl/jFbZ5UMinNQZpNYcNjOH0VEUIqTuScT1HdrVQxKM/wDkl1vAlBXhvwNS2tEc/XuIZlMqkx+lgqDx9EaHMpecqCo1Nk/I2qEqUqUac/pb+8xdxMU9RQrm2+xe836ErXpHsebA5U8z8KkeY9jctN3SzuSKlZS9x4WlmfAlesGu5FSUSuuhRyJDRk+juOJONnU7Ka7iQ56v0QLd4/SpVq0iw0FRFSo1UYSjsUM+sGwVj2VLqJ9piynLFMm6JpJjtN6Civn8FCjNU8oMRq0px3FcPye6zyH6EqT2JX3/ANRVI1efDGnXyeyZY7pz5Qzch5GJCXPwJ1qq7kURRKKDp5eR0ma0FJtKa26lI118iQn9gmkcjVwvhDh5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) repeat scroll 0 0 transparent; + font-family: 'Lustria', serif; + font-weight: 400; + margin: 0 auto; + max-width: 450px; + padding-top: 70px; + position: relative; + width: 80%; + font-size: 0.9em; } article { - display: block; - max-width: 720px; - margin: 0 auto; + display: block; + max-width: 720px; + margin: 0 auto; } article { - background-color: #FFFFFF; - border: 12px solid #3A3A3A; - border-radius: 10px 10px 10px 10px; - max-width: 450px; - padding: 0 15px; - width: 80%; + background-color: #FFFFFF; + border: 12px solid #3A3A3A; + border-radius: 10px 10px 10px 10px; + max-width: 450px; + padding: 0 15px; + width: 80%; } h1 { - width: 84%; - font-size: 1.6em; + width: 84%; + font-size: 1.6em; } article p:nth-of-type(1) { - font-size: 1.2em; - color: red; + font-size: 1.2em; + color: red; } footer { - margin: 0 auto; - max-width: 450px; - position: absolute; - top: 90px; - width: 80%; - right: 0; + margin: 0 auto; + max-width: 450px; + position: absolute; + top: 90px; + width: 80%; + right: 0; } footer p { - zoom: 1; - background-color: #FFFFFF; - box-shadow: 1px 1px 3px #989898; - font-size: 0.9em; - max-width: 318px; - padding: 4px 7px; - position: absolute; - right: -106px; - top: 0; - transform: rotate(34.5deg); + zoom: 1; + background-color: #FFFFFF; + box-shadow: 1px 1px 3px #989898; + font-size: 0.9em; + max-width: 318px; + padding: 4px 7px; + position: absolute; + right: -106px; + top: 0; + transform: rotate(34.5deg); } footer p:before { - background-color: #999999; - box-shadow: 1px 1px 2px #000000; - content: ""; - display: block; - height: 30px; - left: 0; - opacity: 0.5; - position: absolute; - top: -13px; - width: 7px; - transform: rotate(34.5deg); - zoom: 1; + background-color: #999999; + box-shadow: 1px 1px 2px #000000; + content: ""; + display: block; + height: 30px; + left: 0; + opacity: 0.5; + position: absolute; + top: -13px; + width: 7px; + transform: rotate(34.5deg); + zoom: 1; } footer p:after { - background-color: #999999; - box-shadow: 1px 1px 2px #000000; - content: ""; - height: 30px; - opacity: 0.5; - position: absolute; - right: 0; - width: 7px; - transform: rotate(34.5deg); - zoom: 1; + background-color: #999999; + box-shadow: 1px 1px 2px #000000; + content: ""; + height: 30px; + opacity: 0.5; + position: absolute; + right: 0; + width: 7px; + transform: rotate(34.5deg); + zoom: 1; } footer a { - text-decoration: none; + text-decoration: none; } a, a:visited { - color: #F00; - border-bottom: 1px dotted #F5D5CD; + color: #F00; + border-bottom: 1px dotted #F5D5CD; } a:active, a:hover { - border-bottom: 1px dotted #F00; + border-bottom: 1px dotted #F00; } /* ie 8 and lower hackery as they don't support proper rotates and filters conflict with ms-transform. So we simply remove those css styles and have the footer sit at the bottom */ *+html footer p { - position: static; - background: none; + position: static; + background: none; } *+html footer { - position: static; - background-color: #fff; - margin-top: 10px; + position: static; + background-color: #fff; + margin-top: 10px; } @media \0screen { - footer p:before, footer p:after { - display: none; - } + footer p:before, footer p:after { + display: none; + } - footer p { - position: static; - background: none; - } + footer p { + position: static; + background: none; + } - footer { - position: static; - background-color: #fff; - } + footer { + position: static; + background-color: #fff; + } } #gravatar { - position: relative; - float: left; - margin-top: 1em; - margin-right: 1em; - border: 1px solid #ddd; + position: relative; + float: left; + margin-top: 1em; + margin-right: 1em; + border: 1px solid #ddd; } diff --git a/themes/cherry-white.css b/themes/cherry-white.css index f7755a6f..f8170a92 100644 --- a/themes/cherry-white.css +++ b/themes/cherry-white.css @@ -1,122 +1,122 @@ @import url(https://fonts.googleapis.com/css?family=Alegreya:400italic,400,700); body { - color: #94979E; - font: 16px/28px 'Alegreya', "Garamond", serif; - margin: 0; - padding: 0 50px; + color: #94979E; + font: 16px/28px 'Alegreya', "Garamond", serif; + margin: 0; + padding: 0 50px; } article, footer { - display: block; - max-width: 720px; - margin: 0 auto; + display: block; + max-width: 720px; + margin: 0 auto; } article { - background: repeat scroll 0 0 #FFFFFF; - border-bottom: 4px solid #FF3366; - border-right: 3px solid #FF6666; - padding: 45px 28px 28px; - position: relative; - border-radius: 0px 0 10px 10px; - margin-top: 28px; - border-left: 1px solid #F7F7F7; + background: repeat scroll 0 0 #FFFFFF; + border-bottom: 4px solid #FF3366; + border-right: 3px solid #FF6666; + padding: 45px 28px 28px; + position: relative; + border-radius: 0px 0 10px 10px; + margin-top: 28px; + border-left: 1px solid #F7F7F7; } h1 { - background: none repeat scroll 0 0 #FF3366; - color: #FFFFFF; - font-size: 24px; - left: -12px; - line-height: 32px; - padding: 10px 0 10px 13px; - position: absolute; - top: -22px; - width: 100%; - display: block; - box-shadow: 2px 7px 0px -3px #CCCCCC; + background: none repeat scroll 0 0 #FF3366; + color: #FFFFFF; + font-size: 24px; + left: -12px; + line-height: 32px; + padding: 10px 0 10px 13px; + position: absolute; + top: -22px; + width: 100%; + display: block; + box-shadow: 2px 7px 0px -3px #CCCCCC; } h1:after { - background-color: #AD0431; - border-radius: 0 0 0 32px; - content: ""; - height: 7px; - left: 3px; - position: absolute; - top: 52px; - width: 7px; + background-color: #AD0431; + border-radius: 0 0 0 32px; + content: ""; + height: 7px; + left: 3px; + position: absolute; + top: 52px; + width: 7px; } h1:before { - background-color: #D01B4B; - content: ""; - height: 11px; - left: 0; - position: absolute; - top: 52px; - width: 11px; - border-radius: 0 0 0 32px; + background-color: #D01B4B; + content: ""; + height: 11px; + left: 0; + position: absolute; + top: 52px; + width: 11px; + border-radius: 0 0 0 32px; } article p:nth-of-type(1) { - font-size: 24px; + font-size: 24px; } a, a:visited { - color: #3A3A3A; - padding: 4px 4px 0 4px; - text-decoration: none; + color: #3A3A3A; + padding: 4px 4px 0 4px; + text-decoration: none; } a:active, a:hover { - color: #710257; + color: #710257; } a img { - position: absolute; - top: 0; - right: 0; - border: 0; + position: absolute; + top: 0; + right: 0; + border: 0; } :-moz-any-link:focus { - color: #bc4a46; + color: #bc4a46; } ::selection { - color: #bc4a46; + color: #bc4a46; } ::-moz-selection { - color: #bc4a46; + color: #bc4a46; } footer { - background-color: #FFFFFF; - border-bottom: 3px solid #FF3366; - margin-top: 10px; - padding: 4px 28px; - text-align: center; - border-top: 1px solid #F5F5F5; + background-color: #FFFFFF; + border-bottom: 3px solid #FF3366; + margin-top: 10px; + padding: 4px 28px; + text-align: center; + border-top: 1px solid #F5F5F5; } footer a { - padding: 10px; + padding: 10px; } footer p { - font-size: 16px; - margin: 0; - padding: 0; + font-size: 16px; + margin: 0; + padding: 0; } #gravatar { - position: relative; - float: right; - border: 3px solid #CCCCCC; - top: -2.3em; - z-index: 1; - border-radius: 10px; + position: relative; + float: right; + border: 3px solid #CCCCCC; + top: -2.3em; + z-index: 1; + border-radius: 10px; } diff --git a/themes/cherry.css b/themes/cherry.css index d6994824..d88d26ec 100644 --- a/themes/cherry.css +++ b/themes/cherry.css @@ -1,120 +1,120 @@ @import url(https://fonts.googleapis.com/css?family=Alegreya:400italic,400,700); body { - background: url("cherry.png") repeat scroll 0 0 transparent; - color: #94979E; - font: 16px/28px 'Alegreya', "Garamond", serif; - margin: 0; - padding: 0 50px; + background: url("cherry.png") repeat scroll 0 0 transparent; + color: #94979E; + font: 16px/28px 'Alegreya', "Garamond", serif; + margin: 0; + padding: 0 50px; } article, footer { - display: block; - max-width: 720px; - margin: 0 auto; + display: block; + max-width: 720px; + margin: 0 auto; } article { - background: repeat scroll 0 0 #FFFFFF; - border-bottom: 4px solid #FF3366; - border-right: 3px solid #FF6666; - padding: 74px 28px 28px; - position: relative; - border-radius: 0px 0 10px 10px; + background: repeat scroll 0 0 #FFFFFF; + border-bottom: 4px solid #FF3366; + border-right: 3px solid #FF6666; + padding: 74px 28px 28px; + position: relative; + border-radius: 0px 0 10px 10px; } h1 { - background: none repeat scroll 0 0 #FF3366; - color: #FFFFFF; - font-size: 24px; - left: -12px; - line-height: 32px; - padding: 10px 0 10px 13px; - position: absolute; - top: 0; - width: 100%; - display: block; - box-shadow: 2px 7px 0px -3px #CCCCCC; + background: none repeat scroll 0 0 #FF3366; + color: #FFFFFF; + font-size: 24px; + left: -12px; + line-height: 32px; + padding: 10px 0 10px 13px; + position: absolute; + top: 0; + width: 100%; + display: block; + box-shadow: 2px 7px 0px -3px #CCCCCC; } h1:after { - background-color: #AD0431; - border-radius: 0 0 0 32px; - content: ""; - height: 7px; - left: 3px; - position: absolute; - top: 52px; - width: 7px; + background-color: #AD0431; + border-radius: 0 0 0 32px; + content: ""; + height: 7px; + left: 3px; + position: absolute; + top: 52px; + width: 7px; } h1:before { - background-color: #D01B4B; - content: ""; - height: 11px; - left: 0; - position: absolute; - top: 52px; - width: 11px; - border-radius: 0 0 0 32px; + background-color: #D01B4B; + content: ""; + height: 11px; + left: 0; + position: absolute; + top: 52px; + width: 11px; + border-radius: 0 0 0 32px; } article p:nth-of-type(1) { - font-size: 24px; + font-size: 24px; } a, a:visited { - color: #3A3A3A; - padding: 4px 4px 0 4px; - text-decoration: none; + color: #3A3A3A; + padding: 4px 4px 0 4px; + text-decoration: none; } a:active, a:hover { - color: #710257; + color: #710257; } a img { - position: absolute; - top: 0; - right: 0; - border: 0; + position: absolute; + top: 0; + right: 0; + border: 0; } :-moz-any-link:focus { - color: #bc4a46; + color: #bc4a46; } ::selection { - color: #bc4a46; + color: #bc4a46; } ::-moz-selection { - color: #bc4a46; + color: #bc4a46; } footer { - background-color: #FFFFFF; - border-bottom: 3px solid #FF3366; - margin-top: 10px; - padding: 4px 28px; - text-align: center; + background-color: #FFFFFF; + border-bottom: 3px solid #FF3366; + margin-top: 10px; + padding: 4px 28px; + text-align: center; } footer a { - padding: 10px; + padding: 10px; } footer p { - font-size: 16px; - margin: 0; - padding: 0; + font-size: 16px; + margin: 0; + padding: 0; } #gravatar { - position: relative; - float: right; - border: 3px solid #CCCCCC; - top: -4.3em; - z-index: 1; - border-radius: 10px; + position: relative; + float: right; + border: 3px solid #CCCCCC; + top: -4.3em; + z-index: 1; + border-radius: 10px; } diff --git a/themes/default-dark.css b/themes/default-dark.css index 47cf5ee5..4ddc193e 100644 --- a/themes/default-dark.css +++ b/themes/default-dark.css @@ -1,100 +1,100 @@ @import url(https://fonts.googleapis.com/css?family=Inconsolata); html { - background: #1a1a1a; + background: #1a1a1a; } body { - margin: 0; - font-family: "Inconsolata", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", monospace; - font-size: 1.2em; - line-height: 1.2em; - color: #999; + margin: 0; + font-family: "Inconsolata", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", monospace; + font-size: 1.2em; + line-height: 1.2em; + color: #999; } article, footer { - display: block; - min-width: 360px; - max-width: 900px; - width: 80%; + display: block; + min-width: 360px; + max-width: 900px; + width: 80%; } article { - margin: 2.5em auto 0 auto; - border: 1px solid; - border-color: #505050 #373737 #373737 #505050; - padding: 2em; - background: #2a2a2a; + margin: 2.5em auto 0 auto; + border: 1px solid; + border-color: #505050 #373737 #373737 #505050; + padding: 2em; + background: #2a2a2a; } h1 { - margin-top: 0; + margin-top: 0; } article p:first-of-type { - margin-top: 1.6em; + margin-top: 1.6em; } article p:last-child { - margin-bottom: 0; + margin-bottom: 0; } footer { - margin: 0em auto 2em auto; - text-align: center; + margin: 0em auto 2em auto; + text-align: center; } footer a { - color: #666; - text-shadow: 0 1px 1px #999; - text-decoration: none; - font-size: .8em; - padding: 1em; + color: #666; + text-shadow: 0 1px 1px #999; + text-decoration: none; + font-size: .8em; + padding: 1em; } /*footer a:before{content: "â¦"; font-size:1.5em; padding-right:.2em; } */ footer a:hover, footer a:focus { - color: white; + color: white; } h1 { - font-weight: normal; - display: inline; - border-bottom: 1px solid #999; - padding: 0 0 3px 0; - line-height: 36px; + font-weight: normal; + display: inline; + border-bottom: 1px solid #999; + padding: 0 0 3px 0; + line-height: 36px; } a { - color: #0520cf; - text-decoration: none; + color: #0520cf; + text-decoration: none; } a:hover, a:focus { - color: #2844FA; + color: #2844FA; } a:active { - color: white; + color: white; } :-moz-any-link:focus { - color: #000; - border: 0; + color: #000; + border: 0; } ::selection { - background: #ccc; + background: #ccc; } ::-moz-selection { - background: #ccc; + background: #ccc; } #gravatar { - position: relative; - float: right; - margin-bottom: 1em; - margin-left: 1em; - border: 1px solid #999; + position: relative; + float: right; + margin-bottom: 1em; + margin-left: 1em; + border: 1px solid #999; } diff --git a/themes/default.css b/themes/default.css index fb575c14..70282dd6 100644 --- a/themes/default.css +++ b/themes/default.css @@ -1,109 +1,109 @@ @import url(https://fonts.googleapis.com/css?family=Inconsolata); html { - background: #eee; + background: #eee; } body { - margin: 0; - font-family: "Inconsolata", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", monospace; - font-size: 1.2em; - line-height: 1.2em; + margin: 0; + font-family: "Inconsolata", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", monospace; + font-size: 1.2em; + line-height: 1.2em; } article, footer { - display: block; - min-width: 360px; - max-width: 900px; - width: 80%; + display: block; + min-width: 360px; + max-width: 900px; + width: 80%; } article { - margin: 2.5em auto 0 auto; - border: 1px solid; - border-color: #ddd #aaa #aaa #ddd; - padding: 2em; - background: #fff; + margin: 2.5em auto 0 auto; + border: 1px solid; + border-color: #ddd #aaa #aaa #ddd; + padding: 2em; + background: #fff; } h1 { - margin-top: 0; + margin-top: 0; } article p:first-of-type { - margin-top: 1.6em; + margin-top: 1.6em; } article p:last-child { - margin-bottom: 0; + margin-bottom: 0; } footer { - margin: 0em auto 2em auto; - text-align: center; + margin: 0em auto 2em auto; + text-align: center; } footer a { - color: #666; - text-shadow: 0 1px 1px #fff; - text-decoration: none; - font-size: .8em; - padding: 1em; + color: #666; + text-shadow: 0 1px 1px #fff; + text-decoration: none; + font-size: .8em; + padding: 1em; } /*footer a:before{content: "⏦"; font-size:1.5em; padding-right:.2em; } */ footer a:hover, footer a:focus { - color: #111; + color: #111; } h1 { - font-weight: normal; - display: inline; - border-bottom: 1px solid black; - padding: 0 0 3px 0; - line-height: 36px; + font-weight: normal; + display: inline; + border-bottom: 1px solid black; + padding: 0 0 3px 0; + line-height: 36px; } a { - color: #2844FA; - text-decoration: none; + color: #2844FA; + text-decoration: none; } a:hover, a:focus { - color: #1B29A4; + color: #1B29A4; } a:active { - color: #000; + color: #000; } :-moz-any-link:focus { - color: #000; - border: 0; + color: #000; + border: 0; } ::selection { - background: #ccc; + background: #ccc; } ::-moz-selection { - background: #ccc; + background: #ccc; } #gravatar { - position: relative; - float: right; - margin-bottom: 1em; - margin-left: 1em; - border: 1px solid #ddd; + position: relative; + float: right; + margin-bottom: 1em; + margin-left: 1em; + border: 1px solid #ddd; } @media all and (max-width: 500px) { - article { - padding: 1em; - } + article { + padding: 1em; + } - body { - font-size: 1em; - } + body { + font-size: 1em; + } } diff --git a/themes/double-windsor.css b/themes/double-windsor.css index 48db1e6a..6c18b679 100644 --- a/themes/double-windsor.css +++ b/themes/double-windsor.css @@ -1,80 +1,80 @@ @import url(https://fonts.googleapis.com/css?family=Lora:400,400italic); body { - font-family: Lora, Constantia, Georgia, serif; - padding: 8px; - line-height: 1.6em; - color: #444; + font-family: Lora, Constantia, Georgia, serif; + padding: 8px; + line-height: 1.6em; + color: #444; } article { - max-width: 660px; - margin: 10px auto 0; - text-align: justify; + max-width: 660px; + margin: 10px auto 0; + text-align: justify; } h1 { - font-weight: 400; - text-align: center; - font-variant: small-caps; - letter-spacing: 0.25em; - font-size: 1.9em; - border-bottom: 1px solid #EEE; - padding-bottom: 0.8em; - margin-bottom: 5px; - line-height: 1.1em; + font-weight: 400; + text-align: center; + font-variant: small-caps; + letter-spacing: 0.25em; + font-size: 1.9em; + border-bottom: 1px solid #EEE; + padding-bottom: 0.8em; + margin-bottom: 5px; + line-height: 1.1em; } article p:nth-of-type(1) { - border-top: 1px solid #EEE; - margin-top: 0; - padding-top: 1.2em; - font-style: italic; - text-align: center; - font-size: 1.05em; + border-top: 1px solid #EEE; + margin-top: 0; + padding-top: 1.2em; + font-style: italic; + text-align: center; + font-size: 1.05em; } article p:last-child { - padding-bottom: 1.3em; - margin-bottom: 0.0em; - border-bottom: 1px solid #EEE; - font-size: 0.95em; + padding-bottom: 1.3em; + margin-bottom: 0.0em; + border-bottom: 1px solid #EEE; + font-size: 0.95em; } a { - padding: 0.1em; + padding: 0.1em; } a:link, a:visited { - text-decoration: none; - color: #C53; - border-bottom: 1px dotted; + text-decoration: none; + color: #C53; + border-bottom: 1px dotted; } a:hover { - background: #D64; - color: white; - border: none; + background: #D64; + color: white; + border: none; } a:active { - background: #920; + background: #920; } footer { - border-top: 1px solid #EEE; - font-size: 0.8em; - text-align: center; - max-width: 660px; - margin: 0 auto; - margin-top: 5px; - font-style: italic; + border-top: 1px solid #EEE; + font-size: 0.8em; + text-align: center; + max-width: 660px; + margin: 0 auto; + margin-top: 5px; + font-style: italic; } #gravatar { - border: 1px solid #ddd; - position: relative; - float: right; - top: -1.7em; + border: 1px solid #ddd; + position: relative; + float: right; + top: -1.7em; } diff --git a/themes/dusk.css b/themes/dusk.css index d61be164..8a8c975c 100644 --- a/themes/dusk.css +++ b/themes/dusk.css @@ -2,126 +2,126 @@ @import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400); *::selection { - background: #de5833; - color: #eff7ff; + background: #de5833; + color: #eff7ff; } *::-moz-selection { - background: #de5833; - color: #eff7ff; + background: #de5833; + color: #eff7ff; } * { - margin: 0; - padding: 0; + margin: 0; + padding: 0; } body { - font-family: 'Open Sans', Helvetica Neue, Helvetica, Arial, sans-serif; - font-size: 1.1em; - background: #272b35; - color: #67778a; - margin: 86px 0; - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; + font-family: 'Open Sans', Helvetica Neue, Helvetica, Arial, sans-serif; + font-size: 1.1em; + background: #272b35; + color: #67778a; + margin: 86px 0; + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; } a:link, a:visited, a:hover { - position: relative; - text-decoration: none; - color: #de5833; - transition: color 0.3s ease-in-out; - transform: scaleX(0); + position: relative; + text-decoration: none; + color: #de5833; + transition: color 0.3s ease-in-out; + transform: scaleX(0); } a:hover { - color: #eff7ff; + color: #eff7ff; } a:before { - content: " "; - position: absolute; - width: 100%; - height: 2px; - bottom: 0; - left: 0; - background-color: #de5833; - visibility: hidden; - transform: scaleX(0); - transition: all 0.3s ease-in-out; + content: " "; + position: absolute; + width: 100%; + height: 2px; + bottom: 0; + left: 0; + background-color: #de5833; + visibility: hidden; + transform: scaleX(0); + transition: all 0.3s ease-in-out; } a:hover:before { - visibility: visible; - transform: scaleX(1); + visibility: visible; + transform: scaleX(1); } article { - display: block; - margin: 1.0em; - position: relative; - margin: 0 auto; + display: block; + margin: 1.0em; + position: relative; + margin: 0 auto; } article h1 { - margin: 0; - padding: 60px 0.4em 0 0.4em; - color: #eff7ff; - font-size: 2.0em; - font-weight: 300; - text-align: center; - background: #1F222A; + margin: 0; + padding: 60px 0.4em 0 0.4em; + color: #eff7ff; + font-size: 2.0em; + font-weight: 300; + text-align: center; + background: #1F222A; } article h1+p { - max-width: 100%; - margin-top: 0; - padding-top: 0.1em; - padding-bottom: 60px; - font-size: 1.0em; - text-align: center; - background: #1F222A; + max-width: 100%; + margin-top: 0; + padding-top: 0.1em; + padding-bottom: 60px; + font-size: 1.0em; + text-align: center; + background: #1F222A; } article h1+p+p { - margin-top: 1.6em; + margin-top: 1.6em; } article p { - padding: 0 1.4em; - text-align: justify; - line-height: 1.5; - max-width: 960px; - margin: 1.0em auto; + padding: 0 1.4em; + text-align: justify; + line-height: 1.5; + max-width: 960px; + margin: 1.0em auto; } article p:last-child { - padding-bottom: 1.8em; - font-size: 0.9em; + padding-bottom: 1.8em; + font-size: 0.9em; } footer { - margin: 0 auto; - font-size: 0.8em; - text-align: center; + margin: 0 auto; + font-size: 0.8em; + text-align: center; } footer p { - padding: 0 1.4em; + padding: 0 1.4em; } #gravatar { - display: block; - position: absolute; - top: -43px; - left: 50%; - margin-left: -43px; - border-radius: 100%; - border: 3px solid #272b35; + display: block; + position: absolute; + top: -43px; + left: 50%; + margin-left: -43px; + border-radius: 100%; + border: 3px solid #272b35; } @media (max-width: 750px) { - article h1+p { - font-size: 0.8em; - } + article h1+p { + font-size: 0.8em; + } } diff --git a/themes/eula-modern.css b/themes/eula-modern.css index 40d4058a..bffd8146 100644 --- a/themes/eula-modern.css +++ b/themes/eula-modern.css @@ -1,136 +1,136 @@ /*author: lo sauer, 2013 - https://github.com/lsauer, @sauerlo */ * { - scrollbar-base-color: white; - scrollbar-track-color: white; - scrollbar-darkshadow-color: white; - scrollbar-3dlight-color: white; - scrollbar-arrow-color: #757778; - scrollbar-shadow-color: #bec1c4; - scrollbar-highlight-color: #bec1c4; + scrollbar-base-color: white; + scrollbar-track-color: white; + scrollbar-darkshadow-color: white; + scrollbar-3dlight-color: white; + scrollbar-arrow-color: #757778; + scrollbar-shadow-color: #bec1c4; + scrollbar-highlight-color: #bec1c4; } ::-webkit-scrollbar { - width: 8px; - height: 8px; + width: 8px; + height: 8px; } ::-webkit-scrollbar-thumb { - background: #888; - border-radius: 8px; - border: 1px solid rgba(0, 0, 0, 0.3); - box-shadow: -3px -3px 6px rgba(180, 180, 160, .5) inset, 3px 3px 3px rgba(226, 226, 225, .5) inset; + background: #888; + border-radius: 8px; + border: 1px solid rgba(0, 0, 0, 0.3); + box-shadow: -3px -3px 6px rgba(180, 180, 160, .5) inset, 3px 3px 3px rgba(226, 226, 225, .5) inset; } ::-webkit-scrollbar-track { - background: #fbfbfb; - box-shadow: 3px 3px 10px rgba(0, 0, 0, .25) inset; + background: #fbfbfb; + box-shadow: 3px 3px 10px rgba(0, 0, 0, .25) inset; } body { - font-family: Segoe UI, 'SegoeUIWF', Arial, sans-serif; - padding: 10px; - line-height: 1.5em; + font-family: Segoe UI, 'SegoeUIWF', Arial, sans-serif; + padding: 10px; + line-height: 1.5em; } article { - position: relative; - color: #444; - max-width: 700px; - margin: 10px auto 0px; - text-align: justify; + position: relative; + color: #444; + max-width: 700px; + margin: 10px auto 0px; + text-align: justify; } @media (max-device-height: 699px) { - article { - max-width: none !important; - margin: 8px 8px !important; - } + article { + max-width: none !important; + margin: 8px 8px !important; + } } h1 { - font-size: 3.7em; - line-height: 1.3em; - font-family: Segoe UI Light, 'SegoeUILightWF', Arial, sans-serif; - color: #000; - padding: 0px; - font-weight: normal; - clear: both; - margin: .2em auto .4em; - margin-right: 100px; - /* allow for avatar */ + font-size: 3.7em; + line-height: 1.3em; + font-family: Segoe UI Light, 'SegoeUILightWF', Arial, sans-serif; + color: #000; + padding: 0px; + font-weight: normal; + clear: both; + margin: .2em auto .4em; + margin-right: 100px; + /* allow for avatar */ } article p:nth-of-type(1) { - background: #666; - color: white; - border: none; - border-top: 1px solid #eee; - margin-top: 0; - padding: .3em .3em; - font-style: normal; - text-align: center; - font-size: 0.95em; + background: #666; + color: white; + border: none; + border-top: 1px solid #eee; + margin-top: 0; + padding: .3em .3em; + font-style: normal; + text-align: center; + font-size: 0.95em; } article p:last-child { - line-height: 26px; - padding-left: 15px; - border-width: 0px 0px 0px 3px; - border-style: solid; - padding-bottom: 1.3em; - margin-bottom: 0.0em; - font-size: 0.9em; + line-height: 26px; + padding-left: 15px; + border-width: 0px 0px 0px 3px; + border-style: solid; + padding-bottom: 1.3em; + margin-bottom: 0.0em; + font-size: 0.9em; } a { - padding: 0.1em; + padding: 0.1em; } a:link, a:visited { - text-decoration: none; - color: #666; - border: none; - transition: all 1s; - padding: 1px; + text-decoration: none; + color: #666; + border: none; + transition: all 1s; + padding: 1px; } a:hover { - background: #666; - color: white; - border: none; - transition: all 1s; + background: #666; + color: white; + border: none; + transition: all 1s; } article a:link, article a:visited { - color: #fff; - background: #666; + color: #fff; + background: #666; } a:active { - background: #999; + background: #999; } footer { - border-top: 1px solid #eee; - font-size: 0.8em; - text-align: center; - max-width: 660px; - margin: 0 auto; - margin-top: 5px; - font-style: italic; + border-top: 1px solid #eee; + font-size: 0.8em; + text-align: center; + max-width: 660px; + margin: 0 auto; + margin-top: 5px; + font-style: italic; } footer a:link, footer a:visited { - color: #ccc; + color: #ccc; } #gravatar { - position: absolute; - right: 0; - border: 3px solid #ccc; - z-index: 1; - border-radius: 10px; + position: absolute; + right: 0; + border: 3px solid #ccc; + z-index: 1; + border-radius: 10px; } diff --git a/themes/flesch.css b/themes/flesch.css index 1b7858f4..70655be8 100644 --- a/themes/flesch.css +++ b/themes/flesch.css @@ -1,55 +1,55 @@ body { - margin: 0; - padding: 50px; - background: #fff url(/themes/flesch.png); - font: 16px/28px "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif; - color: #252519; + margin: 0; + padding: 50px; + background: #fff url(/themes/flesch.png); + font: 16px/28px "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif; + color: #252519; } article, footer { - display: block; - max-width: 720px; - margin: 0; + display: block; + max-width: 720px; + margin: 0; } article { - padding: 28px; - background: #fff; - border: 1px solid #ccc; + padding: 28px; + background: #fff; + border: 1px solid #ccc; } footer { - padding: 0 28px; - text-align: center; + padding: 0 28px; + text-align: center; } h1 { - margin: 0; - font-size: 24px; - line-height: 32px; + margin: 0; + font-size: 24px; + line-height: 32px; } a, a:visited { - color: #105cb6; - padding: 4px; - text-decoration: none; + color: #105cb6; + padding: 4px; + text-decoration: none; } a:active, a:hover { - color: #003; + color: #003; } a img { - position: absolute; - top: 0; - right: 0; - border: 0; + position: absolute; + top: 0; + right: 0; + border: 0; } #gravatar { - position: relative; - float: right; - margin-bottom: 1em; - margin-left: 1em; - border: 1px solid #ddd; + position: relative; + float: right; + margin-bottom: 1em; + margin-left: 1em; + border: 1px solid #ddd; } diff --git a/themes/friendly.css b/themes/friendly.css index cb6cb482..14faeb2a 100644 --- a/themes/friendly.css +++ b/themes/friendly.css @@ -1,98 +1,98 @@ @import url(https://fonts.googleapis.com/css?family=Lato:300); html { - font-size: 16px; - background-color: #f7f7f7; + font-size: 16px; + background-color: #f7f7f7; } body { - font-family: "Lato", Helvetica, Arial, sans-serif; - font-size: 1.3em; - font-weight: 300; - color: #333; + font-family: "Lato", Helvetica, Arial, sans-serif; + font-size: 1.3em; + font-weight: 300; + color: #333; } article, footer { - max-width: 877px; - margin: 0 auto; - text-align: center; + max-width: 877px; + margin: 0 auto; + text-align: center; } article { - margin-top: 1em; - padding: 1em; - text-align: center; - position: relative; + margin-top: 1em; + padding: 1em; + text-align: center; + position: relative; } article p { - text-align: left; + text-align: left; } article p:first-of-type { - text-align: center; - font-size: .8em; + text-align: center; + font-size: .8em; } article p:last-of-type { - border-left: 3px solid #333; - padding-left: 15px; + border-left: 3px solid #333; + padding-left: 15px; } #gravatar { - width: 70px; - border-radius: 35px; - display: block; - margin: 0 auto; - position: absolute; - bottom: -3em; - left: 0; + width: 70px; + border-radius: 35px; + display: block; + margin: 0 auto; + position: absolute; + bottom: -3em; + left: 0; } h1 { - font-size: 1.5em; - font-weight: 300; - text-transform: uppercase; - display: inline-block; - padding-bottom: 12px; - border-bottom: 2px dashed #d9d9d9; - margin: 0; + font-size: 1.5em; + font-weight: 300; + text-transform: uppercase; + display: inline-block; + padding-bottom: 12px; + border-bottom: 2px dashed #d9d9d9; + margin: 0; } footer { - background: #dadada; - border-radius: 5px; + background: #dadada; + border-radius: 5px; } footer p { - text-align: left; - padding-left: 80px; + text-align: left; + padding-left: 80px; } footer p a { - color: #333; + color: #333; } a { - color: gray; - text-decoration: none; - word-wrap: break-word; + color: gray; + text-decoration: none; + word-wrap: break-word; } a:hover, a:focus, a:active { - color: black; + color: black; } @media (min-width: 640px) { - h1 { - font-size: 2.4em; - } + h1 { + font-size: 2.4em; + } - body { - font-size: 1.4em; - } + body { + font-size: 1.4em; + } - article p:first-of-type { - font-size: 1em; - } + article p:first-of-type { + font-size: 1em; + } } diff --git a/themes/hacker.css b/themes/hacker.css index 1d8d10d2..0f0daaee 100644 --- a/themes/hacker.css +++ b/themes/hacker.css @@ -1,6919 +1,6919 @@ html { - font-family: sans-serif; - text-size-adjust: 100%; + font-family: sans-serif; + text-size-adjust: 100%; } body { - margin: 0 + margin: 0 } article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { - display: block + display: block } audio, canvas, progress, video { - display: inline-block; - vertical-align: baseline + display: inline-block; + vertical-align: baseline } audio:not([controls]) { - display: none; - height: 0 + display: none; + height: 0 } [hidden], template { - display: none + display: none } a { - background-color: transparent + background-color: transparent } a:active, a:hover { - outline: 0 + outline: 0 } abbr[title] { - border-bottom: 1px dotted + border-bottom: 1px dotted } b, strong { - font-weight: bold + font-weight: bold } dfn { - font-style: italic + font-style: italic } h1 { - font-size: 2em; - margin: .67em 0 + font-size: 2em; + margin: .67em 0 } mark { - background: #ff0; - color: #000 + background: #ff0; + color: #000 } small { - font-size: 80% + font-size: 80% } sub, sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline } sup { - top: -0.5em + top: -0.5em } sub { - bottom: -0.25em + bottom: -0.25em } img { - border: 0 + border: 0 } svg:not(:root) { - overflow: hidden + overflow: hidden } figure { - margin: 1em 40px + margin: 1em 40px } hr { - box-sizing: content-box; - height: 0 + box-sizing: content-box; + height: 0 } pre { - overflow: auto + overflow: auto } code, kbd, pre, samp { - font-family: monospace, monospace; - font-size: 1em + font-family: monospace, monospace; + font-size: 1em } button, input, optgroup, select, textarea { - color: inherit; - font: inherit; - margin: 0 + color: inherit; + font: inherit; + margin: 0 } button { - overflow: visible + overflow: visible } button, select { - text-transform: none + text-transform: none } button, html input[type="button"], input[type="reset"], input[type="submit"] { - appearance: button; - cursor: pointer + appearance: button; + cursor: pointer } button[disabled], html input[disabled] { - cursor: default + cursor: default } button::-moz-focus-inner, input::-moz-focus-inner { - border: 0; - padding: 0 + border: 0; + padding: 0 } input { - line-height: normal + line-height: normal } input[type="checkbox"], input[type="radio"] { - box-sizing: border-box; - padding: 0 + box-sizing: border-box; + padding: 0 } input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { - height: auto + height: auto } input[type="search"] { - appearance: textfield; - box-sizing: content-box + appearance: textfield; + box-sizing: content-box } input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { - appearance: none + appearance: none } fieldset { - border: 1px solid #c0c0c0; - margin: 0 2px; - padding: .35em .625em .75em + border: 1px solid #c0c0c0; + margin: 0 2px; + padding: .35em .625em .75em } legend { - border: 0; - padding: 0 + border: 0; + padding: 0 } textarea { - overflow: auto + overflow: auto } optgroup { - font-weight: bold + font-weight: bold } table { - border-collapse: collapse; - border-spacing: 0 + border-collapse: collapse; + border-spacing: 0 } td, th { - padding: 0 + padding: 0 } @media print { - *, *:before, *:after { - background: transparent; - color: #000; - box-shadow: none; - text-shadow: none - } + *, *:before, *:after { + background: transparent; + color: #000; + box-shadow: none; + text-shadow: none + } - a, a:visited { - text-decoration: underline - } + a, a:visited { + text-decoration: underline + } - a[href]:after { - content: " ("attr(href) ")" - } + a[href]:after { + content: " ("attr(href) ")" + } - abbr[title]:after { - content: " ("attr(title) ")" - } + abbr[title]:after { + content: " ("attr(title) ")" + } - a[href^="#"]:after, a[href^="javascript:"]:after { - content: "" - } + a[href^="#"]:after, a[href^="javascript:"]:after { + content: "" + } - pre, blockquote { - border: 1px solid #999; - page-break-inside: avoid - } + pre, blockquote { + border: 1px solid #999; + page-break-inside: avoid + } - thead { - display: table-header-group - } + thead { + display: table-header-group + } - tr, img { - page-break-inside: avoid - } + tr, img { + page-break-inside: avoid + } - img { - max-width: 100% - } + img { + max-width: 100% + } - p, h2, h3 { - orphans: 3; - widows: 3 - } + p, h2, h3 { + orphans: 3; + widows: 3 + } - h2, h3 { - page-break-after: avoid - } + h2, h3 { + page-break-after: avoid + } - select { - background: #fff - } + select { + background: #fff + } - .navbar { - display: none - } + .navbar { + display: none + } - .btn>.caret, .dropup>.btn>.caret { - border-top-color: #000 - } + .btn>.caret, .dropup>.btn>.caret { + border-top-color: #000 + } - .label { - border: 1px solid #000 - } + .label { + border: 1px solid #000 + } - .table { - border-collapse: collapse - } + .table { + border-collapse: collapse + } - .table td, .table th { - background-color: #fff - } + .table td, .table th { + background-color: #fff + } - .table-bordered th, .table-bordered td { - border: 1px solid #ddd - } + .table-bordered th, .table-bordered td { + border: 1px solid #ddd + } } @font-face { - font-family: 'Glyphicons Halflings'; - src: url('../fonts/glyphicons-halflings-regular.eot'); - src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg') + font-family: 'Glyphicons Halflings'; + src: url('../fonts/glyphicons-halflings-regular.eot'); + src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg') } .glyphicon { - position: relative; - top: 1px; - display: inline-block; - font-family: 'Glyphicons Halflings'; - font-style: normal; - font-weight: normal; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale + position: relative; + top: 1px; + display: inline-block; + font-family: 'Glyphicons Halflings'; + font-style: normal; + font-weight: normal; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale } .glyphicon-asterisk:before { - content: "\2a" + content: "\2a" } .glyphicon-plus:before { - content: "\2b" + content: "\2b" } .glyphicon-euro:before, .glyphicon-eur:before { - content: "\20ac" + content: "\20ac" } .glyphicon-minus:before { - content: "\2212" + content: "\2212" } .glyphicon-cloud:before { - content: "\2601" + content: "\2601" } .glyphicon-envelope:before { - content: "\2709" + content: "\2709" } .glyphicon-pencil:before { - content: "\270f" + content: "\270f" } .glyphicon-glass:before { - content: "\e001" + content: "\e001" } .glyphicon-music:before { - content: "\e002" + content: "\e002" } .glyphicon-search:before { - content: "\e003" + content: "\e003" } .glyphicon-heart:before { - content: "\e005" + content: "\e005" } .glyphicon-star:before { - content: "\e006" + content: "\e006" } .glyphicon-star-empty:before { - content: "\e007" + content: "\e007" } .glyphicon-user:before { - content: "\e008" + content: "\e008" } .glyphicon-film:before { - content: "\e009" + content: "\e009" } .glyphicon-th-large:before { - content: "\e010" + content: "\e010" } .glyphicon-th:before { - content: "\e011" + content: "\e011" } .glyphicon-th-list:before { - content: "\e012" + content: "\e012" } .glyphicon-ok:before { - content: "\e013" + content: "\e013" } .glyphicon-remove:before { - content: "\e014" + content: "\e014" } .glyphicon-zoom-in:before { - content: "\e015" + content: "\e015" } .glyphicon-zoom-out:before { - content: "\e016" + content: "\e016" } .glyphicon-off:before { - content: "\e017" + content: "\e017" } .glyphicon-signal:before { - content: "\e018" + content: "\e018" } .glyphicon-cog:before { - content: "\e019" + content: "\e019" } .glyphicon-trash:before { - content: "\e020" + content: "\e020" } .glyphicon-home:before { - content: "\e021" + content: "\e021" } .glyphicon-file:before { - content: "\e022" + content: "\e022" } .glyphicon-time:before { - content: "\e023" + content: "\e023" } .glyphicon-road:before { - content: "\e024" + content: "\e024" } .glyphicon-download-alt:before { - content: "\e025" + content: "\e025" } .glyphicon-download:before { - content: "\e026" + content: "\e026" } .glyphicon-upload:before { - content: "\e027" + content: "\e027" } .glyphicon-inbox:before { - content: "\e028" + content: "\e028" } .glyphicon-play-circle:before { - content: "\e029" + content: "\e029" } .glyphicon-repeat:before { - content: "\e030" + content: "\e030" } .glyphicon-refresh:before { - content: "\e031" + content: "\e031" } .glyphicon-list-alt:before { - content: "\e032" + content: "\e032" } .glyphicon-lock:before { - content: "\e033" + content: "\e033" } .glyphicon-flag:before { - content: "\e034" + content: "\e034" } .glyphicon-headphones:before { - content: "\e035" + content: "\e035" } .glyphicon-volume-off:before { - content: "\e036" + content: "\e036" } .glyphicon-volume-down:before { - content: "\e037" + content: "\e037" } .glyphicon-volume-up:before { - content: "\e038" + content: "\e038" } .glyphicon-qrcode:before { - content: "\e039" + content: "\e039" } .glyphicon-barcode:before { - content: "\e040" + content: "\e040" } .glyphicon-tag:before { - content: "\e041" + content: "\e041" } .glyphicon-tags:before { - content: "\e042" + content: "\e042" } .glyphicon-book:before { - content: "\e043" + content: "\e043" } .glyphicon-bookmark:before { - content: "\e044" + content: "\e044" } .glyphicon-print:before { - content: "\e045" + content: "\e045" } .glyphicon-camera:before { - content: "\e046" + content: "\e046" } .glyphicon-font:before { - content: "\e047" + content: "\e047" } .glyphicon-bold:before { - content: "\e048" + content: "\e048" } .glyphicon-italic:before { - content: "\e049" + content: "\e049" } .glyphicon-text-height:before { - content: "\e050" + content: "\e050" } .glyphicon-text-width:before { - content: "\e051" + content: "\e051" } .glyphicon-align-left:before { - content: "\e052" + content: "\e052" } .glyphicon-align-center:before { - content: "\e053" + content: "\e053" } .glyphicon-align-right:before { - content: "\e054" + content: "\e054" } .glyphicon-align-justify:before { - content: "\e055" + content: "\e055" } .glyphicon-list:before { - content: "\e056" + content: "\e056" } .glyphicon-indent-left:before { - content: "\e057" + content: "\e057" } .glyphicon-indent-right:before { - content: "\e058" + content: "\e058" } .glyphicon-facetime-video:before { - content: "\e059" + content: "\e059" } .glyphicon-picture:before { - content: "\e060" + content: "\e060" } .glyphicon-map-marker:before { - content: "\e062" + content: "\e062" } .glyphicon-adjust:before { - content: "\e063" + content: "\e063" } .glyphicon-tint:before { - content: "\e064" + content: "\e064" } .glyphicon-edit:before { - content: "\e065" + content: "\e065" } .glyphicon-share:before { - content: "\e066" + content: "\e066" } .glyphicon-check:before { - content: "\e067" + content: "\e067" } .glyphicon-move:before { - content: "\e068" + content: "\e068" } .glyphicon-step-backward:before { - content: "\e069" + content: "\e069" } .glyphicon-fast-backward:before { - content: "\e070" + content: "\e070" } .glyphicon-backward:before { - content: "\e071" + content: "\e071" } .glyphicon-play:before { - content: "\e072" + content: "\e072" } .glyphicon-pause:before { - content: "\e073" + content: "\e073" } .glyphicon-stop:before { - content: "\e074" + content: "\e074" } .glyphicon-forward:before { - content: "\e075" + content: "\e075" } .glyphicon-fast-forward:before { - content: "\e076" + content: "\e076" } .glyphicon-step-forward:before { - content: "\e077" + content: "\e077" } .glyphicon-eject:before { - content: "\e078" + content: "\e078" } .glyphicon-chevron-left:before { - content: "\e079" + content: "\e079" } .glyphicon-chevron-right:before { - content: "\e080" + content: "\e080" } .glyphicon-plus-sign:before { - content: "\e081" + content: "\e081" } .glyphicon-minus-sign:before { - content: "\e082" + content: "\e082" } .glyphicon-remove-sign:before { - content: "\e083" + content: "\e083" } .glyphicon-ok-sign:before { - content: "\e084" + content: "\e084" } .glyphicon-question-sign:before { - content: "\e085" + content: "\e085" } .glyphicon-info-sign:before { - content: "\e086" + content: "\e086" } .glyphicon-screenshot:before { - content: "\e087" + content: "\e087" } .glyphicon-remove-circle:before { - content: "\e088" + content: "\e088" } .glyphicon-ok-circle:before { - content: "\e089" + content: "\e089" } .glyphicon-ban-circle:before { - content: "\e090" + content: "\e090" } .glyphicon-arrow-left:before { - content: "\e091" + content: "\e091" } .glyphicon-arrow-right:before { - content: "\e092" + content: "\e092" } .glyphicon-arrow-up:before { - content: "\e093" + content: "\e093" } .glyphicon-arrow-down:before { - content: "\e094" + content: "\e094" } .glyphicon-share-alt:before { - content: "\e095" + content: "\e095" } .glyphicon-resize-full:before { - content: "\e096" + content: "\e096" } .glyphicon-resize-small:before { - content: "\e097" + content: "\e097" } .glyphicon-exclamation-sign:before { - content: "\e101" + content: "\e101" } .glyphicon-gift:before { - content: "\e102" + content: "\e102" } .glyphicon-leaf:before { - content: "\e103" + content: "\e103" } .glyphicon-fire:before { - content: "\e104" + content: "\e104" } .glyphicon-eye-open:before { - content: "\e105" + content: "\e105" } .glyphicon-eye-close:before { - content: "\e106" + content: "\e106" } .glyphicon-warning-sign:before { - content: "\e107" + content: "\e107" } .glyphicon-plane:before { - content: "\e108" + content: "\e108" } .glyphicon-calendar:before { - content: "\e109" + content: "\e109" } .glyphicon-random:before { - content: "\e110" + content: "\e110" } .glyphicon-comment:before { - content: "\e111" + content: "\e111" } .glyphicon-magnet:before { - content: "\e112" + content: "\e112" } .glyphicon-chevron-up:before { - content: "\e113" + content: "\e113" } .glyphicon-chevron-down:before { - content: "\e114" + content: "\e114" } .glyphicon-retweet:before { - content: "\e115" + content: "\e115" } .glyphicon-shopping-cart:before { - content: "\e116" + content: "\e116" } .glyphicon-folder-close:before { - content: "\e117" + content: "\e117" } .glyphicon-folder-open:before { - content: "\e118" + content: "\e118" } .glyphicon-resize-vertical:before { - content: "\e119" + content: "\e119" } .glyphicon-resize-horizontal:before { - content: "\e120" + content: "\e120" } .glyphicon-hdd:before { - content: "\e121" + content: "\e121" } .glyphicon-bullhorn:before { - content: "\e122" + content: "\e122" } .glyphicon-bell:before { - content: "\e123" + content: "\e123" } .glyphicon-certificate:before { - content: "\e124" + content: "\e124" } .glyphicon-thumbs-up:before { - content: "\e125" + content: "\e125" } .glyphicon-thumbs-down:before { - content: "\e126" + content: "\e126" } .glyphicon-hand-right:before { - content: "\e127" + content: "\e127" } .glyphicon-hand-left:before { - content: "\e128" + content: "\e128" } .glyphicon-hand-up:before { - content: "\e129" + content: "\e129" } .glyphicon-hand-down:before { - content: "\e130" + content: "\e130" } .glyphicon-circle-arrow-right:before { - content: "\e131" + content: "\e131" } .glyphicon-circle-arrow-left:before { - content: "\e132" + content: "\e132" } .glyphicon-circle-arrow-up:before { - content: "\e133" + content: "\e133" } .glyphicon-circle-arrow-down:before { - content: "\e134" + content: "\e134" } .glyphicon-globe:before { - content: "\e135" + content: "\e135" } .glyphicon-wrench:before { - content: "\e136" + content: "\e136" } .glyphicon-tasks:before { - content: "\e137" + content: "\e137" } .glyphicon-filter:before { - content: "\e138" + content: "\e138" } .glyphicon-briefcase:before { - content: "\e139" + content: "\e139" } .glyphicon-fullscreen:before { - content: "\e140" + content: "\e140" } .glyphicon-dashboard:before { - content: "\e141" + content: "\e141" } .glyphicon-paperclip:before { - content: "\e142" + content: "\e142" } .glyphicon-heart-empty:before { - content: "\e143" + content: "\e143" } .glyphicon-link:before { - content: "\e144" + content: "\e144" } .glyphicon-phone:before { - content: "\e145" + content: "\e145" } .glyphicon-pushpin:before { - content: "\e146" + content: "\e146" } .glyphicon-usd:before { - content: "\e148" + content: "\e148" } .glyphicon-gbp:before { - content: "\e149" + content: "\e149" } .glyphicon-sort:before { - content: "\e150" + content: "\e150" } .glyphicon-sort-by-alphabet:before { - content: "\e151" + content: "\e151" } .glyphicon-sort-by-alphabet-alt:before { - content: "\e152" + content: "\e152" } .glyphicon-sort-by-order:before { - content: "\e153" + content: "\e153" } .glyphicon-sort-by-order-alt:before { - content: "\e154" + content: "\e154" } .glyphicon-sort-by-attributes:before { - content: "\e155" + content: "\e155" } .glyphicon-sort-by-attributes-alt:before { - content: "\e156" + content: "\e156" } .glyphicon-unchecked:before { - content: "\e157" + content: "\e157" } .glyphicon-expand:before { - content: "\e158" + content: "\e158" } .glyphicon-collapse-down:before { - content: "\e159" + content: "\e159" } .glyphicon-collapse-up:before { - content: "\e160" + content: "\e160" } .glyphicon-log-in:before { - content: "\e161" + content: "\e161" } .glyphicon-flash:before { - content: "\e162" + content: "\e162" } .glyphicon-log-out:before { - content: "\e163" + content: "\e163" } .glyphicon-new-window:before { - content: "\e164" + content: "\e164" } .glyphicon-record:before { - content: "\e165" + content: "\e165" } .glyphicon-save:before { - content: "\e166" + content: "\e166" } .glyphicon-open:before { - content: "\e167" + content: "\e167" } .glyphicon-saved:before { - content: "\e168" + content: "\e168" } .glyphicon-import:before { - content: "\e169" + content: "\e169" } .glyphicon-export:before { - content: "\e170" + content: "\e170" } .glyphicon-send:before { - content: "\e171" + content: "\e171" } .glyphicon-floppy-disk:before { - content: "\e172" + content: "\e172" } .glyphicon-floppy-saved:before { - content: "\e173" + content: "\e173" } .glyphicon-floppy-remove:before { - content: "\e174" + content: "\e174" } .glyphicon-floppy-save:before { - content: "\e175" + content: "\e175" } .glyphicon-floppy-open:before { - content: "\e176" + content: "\e176" } .glyphicon-credit-card:before { - content: "\e177" + content: "\e177" } .glyphicon-transfer:before { - content: "\e178" + content: "\e178" } .glyphicon-cutlery:before { - content: "\e179" + content: "\e179" } .glyphicon-header:before { - content: "\e180" + content: "\e180" } .glyphicon-compressed:before { - content: "\e181" + content: "\e181" } .glyphicon-earphone:before { - content: "\e182" + content: "\e182" } .glyphicon-phone-alt:before { - content: "\e183" + content: "\e183" } .glyphicon-tower:before { - content: "\e184" + content: "\e184" } .glyphicon-stats:before { - content: "\e185" + content: "\e185" } .glyphicon-sd-video:before { - content: "\e186" + content: "\e186" } .glyphicon-hd-video:before { - content: "\e187" + content: "\e187" } .glyphicon-subtitles:before { - content: "\e188" + content: "\e188" } .glyphicon-sound-stereo:before { - content: "\e189" + content: "\e189" } .glyphicon-sound-dolby:before { - content: "\e190" + content: "\e190" } .glyphicon-sound-5-1:before { - content: "\e191" + content: "\e191" } .glyphicon-sound-6-1:before { - content: "\e192" + content: "\e192" } .glyphicon-sound-7-1:before { - content: "\e193" + content: "\e193" } .glyphicon-copyright-mark:before { - content: "\e194" + content: "\e194" } .glyphicon-registration-mark:before { - content: "\e195" + content: "\e195" } .glyphicon-cloud-download:before { - content: "\e197" + content: "\e197" } .glyphicon-cloud-upload:before { - content: "\e198" + content: "\e198" } .glyphicon-tree-conifer:before { - content: "\e199" + content: "\e199" } .glyphicon-tree-deciduous:before { - content: "\e200" + content: "\e200" } .glyphicon-cd:before { - content: "\e201" + content: "\e201" } .glyphicon-save-file:before { - content: "\e202" + content: "\e202" } .glyphicon-open-file:before { - content: "\e203" + content: "\e203" } .glyphicon-level-up:before { - content: "\e204" + content: "\e204" } .glyphicon-copy:before { - content: "\e205" + content: "\e205" } .glyphicon-paste:before { - content: "\e206" + content: "\e206" } .glyphicon-alert:before { - content: "\e209" + content: "\e209" } .glyphicon-equalizer:before { - content: "\e210" + content: "\e210" } .glyphicon-king:before { - content: "\e211" + content: "\e211" } .glyphicon-queen:before { - content: "\e212" + content: "\e212" } .glyphicon-pawn:before { - content: "\e213" + content: "\e213" } .glyphicon-bishop:before { - content: "\e214" + content: "\e214" } .glyphicon-knight:before { - content: "\e215" + content: "\e215" } .glyphicon-baby-formula:before { - content: "\e216" + content: "\e216" } .glyphicon-tent:before { - content: "\26fa" + content: "\26fa" } .glyphicon-blackboard:before { - content: "\e218" + content: "\e218" } .glyphicon-bed:before { - content: "\e219" + content: "\e219" } .glyphicon-apple:before { - content: "\f8ff" + content: "\f8ff" } .glyphicon-erase:before { - content: "\e221" + content: "\e221" } .glyphicon-hourglass:before { - content: "\231b" + content: "\231b" } .glyphicon-lamp:before { - content: "\e223" + content: "\e223" } .glyphicon-duplicate:before { - content: "\e224" + content: "\e224" } .glyphicon-piggy-bank:before { - content: "\e225" + content: "\e225" } .glyphicon-scissors:before { - content: "\e226" + content: "\e226" } .glyphicon-bitcoin:before { - content: "\e227" + content: "\e227" } .glyphicon-btc:before { - content: "\e227" + content: "\e227" } .glyphicon-xbt:before { - content: "\e227" + content: "\e227" } .glyphicon-yen:before { - content: "\00a5" + content: "\00a5" } .glyphicon-jpy:before { - content: "\00a5" + content: "\00a5" } .glyphicon-ruble:before { - content: "\20bd" + content: "\20bd" } .glyphicon-rub:before { - content: "\20bd" + content: "\20bd" } .glyphicon-scale:before { - content: "\e230" + content: "\e230" } .glyphicon-ice-lolly:before { - content: "\e231" + content: "\e231" } .glyphicon-ice-lolly-tasted:before { - content: "\e232" + content: "\e232" } .glyphicon-education:before { - content: "\e233" + content: "\e233" } .glyphicon-option-horizontal:before { - content: "\e234" + content: "\e234" } .glyphicon-option-vertical:before { - content: "\e235" + content: "\e235" } .glyphicon-menu-hamburger:before { - content: "\e236" + content: "\e236" } .glyphicon-modal-window:before { - content: "\e237" + content: "\e237" } .glyphicon-oil:before { - content: "\e238" + content: "\e238" } .glyphicon-grain:before { - content: "\e239" + content: "\e239" } .glyphicon-sunglasses:before { - content: "\e240" + content: "\e240" } .glyphicon-text-size:before { - content: "\e241" + content: "\e241" } .glyphicon-text-color:before { - content: "\e242" + content: "\e242" } .glyphicon-text-background:before { - content: "\e243" + content: "\e243" } .glyphicon-object-align-top:before { - content: "\e244" + content: "\e244" } .glyphicon-object-align-bottom:before { - content: "\e245" + content: "\e245" } .glyphicon-object-align-horizontal:before { - content: "\e246" + content: "\e246" } .glyphicon-object-align-left:before { - content: "\e247" + content: "\e247" } .glyphicon-object-align-vertical:before { - content: "\e248" + content: "\e248" } .glyphicon-object-align-right:before { - content: "\e249" + content: "\e249" } .glyphicon-triangle-right:before { - content: "\e250" + content: "\e250" } .glyphicon-triangle-left:before { - content: "\e251" + content: "\e251" } .glyphicon-triangle-bottom:before { - content: "\e252" + content: "\e252" } .glyphicon-triangle-top:before { - content: "\e253" + content: "\e253" } .glyphicon-console:before { - content: "\e254" + content: "\e254" } .glyphicon-superscript:before { - content: "\e255" + content: "\e255" } .glyphicon-subscript:before { - content: "\e256" + content: "\e256" } .glyphicon-menu-left:before { - content: "\e257" + content: "\e257" } .glyphicon-menu-right:before { - content: "\e258" + content: "\e258" } .glyphicon-menu-down:before { - content: "\e259" + content: "\e259" } .glyphicon-menu-up:before { - content: "\e260" + content: "\e260" } * { - box-sizing: border-box + box-sizing: border-box } *:before, *:after { - box-sizing: border-box + box-sizing: border-box } html { - font-size: 10px; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0) + font-size: 10px; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0) } body { - font-family: Monospace; - font-size: 14px; - line-height: 1.428571429; - color: #0c0; - background-color: #222 + font-family: Monospace; + font-size: 14px; + line-height: 1.428571429; + color: #0c0; + background-color: #222 } input, button, select, textarea { - font-family: inherit; - font-size: inherit; - line-height: inherit + font-family: inherit; + font-size: inherit; + line-height: inherit } a { - color: #0f0; - text-decoration: none + color: #0f0; + text-decoration: none } a:hover, a:focus { - color: #00b300; - text-decoration: underline + color: #00b300; + text-decoration: underline } a:focus { - outline: thin dotted; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px } figure { - margin: 0 + margin: 0 } img { - vertical-align: middle + vertical-align: middle } .img-responsive, .thumbnail>img, .thumbnail a>img, .carousel-inner>.item>img, .carousel-inner>.item>a>img { - display: block; - max-width: 100%; - height: auto + display: block; + max-width: 100%; + height: auto } .img-rounded { - border-radius: 0 + border-radius: 0 } .img-thumbnail { - padding: 4px; - line-height: 1.428571429; - background-color: #222; - border: 1px solid #ddd; - border-radius: 0; - transition: all .2s ease-in-out; - display: inline-block; - max-width: 100%; - height: auto + padding: 4px; + line-height: 1.428571429; + background-color: #222; + border: 1px solid #ddd; + border-radius: 0; + transition: all .2s ease-in-out; + display: inline-block; + max-width: 100%; + height: auto } .img-circle { - border-radius: 50% + border-radius: 50% } hr { - margin-top: 20px; - margin-bottom: 20px; - border: 0; - border-top: 1px solid #3c3c3c + margin-top: 20px; + margin-bottom: 20px; + border: 0; + border-top: 1px solid #3c3c3c } .sr-only { - position: absolute; - width: 1px; - height: 1px; - margin: -1px; - padding: 0; - overflow: hidden; - clip: rect(0, 0, 0, 0); - border: 0 + position: absolute; + width: 1px; + height: 1px; + margin: -1px; + padding: 0; + overflow: hidden; + clip: rect(0, 0, 0, 0); + border: 0 } .sr-only-focusable:active, .sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - margin: 0; - overflow: visible; - clip: auto + position: static; + width: auto; + height: auto; + margin: 0; + overflow: visible; + clip: auto } [role="button"] { - cursor: pointer + cursor: pointer } h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { - font-family: Monospace; - font-weight: 500; - line-height: 1.1; - color: inherit + font-family: Monospace; + font-weight: 500; + line-height: 1.1; + color: inherit } h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small, h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small, .h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small { - font-weight: normal; - line-height: 1; - color: #030 + font-weight: normal; + line-height: 1; + color: #030 } h1, .h1, h2, .h2, h3, .h3 { - margin-top: 20px; - margin-bottom: 10px + margin-top: 20px; + margin-bottom: 10px } h1 small, .h1 small, h2 small, .h2 small, h3 small, .h3 small, h1 .small, .h1 .small, h2 .small, .h2 .small, h3 .small, .h3 .small { - font-size: 65% + font-size: 65% } h4, .h4, h5, .h5, h6, .h6 { - margin-top: 10px; - margin-bottom: 10px + margin-top: 10px; + margin-bottom: 10px } h4 small, .h4 small, h5 small, .h5 small, h6 small, .h6 small, h4 .small, .h4 .small, h5 .small, .h5 .small, h6 .small, .h6 .small { - font-size: 75% + font-size: 75% } h1, .h1 { - font-size: 36px + font-size: 36px } h2, .h2 { - font-size: 30px + font-size: 30px } h3, .h3 { - font-size: 23px + font-size: 23px } h4, .h4 { - font-size: 17px + font-size: 17px } h5, .h5 { - font-size: 14px + font-size: 14px } h6, .h6 { - font-size: 11px + font-size: 11px } p { - margin: 0 0 10px + margin: 0 0 10px } .lead { - margin-bottom: 20px; - font-size: 16px; - font-weight: 300; - line-height: 1.4 + margin-bottom: 20px; + font-size: 16px; + font-weight: 300; + line-height: 1.4 } @media (min-width:768px) { - .lead { - font-size: 21px - } + .lead { + font-size: 21px + } } small, .small { - font-size: 85% + font-size: 85% } mark, .mark { - background-color: #3c3c3c; - padding: .2em + background-color: #3c3c3c; + padding: .2em } .text-left { - text-align: left + text-align: left } .text-right { - text-align: right + text-align: right } .text-center { - text-align: center + text-align: center } .text-justify { - text-align: justify + text-align: justify } .text-nowrap { - white-space: nowrap + white-space: nowrap } .text-lowercase { - text-transform: lowercase + text-transform: lowercase } .text-uppercase { - text-transform: uppercase + text-transform: uppercase } .text-capitalize { - text-transform: capitalize + text-transform: capitalize } .text-muted { - color: #030 + color: #030 } .text-primary { - color: #0f0 + color: #0f0 } a.text-primary:hover { - color: #0c0 + color: #0c0 } .text-success { - color: #0d0 + color: #0d0 } a.text-success:hover { - color: #0a0 + color: #0a0 } .text-info { - color: #7d8cff + color: #7d8cff } a.text-info:hover { - color: #4a5fff + color: #4a5fff } .text-warning { - color: #f4ff00 + color: #f4ff00 } a.text-warning:hover { - color: #c3cc00 + color: #c3cc00 } .text-danger { - color: #d00 + color: #d00 } a.text-danger:hover { - color: #a00 + color: #a00 } .bg-primary { - color: #fff; - background-color: #0f0 + color: #fff; + background-color: #0f0 } a.bg-primary:hover { - background-color: #0c0 + background-color: #0c0 } .bg-success { - background-color: #3c3c3c + background-color: #3c3c3c } a.bg-success:hover { - background-color: #222 + background-color: #222 } .bg-info { - background-color: #3c3c3c + background-color: #3c3c3c } a.bg-info:hover { - background-color: #222 + background-color: #222 } .bg-warning { - background-color: #3c3c3c + background-color: #3c3c3c } a.bg-warning:hover { - background-color: #222 + background-color: #222 } .bg-danger { - background-color: #3c3c3c + background-color: #3c3c3c } a.bg-danger:hover { - background-color: #222 + background-color: #222 } .page-header { - padding-bottom: 9px; - margin: 40px 0 20px; - border-bottom: 1px solid #030 + padding-bottom: 9px; + margin: 40px 0 20px; + border-bottom: 1px solid #030 } ul, ol { - margin-top: 0; - margin-bottom: 10px + margin-top: 0; + margin-bottom: 10px } ul ul, ol ul, ul ol, ol ol { - margin-bottom: 0 + margin-bottom: 0 } .list-unstyled { - padding-left: 0; - list-style: none + padding-left: 0; + list-style: none } .list-inline { - padding-left: 0; - list-style: none; - margin-left: -5px + padding-left: 0; + list-style: none; + margin-left: -5px } .list-inline>li { - display: inline-block; - padding-left: 5px; - padding-right: 5px + display: inline-block; + padding-left: 5px; + padding-right: 5px } dl { - margin-top: 0; - margin-bottom: 20px + margin-top: 0; + margin-bottom: 20px } dt, dd { - line-height: 1.428571429 + line-height: 1.428571429 } dt { - font-weight: bold + font-weight: bold } dd { - margin-left: 0 + margin-left: 0 } @media (min-width:768px) { - .dl-horizontal dt { - float: left; - width: 160px; - clear: left; - text-align: right; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap - } + .dl-horizontal dt { + float: left; + width: 160px; + clear: left; + text-align: right; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap + } - .dl-horizontal dd { - margin-left: 180px - } + .dl-horizontal dd { + margin-left: 180px + } } abbr[title], abbr[data-original-title] { - cursor: help; - border-bottom: 1px dotted #030 + cursor: help; + border-bottom: 1px dotted #030 } .initialism { - font-size: 90%; - text-transform: uppercase + font-size: 90%; + text-transform: uppercase } blockquote { - padding: 10px 20px; - margin: 0 0 20px; - font-size: 17.5px; - border-left: 5px solid #030 + padding: 10px 20px; + margin: 0 0 20px; + font-size: 17.5px; + border-left: 5px solid #030 } blockquote p:last-child, blockquote ul:last-child, blockquote ol:last-child { - margin-bottom: 0 + margin-bottom: 0 } blockquote footer, blockquote small, blockquote .small { - display: block; - font-size: 80%; - line-height: 1.428571429; - color: #030 + display: block; + font-size: 80%; + line-height: 1.428571429; + color: #030 } blockquote footer:before, blockquote small:before, blockquote .small:before { - content: '\2014 \00A0' + content: '\2014 \00A0' } .blockquote-reverse, blockquote.pull-right { - padding-right: 15px; - padding-left: 0; - border-right: 5px solid #030; - border-left: 0; - text-align: right + padding-right: 15px; + padding-left: 0; + border-right: 5px solid #030; + border-left: 0; + text-align: right } .blockquote-reverse footer:before, blockquote.pull-right footer:before, .blockquote-reverse small:before, blockquote.pull-right small:before, .blockquote-reverse .small:before, blockquote.pull-right .small:before { - content: '' + content: '' } .blockquote-reverse footer:after, blockquote.pull-right footer:after, .blockquote-reverse small:after, blockquote.pull-right small:after, .blockquote-reverse .small:after, blockquote.pull-right .small:after { - content: '\00A0 \2014' + content: '\00A0 \2014' } address { - margin-bottom: 20px; - font-style: normal; - line-height: 1.428571429 + margin-bottom: 20px; + font-style: normal; + line-height: 1.428571429 } code, kbd, pre, samp { - font-family: Monospace + font-family: Monospace } code { - padding: 2px 4px; - font-size: 90%; - color: #c7254e; - background-color: #f9f2f4; - border-radius: 0 + padding: 2px 4px; + font-size: 90%; + color: #c7254e; + background-color: #f9f2f4; + border-radius: 0 } kbd { - padding: 2px 4px; - font-size: 90%; - color: #fff; - background-color: #333; - border-radius: 0; - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25) + padding: 2px 4px; + font-size: 90%; + color: #fff; + background-color: #333; + border-radius: 0; + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25) } kbd kbd { - padding: 0; - font-size: 100%; - font-weight: bold; - box-shadow: none + padding: 0; + font-size: 100%; + font-weight: bold; + box-shadow: none } pre { - display: block; - padding: 9.5px; - margin: 0 0 10px; - font-size: 13px; - line-height: 1.428571429; - word-break: break-all; - word-wrap: break-word; - color: #0c0; - background-color: #f5f5f5; - border: 1px solid #ccc; - border-radius: 0 + display: block; + padding: 9.5px; + margin: 0 0 10px; + font-size: 13px; + line-height: 1.428571429; + word-break: break-all; + word-wrap: break-word; + color: #0c0; + background-color: #f5f5f5; + border: 1px solid #ccc; + border-radius: 0 } pre code { - padding: 0; - font-size: inherit; - color: inherit; - white-space: pre-wrap; - background-color: transparent; - border-radius: 0 + padding: 0; + font-size: inherit; + color: inherit; + white-space: pre-wrap; + background-color: transparent; + border-radius: 0 } .pre-scrollable { - max-height: 340px; - overflow-y: scroll + max-height: 340px; + overflow-y: scroll } .container { - margin-right: auto; - margin-left: auto; - padding-left: 15px; - padding-right: 15px + margin-right: auto; + margin-left: auto; + padding-left: 15px; + padding-right: 15px } @media (min-width:768px) { - .container { - width: 750px - } + .container { + width: 750px + } } @media (min-width:992px) { - .container { - width: 970px - } + .container { + width: 970px + } } @media (min-width:1200px) { - .container { - width: 1170px - } + .container { + width: 1170px + } } .container-fluid { - margin-right: auto; - margin-left: auto; - padding-left: 15px; - padding-right: 15px + margin-right: auto; + margin-left: auto; + padding-left: 15px; + padding-right: 15px } .row { - margin-left: -15px; - margin-right: -15px + margin-left: -15px; + margin-right: -15px } .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { - position: relative; - min-height: 1px; - padding-left: 15px; - padding-right: 15px + position: relative; + min-height: 1px; + padding-left: 15px; + padding-right: 15px } .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { - float: left + float: left } .col-xs-12 { - width: 100% + width: 100% } .col-xs-11 { - width: 91.66666666666666% + width: 91.66666666666666% } .col-xs-10 { - width: 83.33333333333334% + width: 83.33333333333334% } .col-xs-9 { - width: 75% + width: 75% } .col-xs-8 { - width: 66.66666666666666% + width: 66.66666666666666% } .col-xs-7 { - width: 58.333333333333336% + width: 58.333333333333336% } .col-xs-6 { - width: 50% + width: 50% } .col-xs-5 { - width: 41.66666666666667% + width: 41.66666666666667% } .col-xs-4 { - width: 33.33333333333333% + width: 33.33333333333333% } .col-xs-3 { - width: 25% + width: 25% } .col-xs-2 { - width: 16.666666666666664% + width: 16.666666666666664% } .col-xs-1 { - width: 8.333333333333332% + width: 8.333333333333332% } .col-xs-pull-12 { - right: 100% + right: 100% } .col-xs-pull-11 { - right: 91.66666666666666% + right: 91.66666666666666% } .col-xs-pull-10 { - right: 83.33333333333334% + right: 83.33333333333334% } .col-xs-pull-9 { - right: 75% + right: 75% } .col-xs-pull-8 { - right: 66.66666666666666% + right: 66.66666666666666% } .col-xs-pull-7 { - right: 58.333333333333336% + right: 58.333333333333336% } .col-xs-pull-6 { - right: 50% + right: 50% } .col-xs-pull-5 { - right: 41.66666666666667% + right: 41.66666666666667% } .col-xs-pull-4 { - right: 33.33333333333333% + right: 33.33333333333333% } .col-xs-pull-3 { - right: 25% + right: 25% } .col-xs-pull-2 { - right: 16.666666666666664% + right: 16.666666666666664% } .col-xs-pull-1 { - right: 8.333333333333332% + right: 8.333333333333332% } .col-xs-pull-0 { - right: auto + right: auto } .col-xs-push-12 { - left: 100% + left: 100% } .col-xs-push-11 { - left: 91.66666666666666% + left: 91.66666666666666% } .col-xs-push-10 { - left: 83.33333333333334% + left: 83.33333333333334% } .col-xs-push-9 { - left: 75% + left: 75% } .col-xs-push-8 { - left: 66.66666666666666% + left: 66.66666666666666% } .col-xs-push-7 { - left: 58.333333333333336% + left: 58.333333333333336% } .col-xs-push-6 { - left: 50% + left: 50% } .col-xs-push-5 { - left: 41.66666666666667% + left: 41.66666666666667% } .col-xs-push-4 { - left: 33.33333333333333% + left: 33.33333333333333% } .col-xs-push-3 { - left: 25% + left: 25% } .col-xs-push-2 { - left: 16.666666666666664% + left: 16.666666666666664% } .col-xs-push-1 { - left: 8.333333333333332% + left: 8.333333333333332% } .col-xs-push-0 { - left: auto + left: auto } .col-xs-offset-12 { - margin-left: 100% + margin-left: 100% } .col-xs-offset-11 { - margin-left: 91.66666666666666% + margin-left: 91.66666666666666% } .col-xs-offset-10 { - margin-left: 83.33333333333334% + margin-left: 83.33333333333334% } .col-xs-offset-9 { - margin-left: 75% + margin-left: 75% } .col-xs-offset-8 { - margin-left: 66.66666666666666% + margin-left: 66.66666666666666% } .col-xs-offset-7 { - margin-left: 58.333333333333336% + margin-left: 58.333333333333336% } .col-xs-offset-6 { - margin-left: 50% + margin-left: 50% } .col-xs-offset-5 { - margin-left: 41.66666666666667% + margin-left: 41.66666666666667% } .col-xs-offset-4 { - margin-left: 33.33333333333333% + margin-left: 33.33333333333333% } .col-xs-offset-3 { - margin-left: 25% + margin-left: 25% } .col-xs-offset-2 { - margin-left: 16.666666666666664% + margin-left: 16.666666666666664% } .col-xs-offset-1 { - margin-left: 8.333333333333332% + margin-left: 8.333333333333332% } .col-xs-offset-0 { - margin-left: 0 + margin-left: 0 } @media (min-width:768px) { - .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { - float: left - } + .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { + float: left + } - .col-sm-12 { - width: 100% - } + .col-sm-12 { + width: 100% + } - .col-sm-11 { - width: 91.66666666666666% - } + .col-sm-11 { + width: 91.66666666666666% + } - .col-sm-10 { - width: 83.33333333333334% - } + .col-sm-10 { + width: 83.33333333333334% + } - .col-sm-9 { - width: 75% - } + .col-sm-9 { + width: 75% + } - .col-sm-8 { - width: 66.66666666666666% - } + .col-sm-8 { + width: 66.66666666666666% + } - .col-sm-7 { - width: 58.333333333333336% - } + .col-sm-7 { + width: 58.333333333333336% + } - .col-sm-6 { - width: 50% - } + .col-sm-6 { + width: 50% + } - .col-sm-5 { - width: 41.66666666666667% - } + .col-sm-5 { + width: 41.66666666666667% + } - .col-sm-4 { - width: 33.33333333333333% - } + .col-sm-4 { + width: 33.33333333333333% + } - .col-sm-3 { - width: 25% - } + .col-sm-3 { + width: 25% + } - .col-sm-2 { - width: 16.666666666666664% - } + .col-sm-2 { + width: 16.666666666666664% + } - .col-sm-1 { - width: 8.333333333333332% - } + .col-sm-1 { + width: 8.333333333333332% + } - .col-sm-pull-12 { - right: 100% - } + .col-sm-pull-12 { + right: 100% + } - .col-sm-pull-11 { - right: 91.66666666666666% - } + .col-sm-pull-11 { + right: 91.66666666666666% + } - .col-sm-pull-10 { - right: 83.33333333333334% - } + .col-sm-pull-10 { + right: 83.33333333333334% + } - .col-sm-pull-9 { - right: 75% - } + .col-sm-pull-9 { + right: 75% + } - .col-sm-pull-8 { - right: 66.66666666666666% - } + .col-sm-pull-8 { + right: 66.66666666666666% + } - .col-sm-pull-7 { - right: 58.333333333333336% - } + .col-sm-pull-7 { + right: 58.333333333333336% + } - .col-sm-pull-6 { - right: 50% - } + .col-sm-pull-6 { + right: 50% + } - .col-sm-pull-5 { - right: 41.66666666666667% - } + .col-sm-pull-5 { + right: 41.66666666666667% + } - .col-sm-pull-4 { - right: 33.33333333333333% - } + .col-sm-pull-4 { + right: 33.33333333333333% + } - .col-sm-pull-3 { - right: 25% - } + .col-sm-pull-3 { + right: 25% + } - .col-sm-pull-2 { - right: 16.666666666666664% - } + .col-sm-pull-2 { + right: 16.666666666666664% + } - .col-sm-pull-1 { - right: 8.333333333333332% - } + .col-sm-pull-1 { + right: 8.333333333333332% + } - .col-sm-pull-0 { - right: auto - } + .col-sm-pull-0 { + right: auto + } - .col-sm-push-12 { - left: 100% - } + .col-sm-push-12 { + left: 100% + } - .col-sm-push-11 { - left: 91.66666666666666% - } + .col-sm-push-11 { + left: 91.66666666666666% + } - .col-sm-push-10 { - left: 83.33333333333334% - } + .col-sm-push-10 { + left: 83.33333333333334% + } - .col-sm-push-9 { - left: 75% - } + .col-sm-push-9 { + left: 75% + } - .col-sm-push-8 { - left: 66.66666666666666% - } + .col-sm-push-8 { + left: 66.66666666666666% + } - .col-sm-push-7 { - left: 58.333333333333336% - } + .col-sm-push-7 { + left: 58.333333333333336% + } - .col-sm-push-6 { - left: 50% - } + .col-sm-push-6 { + left: 50% + } - .col-sm-push-5 { - left: 41.66666666666667% - } + .col-sm-push-5 { + left: 41.66666666666667% + } - .col-sm-push-4 { - left: 33.33333333333333% - } + .col-sm-push-4 { + left: 33.33333333333333% + } - .col-sm-push-3 { - left: 25% - } + .col-sm-push-3 { + left: 25% + } - .col-sm-push-2 { - left: 16.666666666666664% - } + .col-sm-push-2 { + left: 16.666666666666664% + } - .col-sm-push-1 { - left: 8.333333333333332% - } + .col-sm-push-1 { + left: 8.333333333333332% + } - .col-sm-push-0 { - left: auto - } + .col-sm-push-0 { + left: auto + } - .col-sm-offset-12 { - margin-left: 100% - } + .col-sm-offset-12 { + margin-left: 100% + } - .col-sm-offset-11 { - margin-left: 91.66666666666666% - } + .col-sm-offset-11 { + margin-left: 91.66666666666666% + } - .col-sm-offset-10 { - margin-left: 83.33333333333334% - } + .col-sm-offset-10 { + margin-left: 83.33333333333334% + } - .col-sm-offset-9 { - margin-left: 75% - } + .col-sm-offset-9 { + margin-left: 75% + } - .col-sm-offset-8 { - margin-left: 66.66666666666666% - } + .col-sm-offset-8 { + margin-left: 66.66666666666666% + } - .col-sm-offset-7 { - margin-left: 58.333333333333336% - } + .col-sm-offset-7 { + margin-left: 58.333333333333336% + } - .col-sm-offset-6 { - margin-left: 50% - } + .col-sm-offset-6 { + margin-left: 50% + } - .col-sm-offset-5 { - margin-left: 41.66666666666667% - } + .col-sm-offset-5 { + margin-left: 41.66666666666667% + } - .col-sm-offset-4 { - margin-left: 33.33333333333333% - } + .col-sm-offset-4 { + margin-left: 33.33333333333333% + } - .col-sm-offset-3 { - margin-left: 25% - } + .col-sm-offset-3 { + margin-left: 25% + } - .col-sm-offset-2 { - margin-left: 16.666666666666664% - } + .col-sm-offset-2 { + margin-left: 16.666666666666664% + } - .col-sm-offset-1 { - margin-left: 8.333333333333332% - } + .col-sm-offset-1 { + margin-left: 8.333333333333332% + } - .col-sm-offset-0 { - margin-left: 0 - } + .col-sm-offset-0 { + margin-left: 0 + } } @media (min-width:992px) { - .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { - float: left - } + .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { + float: left + } - .col-md-12 { - width: 100% - } + .col-md-12 { + width: 100% + } - .col-md-11 { - width: 91.66666666666666% - } + .col-md-11 { + width: 91.66666666666666% + } - .col-md-10 { - width: 83.33333333333334% - } + .col-md-10 { + width: 83.33333333333334% + } - .col-md-9 { - width: 75% - } + .col-md-9 { + width: 75% + } - .col-md-8 { - width: 66.66666666666666% - } + .col-md-8 { + width: 66.66666666666666% + } - .col-md-7 { - width: 58.333333333333336% - } + .col-md-7 { + width: 58.333333333333336% + } - .col-md-6 { - width: 50% - } + .col-md-6 { + width: 50% + } - .col-md-5 { - width: 41.66666666666667% - } + .col-md-5 { + width: 41.66666666666667% + } - .col-md-4 { - width: 33.33333333333333% - } + .col-md-4 { + width: 33.33333333333333% + } - .col-md-3 { - width: 25% - } + .col-md-3 { + width: 25% + } - .col-md-2 { - width: 16.666666666666664% - } + .col-md-2 { + width: 16.666666666666664% + } - .col-md-1 { - width: 8.333333333333332% - } + .col-md-1 { + width: 8.333333333333332% + } - .col-md-pull-12 { - right: 100% - } + .col-md-pull-12 { + right: 100% + } - .col-md-pull-11 { - right: 91.66666666666666% - } + .col-md-pull-11 { + right: 91.66666666666666% + } - .col-md-pull-10 { - right: 83.33333333333334% - } + .col-md-pull-10 { + right: 83.33333333333334% + } - .col-md-pull-9 { - right: 75% - } + .col-md-pull-9 { + right: 75% + } - .col-md-pull-8 { - right: 66.66666666666666% - } + .col-md-pull-8 { + right: 66.66666666666666% + } - .col-md-pull-7 { - right: 58.333333333333336% - } + .col-md-pull-7 { + right: 58.333333333333336% + } - .col-md-pull-6 { - right: 50% - } + .col-md-pull-6 { + right: 50% + } - .col-md-pull-5 { - right: 41.66666666666667% - } + .col-md-pull-5 { + right: 41.66666666666667% + } - .col-md-pull-4 { - right: 33.33333333333333% - } + .col-md-pull-4 { + right: 33.33333333333333% + } - .col-md-pull-3 { - right: 25% - } + .col-md-pull-3 { + right: 25% + } - .col-md-pull-2 { - right: 16.666666666666664% - } + .col-md-pull-2 { + right: 16.666666666666664% + } - .col-md-pull-1 { - right: 8.333333333333332% - } + .col-md-pull-1 { + right: 8.333333333333332% + } - .col-md-pull-0 { - right: auto - } + .col-md-pull-0 { + right: auto + } - .col-md-push-12 { - left: 100% - } + .col-md-push-12 { + left: 100% + } - .col-md-push-11 { - left: 91.66666666666666% - } + .col-md-push-11 { + left: 91.66666666666666% + } - .col-md-push-10 { - left: 83.33333333333334% - } + .col-md-push-10 { + left: 83.33333333333334% + } - .col-md-push-9 { - left: 75% - } + .col-md-push-9 { + left: 75% + } - .col-md-push-8 { - left: 66.66666666666666% - } + .col-md-push-8 { + left: 66.66666666666666% + } - .col-md-push-7 { - left: 58.333333333333336% - } + .col-md-push-7 { + left: 58.333333333333336% + } - .col-md-push-6 { - left: 50% - } + .col-md-push-6 { + left: 50% + } - .col-md-push-5 { - left: 41.66666666666667% - } + .col-md-push-5 { + left: 41.66666666666667% + } - .col-md-push-4 { - left: 33.33333333333333% - } + .col-md-push-4 { + left: 33.33333333333333% + } - .col-md-push-3 { - left: 25% - } + .col-md-push-3 { + left: 25% + } - .col-md-push-2 { - left: 16.666666666666664% - } + .col-md-push-2 { + left: 16.666666666666664% + } - .col-md-push-1 { - left: 8.333333333333332% - } + .col-md-push-1 { + left: 8.333333333333332% + } - .col-md-push-0 { - left: auto - } + .col-md-push-0 { + left: auto + } - .col-md-offset-12 { - margin-left: 100% - } + .col-md-offset-12 { + margin-left: 100% + } - .col-md-offset-11 { - margin-left: 91.66666666666666% - } + .col-md-offset-11 { + margin-left: 91.66666666666666% + } - .col-md-offset-10 { - margin-left: 83.33333333333334% - } + .col-md-offset-10 { + margin-left: 83.33333333333334% + } - .col-md-offset-9 { - margin-left: 75% - } + .col-md-offset-9 { + margin-left: 75% + } - .col-md-offset-8 { - margin-left: 66.66666666666666% - } + .col-md-offset-8 { + margin-left: 66.66666666666666% + } - .col-md-offset-7 { - margin-left: 58.333333333333336% - } + .col-md-offset-7 { + margin-left: 58.333333333333336% + } - .col-md-offset-6 { - margin-left: 50% - } + .col-md-offset-6 { + margin-left: 50% + } - .col-md-offset-5 { - margin-left: 41.66666666666667% - } + .col-md-offset-5 { + margin-left: 41.66666666666667% + } - .col-md-offset-4 { - margin-left: 33.33333333333333% - } + .col-md-offset-4 { + margin-left: 33.33333333333333% + } - .col-md-offset-3 { - margin-left: 25% - } + .col-md-offset-3 { + margin-left: 25% + } - .col-md-offset-2 { - margin-left: 16.666666666666664% - } + .col-md-offset-2 { + margin-left: 16.666666666666664% + } - .col-md-offset-1 { - margin-left: 8.333333333333332% - } + .col-md-offset-1 { + margin-left: 8.333333333333332% + } - .col-md-offset-0 { - margin-left: 0 - } + .col-md-offset-0 { + margin-left: 0 + } } @media (min-width:1200px) { - .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { - float: left - } + .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { + float: left + } - .col-lg-12 { - width: 100% - } + .col-lg-12 { + width: 100% + } - .col-lg-11 { - width: 91.66666666666666% - } + .col-lg-11 { + width: 91.66666666666666% + } - .col-lg-10 { - width: 83.33333333333334% - } + .col-lg-10 { + width: 83.33333333333334% + } - .col-lg-9 { - width: 75% - } + .col-lg-9 { + width: 75% + } - .col-lg-8 { - width: 66.66666666666666% - } + .col-lg-8 { + width: 66.66666666666666% + } - .col-lg-7 { - width: 58.333333333333336% - } + .col-lg-7 { + width: 58.333333333333336% + } - .col-lg-6 { - width: 50% - } + .col-lg-6 { + width: 50% + } - .col-lg-5 { - width: 41.66666666666667% - } + .col-lg-5 { + width: 41.66666666666667% + } - .col-lg-4 { - width: 33.33333333333333% - } + .col-lg-4 { + width: 33.33333333333333% + } - .col-lg-3 { - width: 25% - } + .col-lg-3 { + width: 25% + } - .col-lg-2 { - width: 16.666666666666664% - } + .col-lg-2 { + width: 16.666666666666664% + } - .col-lg-1 { - width: 8.333333333333332% - } + .col-lg-1 { + width: 8.333333333333332% + } - .col-lg-pull-12 { - right: 100% - } + .col-lg-pull-12 { + right: 100% + } - .col-lg-pull-11 { - right: 91.66666666666666% - } + .col-lg-pull-11 { + right: 91.66666666666666% + } - .col-lg-pull-10 { - right: 83.33333333333334% - } + .col-lg-pull-10 { + right: 83.33333333333334% + } - .col-lg-pull-9 { - right: 75% - } + .col-lg-pull-9 { + right: 75% + } - .col-lg-pull-8 { - right: 66.66666666666666% - } + .col-lg-pull-8 { + right: 66.66666666666666% + } - .col-lg-pull-7 { - right: 58.333333333333336% - } + .col-lg-pull-7 { + right: 58.333333333333336% + } - .col-lg-pull-6 { - right: 50% - } + .col-lg-pull-6 { + right: 50% + } - .col-lg-pull-5 { - right: 41.66666666666667% - } + .col-lg-pull-5 { + right: 41.66666666666667% + } - .col-lg-pull-4 { - right: 33.33333333333333% - } + .col-lg-pull-4 { + right: 33.33333333333333% + } - .col-lg-pull-3 { - right: 25% - } + .col-lg-pull-3 { + right: 25% + } - .col-lg-pull-2 { - right: 16.666666666666664% - } + .col-lg-pull-2 { + right: 16.666666666666664% + } - .col-lg-pull-1 { - right: 8.333333333333332% - } + .col-lg-pull-1 { + right: 8.333333333333332% + } - .col-lg-pull-0 { - right: auto - } + .col-lg-pull-0 { + right: auto + } - .col-lg-push-12 { - left: 100% - } + .col-lg-push-12 { + left: 100% + } - .col-lg-push-11 { - left: 91.66666666666666% - } + .col-lg-push-11 { + left: 91.66666666666666% + } - .col-lg-push-10 { - left: 83.33333333333334% - } + .col-lg-push-10 { + left: 83.33333333333334% + } - .col-lg-push-9 { - left: 75% - } + .col-lg-push-9 { + left: 75% + } - .col-lg-push-8 { - left: 66.66666666666666% - } + .col-lg-push-8 { + left: 66.66666666666666% + } - .col-lg-push-7 { - left: 58.333333333333336% - } + .col-lg-push-7 { + left: 58.333333333333336% + } - .col-lg-push-6 { - left: 50% - } + .col-lg-push-6 { + left: 50% + } - .col-lg-push-5 { - left: 41.66666666666667% - } + .col-lg-push-5 { + left: 41.66666666666667% + } - .col-lg-push-4 { - left: 33.33333333333333% - } + .col-lg-push-4 { + left: 33.33333333333333% + } - .col-lg-push-3 { - left: 25% - } + .col-lg-push-3 { + left: 25% + } - .col-lg-push-2 { - left: 16.666666666666664% - } + .col-lg-push-2 { + left: 16.666666666666664% + } - .col-lg-push-1 { - left: 8.333333333333332% - } + .col-lg-push-1 { + left: 8.333333333333332% + } - .col-lg-push-0 { - left: auto - } + .col-lg-push-0 { + left: auto + } - .col-lg-offset-12 { - margin-left: 100% - } + .col-lg-offset-12 { + margin-left: 100% + } - .col-lg-offset-11 { - margin-left: 91.66666666666666% - } + .col-lg-offset-11 { + margin-left: 91.66666666666666% + } - .col-lg-offset-10 { - margin-left: 83.33333333333334% - } + .col-lg-offset-10 { + margin-left: 83.33333333333334% + } - .col-lg-offset-9 { - margin-left: 75% - } + .col-lg-offset-9 { + margin-left: 75% + } - .col-lg-offset-8 { - margin-left: 66.66666666666666% - } + .col-lg-offset-8 { + margin-left: 66.66666666666666% + } - .col-lg-offset-7 { - margin-left: 58.333333333333336% - } + .col-lg-offset-7 { + margin-left: 58.333333333333336% + } - .col-lg-offset-6 { - margin-left: 50% - } + .col-lg-offset-6 { + margin-left: 50% + } - .col-lg-offset-5 { - margin-left: 41.66666666666667% - } + .col-lg-offset-5 { + margin-left: 41.66666666666667% + } - .col-lg-offset-4 { - margin-left: 33.33333333333333% - } + .col-lg-offset-4 { + margin-left: 33.33333333333333% + } - .col-lg-offset-3 { - margin-left: 25% - } + .col-lg-offset-3 { + margin-left: 25% + } - .col-lg-offset-2 { - margin-left: 16.666666666666664% - } + .col-lg-offset-2 { + margin-left: 16.666666666666664% + } - .col-lg-offset-1 { - margin-left: 8.333333333333332% - } + .col-lg-offset-1 { + margin-left: 8.333333333333332% + } - .col-lg-offset-0 { - margin-left: 0 - } + .col-lg-offset-0 { + margin-left: 0 + } } table { - background-color: transparent + background-color: transparent } caption { - padding-top: 8px; - padding-bottom: 8px; - color: #030; - text-align: left + padding-top: 8px; + padding-bottom: 8px; + color: #030; + text-align: left } th { - text-align: left + text-align: left } .table { - width: 100%; - max-width: 100%; - margin-bottom: 20px + width: 100%; + max-width: 100%; + margin-bottom: 20px } .table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td { - padding: 8px; - line-height: 1.428571429; - vertical-align: top; - border-top: 1px solid #444 + padding: 8px; + line-height: 1.428571429; + vertical-align: top; + border-top: 1px solid #444 } .table>thead>tr>th { - vertical-align: bottom; - border-bottom: 2px solid #444 + vertical-align: bottom; + border-bottom: 2px solid #444 } .table>caption+thead>tr:first-child>th, .table>colgroup+thead>tr:first-child>th, .table>thead:first-child>tr:first-child>th, .table>caption+thead>tr:first-child>td, .table>colgroup+thead>tr:first-child>td, .table>thead:first-child>tr:first-child>td { - border-top: 0 + border-top: 0 } .table>tbody+tbody { - border-top: 2px solid #444 + border-top: 2px solid #444 } .table .table { - background-color: #222 + background-color: #222 } .table-condensed>thead>tr>th, .table-condensed>tbody>tr>th, .table-condensed>tfoot>tr>th, .table-condensed>thead>tr>td, .table-condensed>tbody>tr>td, .table-condensed>tfoot>tr>td { - padding: 5px + padding: 5px } .table-bordered { - border: 1px solid #444 + border: 1px solid #444 } .table-bordered>thead>tr>th, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>tbody>tr>td, .table-bordered>tfoot>tr>td { - border: 1px solid #444 + border: 1px solid #444 } .table-bordered>thead>tr>th, .table-bordered>thead>tr>td { - border-bottom-width: 2px + border-bottom-width: 2px } .table-striped>tbody>tr:nth-of-type(odd) { - background-color: #080808 + background-color: #080808 } .table-hover>tbody>tr:hover { - background-color: #030 + background-color: #030 } table col[class*="col-"] { - position: static; - float: none; - display: table-column + position: static; + float: none; + display: table-column } table td[class*="col-"], table th[class*="col-"] { - position: static; - float: none; - display: table-cell + position: static; + float: none; + display: table-cell } .table>thead>tr>td.active, .table>tbody>tr>td.active, .table>tfoot>tr>td.active, .table>thead>tr>th.active, .table>tbody>tr>th.active, .table>tfoot>tr>th.active, .table>thead>tr.active>td, .table>tbody>tr.active>td, .table>tfoot>tr.active>td, .table>thead>tr.active>th, .table>tbody>tr.active>th, .table>tfoot>tr.active>th { - background-color: #030 + background-color: #030 } .table-hover>tbody>tr>td.active:hover, .table-hover>tbody>tr>th.active:hover, .table-hover>tbody>tr.active:hover>td, .table-hover>tbody>tr:hover>.active, .table-hover>tbody>tr.active:hover>th { - background-color: #001900 + background-color: #001900 } .table>thead>tr>td.success, .table>tbody>tr>td.success, .table>tfoot>tr>td.success, .table>thead>tr>th.success, .table>tbody>tr>th.success, .table>tfoot>tr>th.success, .table>thead>tr.success>td, .table>tbody>tr.success>td, .table>tfoot>tr.success>td, .table>thead>tr.success>th, .table>tbody>tr.success>th, .table>tfoot>tr.success>th { - background-color: #3c3c3c + background-color: #3c3c3c } .table-hover>tbody>tr>td.success:hover, .table-hover>tbody>tr>th.success:hover, .table-hover>tbody>tr.success:hover>td, .table-hover>tbody>tr:hover>.success, .table-hover>tbody>tr.success:hover>th { - background-color: #2f2f2f + background-color: #2f2f2f } .table>thead>tr>td.info, .table>tbody>tr>td.info, .table>tfoot>tr>td.info, .table>thead>tr>th.info, .table>tbody>tr>th.info, .table>tfoot>tr>th.info, .table>thead>tr.info>td, .table>tbody>tr.info>td, .table>tfoot>tr.info>td, .table>thead>tr.info>th, .table>tbody>tr.info>th, .table>tfoot>tr.info>th { - background-color: #3c3c3c + background-color: #3c3c3c } .table-hover>tbody>tr>td.info:hover, .table-hover>tbody>tr>th.info:hover, .table-hover>tbody>tr.info:hover>td, .table-hover>tbody>tr:hover>.info, .table-hover>tbody>tr.info:hover>th { - background-color: #2f2f2f + background-color: #2f2f2f } .table>thead>tr>td.warning, .table>tbody>tr>td.warning, .table>tfoot>tr>td.warning, .table>thead>tr>th.warning, .table>tbody>tr>th.warning, .table>tfoot>tr>th.warning, .table>thead>tr.warning>td, .table>tbody>tr.warning>td, .table>tfoot>tr.warning>td, .table>thead>tr.warning>th, .table>tbody>tr.warning>th, .table>tfoot>tr.warning>th { - background-color: #3c3c3c + background-color: #3c3c3c } .table-hover>tbody>tr>td.warning:hover, .table-hover>tbody>tr>th.warning:hover, .table-hover>tbody>tr.warning:hover>td, .table-hover>tbody>tr:hover>.warning, .table-hover>tbody>tr.warning:hover>th { - background-color: #2f2f2f + background-color: #2f2f2f } .table>thead>tr>td.danger, .table>tbody>tr>td.danger, .table>tfoot>tr>td.danger, .table>thead>tr>th.danger, .table>tbody>tr>th.danger, .table>tfoot>tr>th.danger, .table>thead>tr.danger>td, .table>tbody>tr.danger>td, .table>tfoot>tr.danger>td, .table>thead>tr.danger>th, .table>tbody>tr.danger>th, .table>tfoot>tr.danger>th { - background-color: #3c3c3c + background-color: #3c3c3c } .table-hover>tbody>tr>td.danger:hover, .table-hover>tbody>tr>th.danger:hover, .table-hover>tbody>tr.danger:hover>td, .table-hover>tbody>tr:hover>.danger, .table-hover>tbody>tr.danger:hover>th { - background-color: #2f2f2f + background-color: #2f2f2f } .table-responsive { - overflow-x: auto; - min-height: .01% + overflow-x: auto; + min-height: .01% } @media screen and (max-width:767px) { - .table-responsive { - width: 100%; - margin-bottom: 15px; - overflow-y: hidden; - -ms-overflow-style: -ms-autohiding-scrollbar; - border: 1px solid #444 - } + .table-responsive { + width: 100%; + margin-bottom: 15px; + overflow-y: hidden; + -ms-overflow-style: -ms-autohiding-scrollbar; + border: 1px solid #444 + } - .table-responsive>.table { - margin-bottom: 0 - } + .table-responsive>.table { + margin-bottom: 0 + } - .table-responsive>.table>thead>tr>th, .table-responsive>.table>tbody>tr>th, .table-responsive>.table>tfoot>tr>th, .table-responsive>.table>thead>tr>td, .table-responsive>.table>tbody>tr>td, .table-responsive>.table>tfoot>tr>td { - white-space: nowrap - } + .table-responsive>.table>thead>tr>th, .table-responsive>.table>tbody>tr>th, .table-responsive>.table>tfoot>tr>th, .table-responsive>.table>thead>tr>td, .table-responsive>.table>tbody>tr>td, .table-responsive>.table>tfoot>tr>td { + white-space: nowrap + } - .table-responsive>.table-bordered { - border: 0 - } + .table-responsive>.table-bordered { + border: 0 + } - .table-responsive>.table-bordered>thead>tr>th:first-child, .table-responsive>.table-bordered>tbody>tr>th:first-child, .table-responsive>.table-bordered>tfoot>tr>th:first-child, .table-responsive>.table-bordered>thead>tr>td:first-child, .table-responsive>.table-bordered>tbody>tr>td:first-child, .table-responsive>.table-bordered>tfoot>tr>td:first-child { - border-left: 0 - } + .table-responsive>.table-bordered>thead>tr>th:first-child, .table-responsive>.table-bordered>tbody>tr>th:first-child, .table-responsive>.table-bordered>tfoot>tr>th:first-child, .table-responsive>.table-bordered>thead>tr>td:first-child, .table-responsive>.table-bordered>tbody>tr>td:first-child, .table-responsive>.table-bordered>tfoot>tr>td:first-child { + border-left: 0 + } - .table-responsive>.table-bordered>thead>tr>th:last-child, .table-responsive>.table-bordered>tbody>tr>th:last-child, .table-responsive>.table-bordered>tfoot>tr>th:last-child, .table-responsive>.table-bordered>thead>tr>td:last-child, .table-responsive>.table-bordered>tbody>tr>td:last-child, .table-responsive>.table-bordered>tfoot>tr>td:last-child { - border-right: 0 - } + .table-responsive>.table-bordered>thead>tr>th:last-child, .table-responsive>.table-bordered>tbody>tr>th:last-child, .table-responsive>.table-bordered>tfoot>tr>th:last-child, .table-responsive>.table-bordered>thead>tr>td:last-child, .table-responsive>.table-bordered>tbody>tr>td:last-child, .table-responsive>.table-bordered>tfoot>tr>td:last-child { + border-right: 0 + } - .table-responsive>.table-bordered>tbody>tr:last-child>th, .table-responsive>.table-bordered>tfoot>tr:last-child>th, .table-responsive>.table-bordered>tbody>tr:last-child>td, .table-responsive>.table-bordered>tfoot>tr:last-child>td { - border-bottom: 0 - } + .table-responsive>.table-bordered>tbody>tr:last-child>th, .table-responsive>.table-bordered>tfoot>tr:last-child>th, .table-responsive>.table-bordered>tbody>tr:last-child>td, .table-responsive>.table-bordered>tfoot>tr:last-child>td { + border-bottom: 0 + } } fieldset { - padding: 0; - margin: 0; - border: 0; - min-width: 0 + padding: 0; + margin: 0; + border: 0; + min-width: 0 } legend { - display: block; - width: 100%; - padding: 0; - margin-bottom: 20px; - font-size: 21px; - line-height: inherit; - color: #0c0; - border: 0; - border-bottom: 1px solid #e5e5e5 + display: block; + width: 100%; + padding: 0; + margin-bottom: 20px; + font-size: 21px; + line-height: inherit; + color: #0c0; + border: 0; + border-bottom: 1px solid #e5e5e5 } label { - display: inline-block; - max-width: 100%; - margin-bottom: 5px; - font-weight: bold + display: inline-block; + max-width: 100%; + margin-bottom: 5px; + font-weight: bold } input[type="search"] { - box-sizing: border-box + box-sizing: border-box } input[type="radio"], input[type="checkbox"] { - margin: 4px 0 0; - margin-top: 1px \9; - line-height: normal + margin: 4px 0 0; + margin-top: 1px \9; + line-height: normal } input[type="file"] { - display: block + display: block } input[type="range"] { - display: block; - width: 100% + display: block; + width: 100% } select[multiple], select[size] { - height: auto + height: auto } input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus { - outline: thin dotted; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px } output { - display: block; - padding-top: 7px; - font-size: 14px; - line-height: 1.428571429; - color: #090 + display: block; + padding-top: 7px; + font-size: 14px; + line-height: 1.428571429; + color: #090 } .form-control { - display: block; - width: 100%; - height: 34px; - padding: 6px 12px; - font-size: 14px; - line-height: 1.428571429; - color: #090; - background-color: #000; - background-image: none; - border: 1px solid #444; - border-radius: 0; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s + display: block; + width: 100%; + height: 34px; + padding: 6px 12px; + font-size: 14px; + line-height: 1.428571429; + color: #090; + background-color: #000; + background-image: none; + border: 1px solid #444; + border-radius: 0; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s } .form-control:focus { - border-color: #0f0; - outline: 0; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(0, 255, 0, 0.6) + border-color: #0f0; + outline: 0; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(0, 255, 0, 0.6) } .form-control::-moz-placeholder { - color: #060; - opacity: 1 + color: #060; + opacity: 1 } .form-control:-ms-input-placeholder { - color: #060 + color: #060 } .form-control::-webkit-input-placeholder { - color: #060 + color: #060 } .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { - background-color: #030; - opacity: 1 + background-color: #030; + opacity: 1 } .form-control[disabled], fieldset[disabled] .form-control { - cursor: not-allowed + cursor: not-allowed } textarea.form-control { - height: auto + height: auto } input[type="search"] { - appearance: none + appearance: none } @media screen and (-webkit-min-device-pixel-ratio:0) { - input[type="date"], input[type="time"], input[type="datetime-local"], input[type="month"] { - line-height: 34px - } + input[type="date"], input[type="time"], input[type="datetime-local"], input[type="month"] { + line-height: 34px + } - input[type="date"].input-sm, input[type="time"].input-sm, input[type="datetime-local"].input-sm, input[type="month"].input-sm, .input-group-sm input[type="date"], .input-group-sm input[type="time"], .input-group-sm input[type="datetime-local"], .input-group-sm input[type="month"] { - line-height: 30px - } + input[type="date"].input-sm, input[type="time"].input-sm, input[type="datetime-local"].input-sm, input[type="month"].input-sm, .input-group-sm input[type="date"], .input-group-sm input[type="time"], .input-group-sm input[type="datetime-local"], .input-group-sm input[type="month"] { + line-height: 30px + } - input[type="date"].input-lg, input[type="time"].input-lg, input[type="datetime-local"].input-lg, input[type="month"].input-lg, .input-group-lg input[type="date"], .input-group-lg input[type="time"], .input-group-lg input[type="datetime-local"], .input-group-lg input[type="month"] { - line-height: 45px - } + input[type="date"].input-lg, input[type="time"].input-lg, input[type="datetime-local"].input-lg, input[type="month"].input-lg, .input-group-lg input[type="date"], .input-group-lg input[type="time"], .input-group-lg input[type="datetime-local"], .input-group-lg input[type="month"] { + line-height: 45px + } } .form-group { - margin-bottom: 15px + margin-bottom: 15px } .radio, .checkbox { - position: relative; - display: block; - margin-top: 10px; - margin-bottom: 10px + position: relative; + display: block; + margin-top: 10px; + margin-bottom: 10px } .radio label, .checkbox label { - min-height: 20px; - padding-left: 20px; - margin-bottom: 0; - font-weight: normal; - cursor: pointer + min-height: 20px; + padding-left: 20px; + margin-bottom: 0; + font-weight: normal; + cursor: pointer } .radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] { - position: absolute; - margin-left: -20px; - margin-top: 4px \9 + position: absolute; + margin-left: -20px; + margin-top: 4px \9 } .radio+.radio, .checkbox+.checkbox { - margin-top: -5px + margin-top: -5px } .radio-inline, .checkbox-inline { - position: relative; - display: inline-block; - padding-left: 20px; - margin-bottom: 0; - vertical-align: middle; - font-weight: normal; - cursor: pointer + position: relative; + display: inline-block; + padding-left: 20px; + margin-bottom: 0; + vertical-align: middle; + font-weight: normal; + cursor: pointer } .radio-inline+.radio-inline, .checkbox-inline+.checkbox-inline { - margin-top: 0; - margin-left: 10px + margin-top: 0; + margin-left: 10px } input[type="radio"][disabled], input[type="checkbox"][disabled], input[type="radio"].disabled, input[type="checkbox"].disabled, fieldset[disabled] input[type="radio"], fieldset[disabled] input[type="checkbox"] { - cursor: not-allowed + cursor: not-allowed } .radio-inline.disabled, .checkbox-inline.disabled, fieldset[disabled] .radio-inline, fieldset[disabled] .checkbox-inline { - cursor: not-allowed + cursor: not-allowed } .radio.disabled label, .checkbox.disabled label, fieldset[disabled] .radio label, fieldset[disabled] .checkbox label { - cursor: not-allowed + cursor: not-allowed } .form-control-static { - padding-top: 7px; - padding-bottom: 7px; - margin-bottom: 0; - min-height: 34px + padding-top: 7px; + padding-bottom: 7px; + margin-bottom: 0; + min-height: 34px } .form-control-static.input-lg, .form-control-static.input-sm { - padding-left: 0; - padding-right: 0 + padding-left: 0; + padding-right: 0 } .input-sm { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 0 + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 0 } select.input-sm { - height: 30px; - line-height: 30px + height: 30px; + line-height: 30px } textarea.input-sm, select[multiple].input-sm { - height: auto + height: auto } .form-group-sm .form-control { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 0 + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 0 } select.form-group-sm .form-control { - height: 30px; - line-height: 30px + height: 30px; + line-height: 30px } textarea.form-group-sm .form-control, select[multiple].form-group-sm .form-control { - height: auto + height: auto } .form-group-sm .form-control-static { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - min-height: 32px + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + min-height: 32px } .input-lg { - height: 45px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.33; - border-radius: 0 + height: 45px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.33; + border-radius: 0 } select.input-lg { - height: 45px; - line-height: 45px + height: 45px; + line-height: 45px } textarea.input-lg, select[multiple].input-lg { - height: auto + height: auto } .form-group-lg .form-control { - height: 45px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.33; - border-radius: 0 + height: 45px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.33; + border-radius: 0 } select.form-group-lg .form-control { - height: 45px; - line-height: 45px + height: 45px; + line-height: 45px } textarea.form-group-lg .form-control, select[multiple].form-group-lg .form-control { - height: auto + height: auto } .form-group-lg .form-control-static { - height: 45px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.33; - min-height: 38px + height: 45px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.33; + min-height: 38px } .has-feedback { - position: relative + position: relative } .has-feedback .form-control { - padding-right: 42.5px + padding-right: 42.5px } .form-control-feedback { - position: absolute; - top: 0; - right: 0; - z-index: 2; - display: block; - width: 34px; - height: 34px; - line-height: 34px; - text-align: center; - pointer-events: none + position: absolute; + top: 0; + right: 0; + z-index: 2; + display: block; + width: 34px; + height: 34px; + line-height: 34px; + text-align: center; + pointer-events: none } .input-lg+.form-control-feedback { - width: 45px; - height: 45px; - line-height: 45px + width: 45px; + height: 45px; + line-height: 45px } .input-sm+.form-control-feedback { - width: 30px; - height: 30px; - line-height: 30px + width: 30px; + height: 30px; + line-height: 30px } .has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label { - color: #0d0 + color: #0d0 } .has-success .form-control { - border-color: #0d0; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) + border-color: #0d0; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) } .has-success .form-control:focus { - border-color: #0a0; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #4f4 + border-color: #0a0; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #4f4 } .has-success .input-group-addon { - color: #0d0; - border-color: #0d0; - background-color: #3c3c3c + color: #0d0; + border-color: #0d0; + background-color: #3c3c3c } .has-success .form-control-feedback { - color: #0d0 + color: #0d0 } .has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label { - color: #f4ff00 + color: #f4ff00 } .has-warning .form-control { - border-color: #f4ff00; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) + border-color: #f4ff00; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) } .has-warning .form-control:focus { - border-color: #c3cc00; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f8ff66 + border-color: #c3cc00; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f8ff66 } .has-warning .input-group-addon { - color: #f4ff00; - border-color: #f4ff00; - background-color: #3c3c3c + color: #f4ff00; + border-color: #f4ff00; + background-color: #3c3c3c } .has-warning .form-control-feedback { - color: #f4ff00 + color: #f4ff00 } .has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label { - color: #d00 + color: #d00 } .has-error .form-control { - border-color: #d00; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) + border-color: #d00; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) } .has-error .form-control:focus { - border-color: #a00; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f44 + border-color: #a00; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f44 } .has-error .input-group-addon { - color: #d00; - border-color: #d00; - background-color: #3c3c3c + color: #d00; + border-color: #d00; + background-color: #3c3c3c } .has-error .form-control-feedback { - color: #d00 + color: #d00 } .has-feedback label~.form-control-feedback { - top: 25px + top: 25px } .has-feedback label.sr-only~.form-control-feedback { - top: 0 + top: 0 } .help-block { - display: block; - margin-top: 5px; - margin-bottom: 10px; - color: #4dff4d + display: block; + margin-top: 5px; + margin-bottom: 10px; + color: #4dff4d } @media (min-width:768px) { - .form-inline .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle - } + .form-inline .form-group { + display: inline-block; + margin-bottom: 0; + vertical-align: middle + } - .form-inline .form-control { - display: inline-block; - width: auto; - vertical-align: middle - } + .form-inline .form-control { + display: inline-block; + width: auto; + vertical-align: middle + } - .form-inline .form-control-static { - display: inline-block - } + .form-inline .form-control-static { + display: inline-block + } - .form-inline .input-group { - display: inline-table; - vertical-align: middle - } + .form-inline .input-group { + display: inline-table; + vertical-align: middle + } - .form-inline .input-group .input-group-addon, .form-inline .input-group .input-group-btn, .form-inline .input-group .form-control { - width: auto - } + .form-inline .input-group .input-group-addon, .form-inline .input-group .input-group-btn, .form-inline .input-group .form-control { + width: auto + } - .form-inline .input-group>.form-control { - width: 100% - } + .form-inline .input-group>.form-control { + width: 100% + } - .form-inline .control-label { - margin-bottom: 0; - vertical-align: middle - } + .form-inline .control-label { + margin-bottom: 0; + vertical-align: middle + } - .form-inline .radio, .form-inline .checkbox { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - vertical-align: middle - } + .form-inline .radio, .form-inline .checkbox { + display: inline-block; + margin-top: 0; + margin-bottom: 0; + vertical-align: middle + } - .form-inline .radio label, .form-inline .checkbox label { - padding-left: 0 - } + .form-inline .radio label, .form-inline .checkbox label { + padding-left: 0 + } - .form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] { - position: relative; - margin-left: 0 - } + .form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] { + position: relative; + margin-left: 0 + } - .form-inline .has-feedback .form-control-feedback { - top: 0 - } + .form-inline .has-feedback .form-control-feedback { + top: 0 + } } .form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline { - margin-top: 0; - margin-bottom: 0; - padding-top: 7px + margin-top: 0; + margin-bottom: 0; + padding-top: 7px } .form-horizontal .radio, .form-horizontal .checkbox { - min-height: 27px + min-height: 27px } .form-horizontal .form-group { - margin-left: -15px; - margin-right: -15px + margin-left: -15px; + margin-right: -15px } @media (min-width:768px) { - .form-horizontal .control-label { - text-align: right; - margin-bottom: 0; - padding-top: 7px - } + .form-horizontal .control-label { + text-align: right; + margin-bottom: 0; + padding-top: 7px + } } .form-horizontal .has-feedback .form-control-feedback { - right: 15px + right: 15px } @media (min-width:768px) { - .form-horizontal .form-group-lg .control-label { - padding-top: 14.3px - } + .form-horizontal .form-group-lg .control-label { + padding-top: 14.3px + } } @media (min-width:768px) { - .form-horizontal .form-group-sm .control-label { - padding-top: 6px - } + .form-horizontal .form-group-sm .control-label { + padding-top: 6px + } } .btn { - display: inline-block; - margin-bottom: 0; - font-weight: normal; - text-align: center; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - background-image: none; - border: 1px solid transparent; - white-space: nowrap; - padding: 6px 12px; - font-size: 14px; - line-height: 1.428571429; - border-radius: 0; - user-select: none + display: inline-block; + margin-bottom: 0; + font-weight: normal; + text-align: center; + vertical-align: middle; + touch-action: manipulation; + cursor: pointer; + background-image: none; + border: 1px solid transparent; + white-space: nowrap; + padding: 6px 12px; + font-size: 14px; + line-height: 1.428571429; + border-radius: 0; + user-select: none } .btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus { - outline: thin dotted; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px } .btn:hover, .btn:focus, .btn.focus { - color: #0f0; - text-decoration: none + color: #0f0; + text-decoration: none } .btn:active, .btn.active { - outline: 0; - background-image: none; - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) + outline: 0; + background-image: none; + box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) } .btn.disabled, .btn[disabled], fieldset[disabled] .btn { - cursor: not-allowed; - pointer-events: none; - opacity: .65; - filter: alpha(opacity=65); - box-shadow: none + cursor: not-allowed; + pointer-events: none; + opacity: .65; + filter: alpha(opacity=65); + box-shadow: none } .btn-default { - color: #0f0; - background-color: #222; - border-color: #111 + color: #0f0; + background-color: #222; + border-color: #111 } .btn-default:hover, .btn-default:focus, .btn-default.focus, .btn-default:active, .btn-default.active, .open>.dropdown-toggle.btn-default { - color: #0f0; - background-color: #080808; - border-color: #000 + color: #0f0; + background-color: #080808; + border-color: #000 } .btn-default:active, .btn-default.active, .open>.dropdown-toggle.btn-default { - background-image: none + background-image: none } .btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled.focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default.focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active { - background-color: #222; - border-color: #111 + background-color: #222; + border-color: #111 } .btn-default .badge { - color: #222; - background-color: #0f0 + color: #222; + background-color: #0f0 } .btn-primary { - color: #222; - background-color: #0f0; - border-color: #111 + color: #222; + background-color: #0f0; + border-color: #111 } .btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary:active, .btn-primary.active, .open>.dropdown-toggle.btn-primary { - color: #222; - background-color: #0c0; - border-color: #000 + color: #222; + background-color: #0c0; + border-color: #000 } .btn-primary:active, .btn-primary.active, .open>.dropdown-toggle.btn-primary { - background-image: none + background-image: none } .btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active { - background-color: #0f0; - border-color: #111 + background-color: #0f0; + border-color: #111 } .btn-primary .badge { - color: #0f0; - background-color: #222 + color: #0f0; + background-color: #222 } .btn-success { - color: #222; - background-color: #090; - border-color: #111 + color: #222; + background-color: #090; + border-color: #111 } .btn-success:hover, .btn-success:focus, .btn-success.focus, .btn-success:active, .btn-success.active, .open>.dropdown-toggle.btn-success { - color: #222; - background-color: #060; - border-color: #000 + color: #222; + background-color: #060; + border-color: #000 } .btn-success:active, .btn-success.active, .open>.dropdown-toggle.btn-success { - background-image: none + background-image: none } .btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success, .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled.focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success.focus, .btn-success.disabled:active, .btn-success[disabled]:active, fieldset[disabled] .btn-success:active, .btn-success.disabled.active, .btn-success[disabled].active, fieldset[disabled] .btn-success.active { - background-color: #090; - border-color: #111 + background-color: #090; + border-color: #111 } .btn-success .badge { - color: #090; - background-color: #222 + color: #090; + background-color: #222 } .btn-info { - color: #222; - background-color: #36c; - border-color: #111 + color: #222; + background-color: #36c; + border-color: #111 } .btn-info:hover, .btn-info:focus, .btn-info.focus, .btn-info:active, .btn-info.active, .open>.dropdown-toggle.btn-info { - color: #222; - background-color: #2952a3; - border-color: #000 + color: #222; + background-color: #2952a3; + border-color: #000 } .btn-info:active, .btn-info.active, .open>.dropdown-toggle.btn-info { - background-image: none + background-image: none } .btn-info.disabled, .btn-info[disabled], fieldset[disabled] .btn-info, .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled.focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info.focus, .btn-info.disabled:active, .btn-info[disabled]:active, fieldset[disabled] .btn-info:active, .btn-info.disabled.active, .btn-info[disabled].active, fieldset[disabled] .btn-info.active { - background-color: #36c; - border-color: #111 + background-color: #36c; + border-color: #111 } .btn-info .badge { - color: #36c; - background-color: #222 + color: #36c; + background-color: #222 } .btn-warning { - color: #222; - background-color: #f4ff00; - border-color: #111 + color: #222; + background-color: #f4ff00; + border-color: #111 } .btn-warning:hover, .btn-warning:focus, .btn-warning.focus, .btn-warning:active, .btn-warning.active, .open>.dropdown-toggle.btn-warning { - color: #222; - background-color: #c3cc00; - border-color: #000 + color: #222; + background-color: #c3cc00; + border-color: #000 } .btn-warning:active, .btn-warning.active, .open>.dropdown-toggle.btn-warning { - background-image: none + background-image: none } .btn-warning.disabled, .btn-warning[disabled], fieldset[disabled] .btn-warning, .btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled.focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning.focus, .btn-warning.disabled:active, .btn-warning[disabled]:active, fieldset[disabled] .btn-warning:active, .btn-warning.disabled.active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning.active { - background-color: #f4ff00; - border-color: #111 + background-color: #f4ff00; + border-color: #111 } .btn-warning .badge { - color: #f4ff00; - background-color: #222 + color: #f4ff00; + background-color: #222 } .btn-danger { - color: #222; - background-color: #f00; - border-color: #111 + color: #222; + background-color: #f00; + border-color: #111 } .btn-danger:hover, .btn-danger:focus, .btn-danger.focus, .btn-danger:active, .btn-danger.active, .open>.dropdown-toggle.btn-danger { - color: #222; - background-color: #c00; - border-color: #000 + color: #222; + background-color: #c00; + border-color: #000 } .btn-danger:active, .btn-danger.active, .open>.dropdown-toggle.btn-danger { - background-image: none + background-image: none } .btn-danger.disabled, .btn-danger[disabled], fieldset[disabled] .btn-danger, .btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled.focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger.focus, .btn-danger.disabled:active, .btn-danger[disabled]:active, fieldset[disabled] .btn-danger:active, .btn-danger.disabled.active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger.active { - background-color: #f00; - border-color: #111 + background-color: #f00; + border-color: #111 } .btn-danger .badge { - color: #f00; - background-color: #222 + color: #f00; + background-color: #222 } .btn-link { - color: #0f0; - font-weight: normal; - border-radius: 0 + color: #0f0; + font-weight: normal; + border-radius: 0 } .btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link { - background-color: transparent; - box-shadow: none + background-color: transparent; + box-shadow: none } .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { - border-color: transparent + border-color: transparent } .btn-link:hover, .btn-link:focus { - color: #00b300; - text-decoration: underline; - background-color: transparent + color: #00b300; + text-decoration: underline; + background-color: transparent } .btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:focus { - color: #030; - text-decoration: none + color: #030; + text-decoration: none } .btn-lg, .btn-group-lg>.btn { - padding: 10px 16px; - font-size: 18px; - line-height: 1.33; - border-radius: 0 + padding: 10px 16px; + font-size: 18px; + line-height: 1.33; + border-radius: 0 } .btn-sm, .btn-group-sm>.btn { - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 0 + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 0 } .btn-xs, .btn-group-xs>.btn { - padding: 1px 5px; - font-size: 12px; - line-height: 1.5; - border-radius: 0 + padding: 1px 5px; + font-size: 12px; + line-height: 1.5; + border-radius: 0 } .btn-block { - display: block; - width: 100% + display: block; + width: 100% } .btn-block+.btn-block { - margin-top: 5px + margin-top: 5px } input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block { - width: 100% + width: 100% } .fade { - opacity: 0; - transition: opacity .15s linear + opacity: 0; + transition: opacity .15s linear } .fade.in { - opacity: 1 + opacity: 1 } .collapse { - display: none + display: none } .collapse.in { - display: block + display: block } tr.collapse.in { - display: table-row + display: table-row } tbody.collapse.in { - display: table-row-group + display: table-row-group } .collapsing { - position: relative; - height: 0; - overflow: hidden; - transition-property: height, visibility; - transition-duration: .35s; - transition-timing-function: ease + position: relative; + height: 0; + overflow: hidden; + transition-property: height, visibility; + transition-duration: .35s; + transition-timing-function: ease } .caret { - display: inline-block; - width: 0; - height: 0; - margin-left: 2px; - vertical-align: middle; - border-top: 4px dashed; - border-right: 4px solid transparent; - border-left: 4px solid transparent + display: inline-block; + width: 0; + height: 0; + margin-left: 2px; + vertical-align: middle; + border-top: 4px dashed; + border-right: 4px solid transparent; + border-left: 4px solid transparent } .dropup, .dropdown { - position: relative + position: relative } .dropdown-toggle:focus { - outline: 0 + outline: 0 } .dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - float: left; - min-width: 160px; - padding: 5px 0; - margin: 2px 0 0; - list-style: none; - font-size: 14px; - text-align: left; - background-color: #3c3c3c; - border: 1px solid #ccc; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 0; - box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); - background-clip: padding-box + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 160px; + padding: 5px 0; + margin: 2px 0 0; + list-style: none; + font-size: 14px; + text-align: left; + background-color: #3c3c3c; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, 0.15); + border-radius: 0; + box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); + background-clip: padding-box } .dropdown-menu.pull-right { - right: 0; - left: auto + right: 0; + left: auto } .dropdown-menu .divider { - height: 1px; - margin: 9px 0; - overflow: hidden; - background-color: #333 + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #333 } .dropdown-menu>li>a { - display: block; - padding: 3px 20px; - clear: both; - font-weight: normal; - line-height: 1.428571429; - color: #0c0; - white-space: nowrap + display: block; + padding: 3px 20px; + clear: both; + font-weight: normal; + line-height: 1.428571429; + color: #0c0; + white-space: nowrap } .dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus { - text-decoration: none; - color: #222; - background-color: #0f0 + text-decoration: none; + color: #222; + background-color: #0f0 } .dropdown-menu>.active>a, .dropdown-menu>.active>a:hover, .dropdown-menu>.active>a:focus { - color: #222; - text-decoration: none; - outline: 0; - background-color: #0f0 + color: #222; + text-decoration: none; + outline: 0; + background-color: #0f0 } .dropdown-menu>.disabled>a, .dropdown-menu>.disabled>a:hover, .dropdown-menu>.disabled>a:focus { - color: #030 + color: #030 } .dropdown-menu>.disabled>a:hover, .dropdown-menu>.disabled>a:focus { - text-decoration: none; - background-color: transparent; - background-image: none; - filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); - cursor: not-allowed + text-decoration: none; + background-color: transparent; + background-image: none; + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + cursor: not-allowed } .open>.dropdown-menu { - display: block + display: block } .open>a { - outline: 0 + outline: 0 } .dropdown-menu-right { - left: auto; - right: 0 + left: auto; + right: 0 } .dropdown-menu-left { - left: 0; - right: auto + left: 0; + right: auto } .dropdown-header { - display: block; - padding: 3px 20px; - font-size: 12px; - line-height: 1.428571429; - color: #a2a2a2; - white-space: nowrap + display: block; + padding: 3px 20px; + font-size: 12px; + line-height: 1.428571429; + color: #a2a2a2; + white-space: nowrap } .dropdown-backdrop { - position: fixed; - left: 0; - right: 0; - bottom: 0; - top: 0; - z-index: 990 + position: fixed; + left: 0; + right: 0; + bottom: 0; + top: 0; + z-index: 990 } .pull-right>.dropdown-menu { - right: 0; - left: auto + right: 0; + left: auto } .dropup .caret, .navbar-fixed-bottom .dropdown .caret { - border-top: 0; - border-bottom: 4px solid; - content: "" + border-top: 0; + border-bottom: 4px solid; + content: "" } .dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu { - top: auto; - bottom: 100%; - margin-bottom: 2px + top: auto; + bottom: 100%; + margin-bottom: 2px } @media (min-width:768px) { - .navbar-right .dropdown-menu { - left: auto; - right: 0 - } + .navbar-right .dropdown-menu { + left: auto; + right: 0 + } - .navbar-right .dropdown-menu-left { - left: 0; - right: auto - } + .navbar-right .dropdown-menu-left { + left: 0; + right: auto + } } .btn-group, .btn-group-vertical { - position: relative; - display: inline-block; - vertical-align: middle + position: relative; + display: inline-block; + vertical-align: middle } .btn-group>.btn, .btn-group-vertical>.btn { - position: relative; - float: left + position: relative; + float: left } .btn-group>.btn:hover, .btn-group-vertical>.btn:hover, .btn-group>.btn:focus, .btn-group-vertical>.btn:focus, .btn-group>.btn:active, .btn-group-vertical>.btn:active, .btn-group>.btn.active, .btn-group-vertical>.btn.active { - z-index: 2 + z-index: 2 } .btn-group .btn+.btn, .btn-group .btn+.btn-group, .btn-group .btn-group+.btn, .btn-group .btn-group+.btn-group { - margin-left: -1px + margin-left: -1px } .btn-toolbar { - margin-left: -5px + margin-left: -5px } .btn-toolbar .btn-group, .btn-toolbar .input-group { - float: left + float: left } .btn-toolbar>.btn, .btn-toolbar>.btn-group, .btn-toolbar>.input-group { - margin-left: 5px + margin-left: 5px } .btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { - border-radius: 0 + border-radius: 0 } .btn-group>.btn:first-child { - margin-left: 0 + margin-left: 0 } .btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) { - border-bottom-right-radius: 0; - border-top-right-radius: 0 + border-bottom-right-radius: 0; + border-top-right-radius: 0 } .btn-group>.btn:last-child:not(:first-child), .btn-group>.dropdown-toggle:not(:first-child) { - border-bottom-left-radius: 0; - border-top-left-radius: 0 + border-bottom-left-radius: 0; + border-top-left-radius: 0 } .btn-group>.btn-group { - float: left + float: left } .btn-group>.btn-group:not(:first-child):not(:last-child)>.btn { - border-radius: 0 + border-radius: 0 } .btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child, .btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle { - border-bottom-right-radius: 0; - border-top-right-radius: 0 + border-bottom-right-radius: 0; + border-top-right-radius: 0 } .btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child { - border-bottom-left-radius: 0; - border-top-left-radius: 0 + border-bottom-left-radius: 0; + border-top-left-radius: 0 } .btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle { - outline: 0 + outline: 0 } .btn-group>.btn+.dropdown-toggle { - padding-left: 8px; - padding-right: 8px + padding-left: 8px; + padding-right: 8px } .btn-group>.btn-lg+.dropdown-toggle { - padding-left: 12px; - padding-right: 12px + padding-left: 12px; + padding-right: 12px } .btn-group.open .dropdown-toggle { - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) + box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) } .btn-group.open .dropdown-toggle.btn-link { - box-shadow: none + box-shadow: none } .btn .caret { - margin-left: 0 + margin-left: 0 } .btn-lg .caret { - border-width: 5px 5px 0; - border-bottom-width: 0 + border-width: 5px 5px 0; + border-bottom-width: 0 } .dropup .btn-lg .caret { - border-width: 0 5px 5px + border-width: 0 5px 5px } .btn-group-vertical>.btn, .btn-group-vertical>.btn-group, .btn-group-vertical>.btn-group>.btn { - display: block; - float: none; - width: 100%; - max-width: 100% + display: block; + float: none; + width: 100%; + max-width: 100% } .btn-group-vertical>.btn-group>.btn { - float: none + float: none } .btn-group-vertical>.btn+.btn, .btn-group-vertical>.btn+.btn-group, .btn-group-vertical>.btn-group+.btn, .btn-group-vertical>.btn-group+.btn-group { - margin-top: -1px; - margin-left: 0 + margin-top: -1px; + margin-left: 0 } .btn-group-vertical>.btn:not(:first-child):not(:last-child) { - border-radius: 0 + border-radius: 0 } .btn-group-vertical>.btn:first-child:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0 + border-top-right-radius: 0; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0 } .btn-group-vertical>.btn:last-child:not(:first-child) { - border-bottom-left-radius: 0; - border-top-right-radius: 0; - border-top-left-radius: 0 + border-bottom-left-radius: 0; + border-top-right-radius: 0; + border-top-left-radius: 0 } .btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn { - border-radius: 0 + border-radius: 0 } .btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child, .btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0 + border-bottom-right-radius: 0; + border-bottom-left-radius: 0 } .btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child { - border-top-right-radius: 0; - border-top-left-radius: 0 + border-top-right-radius: 0; + border-top-left-radius: 0 } .btn-group-justified { - display: table; - width: 100%; - table-layout: fixed; - border-collapse: separate + display: table; + width: 100%; + table-layout: fixed; + border-collapse: separate } .btn-group-justified>.btn, .btn-group-justified>.btn-group { - float: none; - display: table-cell; - width: 1% + float: none; + display: table-cell; + width: 1% } .btn-group-justified>.btn-group .btn { - width: 100% + width: 100% } .btn-group-justified>.btn-group .dropdown-menu { - left: auto + left: auto } [data-toggle="buttons"]>.btn input[type="radio"], [data-toggle="buttons"]>.btn-group>.btn input[type="radio"], [data-toggle="buttons"]>.btn input[type="checkbox"], [data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"] { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none } .input-group { - position: relative; - display: table; - border-collapse: separate + position: relative; + display: table; + border-collapse: separate } .input-group[class*="col-"] { - float: none; - padding-left: 0; - padding-right: 0 + float: none; + padding-left: 0; + padding-right: 0 } .input-group .form-control { - position: relative; - z-index: 2; - float: left; - width: 100%; - margin-bottom: 0 + position: relative; + z-index: 2; + float: left; + width: 100%; + margin-bottom: 0 } .input-group-lg>.form-control, .input-group-lg>.input-group-addon, .input-group-lg>.input-group-btn>.btn { - height: 45px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.33; - border-radius: 0 + height: 45px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.33; + border-radius: 0 } select.input-group-lg>.form-control, select.input-group-lg>.input-group-addon, select.input-group-lg>.input-group-btn>.btn { - height: 45px; - line-height: 45px + height: 45px; + line-height: 45px } textarea.input-group-lg>.form-control, textarea.input-group-lg>.input-group-addon, textarea.input-group-lg>.input-group-btn>.btn, select[multiple].input-group-lg>.form-control, select[multiple].input-group-lg>.input-group-addon, select[multiple].input-group-lg>.input-group-btn>.btn { - height: auto + height: auto } .input-group-sm>.form-control, .input-group-sm>.input-group-addon, .input-group-sm>.input-group-btn>.btn { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 0 + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 0 } select.input-group-sm>.form-control, select.input-group-sm>.input-group-addon, select.input-group-sm>.input-group-btn>.btn { - height: 30px; - line-height: 30px + height: 30px; + line-height: 30px } textarea.input-group-sm>.form-control, textarea.input-group-sm>.input-group-addon, textarea.input-group-sm>.input-group-btn>.btn, select[multiple].input-group-sm>.form-control, select[multiple].input-group-sm>.input-group-addon, select[multiple].input-group-sm>.input-group-btn>.btn { - height: auto + height: auto } .input-group-addon, .input-group-btn, .input-group .form-control { - display: table-cell + display: table-cell } .input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) { - border-radius: 0 + border-radius: 0 } .input-group-addon, .input-group-btn { - width: 1%; - white-space: nowrap; - vertical-align: middle + width: 1%; + white-space: nowrap; + vertical-align: middle } .input-group-addon { - padding: 6px 12px; - font-size: 14px; - font-weight: normal; - line-height: 1; - color: #090; - text-align: center; - background-color: #222; - border: 1px solid #444; - border-radius: 0 + padding: 6px 12px; + font-size: 14px; + font-weight: normal; + line-height: 1; + color: #090; + text-align: center; + background-color: #222; + border: 1px solid #444; + border-radius: 0 } .input-group-addon.input-sm { - padding: 5px 10px; - font-size: 12px; - border-radius: 0 + padding: 5px 10px; + font-size: 12px; + border-radius: 0 } .input-group-addon.input-lg { - padding: 10px 16px; - font-size: 18px; - border-radius: 0 + padding: 10px 16px; + font-size: 18px; + border-radius: 0 } .input-group-addon input[type="radio"], .input-group-addon input[type="checkbox"] { - margin-top: 0 + margin-top: 0 } .input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child>.btn, .input-group-btn:first-child>.btn-group>.btn, .input-group-btn:first-child>.dropdown-toggle, .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:last-child>.btn-group:not(:last-child)>.btn { - border-bottom-right-radius: 0; - border-top-right-radius: 0 + border-bottom-right-radius: 0; + border-top-right-radius: 0 } .input-group-addon:first-child { - border-right: 0 + border-right: 0 } .input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child>.btn, .input-group-btn:last-child>.btn-group>.btn, .input-group-btn:last-child>.dropdown-toggle, .input-group-btn:first-child>.btn:not(:first-child), .input-group-btn:first-child>.btn-group:not(:first-child)>.btn { - border-bottom-left-radius: 0; - border-top-left-radius: 0 + border-bottom-left-radius: 0; + border-top-left-radius: 0 } .input-group-addon:last-child { - border-left: 0 + border-left: 0 } .input-group-btn { - position: relative; - font-size: 0; - white-space: nowrap + position: relative; + font-size: 0; + white-space: nowrap } .input-group-btn>.btn { - position: relative + position: relative } .input-group-btn>.btn+.btn { - margin-left: -1px + margin-left: -1px } .input-group-btn>.btn:hover, .input-group-btn>.btn:focus, .input-group-btn>.btn:active { - z-index: 2 + z-index: 2 } .input-group-btn:first-child>.btn, .input-group-btn:first-child>.btn-group { - margin-right: -1px + margin-right: -1px } .input-group-btn:last-child>.btn, .input-group-btn:last-child>.btn-group { - margin-left: -1px + margin-left: -1px } .nav { - margin-bottom: 0; - padding-left: 0; - list-style: none + margin-bottom: 0; + padding-left: 0; + list-style: none } .nav>li { - position: relative; - display: block + position: relative; + display: block } .nav>li>a { - position: relative; - display: block; - padding: 10px 15px + position: relative; + display: block; + padding: 10px 15px } .nav>li>a:hover, .nav>li>a:focus { - text-decoration: none; - background-color: #030 + text-decoration: none; + background-color: #030 } .nav>li.disabled>a { - color: #030 + color: #030 } .nav>li.disabled>a:hover, .nav>li.disabled>a:focus { - color: #030; - text-decoration: none; - background-color: transparent; - cursor: not-allowed + color: #030; + text-decoration: none; + background-color: transparent; + cursor: not-allowed } .nav .open>a, .nav .open>a:hover, .nav .open>a:focus { - background-color: #030; - border-color: #0f0 + background-color: #030; + border-color: #0f0 } .nav .nav-divider { - height: 1px; - margin: 9px 0; - overflow: hidden; - background-color: #e5e5e5 + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #e5e5e5 } .nav>li>a>img { - max-width: none + max-width: none } .nav-tabs { - border-bottom: 1px solid #444 + border-bottom: 1px solid #444 } .nav-tabs>li { - float: left; - margin-bottom: -1px + float: left; + margin-bottom: -1px } .nav-tabs>li>a { - margin-right: 2px; - line-height: 1.428571429; - border: 1px solid transparent; - border-radius: 0 0 0 0 + margin-right: 2px; + line-height: 1.428571429; + border: 1px solid transparent; + border-radius: 0 0 0 0 } .nav-tabs>li>a:hover { - border-color: #444 #444 #444 + border-color: #444 #444 #444 } .nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus { - color: #090; - background-color: #333; - border: 1px solid #222; - border-bottom-color: transparent; - cursor: default + color: #090; + background-color: #333; + border: 1px solid #222; + border-bottom-color: transparent; + cursor: default } .nav-tabs.nav-justified { - width: 100%; - border-bottom: 0 + width: 100%; + border-bottom: 0 } .nav-tabs.nav-justified>li { - float: none + float: none } .nav-tabs.nav-justified>li>a { - text-align: center; - margin-bottom: 5px + text-align: center; + margin-bottom: 5px } .nav-tabs.nav-justified>.dropdown .dropdown-menu { - top: auto; - left: auto + top: auto; + left: auto } @media (min-width:768px) { - .nav-tabs.nav-justified>li { - display: table-cell; - width: 1% - } + .nav-tabs.nav-justified>li { + display: table-cell; + width: 1% + } - .nav-tabs.nav-justified>li>a { - margin-bottom: 0 - } + .nav-tabs.nav-justified>li>a { + margin-bottom: 0 + } } .nav-tabs.nav-justified>li>a { - margin-right: 0; - border-radius: 0 + margin-right: 0; + border-radius: 0 } .nav-tabs.nav-justified>.active>a, .nav-tabs.nav-justified>.active>a:hover, .nav-tabs.nav-justified>.active>a:focus { - border: 1px solid #ddd + border: 1px solid #ddd } @media (min-width:768px) { - .nav-tabs.nav-justified>li>a { - border-bottom: 1px solid #ddd; - border-radius: 0 0 0 0 - } + .nav-tabs.nav-justified>li>a { + border-bottom: 1px solid #ddd; + border-radius: 0 0 0 0 + } - .nav-tabs.nav-justified>.active>a, .nav-tabs.nav-justified>.active>a:hover, .nav-tabs.nav-justified>.active>a:focus { - border-bottom-color: #222 - } + .nav-tabs.nav-justified>.active>a, .nav-tabs.nav-justified>.active>a:hover, .nav-tabs.nav-justified>.active>a:focus { + border-bottom-color: #222 + } } .nav-pills>li { - float: left + float: left } .nav-pills>li>a { - border-radius: 0 + border-radius: 0 } .nav-pills>li+li { - margin-left: 2px + margin-left: 2px } .nav-pills>li.active>a, .nav-pills>li.active>a:hover, .nav-pills>li.active>a:focus { - color: #fff; - background-color: #0f0 + color: #fff; + background-color: #0f0 } .nav-stacked>li { - float: none + float: none } .nav-stacked>li+li { - margin-top: 2px; - margin-left: 0 + margin-top: 2px; + margin-left: 0 } .nav-justified { - width: 100% + width: 100% } .nav-justified>li { - float: none + float: none } .nav-justified>li>a { - text-align: center; - margin-bottom: 5px + text-align: center; + margin-bottom: 5px } .nav-justified>.dropdown .dropdown-menu { - top: auto; - left: auto + top: auto; + left: auto } @media (min-width:768px) { - .nav-justified>li { - display: table-cell; - width: 1% - } + .nav-justified>li { + display: table-cell; + width: 1% + } - .nav-justified>li>a { - margin-bottom: 0 - } + .nav-justified>li>a { + margin-bottom: 0 + } } .nav-tabs-justified { - border-bottom: 0 + border-bottom: 0 } .nav-tabs-justified>li>a { - margin-right: 0; - border-radius: 0 + margin-right: 0; + border-radius: 0 } .nav-tabs-justified>.active>a, .nav-tabs-justified>.active>a:hover, .nav-tabs-justified>.active>a:focus { - border: 1px solid #ddd + border: 1px solid #ddd } @media (min-width:768px) { - .nav-tabs-justified>li>a { - border-bottom: 1px solid #ddd; - border-radius: 0 0 0 0 - } + .nav-tabs-justified>li>a { + border-bottom: 1px solid #ddd; + border-radius: 0 0 0 0 + } - .nav-tabs-justified>.active>a, .nav-tabs-justified>.active>a:hover, .nav-tabs-justified>.active>a:focus { - border-bottom-color: #222 - } + .nav-tabs-justified>.active>a, .nav-tabs-justified>.active>a:hover, .nav-tabs-justified>.active>a:focus { + border-bottom-color: #222 + } } .tab-content>.tab-pane { - display: none + display: none } .tab-content>.active { - display: block + display: block } .nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-right-radius: 0; - border-top-left-radius: 0 + margin-top: -1px; + border-top-right-radius: 0; + border-top-left-radius: 0 } .navbar { - position: relative; - min-height: 50px; - margin-bottom: 20px; - border: 1px solid transparent + position: relative; + min-height: 50px; + margin-bottom: 20px; + border: 1px solid transparent } @media (min-width:768px) { - .navbar { - border-radius: 0 - } + .navbar { + border-radius: 0 + } } @media (min-width:768px) { - .navbar-header { - float: left - } + .navbar-header { + float: left + } } .navbar-collapse { - overflow-x: visible; - padding-right: 15px; - padding-left: 15px; - border-top: 1px solid transparent; - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); - -webkit-overflow-scrolling: touch + overflow-x: visible; + padding-right: 15px; + padding-left: 15px; + border-top: 1px solid transparent; + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); + -webkit-overflow-scrolling: touch } .navbar-collapse.in { - overflow-y: auto + overflow-y: auto } @media (min-width:768px) { - .navbar-collapse { - width: auto; - border-top: 0; - box-shadow: none - } + .navbar-collapse { + width: auto; + border-top: 0; + box-shadow: none + } - .navbar-collapse.collapse { - display: block; - height: auto; - padding-bottom: 0; - overflow: visible - } + .navbar-collapse.collapse { + display: block; + height: auto; + padding-bottom: 0; + overflow: visible + } - .navbar-collapse.in { - overflow-y: visible - } + .navbar-collapse.in { + overflow-y: visible + } - .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { - padding-left: 0; - padding-right: 0 - } + .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { + padding-left: 0; + padding-right: 0 + } } .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { - max-height: 340px + max-height: 340px } @media (max-device-width:480px) and (orientation:landscape) { - .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { - max-height: 200px - } + .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { + max-height: 200px + } } .container>.navbar-header, .container-fluid>.navbar-header, .container>.navbar-collapse, .container-fluid>.navbar-collapse { - margin-right: -15px; - margin-left: -15px + margin-right: -15px; + margin-left: -15px } @media (min-width:768px) { - .container>.navbar-header, .container-fluid>.navbar-header, .container>.navbar-collapse, .container-fluid>.navbar-collapse { - margin-right: 0; - margin-left: 0 - } + .container>.navbar-header, .container-fluid>.navbar-header, .container>.navbar-collapse, .container-fluid>.navbar-collapse { + margin-right: 0; + margin-left: 0 + } } .navbar-static-top { - z-index: 1000; - border-width: 0 0 1px + z-index: 1000; + border-width: 0 0 1px } @media (min-width:768px) { - .navbar-static-top { - border-radius: 0 - } + .navbar-static-top { + border-radius: 0 + } } .navbar-fixed-top, .navbar-fixed-bottom { - position: fixed; - right: 0; - left: 0; - z-index: 1030 + position: fixed; + right: 0; + left: 0; + z-index: 1030 } @media (min-width:768px) { - .navbar-fixed-top, .navbar-fixed-bottom { - border-radius: 0 - } + .navbar-fixed-top, .navbar-fixed-bottom { + border-radius: 0 + } } .navbar-fixed-top { - top: 0; - border-width: 0 0 1px + top: 0; + border-width: 0 0 1px } .navbar-fixed-bottom { - bottom: 0; - margin-bottom: 0; - border-width: 1px 0 0 + bottom: 0; + margin-bottom: 0; + border-width: 1px 0 0 } .navbar-brand { - float: left; - padding: 15px 15px; - font-size: 18px; - line-height: 20px; - height: 50px + float: left; + padding: 15px 15px; + font-size: 18px; + line-height: 20px; + height: 50px } .navbar-brand:hover, .navbar-brand:focus { - text-decoration: none + text-decoration: none } .navbar-brand>img { - display: block + display: block } @media (min-width:768px) { - .navbar>.container .navbar-brand, .navbar>.container-fluid .navbar-brand { - margin-left: -15px - } + .navbar>.container .navbar-brand, .navbar>.container-fluid .navbar-brand { + margin-left: -15px + } } .navbar-toggle { - position: relative; - float: right; - margin-right: 15px; - padding: 9px 10px; - margin-top: 8px; - margin-bottom: 8px; - background-color: transparent; - background-image: none; - border: 1px solid transparent; - border-radius: 0 + position: relative; + float: right; + margin-right: 15px; + padding: 9px 10px; + margin-top: 8px; + margin-bottom: 8px; + background-color: transparent; + background-image: none; + border: 1px solid transparent; + border-radius: 0 } .navbar-toggle:focus { - outline: 0 + outline: 0 } .navbar-toggle .icon-bar { - display: block; - width: 22px; - height: 2px; - border-radius: 1px + display: block; + width: 22px; + height: 2px; + border-radius: 1px } .navbar-toggle .icon-bar+.icon-bar { - margin-top: 4px + margin-top: 4px } @media (min-width:768px) { - .navbar-toggle { - display: none - } + .navbar-toggle { + display: none + } } .navbar-nav { - margin: 7.5px -15px + margin: 7.5px -15px } .navbar-nav>li>a { - padding-top: 10px; - padding-bottom: 10px; - line-height: 20px + padding-top: 10px; + padding-bottom: 10px; + line-height: 20px } @media (max-width:767px) { - .navbar-nav .open .dropdown-menu { - position: static; - float: none; - width: auto; - margin-top: 0; - background-color: transparent; - border: 0; - box-shadow: none - } + .navbar-nav .open .dropdown-menu { + position: static; + float: none; + width: auto; + margin-top: 0; + background-color: transparent; + border: 0; + box-shadow: none + } - .navbar-nav .open .dropdown-menu>li>a, .navbar-nav .open .dropdown-menu .dropdown-header { - padding: 5px 15px 5px 25px - } + .navbar-nav .open .dropdown-menu>li>a, .navbar-nav .open .dropdown-menu .dropdown-header { + padding: 5px 15px 5px 25px + } - .navbar-nav .open .dropdown-menu>li>a { - line-height: 20px - } + .navbar-nav .open .dropdown-menu>li>a { + line-height: 20px + } - .navbar-nav .open .dropdown-menu>li>a:hover, .navbar-nav .open .dropdown-menu>li>a:focus { - background-image: none - } + .navbar-nav .open .dropdown-menu>li>a:hover, .navbar-nav .open .dropdown-menu>li>a:focus { + background-image: none + } } @media (min-width:768px) { - .navbar-nav { - float: left; - margin: 0 - } + .navbar-nav { + float: left; + margin: 0 + } - .navbar-nav>li { - float: left - } + .navbar-nav>li { + float: left + } - .navbar-nav>li>a { - padding-top: 15px; - padding-bottom: 15px - } + .navbar-nav>li>a { + padding-top: 15px; + padding-bottom: 15px + } } .navbar-form { - margin-left: -15px; - margin-right: -15px; - padding: 10px 15px; - border-top: 1px solid transparent; - border-bottom: 1px solid transparent; - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); - margin-top: 8px; - margin-bottom: 8px + margin-left: -15px; + margin-right: -15px; + padding: 10px 15px; + border-top: 1px solid transparent; + border-bottom: 1px solid transparent; + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); + margin-top: 8px; + margin-bottom: 8px } @media (min-width:768px) { - .navbar-form .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle - } + .navbar-form .form-group { + display: inline-block; + margin-bottom: 0; + vertical-align: middle + } - .navbar-form .form-control { - display: inline-block; - width: auto; - vertical-align: middle - } + .navbar-form .form-control { + display: inline-block; + width: auto; + vertical-align: middle + } - .navbar-form .form-control-static { - display: inline-block - } + .navbar-form .form-control-static { + display: inline-block + } - .navbar-form .input-group { - display: inline-table; - vertical-align: middle - } + .navbar-form .input-group { + display: inline-table; + vertical-align: middle + } - .navbar-form .input-group .input-group-addon, .navbar-form .input-group .input-group-btn, .navbar-form .input-group .form-control { - width: auto - } + .navbar-form .input-group .input-group-addon, .navbar-form .input-group .input-group-btn, .navbar-form .input-group .form-control { + width: auto + } - .navbar-form .input-group>.form-control { - width: 100% - } + .navbar-form .input-group>.form-control { + width: 100% + } - .navbar-form .control-label { - margin-bottom: 0; - vertical-align: middle - } + .navbar-form .control-label { + margin-bottom: 0; + vertical-align: middle + } - .navbar-form .radio, .navbar-form .checkbox { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - vertical-align: middle - } + .navbar-form .radio, .navbar-form .checkbox { + display: inline-block; + margin-top: 0; + margin-bottom: 0; + vertical-align: middle + } - .navbar-form .radio label, .navbar-form .checkbox label { - padding-left: 0 - } + .navbar-form .radio label, .navbar-form .checkbox label { + padding-left: 0 + } - .navbar-form .radio input[type="radio"], .navbar-form .checkbox input[type="checkbox"] { - position: relative; - margin-left: 0 - } + .navbar-form .radio input[type="radio"], .navbar-form .checkbox input[type="checkbox"] { + position: relative; + margin-left: 0 + } - .navbar-form .has-feedback .form-control-feedback { - top: 0 - } + .navbar-form .has-feedback .form-control-feedback { + top: 0 + } } @media (max-width:767px) { - .navbar-form .form-group { - margin-bottom: 5px - } + .navbar-form .form-group { + margin-bottom: 5px + } - .navbar-form .form-group:last-child { - margin-bottom: 0 - } + .navbar-form .form-group:last-child { + margin-bottom: 0 + } } @media (min-width:768px) { - .navbar-form { - width: auto; - border: 0; - margin-left: 0; - margin-right: 0; - padding-top: 0; - padding-bottom: 0; - box-shadow: none - } + .navbar-form { + width: auto; + border: 0; + margin-left: 0; + margin-right: 0; + padding-top: 0; + padding-bottom: 0; + box-shadow: none + } } .navbar-nav>li>.dropdown-menu { - margin-top: 0; - border-top-right-radius: 0; - border-top-left-radius: 0 + margin-top: 0; + border-top-right-radius: 0; + border-top-left-radius: 0 } .navbar-fixed-bottom .navbar-nav>li>.dropdown-menu { - margin-bottom: 0; - border-top-right-radius: 0; - border-top-left-radius: 0; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0 + margin-bottom: 0; + border-top-right-radius: 0; + border-top-left-radius: 0; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0 } .navbar-btn { - margin-top: 8px; - margin-bottom: 8px + margin-top: 8px; + margin-bottom: 8px } .navbar-btn.btn-sm { - margin-top: 10px; - margin-bottom: 10px + margin-top: 10px; + margin-bottom: 10px } .navbar-btn.btn-xs { - margin-top: 14px; - margin-bottom: 14px + margin-top: 14px; + margin-bottom: 14px } .navbar-text { - margin-top: 15px; - margin-bottom: 15px + margin-top: 15px; + margin-bottom: 15px } @media (min-width:768px) { - .navbar-text { - float: left; - margin-left: 15px; - margin-right: 15px - } + .navbar-text { + float: left; + margin-left: 15px; + margin-right: 15px + } } @media (min-width:768px) { - .navbar-left { - float: left - } + .navbar-left { + float: left + } - .navbar-right { - float: right; - margin-right: -15px - } + .navbar-right { + float: right; + margin-right: -15px + } - .navbar-right~.navbar-right { - margin-right: 0 - } + .navbar-right~.navbar-right { + margin-right: 0 + } } .navbar-default { - background-color: #080808; - border-color: #000 + background-color: #080808; + border-color: #000 } .navbar-default .navbar-brand { - color: #0f0 + color: #0f0 } .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { - color: #0c0; - background-color: transparent + color: #0c0; + background-color: transparent } .navbar-default .navbar-text { - color: #0f0 + color: #0f0 } .navbar-default .navbar-nav>li>a { - color: #0f0 + color: #0f0 } .navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-nav>li>a:focus { - color: #090; - background-color: #222 + color: #090; + background-color: #222 } .navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus { - color: #999; - background-color: #000 + color: #999; + background-color: #000 } .navbar-default .navbar-nav>.disabled>a, .navbar-default .navbar-nav>.disabled>a:hover, .navbar-default .navbar-nav>.disabled>a:focus { - color: #ccc; - background-color: transparent + color: #ccc; + background-color: transparent } .navbar-default .navbar-toggle { - border-color: #ddd + border-color: #ddd } .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { - background-color: #ddd + background-color: #ddd } .navbar-default .navbar-toggle .icon-bar { - background-color: #888 + background-color: #888 } .navbar-default .navbar-collapse, .navbar-default .navbar-form { - border-color: #000 + border-color: #000 } .navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:hover, .navbar-default .navbar-nav>.open>a:focus { - background-color: #000; - color: #999 + background-color: #000; + color: #999 } @media (max-width:767px) { - .navbar-default .navbar-nav .open .dropdown-menu>li>a { - color: #0f0 - } + .navbar-default .navbar-nav .open .dropdown-menu>li>a { + color: #0f0 + } - .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover, .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus { - color: #090; - background-color: #222 - } + .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover, .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus { + color: #090; + background-color: #222 + } - .navbar-default .navbar-nav .open .dropdown-menu>.active>a, .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover, .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus { - color: #999; - background-color: #000 - } + .navbar-default .navbar-nav .open .dropdown-menu>.active>a, .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover, .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus { + color: #999; + background-color: #000 + } - .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a, .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover, .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus { - color: #ccc; - background-color: transparent - } + .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a, .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover, .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus { + color: #ccc; + background-color: transparent + } } .navbar-default .navbar-link { - color: #0f0 + color: #0f0 } .navbar-default .navbar-link:hover { - color: #090 + color: #090 } .navbar-default .btn-link { - color: #0f0 + color: #0f0 } .navbar-default .btn-link:hover, .navbar-default .btn-link:focus { - color: #090 + color: #090 } .navbar-default .btn-link[disabled]:hover, fieldset[disabled] .navbar-default .btn-link:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:focus { - color: #ccc + color: #ccc } .navbar-inverse { - background-color: #222; - border-color: #080808 + background-color: #222; + border-color: #080808 } .navbar-inverse .navbar-brand { - color: #007f00 + color: #007f00 } .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus { - color: #fff; - background-color: transparent + color: #fff; + background-color: transparent } .navbar-inverse .navbar-text { - color: #007f00 + color: #007f00 } .navbar-inverse .navbar-nav>li>a { - color: #007f00 + color: #007f00 } .navbar-inverse .navbar-nav>li>a:hover, .navbar-inverse .navbar-nav>li>a:focus { - color: #fff; - background-color: transparent + color: #fff; + background-color: transparent } .navbar-inverse .navbar-nav>.active>a, .navbar-inverse .navbar-nav>.active>a:hover, .navbar-inverse .navbar-nav>.active>a:focus { - color: #fff; - background-color: #080808 + color: #fff; + background-color: #080808 } .navbar-inverse .navbar-nav>.disabled>a, .navbar-inverse .navbar-nav>.disabled>a:hover, .navbar-inverse .navbar-nav>.disabled>a:focus { - color: #444; - background-color: transparent + color: #444; + background-color: transparent } .navbar-inverse .navbar-toggle { - border-color: #333 + border-color: #333 } .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus { - background-color: #333 + background-color: #333 } .navbar-inverse .navbar-toggle .icon-bar { - background-color: #fff + background-color: #fff } .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form { - border-color: #101010 + border-color: #101010 } .navbar-inverse .navbar-nav>.open>a, .navbar-inverse .navbar-nav>.open>a:hover, .navbar-inverse .navbar-nav>.open>a:focus { - background-color: #080808; - color: #fff + background-color: #080808; + color: #fff } @media (max-width:767px) { - .navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header { - border-color: #080808 - } + .navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header { + border-color: #080808 + } - .navbar-inverse .navbar-nav .open .dropdown-menu .divider { - background-color: #080808 - } + .navbar-inverse .navbar-nav .open .dropdown-menu .divider { + background-color: #080808 + } - .navbar-inverse .navbar-nav .open .dropdown-menu>li>a { - color: #007f00 - } + .navbar-inverse .navbar-nav .open .dropdown-menu>li>a { + color: #007f00 + } - .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus { - color: #fff; - background-color: transparent - } + .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus { + color: #fff; + background-color: transparent + } - .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a, .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus { - color: #fff; - background-color: #080808 - } + .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a, .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus { + color: #fff; + background-color: #080808 + } - .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a, .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus { - color: #444; - background-color: transparent - } + .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a, .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus { + color: #444; + background-color: transparent + } } .navbar-inverse .navbar-link { - color: #007f00 + color: #007f00 } .navbar-inverse .navbar-link:hover { - color: #fff + color: #fff } .navbar-inverse .btn-link { - color: #007f00 + color: #007f00 } .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus { - color: #fff + color: #fff } .navbar-inverse .btn-link[disabled]:hover, fieldset[disabled] .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:focus { - color: #444 + color: #444 } .breadcrumb { - padding: 8px 15px; - margin-bottom: 20px; - list-style: none; - background-color: #3c3c3c; - border-radius: 0 + padding: 8px 15px; + margin-bottom: 20px; + list-style: none; + background-color: #3c3c3c; + border-radius: 0 } .breadcrumb>li { - display: inline-block + display: inline-block } .breadcrumb>li+li:before { - content: "/\00a0"; - padding: 0 5px; - color: #0f0 + content: "/\00a0"; + padding: 0 5px; + color: #0f0 } .breadcrumb>.active { - color: #090 + color: #090 } .pagination { - display: inline-block; - padding-left: 0; - margin: 20px 0; - border-radius: 0 + display: inline-block; + padding-left: 0; + margin: 20px 0; + border-radius: 0 } .pagination>li { - display: inline + display: inline } .pagination>li>a, .pagination>li>span { - position: relative; - float: left; - padding: 6px 12px; - line-height: 1.428571429; - text-decoration: none; - color: #0f0; - background-color: #222; - border: 1px solid #444; - margin-left: -1px + position: relative; + float: left; + padding: 6px 12px; + line-height: 1.428571429; + text-decoration: none; + color: #0f0; + background-color: #222; + border: 1px solid #444; + margin-left: -1px } .pagination>li:first-child>a, .pagination>li:first-child>span { - margin-left: 0; - border-bottom-left-radius: 0; - border-top-left-radius: 0 + margin-left: 0; + border-bottom-left-radius: 0; + border-top-left-radius: 0 } .pagination>li:last-child>a, .pagination>li:last-child>span { - border-bottom-right-radius: 0; - border-top-right-radius: 0 + border-bottom-right-radius: 0; + border-top-right-radius: 0 } .pagination>li>a:hover, .pagination>li>span:hover, .pagination>li>a:focus, .pagination>li>span:focus { - color: #00b300; - background-color: #030; - border-color: #555 + color: #00b300; + background-color: #030; + border-color: #555 } .pagination>.active>a, .pagination>.active>span, .pagination>.active>a:hover, .pagination>.active>span:hover, .pagination>.active>a:focus, .pagination>.active>span:focus { - z-index: 2; - color: #222; - background-color: #0f0; - border-color: #0f0; - cursor: default + z-index: 2; + color: #222; + background-color: #0f0; + border-color: #0f0; + cursor: default } .pagination>.disabled>span, .pagination>.disabled>span:hover, .pagination>.disabled>span:focus, .pagination>.disabled>a, .pagination>.disabled>a:hover, .pagination>.disabled>a:focus { - color: #3f3; - background-color: #3c3c3c; - border-color: #444; - cursor: not-allowed + color: #3f3; + background-color: #3c3c3c; + border-color: #444; + cursor: not-allowed } .pagination-lg>li>a, .pagination-lg>li>span { - padding: 10px 16px; - font-size: 18px + padding: 10px 16px; + font-size: 18px } .pagination-lg>li:first-child>a, .pagination-lg>li:first-child>span { - border-bottom-left-radius: 0; - border-top-left-radius: 0 + border-bottom-left-radius: 0; + border-top-left-radius: 0 } .pagination-lg>li:last-child>a, .pagination-lg>li:last-child>span { - border-bottom-right-radius: 0; - border-top-right-radius: 0 + border-bottom-right-radius: 0; + border-top-right-radius: 0 } .pagination-sm>li>a, .pagination-sm>li>span { - padding: 5px 10px; - font-size: 12px + padding: 5px 10px; + font-size: 12px } .pagination-sm>li:first-child>a, .pagination-sm>li:first-child>span { - border-bottom-left-radius: 0; - border-top-left-radius: 0 + border-bottom-left-radius: 0; + border-top-left-radius: 0 } .pagination-sm>li:last-child>a, .pagination-sm>li:last-child>span { - border-bottom-right-radius: 0; - border-top-right-radius: 0 + border-bottom-right-radius: 0; + border-top-right-radius: 0 } .pager { - padding-left: 0; - margin: 20px 0; - list-style: none; - text-align: center + padding-left: 0; + margin: 20px 0; + list-style: none; + text-align: center } .pager li { - display: inline + display: inline } .pager li>a, .pager li>span { - display: inline-block; - padding: 5px 14px; - background-color: #222; - border: 1px solid #444; - border-radius: 0 + display: inline-block; + padding: 5px 14px; + background-color: #222; + border: 1px solid #444; + border-radius: 0 } .pager li>a:hover, .pager li>a:focus { - text-decoration: none; - background-color: #030 + text-decoration: none; + background-color: #030 } .pager .next>a, .pager .next>span { - float: right + float: right } .pager .previous>a, .pager .previous>span { - float: left + float: left } .pager .disabled>a, .pager .disabled>a:hover, .pager .disabled>a:focus, .pager .disabled>span { - color: #030; - background-color: #222; - cursor: not-allowed + color: #030; + background-color: #222; + cursor: not-allowed } .label { - display: inline; - padding: .2em .6em .3em; - font-size: 75%; - font-weight: bold; - line-height: 1; - color: #222; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - border-radius: .25em + display: inline; + padding: .2em .6em .3em; + font-size: 75%; + font-weight: bold; + line-height: 1; + color: #222; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: .25em } a.label:hover, a.label:focus { - color: #fff; - text-decoration: none; - cursor: pointer + color: #fff; + text-decoration: none; + cursor: pointer } .label:empty { - display: none + display: none } .btn .label { - position: relative; - top: -1px + position: relative; + top: -1px } .label-default { - background-color: #030 + background-color: #030 } .label-default[href]:hover, .label-default[href]:focus { - background-color: #000 + background-color: #000 } .label-primary { - background-color: #0f0 + background-color: #0f0 } .label-primary[href]:hover, .label-primary[href]:focus { - background-color: #0c0 + background-color: #0c0 } .label-success { - background-color: #090 + background-color: #090 } .label-success[href]:hover, .label-success[href]:focus { - background-color: #060 + background-color: #060 } .label-info { - background-color: #36c + background-color: #36c } .label-info[href]:hover, .label-info[href]:focus { - background-color: #2952a3 + background-color: #2952a3 } .label-warning { - background-color: #f4ff00 + background-color: #f4ff00 } .label-warning[href]:hover, .label-warning[href]:focus { - background-color: #c3cc00 + background-color: #c3cc00 } .label-danger { - background-color: #f00 + background-color: #f00 } .label-danger[href]:hover, .label-danger[href]:focus { - background-color: #c00 + background-color: #c00 } .badge { - display: inline-block; - min-width: 10px; - padding: 3px 7px; - font-size: 12px; - font-weight: bold; - color: #0f0; - line-height: 1; - vertical-align: baseline; - white-space: nowrap; - text-align: center; - background-color: #222; - border-radius: 10px + display: inline-block; + min-width: 10px; + padding: 3px 7px; + font-size: 12px; + font-weight: bold; + color: #0f0; + line-height: 1; + vertical-align: baseline; + white-space: nowrap; + text-align: center; + background-color: #222; + border-radius: 10px } .badge:empty { - display: none + display: none } .btn .badge { - position: relative; - top: -1px + position: relative; + top: -1px } .btn-xs .badge, .btn-group-xs>.btn .badge { - top: 0; - padding: 1px 5px + top: 0; + padding: 1px 5px } a.badge:hover, a.badge:focus { - color: #fff; - text-decoration: none; - cursor: pointer + color: #fff; + text-decoration: none; + cursor: pointer } .list-group-item.active>.badge, .nav-pills>.active>a>.badge { - color: #0f0; - background-color: #fff + color: #0f0; + background-color: #fff } .list-group-item>.badge { - float: right + float: right } .list-group-item>.badge+.badge { - margin-right: 5px + margin-right: 5px } .nav-pills>li>a>.badge { - margin-left: 3px + margin-left: 3px } .jumbotron { - padding: 30px 15px; - margin-bottom: 30px; - color: inherit; - background-color: #080808 + padding: 30px 15px; + margin-bottom: 30px; + color: inherit; + background-color: #080808 } .jumbotron h1, .jumbotron .h1 { - color: inherit + color: inherit } .jumbotron p { - margin-bottom: 15px; - font-size: 21px; - font-weight: 200 + margin-bottom: 15px; + font-size: 21px; + font-weight: 200 } .jumbotron>hr { - border-top-color: #000 + border-top-color: #000 } .container .jumbotron, .container-fluid .jumbotron { - border-radius: 0 + border-radius: 0 } .jumbotron .container { - max-width: 100% + max-width: 100% } @media screen and (min-width:768px) { - .jumbotron { - padding: 48px 0 - } + .jumbotron { + padding: 48px 0 + } - .container .jumbotron, .container-fluid .jumbotron { - padding-left: 60px; - padding-right: 60px - } + .container .jumbotron, .container-fluid .jumbotron { + padding-left: 60px; + padding-right: 60px + } - .jumbotron h1, .jumbotron .h1 { - font-size: 63px - } + .jumbotron h1, .jumbotron .h1 { + font-size: 63px + } } .thumbnail { - display: block; - padding: 4px; - margin-bottom: 20px; - line-height: 1.428571429; - background-color: #222; - border: 1px solid #ddd; - border-radius: 0; - transition: border .2s ease-in-out + display: block; + padding: 4px; + margin-bottom: 20px; + line-height: 1.428571429; + background-color: #222; + border: 1px solid #ddd; + border-radius: 0; + transition: border .2s ease-in-out } .thumbnail>img, .thumbnail a>img { - margin-left: auto; - margin-right: auto + margin-left: auto; + margin-right: auto } a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active { - border-color: #0f0 + border-color: #0f0 } .thumbnail .caption { - padding: 9px; - color: #0c0 + padding: 9px; + color: #0c0 } .alert { - padding: 15px; - margin-bottom: 20px; - border: 1px solid transparent; - border-radius: 0 + padding: 15px; + margin-bottom: 20px; + border: 1px solid transparent; + border-radius: 0 } .alert h4 { - margin-top: 0; - color: inherit + margin-top: 0; + color: inherit } .alert .alert-link { - font-weight: bold + font-weight: bold } .alert>p, .alert>ul { - margin-bottom: 0 + margin-bottom: 0 } .alert>p+p { - margin-top: 5px + margin-top: 5px } .alert-dismissable, .alert-dismissible { - padding-right: 35px + padding-right: 35px } .alert-dismissable .close, .alert-dismissible .close { - position: relative; - top: -2px; - right: -21px; - color: inherit + position: relative; + top: -2px; + right: -21px; + color: inherit } .alert-success { - background-color: #3c3c3c; - border-color: #2f2f2f; - color: #0d0 + background-color: #3c3c3c; + border-color: #2f2f2f; + color: #0d0 } .alert-success hr { - border-top-color: #222 + border-top-color: #222 } .alert-success .alert-link { - color: #0a0 + color: #0a0 } .alert-info { - background-color: #3c3c3c; - border-color: #2a2a2a; - color: #7d8cff + background-color: #3c3c3c; + border-color: #2a2a2a; + color: #7d8cff } .alert-info hr { - border-top-color: #1d1d1d + border-top-color: #1d1d1d } .alert-info .alert-link { - color: #4a5fff + color: #4a5fff } .alert-warning { - background-color: #3c3c3c; - border-color: #343434; - color: #f4ff00 + background-color: #3c3c3c; + border-color: #343434; + color: #f4ff00 } .alert-warning hr { - border-top-color: #272727 + border-top-color: #272727 } .alert-warning .alert-link { - color: #c3cc00 + color: #c3cc00 } .alert-danger { - background-color: #3c3c3c; - border-color: #343434; - color: #d00 + background-color: #3c3c3c; + border-color: #343434; + color: #d00 } .alert-danger hr { - border-top-color: #272727 + border-top-color: #272727 } .alert-danger .alert-link { - color: #a00 + color: #a00 } @keyframes progress-bar-stripes { - from { - background-position: 40px 0 - } + from { + background-position: 40px 0 + } - to { - background-position: 0 0 - } + to { + background-position: 0 0 + } } .progress { - overflow: hidden; - height: 20px; - margin-bottom: 20px; - background-color: #3c3c3c; - border-radius: 0; - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1) + overflow: hidden; + height: 20px; + margin-bottom: 20px; + background-color: #3c3c3c; + border-radius: 0; + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1) } .progress-bar { - float: left; - width: 0; - height: 100%; - font-size: 12px; - line-height: 20px; - color: #fff; - text-align: center; - background-color: #0f0; - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); - transition: width .6s ease + float: left; + width: 0; + height: 100%; + font-size: 12px; + line-height: 20px; + color: #fff; + text-align: center; + background-color: #0f0; + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + transition: width .6s ease } .progress-striped .progress-bar, .progress-bar-striped { - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-size: 40px 40px + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-size: 40px 40px } .progress.active .progress-bar, .progress-bar.active { - animation: progress-bar-stripes 2s linear infinite + animation: progress-bar-stripes 2s linear infinite } .progress-bar-success { - background-color: #090 + background-color: #090 } .progress-striped .progress-bar-success { - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent) + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent) } .progress-bar-info { - background-color: #36c + background-color: #36c } .progress-striped .progress-bar-info { - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent) + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent) } .progress-bar-warning { - background-color: #f4ff00 + background-color: #f4ff00 } .progress-striped .progress-bar-warning { - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent) + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent) } .progress-bar-danger { - background-color: #f00 + background-color: #f00 } .progress-striped .progress-bar-danger { - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent) + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent) } .media { - margin-top: 15px + margin-top: 15px } .media:first-child { - margin-top: 0 + margin-top: 0 } .media, .media-body { - zoom: 1; - overflow: hidden + zoom: 1; + overflow: hidden } .media-body { - width: 10000px + width: 10000px } .media-object { - display: block + display: block } .media-right, .media>.pull-right { - padding-left: 10px + padding-left: 10px } .media-left, .media>.pull-left { - padding-right: 10px + padding-right: 10px } .media-left, .media-right, .media-body { - display: table-cell; - vertical-align: top + display: table-cell; + vertical-align: top } .media-middle { - vertical-align: middle + vertical-align: middle } .media-bottom { - vertical-align: bottom + vertical-align: bottom } .media-heading { - margin-top: 0; - margin-bottom: 5px + margin-top: 0; + margin-bottom: 5px } .media-list { - padding-left: 0; - list-style: none + padding-left: 0; + list-style: none } .list-group { - margin-bottom: 20px; - padding-left: 0 + margin-bottom: 20px; + padding-left: 0 } .list-group-item { - position: relative; - display: block; - padding: 10px 15px; - margin-bottom: -1px; - background-color: #3c3c3c; - border: 1px solid #222 + position: relative; + display: block; + padding: 10px 15px; + margin-bottom: -1px; + background-color: #3c3c3c; + border: 1px solid #222 } .list-group-item:first-child { - border-top-right-radius: 0; - border-top-left-radius: 0 + border-top-right-radius: 0; + border-top-left-radius: 0 } .list-group-item:last-child { - margin-bottom: 0; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0 + margin-bottom: 0; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0 } a.list-group-item { - color: #0f0 + color: #0f0 } a.list-group-item .list-group-item-heading { - color: #0f0 + color: #0f0 } a.list-group-item:hover, a.list-group-item:focus { - text-decoration: none; - color: #0f0; - background-color: #151515 + text-decoration: none; + color: #0f0; + background-color: #151515 } .list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus { - background-color: #030; - color: #030; - cursor: not-allowed + background-color: #030; + color: #030; + cursor: not-allowed } .list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading { - color: inherit + color: inherit } .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text { - color: #030 + color: #030 } .list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus { - z-index: 2; - color: #222; - background-color: #0f0; - border-color: #0f0 + z-index: 2; + color: #222; + background-color: #0f0; + border-color: #0f0 } .list-group-item.active .list-group-item-heading, .list-group-item.active:hover .list-group-item-heading, .list-group-item.active:focus .list-group-item-heading, .list-group-item.active .list-group-item-heading>small, .list-group-item.active:hover .list-group-item-heading>small, .list-group-item.active:focus .list-group-item-heading>small, .list-group-item.active .list-group-item-heading>.small, .list-group-item.active:hover .list-group-item-heading>.small, .list-group-item.active:focus .list-group-item-heading>.small { - color: inherit + color: inherit } .list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text { - color: #222 + color: #222 } .list-group-item-success { - color: #0d0; - background-color: #3c3c3c + color: #0d0; + background-color: #3c3c3c } a.list-group-item-success { - color: #0d0 + color: #0d0 } a.list-group-item-success .list-group-item-heading { - color: inherit + color: inherit } a.list-group-item-success:hover, a.list-group-item-success:focus { - color: #0d0; - background-color: #2f2f2f + color: #0d0; + background-color: #2f2f2f } a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus { - color: #fff; - background-color: #0d0; - border-color: #0d0 + color: #fff; + background-color: #0d0; + border-color: #0d0 } .list-group-item-info { - color: #7d8cff; - background-color: #3c3c3c + color: #7d8cff; + background-color: #3c3c3c } a.list-group-item-info { - color: #7d8cff + color: #7d8cff } a.list-group-item-info .list-group-item-heading { - color: inherit + color: inherit } a.list-group-item-info:hover, a.list-group-item-info:focus { - color: #7d8cff; - background-color: #2f2f2f + color: #7d8cff; + background-color: #2f2f2f } a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus { - color: #fff; - background-color: #7d8cff; - border-color: #7d8cff + color: #fff; + background-color: #7d8cff; + border-color: #7d8cff } .list-group-item-warning { - color: #f4ff00; - background-color: #3c3c3c + color: #f4ff00; + background-color: #3c3c3c } a.list-group-item-warning { - color: #f4ff00 + color: #f4ff00 } a.list-group-item-warning .list-group-item-heading { - color: inherit + color: inherit } a.list-group-item-warning:hover, a.list-group-item-warning:focus { - color: #f4ff00; - background-color: #2f2f2f + color: #f4ff00; + background-color: #2f2f2f } a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus { - color: #fff; - background-color: #f4ff00; - border-color: #f4ff00 + color: #fff; + background-color: #f4ff00; + border-color: #f4ff00 } .list-group-item-danger { - color: #d00; - background-color: #3c3c3c + color: #d00; + background-color: #3c3c3c } a.list-group-item-danger { - color: #d00 + color: #d00 } a.list-group-item-danger .list-group-item-heading { - color: inherit + color: inherit } a.list-group-item-danger:hover, a.list-group-item-danger:focus { - color: #d00; - background-color: #2f2f2f + color: #d00; + background-color: #2f2f2f } a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus { - color: #fff; - background-color: #d00; - border-color: #d00 + color: #fff; + background-color: #d00; + border-color: #d00 } .list-group-item-heading { - margin-top: 0; - margin-bottom: 5px + margin-top: 0; + margin-bottom: 5px } .list-group-item-text { - margin-bottom: 0; - line-height: 1.3 + margin-bottom: 0; + line-height: 1.3 } .panel { - margin-bottom: 20px; - background-color: #222; - border: 1px solid transparent; - border-radius: 0; - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) + margin-bottom: 20px; + background-color: #222; + border: 1px solid transparent; + border-radius: 0; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) } .panel-body { - padding: 15px + padding: 15px } .panel-heading { - padding: 10px 15px; - border-bottom: 1px solid transparent; - border-top-right-radius: -1; - border-top-left-radius: -1 + padding: 10px 15px; + border-bottom: 1px solid transparent; + border-top-right-radius: -1; + border-top-left-radius: -1 } .panel-heading>.dropdown .dropdown-toggle { - color: inherit + color: inherit } .panel-title { - margin-top: 0; - margin-bottom: 0; - font-size: 16px; - color: inherit + margin-top: 0; + margin-bottom: 0; + font-size: 16px; + color: inherit } .panel-title>a, .panel-title>small, .panel-title>.small, .panel-title>small>a, .panel-title>.small>a { - color: inherit + color: inherit } .panel-footer { - padding: 10px 15px; - background-color: #080808; - border-top: 1px solid #3c3c3c; - border-bottom-right-radius: -1; - border-bottom-left-radius: -1 + padding: 10px 15px; + background-color: #080808; + border-top: 1px solid #3c3c3c; + border-bottom-right-radius: -1; + border-bottom-left-radius: -1 } .panel>.list-group, .panel>.panel-collapse>.list-group { - margin-bottom: 0 + margin-bottom: 0 } .panel>.list-group .list-group-item, .panel>.panel-collapse>.list-group .list-group-item { - border-width: 1px 0; - border-radius: 0 + border-width: 1px 0; + border-radius: 0 } .panel>.list-group:first-child .list-group-item:first-child, .panel>.panel-collapse>.list-group:first-child .list-group-item:first-child { - border-top: 0; - border-top-right-radius: -1; - border-top-left-radius: -1 + border-top: 0; + border-top-right-radius: -1; + border-top-left-radius: -1 } .panel>.list-group:last-child .list-group-item:last-child, .panel>.panel-collapse>.list-group:last-child .list-group-item:last-child { - border-bottom: 0; - border-bottom-right-radius: -1; - border-bottom-left-radius: -1 + border-bottom: 0; + border-bottom-right-radius: -1; + border-bottom-left-radius: -1 } .panel-heading+.list-group .list-group-item:first-child { - border-top-width: 0 + border-top-width: 0 } .list-group+.panel-footer { - border-top-width: 0 + border-top-width: 0 } .panel>.table, .panel>.table-responsive>.table, .panel>.panel-collapse>.table { - margin-bottom: 0 + margin-bottom: 0 } .panel>.table caption, .panel>.table-responsive>.table caption, .panel>.panel-collapse>.table caption { - padding-left: 15px; - padding-right: 15px + padding-left: 15px; + padding-right: 15px } .panel>.table:first-child, .panel>.table-responsive:first-child>.table:first-child { - border-top-right-radius: -1; - border-top-left-radius: -1 + border-top-right-radius: -1; + border-top-left-radius: -1 } .panel>.table:first-child>thead:first-child>tr:first-child, .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child, .panel>.table:first-child>tbody:first-child>tr:first-child, .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child { - border-top-left-radius: -1; - border-top-right-radius: -1 + border-top-left-radius: -1; + border-top-right-radius: -1 } .panel>.table:first-child>thead:first-child>tr:first-child td:first-child, .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child, .panel>.table:first-child>tbody:first-child>tr:first-child td:first-child, .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child, .panel>.table:first-child>thead:first-child>tr:first-child th:first-child, .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child, .panel>.table:first-child>tbody:first-child>tr:first-child th:first-child, .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child { - border-top-left-radius: -1 + border-top-left-radius: -1 } .panel>.table:first-child>thead:first-child>tr:first-child td:last-child, .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child, .panel>.table:first-child>tbody:first-child>tr:first-child td:last-child, .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child, .panel>.table:first-child>thead:first-child>tr:first-child th:last-child, .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child, .panel>.table:first-child>tbody:first-child>tr:first-child th:last-child, .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child { - border-top-right-radius: -1 + border-top-right-radius: -1 } .panel>.table:last-child, .panel>.table-responsive:last-child>.table:last-child { - border-bottom-right-radius: -1; - border-bottom-left-radius: -1 + border-bottom-right-radius: -1; + border-bottom-left-radius: -1 } .panel>.table:last-child>tbody:last-child>tr:last-child, .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child, .panel>.table:last-child>tfoot:last-child>tr:last-child, .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child { - border-bottom-left-radius: -1; - border-bottom-right-radius: -1 + border-bottom-left-radius: -1; + border-bottom-right-radius: -1 } .panel>.table:last-child>tbody:last-child>tr:last-child td:first-child, .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child, .panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child, .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child, .panel>.table:last-child>tbody:last-child>tr:last-child th:first-child, .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child, .panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child, .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child { - border-bottom-left-radius: -1 + border-bottom-left-radius: -1 } .panel>.table:last-child>tbody:last-child>tr:last-child td:last-child, .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child, .panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child, .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child, .panel>.table:last-child>tbody:last-child>tr:last-child th:last-child, .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child, .panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child, .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child { - border-bottom-right-radius: -1 + border-bottom-right-radius: -1 } .panel>.panel-body+.table, .panel>.panel-body+.table-responsive, .panel>.table+.panel-body, .panel>.table-responsive+.panel-body { - border-top: 1px solid #444 + border-top: 1px solid #444 } .panel>.table>tbody:first-child>tr:first-child th, .panel>.table>tbody:first-child>tr:first-child td { - border-top: 0 + border-top: 0 } .panel>.table-bordered, .panel>.table-responsive>.table-bordered { - border: 0 + border: 0 } .panel>.table-bordered>thead>tr>th:first-child, .panel>.table-responsive>.table-bordered>thead>tr>th:first-child, .panel>.table-bordered>tbody>tr>th:first-child, .panel>.table-responsive>.table-bordered>tbody>tr>th:first-child, .panel>.table-bordered>tfoot>tr>th:first-child, .panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child, .panel>.table-bordered>thead>tr>td:first-child, .panel>.table-responsive>.table-bordered>thead>tr>td:first-child, .panel>.table-bordered>tbody>tr>td:first-child, .panel>.table-responsive>.table-bordered>tbody>tr>td:first-child, .panel>.table-bordered>tfoot>tr>td:first-child, .panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child { - border-left: 0 + border-left: 0 } .panel>.table-bordered>thead>tr>th:last-child, .panel>.table-responsive>.table-bordered>thead>tr>th:last-child, .panel>.table-bordered>tbody>tr>th:last-child, .panel>.table-responsive>.table-bordered>tbody>tr>th:last-child, .panel>.table-bordered>tfoot>tr>th:last-child, .panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child, .panel>.table-bordered>thead>tr>td:last-child, .panel>.table-responsive>.table-bordered>thead>tr>td:last-child, .panel>.table-bordered>tbody>tr>td:last-child, .panel>.table-responsive>.table-bordered>tbody>tr>td:last-child, .panel>.table-bordered>tfoot>tr>td:last-child, .panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child { - border-right: 0 + border-right: 0 } .panel>.table-bordered>thead>tr:first-child>td, .panel>.table-responsive>.table-bordered>thead>tr:first-child>td, .panel>.table-bordered>tbody>tr:first-child>td, .panel>.table-responsive>.table-bordered>tbody>tr:first-child>td, .panel>.table-bordered>thead>tr:first-child>th, .panel>.table-responsive>.table-bordered>thead>tr:first-child>th, .panel>.table-bordered>tbody>tr:first-child>th, .panel>.table-responsive>.table-bordered>tbody>tr:first-child>th { - border-bottom: 0 + border-bottom: 0 } .panel>.table-bordered>tbody>tr:last-child>td, .panel>.table-responsive>.table-bordered>tbody>tr:last-child>td, .panel>.table-bordered>tfoot>tr:last-child>td, .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td, .panel>.table-bordered>tbody>tr:last-child>th, .panel>.table-responsive>.table-bordered>tbody>tr:last-child>th, .panel>.table-bordered>tfoot>tr:last-child>th, .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th { - border-bottom: 0 + border-bottom: 0 } .panel>.table-responsive { - border: 0; - margin-bottom: 0 + border: 0; + margin-bottom: 0 } .panel-group { - margin-bottom: 20px + margin-bottom: 20px } .panel-group .panel { - margin-bottom: 0; - border-radius: 0 + margin-bottom: 0; + border-radius: 0 } .panel-group .panel+.panel { - margin-top: 5px + margin-top: 5px } .panel-group .panel-heading { - border-bottom: 0 + border-bottom: 0 } .panel-group .panel-heading+.panel-collapse>.panel-body, .panel-group .panel-heading+.panel-collapse>.list-group { - border-top: 1px solid #3c3c3c + border-top: 1px solid #3c3c3c } .panel-group .panel-footer { - border-top: 0 + border-top: 0 } .panel-group .panel-footer+.panel-collapse .panel-body { - border-bottom: 1px solid #3c3c3c + border-bottom: 1px solid #3c3c3c } .panel-default { - border-color: #3c3c3c + border-color: #3c3c3c } .panel-default>.panel-heading { - color: #222; - background-color: #080808; - border-color: #3c3c3c + color: #222; + background-color: #080808; + border-color: #3c3c3c } .panel-default>.panel-heading+.panel-collapse>.panel-body { - border-top-color: #3c3c3c + border-top-color: #3c3c3c } .panel-default>.panel-heading .badge { - color: #080808; - background-color: #222 + color: #080808; + background-color: #222 } .panel-default>.panel-footer+.panel-collapse>.panel-body { - border-bottom-color: #3c3c3c + border-bottom-color: #3c3c3c } .panel-primary { - border-color: #0f0 + border-color: #0f0 } .panel-primary>.panel-heading { - color: #222; - background-color: #0f0; - border-color: #0f0 + color: #222; + background-color: #0f0; + border-color: #0f0 } .panel-primary>.panel-heading+.panel-collapse>.panel-body { - border-top-color: #0f0 + border-top-color: #0f0 } .panel-primary>.panel-heading .badge { - color: #0f0; - background-color: #222 + color: #0f0; + background-color: #222 } .panel-primary>.panel-footer+.panel-collapse>.panel-body { - border-bottom-color: #0f0 + border-bottom-color: #0f0 } .panel-success { - border-color: #2f2f2f + border-color: #2f2f2f } .panel-success>.panel-heading { - color: #0d0; - background-color: #3c3c3c; - border-color: #2f2f2f + color: #0d0; + background-color: #3c3c3c; + border-color: #2f2f2f } .panel-success>.panel-heading+.panel-collapse>.panel-body { - border-top-color: #2f2f2f + border-top-color: #2f2f2f } .panel-success>.panel-heading .badge { - color: #3c3c3c; - background-color: #0d0 + color: #3c3c3c; + background-color: #0d0 } .panel-success>.panel-footer+.panel-collapse>.panel-body { - border-bottom-color: #2f2f2f + border-bottom-color: #2f2f2f } .panel-info { - border-color: #2a2a2a + border-color: #2a2a2a } .panel-info>.panel-heading { - color: #7d8cff; - background-color: #3c3c3c; - border-color: #2a2a2a + color: #7d8cff; + background-color: #3c3c3c; + border-color: #2a2a2a } .panel-info>.panel-heading+.panel-collapse>.panel-body { - border-top-color: #2a2a2a + border-top-color: #2a2a2a } .panel-info>.panel-heading .badge { - color: #3c3c3c; - background-color: #7d8cff + color: #3c3c3c; + background-color: #7d8cff } .panel-info>.panel-footer+.panel-collapse>.panel-body { - border-bottom-color: #2a2a2a + border-bottom-color: #2a2a2a } .panel-warning { - border-color: #343434 + border-color: #343434 } .panel-warning>.panel-heading { - color: #f4ff00; - background-color: #3c3c3c; - border-color: #343434 + color: #f4ff00; + background-color: #3c3c3c; + border-color: #343434 } .panel-warning>.panel-heading+.panel-collapse>.panel-body { - border-top-color: #343434 + border-top-color: #343434 } .panel-warning>.panel-heading .badge { - color: #3c3c3c; - background-color: #f4ff00 + color: #3c3c3c; + background-color: #f4ff00 } .panel-warning>.panel-footer+.panel-collapse>.panel-body { - border-bottom-color: #343434 + border-bottom-color: #343434 } .panel-danger { - border-color: #343434 + border-color: #343434 } .panel-danger>.panel-heading { - color: #d00; - background-color: #3c3c3c; - border-color: #343434 + color: #d00; + background-color: #3c3c3c; + border-color: #343434 } .panel-danger>.panel-heading+.panel-collapse>.panel-body { - border-top-color: #343434 + border-top-color: #343434 } .panel-danger>.panel-heading .badge { - color: #3c3c3c; - background-color: #d00 + color: #3c3c3c; + background-color: #d00 } .panel-danger>.panel-footer+.panel-collapse>.panel-body { - border-bottom-color: #343434 + border-bottom-color: #343434 } .embed-responsive { - position: relative; - display: block; - height: 0; - padding: 0; - overflow: hidden + position: relative; + display: block; + height: 0; + padding: 0; + overflow: hidden } .embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object, .embed-responsive video { - position: absolute; - top: 0; - left: 0; - bottom: 0; - height: 100%; - width: 100%; - border: 0 + position: absolute; + top: 0; + left: 0; + bottom: 0; + height: 100%; + width: 100%; + border: 0 } .embed-responsive-16by9 { - padding-bottom: 56.25% + padding-bottom: 56.25% } .embed-responsive-4by3 { - padding-bottom: 75% + padding-bottom: 75% } .well { - min-height: 20px; - padding: 19px; - margin-bottom: 20px; - background-color: #080808; - border: 1px solid #000; - border-radius: 0; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05) + min-height: 20px; + padding: 19px; + margin-bottom: 20px; + background-color: #080808; + border: 1px solid #000; + border-radius: 0; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05) } .well blockquote { - border-color: #ddd; - border-color: rgba(0, 0, 0, 0.15) + border-color: #ddd; + border-color: rgba(0, 0, 0, 0.15) } .well-lg { - padding: 24px; - border-radius: 0 + padding: 24px; + border-radius: 0 } .well-sm { - padding: 9px; - border-radius: 0 + padding: 9px; + border-radius: 0 } .close { - float: right; - font-size: 21px; - font-weight: bold; - line-height: 1; - color: #000; - text-shadow: 0 1px 0 #fff; - opacity: .2; - filter: alpha(opacity=20) + float: right; + font-size: 21px; + font-weight: bold; + line-height: 1; + color: #000; + text-shadow: 0 1px 0 #fff; + opacity: .2; + filter: alpha(opacity=20) } .close:hover, .close:focus { - color: #000; - text-decoration: none; - cursor: pointer; - opacity: .5; - filter: alpha(opacity=50) + color: #000; + text-decoration: none; + cursor: pointer; + opacity: .5; + filter: alpha(opacity=50) } button.close { - padding: 0; - cursor: pointer; - background: transparent; - border: 0; - appearance: none + padding: 0; + cursor: pointer; + background: transparent; + border: 0; + appearance: none } .modal-open { - overflow: hidden + overflow: hidden } .modal { - display: none; - overflow: hidden; - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1050; - -webkit-overflow-scrolling: touch; - outline: 0 + display: none; + overflow: hidden; + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1050; + -webkit-overflow-scrolling: touch; + outline: 0 } .modal.fade .modal-dialog { - transform: translate(0, -25%); - transition: transform 0.3s ease-out + transform: translate(0, -25%); + transition: transform 0.3s ease-out } .modal.in .modal-dialog { - transform: translate(0, 0) + transform: translate(0, 0) } .modal-open .modal { - overflow-x: hidden; - overflow-y: auto + overflow-x: hidden; + overflow-y: auto } .modal-dialog { - position: relative; - width: auto; - margin: 10px + position: relative; + width: auto; + margin: 10px } .modal-content { - position: relative; - background-color: #3c3c3c; - border: 1px solid #999; - border: 1px solid transparent; - border-radius: 0; - box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); - background-clip: padding-box; - outline: 0 + position: relative; + background-color: #3c3c3c; + border: 1px solid #999; + border: 1px solid transparent; + border-radius: 0; + box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); + background-clip: padding-box; + outline: 0 } .modal-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1040; - background-color: #222 + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1040; + background-color: #222 } .modal-backdrop.fade { - opacity: 0; - filter: alpha(opacity=0) + opacity: 0; + filter: alpha(opacity=0) } .modal-backdrop.in { - opacity: .5; - filter: alpha(opacity=50) + opacity: .5; + filter: alpha(opacity=50) } .modal-header { - padding: 15px; - border-bottom: 1px solid #3c3c3c; - min-height: 16.428571429px + padding: 15px; + border-bottom: 1px solid #3c3c3c; + min-height: 16.428571429px } .modal-header .close { - margin-top: -2px + margin-top: -2px } .modal-title { - margin: 0; - line-height: 1.428571429 + margin: 0; + line-height: 1.428571429 } .modal-body { - position: relative; - padding: 15px + position: relative; + padding: 15px } .modal-footer { - padding: 15px; - text-align: right; - border-top: 1px solid #3c3c3c + padding: 15px; + text-align: right; + border-top: 1px solid #3c3c3c } .modal-footer .btn+.btn { - margin-left: 5px; - margin-bottom: 0 + margin-left: 5px; + margin-bottom: 0 } .modal-footer .btn-group .btn+.btn { - margin-left: -1px + margin-left: -1px } .modal-footer .btn-block+.btn-block { - margin-left: 0 + margin-left: 0 } .modal-scrollbar-measure { - position: absolute; - top: -9999px; - width: 50px; - height: 50px; - overflow: scroll + position: absolute; + top: -9999px; + width: 50px; + height: 50px; + overflow: scroll } @media (min-width:768px) { - .modal-dialog { - width: 600px; - margin: 30px auto - } + .modal-dialog { + width: 600px; + margin: 30px auto + } - .modal-content { - box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5) - } + .modal-content { + box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5) + } - .modal-sm { - width: 300px - } + .modal-sm { + width: 300px + } } @media (min-width:992px) { - .modal-lg { - width: 900px - } + .modal-lg { + width: 900px + } } .tooltip { - position: absolute; - z-index: 1070; - display: block; - font-family: Monospace; - font-size: 12px; - font-weight: normal; - line-height: 1.4; - opacity: 0; - filter: alpha(opacity=0) + position: absolute; + z-index: 1070; + display: block; + font-family: Monospace; + font-size: 12px; + font-weight: normal; + line-height: 1.4; + opacity: 0; + filter: alpha(opacity=0) } .tooltip.in { - opacity: .9; - filter: alpha(opacity=90) + opacity: .9; + filter: alpha(opacity=90) } .tooltip.top { - margin-top: -3px; - padding: 5px 0 + margin-top: -3px; + padding: 5px 0 } .tooltip.right { - margin-left: 3px; - padding: 0 5px + margin-left: 3px; + padding: 0 5px } .tooltip.bottom { - margin-top: 3px; - padding: 5px 0 + margin-top: 3px; + padding: 5px 0 } .tooltip.left { - margin-left: -3px; - padding: 0 5px + margin-left: -3px; + padding: 0 5px } .tooltip-inner { - max-width: 200px; - padding: 3px 8px; - color: #fff; - text-align: center; - text-decoration: none; - background-color: #000; - border-radius: 0 + max-width: 200px; + padding: 3px 8px; + color: #fff; + text-align: center; + text-decoration: none; + background-color: #000; + border-radius: 0 } .tooltip-arrow { - position: absolute; - width: 0; - height: 0; - border-color: transparent; - border-style: solid + position: absolute; + width: 0; + height: 0; + border-color: transparent; + border-style: solid } .tooltip.top .tooltip-arrow { - bottom: 0; - left: 50%; - margin-left: -5px; - border-width: 5px 5px 0; - border-top-color: #000 + bottom: 0; + left: 50%; + margin-left: -5px; + border-width: 5px 5px 0; + border-top-color: #000 } .tooltip.top-left .tooltip-arrow { - bottom: 0; - right: 5px; - margin-bottom: -5px; - border-width: 5px 5px 0; - border-top-color: #000 + bottom: 0; + right: 5px; + margin-bottom: -5px; + border-width: 5px 5px 0; + border-top-color: #000 } .tooltip.top-right .tooltip-arrow { - bottom: 0; - left: 5px; - margin-bottom: -5px; - border-width: 5px 5px 0; - border-top-color: #000 + bottom: 0; + left: 5px; + margin-bottom: -5px; + border-width: 5px 5px 0; + border-top-color: #000 } .tooltip.right .tooltip-arrow { - top: 50%; - left: 0; - margin-top: -5px; - border-width: 5px 5px 5px 0; - border-right-color: #000 + top: 50%; + left: 0; + margin-top: -5px; + border-width: 5px 5px 5px 0; + border-right-color: #000 } .tooltip.left .tooltip-arrow { - top: 50%; - right: 0; - margin-top: -5px; - border-width: 5px 0 5px 5px; - border-left-color: #000 + top: 50%; + right: 0; + margin-top: -5px; + border-width: 5px 0 5px 5px; + border-left-color: #000 } .tooltip.bottom .tooltip-arrow { - top: 0; - left: 50%; - margin-left: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000 + top: 0; + left: 50%; + margin-left: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000 } .tooltip.bottom-left .tooltip-arrow { - top: 0; - right: 5px; - margin-top: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000 + top: 0; + right: 5px; + margin-top: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000 } .tooltip.bottom-right .tooltip-arrow { - top: 0; - left: 5px; - margin-top: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000 + top: 0; + left: 5px; + margin-top: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000 } .popover { - position: absolute; - top: 0; - left: 0; - z-index: 1060; - display: none; - max-width: 276px; - padding: 1px; - font-family: Monospace; - font-size: 14px; - font-weight: normal; - line-height: 1.428571429; - text-align: left; - background-color: #3c3c3c; - background-clip: padding-box; - border: 1px solid #333; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 0; - box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); - white-space: normal + position: absolute; + top: 0; + left: 0; + z-index: 1060; + display: none; + max-width: 276px; + padding: 1px; + font-family: Monospace; + font-size: 14px; + font-weight: normal; + line-height: 1.428571429; + text-align: left; + background-color: #3c3c3c; + background-clip: padding-box; + border: 1px solid #333; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0; + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + white-space: normal } .popover.top { - margin-top: -10px + margin-top: -10px } .popover.right { - margin-left: 10px + margin-left: 10px } .popover.bottom { - margin-top: 10px + margin-top: 10px } .popover.left { - margin-left: -10px + margin-left: -10px } .popover-title { - margin: 0; - padding: 8px 14px; - font-size: 14px; - background-color: #343434; - border-bottom: 1px solid #272727; - border-radius: -1 -1 0 0 + margin: 0; + padding: 8px 14px; + font-size: 14px; + background-color: #343434; + border-bottom: 1px solid #272727; + border-radius: -1 -1 0 0 } .popover-content { - padding: 9px 14px + padding: 9px 14px } .popover>.arrow, .popover>.arrow:after { - position: absolute; - display: block; - width: 0; - height: 0; - border-color: transparent; - border-style: solid + position: absolute; + display: block; + width: 0; + height: 0; + border-color: transparent; + border-style: solid } .popover>.arrow { - border-width: 11px + border-width: 11px } .popover>.arrow:after { - border-width: 10px; - content: "" + border-width: 10px; + content: "" } .popover.top>.arrow { - left: 50%; - margin-left: -11px; - border-bottom-width: 0; - border-top-color: #999; - border-top-color: rgba(0, 0, 0, 0.25); - bottom: -11px + left: 50%; + margin-left: -11px; + border-bottom-width: 0; + border-top-color: #999; + border-top-color: rgba(0, 0, 0, 0.25); + bottom: -11px } .popover.top>.arrow:after { - content: " "; - bottom: 1px; - margin-left: -10px; - border-bottom-width: 0; - border-top-color: #3c3c3c + content: " "; + bottom: 1px; + margin-left: -10px; + border-bottom-width: 0; + border-top-color: #3c3c3c } .popover.right>.arrow { - top: 50%; - left: -11px; - margin-top: -11px; - border-left-width: 0; - border-right-color: #999; - border-right-color: rgba(0, 0, 0, 0.25) + top: 50%; + left: -11px; + margin-top: -11px; + border-left-width: 0; + border-right-color: #999; + border-right-color: rgba(0, 0, 0, 0.25) } .popover.right>.arrow:after { - content: " "; - left: 1px; - bottom: -10px; - border-left-width: 0; - border-right-color: #3c3c3c + content: " "; + left: 1px; + bottom: -10px; + border-left-width: 0; + border-right-color: #3c3c3c } .popover.bottom>.arrow { - left: 50%; - margin-left: -11px; - border-top-width: 0; - border-bottom-color: #999; - border-bottom-color: rgba(0, 0, 0, 0.25); - top: -11px + left: 50%; + margin-left: -11px; + border-top-width: 0; + border-bottom-color: #999; + border-bottom-color: rgba(0, 0, 0, 0.25); + top: -11px } .popover.bottom>.arrow:after { - content: " "; - top: 1px; - margin-left: -10px; - border-top-width: 0; - border-bottom-color: #3c3c3c + content: " "; + top: 1px; + margin-left: -10px; + border-top-width: 0; + border-bottom-color: #3c3c3c } .popover.left>.arrow { - top: 50%; - right: -11px; - margin-top: -11px; - border-right-width: 0; - border-left-color: #999; - border-left-color: rgba(0, 0, 0, 0.25) + top: 50%; + right: -11px; + margin-top: -11px; + border-right-width: 0; + border-left-color: #999; + border-left-color: rgba(0, 0, 0, 0.25) } .popover.left>.arrow:after { - content: " "; - right: 1px; - border-right-width: 0; - border-left-color: #3c3c3c; - bottom: -10px + content: " "; + right: 1px; + border-right-width: 0; + border-left-color: #3c3c3c; + bottom: -10px } .carousel { - position: relative + position: relative } .carousel-inner { - position: relative; - overflow: hidden; - width: 100% + position: relative; + overflow: hidden; + width: 100% } .carousel-inner>.item { - display: none; - position: relative; - transition: .6s ease-in-out left + display: none; + position: relative; + transition: .6s ease-in-out left } .carousel-inner>.item>img, .carousel-inner>.item>a>img { - line-height: 1 + line-height: 1 } @media all and (transform-3d), (-webkit-transform-3d) { - .carousel-inner>.item { - transition: transform 0.6s ease-in-out; - backface-visibility: hidden; - perspective: 1000 - } + .carousel-inner>.item { + transition: transform 0.6s ease-in-out; + backface-visibility: hidden; + perspective: 1000 + } - .carousel-inner>.item.next, .carousel-inner>.item.active.right { - transform: translate3d(100%, 0, 0); - left: 0 - } + .carousel-inner>.item.next, .carousel-inner>.item.active.right { + transform: translate3d(100%, 0, 0); + left: 0 + } - .carousel-inner>.item.prev, .carousel-inner>.item.active.left { - transform: translate3d(-100%, 0, 0); - left: 0 - } + .carousel-inner>.item.prev, .carousel-inner>.item.active.left { + transform: translate3d(-100%, 0, 0); + left: 0 + } - .carousel-inner>.item.next.left, .carousel-inner>.item.prev.right, .carousel-inner>.item.active { - transform: translate3d(0, 0, 0); - left: 0 - } + .carousel-inner>.item.next.left, .carousel-inner>.item.prev.right, .carousel-inner>.item.active { + transform: translate3d(0, 0, 0); + left: 0 + } } .carousel-inner>.active, .carousel-inner>.next, .carousel-inner>.prev { - display: block + display: block } .carousel-inner>.active { - left: 0 + left: 0 } .carousel-inner>.next, .carousel-inner>.prev { - position: absolute; - top: 0; - width: 100% + position: absolute; + top: 0; + width: 100% } .carousel-inner>.next { - left: 100% + left: 100% } .carousel-inner>.prev { - left: -100% + left: -100% } .carousel-inner>.next.left, .carousel-inner>.prev.right { - left: 0 + left: 0 } .carousel-inner>.active.left { - left: -100% + left: -100% } .carousel-inner>.active.right { - left: 100% + left: 100% } .carousel-control { - position: absolute; - top: 0; - left: 0; - bottom: 0; - width: 15%; - opacity: .5; - filter: alpha(opacity=50); - font-size: 20px; - color: #fff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6) + position: absolute; + top: 0; + left: 0; + bottom: 0; + width: 15%; + opacity: .5; + filter: alpha(opacity=50); + font-size: 20px; + color: #fff; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6) } .carousel-control.left { - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1) + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1) } .carousel-control.right { - left: auto; - right: 0; - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1) + left: auto; + right: 0; + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1) } .carousel-control:hover, .carousel-control:focus { - outline: 0; - color: #fff; - text-decoration: none; - opacity: .9; - filter: alpha(opacity=90) + outline: 0; + color: #fff; + text-decoration: none; + opacity: .9; + filter: alpha(opacity=90) } .carousel-control .icon-prev, .carousel-control .icon-next, .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right { - position: absolute; - top: 50%; - z-index: 5; - display: inline-block + position: absolute; + top: 50%; + z-index: 5; + display: inline-block } .carousel-control .icon-prev, .carousel-control .glyphicon-chevron-left { - left: 50%; - margin-left: -10px + left: 50%; + margin-left: -10px } .carousel-control .icon-next, .carousel-control .glyphicon-chevron-right { - right: 50%; - margin-right: -10px + right: 50%; + margin-right: -10px } .carousel-control .icon-prev, .carousel-control .icon-next { - width: 20px; - height: 20px; - margin-top: -10px; - line-height: 1; - font-family: serif + width: 20px; + height: 20px; + margin-top: -10px; + line-height: 1; + font-family: serif } .carousel-control .icon-prev:before { - content: '\2039' + content: '\2039' } .carousel-control .icon-next:before { - content: '\203a' + content: '\203a' } .carousel-indicators { - position: absolute; - bottom: 10px; - left: 50%; - z-index: 15; - width: 60%; - margin-left: -30%; - padding-left: 0; - list-style: none; - text-align: center + position: absolute; + bottom: 10px; + left: 50%; + z-index: 15; + width: 60%; + margin-left: -30%; + padding-left: 0; + list-style: none; + text-align: center } .carousel-indicators li { - display: inline-block; - width: 10px; - height: 10px; - margin: 1px; - text-indent: -999px; - border: 1px solid #fff; - border-radius: 10px; - cursor: pointer; - background-color: #000 \9; - background-color: rgba(0, 0, 0, 0) + display: inline-block; + width: 10px; + height: 10px; + margin: 1px; + text-indent: -999px; + border: 1px solid #fff; + border-radius: 10px; + cursor: pointer; + background-color: #000 \9; + background-color: rgba(0, 0, 0, 0) } .carousel-indicators .active { - margin: 0; - width: 12px; - height: 12px; - background-color: #fff + margin: 0; + width: 12px; + height: 12px; + background-color: #fff } .carousel-caption { - position: absolute; - left: 15%; - right: 15%; - bottom: 20px; - z-index: 10; - padding-top: 20px; - padding-bottom: 20px; - color: #fff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6) + position: absolute; + left: 15%; + right: 15%; + bottom: 20px; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #fff; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6) } .carousel-caption .btn { - text-shadow: none + text-shadow: none } @media screen and (min-width:768px) { - .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next { - width: 30px; - height: 30px; - margin-top: -15px; - font-size: 30px - } + .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next { + width: 30px; + height: 30px; + margin-top: -15px; + font-size: 30px + } - .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev { - margin-left: -15px - } + .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev { + margin-left: -15px + } - .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next { - margin-right: -15px - } + .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next { + margin-right: -15px + } - .carousel-caption { - left: 20%; - right: 20%; - padding-bottom: 30px - } + .carousel-caption { + left: 20%; + right: 20%; + padding-bottom: 30px + } - .carousel-indicators { - bottom: 20px - } + .carousel-indicators { + bottom: 20px + } } .clearfix:before, .clearfix:after, .dl-horizontal dd:before, .dl-horizontal dd:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after, .form-horizontal .form-group:before, .form-horizontal .form-group:after, .btn-toolbar:before, .btn-toolbar:after, .btn-group-vertical>.btn-group:before, .btn-group-vertical>.btn-group:after, .nav:before, .nav:after, .navbar:before, .navbar:after, .navbar-header:before, .navbar-header:after, .navbar-collapse:before, .navbar-collapse:after, .pager:before, .pager:after, .panel-body:before, .panel-body:after, .modal-footer:before, .modal-footer:after { - content: " "; - display: table + content: " "; + display: table } .clearfix:after, .dl-horizontal dd:after, .container:after, .container-fluid:after, .row:after, .form-horizontal .form-group:after, .btn-toolbar:after, .btn-group-vertical>.btn-group:after, .nav:after, .navbar:after, .navbar-header:after, .navbar-collapse:after, .pager:after, .panel-body:after, .modal-footer:after { - clear: both + clear: both } .center-block { - display: block; - margin-left: auto; - margin-right: auto + display: block; + margin-left: auto; + margin-right: auto } .pull-right { - float: right + float: right } .pull-left { - float: left + float: left } .hide { - display: none + display: none } .show { - display: block + display: block } .invisible { - visibility: hidden + visibility: hidden } .text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0 + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0 } .hidden { - display: none + display: none } .affix { - position: fixed + position: fixed } .visible-xs, .visible-sm, .visible-md, .visible-lg { - display: none + display: none } .visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block { + display: none +} + +@media (max-width:767px) { + .visible-xs { + display: block + } + + table.visible-xs { + display: table + } + + tr.visible-xs { + display: table-row + } + + th.visible-xs, td.visible-xs { + display: table-cell + } +} + +@media (max-width:767px) { + .visible-xs-block { + display: block + } +} + +@media (max-width:767px) { + .visible-xs-inline { + display: inline + } +} + +@media (max-width:767px) { + .visible-xs-inline-block { + display: inline-block + } +} + +@media (min-width:768px) and (max-width:991px) { + .visible-sm { + display: block + } + + table.visible-sm { + display: table + } + + tr.visible-sm { + display: table-row + } + + th.visible-sm, td.visible-sm { + display: table-cell + } +} + +@media (min-width:768px) and (max-width:991px) { + .visible-sm-block { + display: block + } +} + +@media (min-width:768px) and (max-width:991px) { + .visible-sm-inline { + display: inline + } +} + +@media (min-width:768px) and (max-width:991px) { + .visible-sm-inline-block { + display: inline-block + } +} + +@media (min-width:992px) and (max-width:1199px) { + .visible-md { + display: block + } + + table.visible-md { + display: table + } + + tr.visible-md { + display: table-row + } + + th.visible-md, td.visible-md { + display: table-cell + } +} + +@media (min-width:992px) and (max-width:1199px) { + .visible-md-block { + display: block + } +} + +@media (min-width:992px) and (max-width:1199px) { + .visible-md-inline { + display: inline + } +} + +@media (min-width:992px) and (max-width:1199px) { + .visible-md-inline-block { + display: inline-block + } +} + +@media (min-width:1200px) { + .visible-lg { + display: block + } + + table.visible-lg { + display: table + } + + tr.visible-lg { + display: table-row + } + + th.visible-lg, td.visible-lg { + display: table-cell + } +} + +@media (min-width:1200px) { + .visible-lg-block { + display: block + } +} + +@media (min-width:1200px) { + .visible-lg-inline { + display: inline + } +} + +@media (min-width:1200px) { + .visible-lg-inline-block { + display: inline-block + } +} + +@media (max-width:767px) { + .hidden-xs { display: none -} - -@media (max-width:767px) { - .visible-xs { - display: block - } - - table.visible-xs { - display: table - } - - tr.visible-xs { - display: table-row - } - - th.visible-xs, td.visible-xs { - display: table-cell - } -} - -@media (max-width:767px) { - .visible-xs-block { - display: block - } -} - -@media (max-width:767px) { - .visible-xs-inline { - display: inline - } -} - -@media (max-width:767px) { - .visible-xs-inline-block { - display: inline-block - } + } } @media (min-width:768px) and (max-width:991px) { - .visible-sm { - display: block - } - - table.visible-sm { - display: table - } - - tr.visible-sm { - display: table-row - } - - th.visible-sm, td.visible-sm { - display: table-cell - } -} - -@media (min-width:768px) and (max-width:991px) { - .visible-sm-block { - display: block - } -} - -@media (min-width:768px) and (max-width:991px) { - .visible-sm-inline { - display: inline - } -} - -@media (min-width:768px) and (max-width:991px) { - .visible-sm-inline-block { - display: inline-block - } + .hidden-sm { + display: none + } } @media (min-width:992px) and (max-width:1199px) { - .visible-md { - display: block - } - - table.visible-md { - display: table - } - - tr.visible-md { - display: table-row - } - - th.visible-md, td.visible-md { - display: table-cell - } -} - -@media (min-width:992px) and (max-width:1199px) { - .visible-md-block { - display: block - } -} - -@media (min-width:992px) and (max-width:1199px) { - .visible-md-inline { - display: inline - } -} - -@media (min-width:992px) and (max-width:1199px) { - .visible-md-inline-block { - display: inline-block - } + .hidden-md { + display: none + } } @media (min-width:1200px) { - .visible-lg { - display: block - } - - table.visible-lg { - display: table - } - - tr.visible-lg { - display: table-row - } - - th.visible-lg, td.visible-lg { - display: table-cell - } -} - -@media (min-width:1200px) { - .visible-lg-block { - display: block - } -} - -@media (min-width:1200px) { - .visible-lg-inline { - display: inline - } -} - -@media (min-width:1200px) { - .visible-lg-inline-block { - display: inline-block - } -} - -@media (max-width:767px) { - .hidden-xs { - display: none - } -} - -@media (min-width:768px) and (max-width:991px) { - .hidden-sm { - display: none - } -} - -@media (min-width:992px) and (max-width:1199px) { - .hidden-md { - display: none - } -} - -@media (min-width:1200px) { - .hidden-lg { - display: none - } + .hidden-lg { + display: none + } } .visible-print { - display: none + display: none } @media print { - .visible-print { - display: block - } + .visible-print { + display: block + } - table.visible-print { - display: table - } + table.visible-print { + display: table + } - tr.visible-print { - display: table-row - } + tr.visible-print { + display: table-row + } - th.visible-print, td.visible-print { - display: table-cell - } + th.visible-print, td.visible-print { + display: table-cell + } } .visible-print-block { - display: none + display: none } @media print { - .visible-print-block { - display: block - } + .visible-print-block { + display: block + } } .visible-print-inline { - display: none + display: none } @media print { - .visible-print-inline { - display: inline - } + .visible-print-inline { + display: inline + } } .visible-print-inline-block { + display: none +} + +@media print { + .visible-print-inline-block { + display: inline-block + } +} + +@media print { + .hidden-print { display: none -} - -@media print { - .visible-print-inline-block { - display: inline-block - } -} - -@media print { - .hidden-print { - display: none - } + } } diff --git a/themes/hipster-gray.css b/themes/hipster-gray.css index 65330431..c07c6a75 100644 --- a/themes/hipster-gray.css +++ b/themes/hipster-gray.css @@ -1,283 +1,283 @@ @import url(https://fonts.googleapis.com/css?family=Merriweather:400,300); * { - margin: 0; - padding: 0; - transition: all 0.2s ease-out; + margin: 0; + padding: 0; + transition: all 0.2s ease-out; } body { - background: #aaa; - font-family: Merriweather, "Palatino Linotype", Georgia, serif; - font-size: 21pt; - line-height: 170%; - text-rendering: optimizeLegibility; - -webkit-font-smoothing: antialiased; - overflow-y: auto; - padding: 20pt; + background: #aaa; + font-family: Merriweather, "Palatino Linotype", Georgia, serif; + font-size: 21pt; + line-height: 170%; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + overflow-y: auto; + padding: 20pt; } a:link, a:visited { - color: #000; - text-decoration: none; - border-bottom: 1pt solid #aaa; + color: #000; + text-decoration: none; + border-bottom: 1pt solid #aaa; } a:hover, a:focus, a:active { - background: #aaa; - text-decoration: none; + background: #aaa; + text-decoration: none; } h1 { - font-size: 64pt; - font-weight: 400; - line-height: 100%; + font-size: 64pt; + font-weight: 400; + line-height: 100%; } article, footer { - padding: 50pt 50pt 20pt 20%; - background: #ccc; + padding: 50pt 50pt 20pt 20%; + background: #ccc; } article p { - margin-top: 40pt; + margin-top: 40pt; } article p:first-of-type { - margin-top: 20pt; - font-size: 14pt; - line-height: 150%; + margin-top: 20pt; + font-size: 14pt; + line-height: 150%; } article :nth-child(4), article :nth-child(4):before { - font-size: 18pt; - font-weight: 300; + font-size: 18pt; + font-weight: 300; } article :nth-child(4):before { - content: "*"; - margin-left: -20pt; - float: left; + content: "*"; + margin-left: -20pt; + float: left; } article p:last-child { - border: 20pt solid #c4c4c4; - font-size: 17pt; - line-height: 180%; - margin: 40pt; - color: #888; - padding: 20pt; + border: 20pt solid #c4c4c4; + font-size: 17pt; + line-height: 180%; + margin: 40pt; + color: #888; + padding: 20pt; } footer { - padding-top: 0; - font-size: 14pt; - line-height: 100%; - margin-top: -1pt; + padding-top: 0; + font-size: 14pt; + line-height: 100%; + margin-top: -1pt; } footer p { - background: url("hipster-gray-octocat.png") 0 0 no-repeat; - margin-left: -20pt; - padding-left: 20pt; + background: url("hipster-gray-octocat.png") 0 0 no-repeat; + margin-left: -20pt; + padding-left: 20pt; } footer a:link, footer a:visited { - border-bottom-color: #bbb; - color: #888; + border-bottom-color: #bbb; + color: #888; } footer a:hover, footer a:focus, footer a:active { - color: #000; + color: #000; } @media only screen and (max-width: 1360px) { - article, footer { - padding-left: 50pt; - } + article, footer { + padding-left: 50pt; + } } @media only screen and (max-width: 1140px) { - body { - font-size: 17pt; - padding: 15pt; - } + body { + font-size: 17pt; + padding: 15pt; + } - h1 { - font-size: 40pt; - } + h1 { + font-size: 40pt; + } - article, footer { - padding: 30pt; - } + article, footer { + padding: 30pt; + } - article p { - margin-top: 17pt; - } + article p { + margin-top: 17pt; + } - article p:first-of-type { - font-size: 12pt; - line-height: 120%; - margin-top: 10pt; - } + article p:first-of-type { + font-size: 12pt; + line-height: 120%; + margin-top: 10pt; + } - article :nth-child(4), article :nth-child(4):before { - font-size: 15pt; - } + article :nth-child(4), article :nth-child(4):before { + font-size: 15pt; + } - article :nth-child(4):before { - margin-left: -15pt; - } + article :nth-child(4):before { + margin-left: -15pt; + } - article p:last-child { - border-width: 15pt; - font-size: 13pt; - margin: 15pt 0 0 0; - padding: 15pt; - } + article p:last-child { + border-width: 15pt; + font-size: 13pt; + margin: 15pt 0 0 0; + padding: 15pt; + } - footer { - padding-top: 0; - font-size: 11pt; - line-height: 120%; - } + footer { + padding-top: 0; + font-size: 11pt; + line-height: 120%; + } - footer p { - margin-left: -15pt; - padding-left: 15pt; - } + footer p { + margin-left: -15pt; + padding-left: 15pt; + } } @media only screen and (max-width: 720px) { - body { - font-size: 12pt; - padding: 10pt; - } + body { + font-size: 12pt; + padding: 10pt; + } - h1 { - font-size: 24pt; - } + h1 { + font-size: 24pt; + } - article, footer { - padding: 20pt; - } + article, footer { + padding: 20pt; + } - article p { - margin-top: 15pt; - } + article p { + margin-top: 15pt; + } - article p:first-of-type { - font-size: 9pt; - line-height: 120%; - margin-top: 10pt; - } + article p:first-of-type { + font-size: 9pt; + line-height: 120%; + margin-top: 10pt; + } - article :nth-child(4), article :nth-child(4):before { - font-size: 10pt; - } + article :nth-child(4), article :nth-child(4):before { + font-size: 10pt; + } - article :nth-child(4):before { - margin-left: -10pt; - } + article :nth-child(4):before { + margin-left: -10pt; + } - article p:last-child { - border-width: 10pt; - font-size: 10pt; - margin: 15pt 0 0 0; - padding: 10pt; - } + article p:last-child { + border-width: 10pt; + font-size: 10pt; + margin: 15pt 0 0 0; + padding: 10pt; + } - footer { - padding-top: 0; - font-size: 9pt; - line-height: 120%; - } + footer { + padding-top: 0; + font-size: 9pt; + line-height: 120%; + } - footer p { - background-position: 0 1px; - background-size: 11px; - margin-left: -10pt; - padding-left: 10pt; - } + footer p { + background-position: 0 1px; + background-size: 11px; + margin-left: -10pt; + padding-left: 10pt; + } } @media print { - @page { - margin: .5cm; - } + @page { + margin: .5cm; + } - * { - color: black; - } + * { + color: black; + } - a[href^="http"]:after { - content: " ["attr(href) "]" - } + a[href^="http"]:after { + content: " ["attr(href) "]" + } - a:link, a[href]:after { - border: none; - } + a:link, a[href]:after { + border: none; + } - body { - background: none; - font-size: 12pt; - padding: 0; - } + body { + background: none; + font-size: 12pt; + padding: 0; + } - h1 { - font-size: 28pt; - } + h1 { + font-size: 28pt; + } - article, footer { - background: none; - padding: 30pt; - } + article, footer { + background: none; + padding: 30pt; + } - article p { - margin-top: 16pt; - } + article p { + margin-top: 16pt; + } - article p:first-of-type { - font-size: 10pt; - line-height: 120%; - margin-top: 10pt; - } + article p:first-of-type { + font-size: 10pt; + line-height: 120%; + margin-top: 10pt; + } - article :nth-child(4), article :nth-child(4):before { - font-size: 12pt; - } + article :nth-child(4), article :nth-child(4):before { + font-size: 12pt; + } - article :nth-child(4):before { - margin-left: -12pt; - } + article :nth-child(4):before { + margin-left: -12pt; + } - article p:last-child { - border-width: 11pt; - font-size: 11pt; - margin: 18pt 0 0 0; - padding: 11pt; - } + article p:last-child { + border-width: 11pt; + font-size: 11pt; + margin: 18pt 0 0 0; + padding: 11pt; + } - footer { - padding-top: 0; - font-size: 10pt; - line-height: 120%; - } + footer { + padding-top: 0; + font-size: 10pt; + line-height: 120%; + } - footer p { - background-position: 0 1px; - background-size: 11px; - margin-left: -12pt; - padding-left: 12pt; - } + footer p { + background-position: 0 1px; + background-size: 11px; + margin-left: -12pt; + padding-left: 12pt; + } } #gravatar { - position: relative; - float: left; - border: 20px solid #c4c4c4; - margin-left: -12em; - margin-top: -1em; - width: 5em; + position: relative; + float: left; + border: 20px solid #c4c4c4; + margin-left: -12em; + margin-top: -1em; + width: 5em; } diff --git a/themes/hmt-blue.css b/themes/hmt-blue.css index bcff4b00..7c389c21 100644 --- a/themes/hmt-blue.css +++ b/themes/hmt-blue.css @@ -1,336 +1,336 @@ /* normalize.min.css */ progress, sub, sup { - vertical-align: baseline + vertical-align: baseline } button, hr, input { - overflow: visible + overflow: visible } html { - font-family: sans-serif; - line-height: 1.15; - text-size-adjust: 100%; + font-family: sans-serif; + line-height: 1.15; + text-size-adjust: 100%; } body { - margin: 0 + margin: 0 } figcaption, menu, article, aside, details, figure, footer, header, main, nav, section, summary { - display: block + display: block } audio, canvas, progress, video { - display: inline-block + display: inline-block } audio:not([controls]) { - display: none; - height: 0 + display: none; + height: 0 } [hidden], template { - display: none + display: none } a { - background-color: transparent; - -webkit-text-decoration-skip: objects + background-color: transparent; + -webkit-text-decoration-skip: objects } a:active, a:hover { - outline-width: 0 + outline-width: 0 } abbr[title] { - border-bottom: none; - text-decoration: underline; - text-decoration: underline dotted + border-bottom: none; + text-decoration: underline; + text-decoration: underline dotted } b, strong { - font-weight: bolder + font-weight: bolder } dfn { - font-style: italic + font-style: italic } h1 { - font-size: 2em; - margin: .67em 0 + font-size: 2em; + margin: .67em 0 } mark { - background-color: #ff0; - color: #000 + background-color: #ff0; + color: #000 } small { - font-size: 80% + font-size: 80% } sub, sup { - font-size: 75%; - line-height: 0; - position: relative + font-size: 75%; + line-height: 0; + position: relative } sub { - bottom: -.25em + bottom: -.25em } sup { - top: -.5em + top: -.5em } img { - border-style: none + border-style: none } svg:not(:root) { - overflow: hidden + overflow: hidden } code, kbd, pre, samp { - font-family: monospace, monospace; - font-size: 1em + font-family: monospace, monospace; + font-size: 1em } figure { - margin: 1em 40px + margin: 1em 40px } hr { - box-sizing: content-box; - height: 0 + box-sizing: content-box; + height: 0 } button, input, optgroup, select, textarea { - font: inherit; - margin: 0 + font: inherit; + margin: 0 } optgroup { - font-weight: 700 + font-weight: 700 } button, input {} button, select { - text-transform: none + text-transform: none } [type=submit], [type=reset], button, html [type=button] { - appearance: button + appearance: button } [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner { - border-style: none; - padding: 0 + border-style: none; + padding: 0 } [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring { - outline: ButtonText dotted 1px + outline: ButtonText dotted 1px } fieldset { - border: 1px solid silver; - margin: 0 2px; - padding: .35em .625em .75em + border: 1px solid silver; + margin: 0 2px; + padding: .35em .625em .75em } legend { - box-sizing: border-box; - color: inherit; - display: table; - max-width: 100%; - padding: 0; - white-space: normal + box-sizing: border-box; + color: inherit; + display: table; + max-width: 100%; + padding: 0; + white-space: normal } textarea { - overflow: auto + overflow: auto } [type=checkbox], [type=radio] { - box-sizing: border-box; - padding: 0 + box-sizing: border-box; + padding: 0 } [type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button { - height: auto + height: auto } [type=search] { - appearance: textfield; - outline-offset: -2px + appearance: textfield; + outline-offset: -2px } [type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration { - appearance: none + appearance: none } ::-webkit-input-placeholder { - color: inherit; - opacity: .54 + color: inherit; + opacity: .54 } ::-webkit-file-upload-button { - appearance: button; - font: inherit + appearance: button; + font: inherit } /* Roboto */ @font-face { - font-family: Roboto; - font-style: normal; - font-weight: 400; - src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/ek4gzZ-GeXAPcSbHtCeQI_esZW2xOQ-xsNqO47m55DA.woff2) format('woff2'); - unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F + font-family: Roboto; + font-style: normal; + font-weight: 400; + src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/ek4gzZ-GeXAPcSbHtCeQI_esZW2xOQ-xsNqO47m55DA.woff2) format('woff2'); + unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F } @font-face { - font-family: Roboto; - font-style: normal; - font-weight: 400; - src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/mErvLBYg_cXG3rLvUsKT_fesZW2xOQ-xsNqO47m55DA.woff2) format('woff2'); - unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116 + font-family: Roboto; + font-style: normal; + font-weight: 400; + src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/mErvLBYg_cXG3rLvUsKT_fesZW2xOQ-xsNqO47m55DA.woff2) format('woff2'); + unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116 } @font-face { - font-family: Roboto; - font-style: normal; - font-weight: 400; - src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/-2n2p-_Y08sg57CNWQfKNvesZW2xOQ-xsNqO47m55DA.woff2) format('woff2'); - unicode-range: U+1F00-1FFF + font-family: Roboto; + font-style: normal; + font-weight: 400; + src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/-2n2p-_Y08sg57CNWQfKNvesZW2xOQ-xsNqO47m55DA.woff2) format('woff2'); + unicode-range: U+1F00-1FFF } @font-face { - font-family: Roboto; - font-style: normal; - font-weight: 400; - src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/u0TOpm082MNkS5K0Q4rhqvesZW2xOQ-xsNqO47m55DA.woff2) format('woff2'); - unicode-range: U+0370-03FF + font-family: Roboto; + font-style: normal; + font-weight: 400; + src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/u0TOpm082MNkS5K0Q4rhqvesZW2xOQ-xsNqO47m55DA.woff2) format('woff2'); + unicode-range: U+0370-03FF } @font-face { - font-family: Roboto; - font-style: normal; - font-weight: 400; - src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/NdF9MtnOpLzo-noMoG0miPesZW2xOQ-xsNqO47m55DA.woff2) format('woff2'); - unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB + font-family: Roboto; + font-style: normal; + font-weight: 400; + src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/NdF9MtnOpLzo-noMoG0miPesZW2xOQ-xsNqO47m55DA.woff2) format('woff2'); + unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB } @font-face { - font-family: Roboto; - font-style: normal; - font-weight: 400; - src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/Fcx7Wwv8OzT71A3E1XOAjvesZW2xOQ-xsNqO47m55DA.woff2) format('woff2'); - unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF + font-family: Roboto; + font-style: normal; + font-weight: 400; + src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/Fcx7Wwv8OzT71A3E1XOAjvesZW2xOQ-xsNqO47m55DA.woff2) format('woff2'); + unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF } @font-face { - font-family: Roboto; - font-style: normal; - font-weight: 400; - src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/CWB0XYA8bzo0kSThX0UTuA.woff2) format('woff2'); - unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000 + font-family: Roboto; + font-style: normal; + font-weight: 400; + src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v15/CWB0XYA8bzo0kSThX0UTuA.woff2) format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000 } body { - font-family: -apple-system, BlinkMacSystemFont, "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif; - padding: .4em; - font-size: 1.1em; - line-height: 1.4; - background-color: #e9ebee; + font-family: -apple-system, BlinkMacSystemFont, "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + line-height: 1.4; + background-color: #e9ebee; } a:focus, a:hover { - color: #23527c; + color: #23527c; } a:active, a:hover { - outline: 0; + outline: 0; } a { - color: #337ab7; - text-decoration: none; + color: #337ab7; + text-decoration: none; } article, footer { - width: 800px; - margin: 0 auto; + width: 800px; + margin: 0 auto; } article p { - text-align: justify; + text-align: justify; } footer p { - text-align: center; + text-align: center; } #gravatar { - display: block; - float: right; - border-radius: 50%; - border: none; - margin-top: 5px; + display: block; + float: right; + border-radius: 50%; + border: none; + margin-top: 5px; } article h1 { - font-weight: bold; - line-height: 1.3; - text-shadow: 3px 2px 6px rgba(0, 0, 0, 0.2); + font-weight: bold; + line-height: 1.3; + text-shadow: 3px 2px 6px rgba(0, 0, 0, 0.2); } footer { - text-align: center; - border-top: 1px solid #ccc; - font-style: italic; + text-align: center; + border-top: 1px solid #ccc; + font-style: italic; } /* Blockquote: https://codepen.io/maxds/pen/DcveB */ article>p:last-child { - display: block; - background: #fff; - padding: 15px 20px 15px 45px; - margin: 0 0 20px; - position: relative; - /*Font*/ - font-family: Georgia, serif; - font-size: 16px; - line-height: 1.4; - color: #666; - text-align: justify; - /*Borders - (Optional)*/ - border-left: 15px solid #3392cd; - border-right: 2px solid #3392cd; - /*Box Shadow - (Optional)*/ - box-shadow: 2px 2px 15px #ccc; + display: block; + background: #fff; + padding: 15px 20px 15px 45px; + margin: 0 0 20px; + position: relative; + /*Font*/ + font-family: Georgia, serif; + font-size: 16px; + line-height: 1.4; + color: #666; + text-align: justify; + /*Borders - (Optional)*/ + border-left: 15px solid #3392cd; + border-right: 2px solid #3392cd; + /*Box Shadow - (Optional)*/ + box-shadow: 2px 2px 15px #ccc; } article>p:last-child::before { - content: "\201C"; - /*Unicode for Left Double Quote*/ - /*Font*/ - font-family: Georgia, serif; - font-size: 60px; - font-weight: bold; - color: #999; - /*Positioning*/ - position: absolute; - left: 10px; - top: 5px; + content: "\201C"; + /*Unicode for Left Double Quote*/ + /*Font*/ + font-family: Georgia, serif; + font-size: 60px; + font-weight: bold; + color: #999; + /*Positioning*/ + position: absolute; + left: 10px; + top: 5px; } article>p:last-child::after { - /*Reset to make sure*/ - content: ""; + /*Reset to make sure*/ + content: ""; } diff --git a/themes/magic-mint.css b/themes/magic-mint.css index 07523d9b..e529cccc 100644 --- a/themes/magic-mint.css +++ b/themes/magic-mint.css @@ -1,105 +1,105 @@ @import url("https://fonts.googleapis.com/css?family=Lato:400,700,400italic"); html { - font-size: 62.5%; + font-size: 62.5%; } body { - font-family: Lato, Helvetica, sans-serif; - padding: 8px; - line-height: 1.6; - color: #3e3e3e; - background: #c7f1d7; + font-family: Lato, Helvetica, sans-serif; + padding: 8px; + line-height: 1.6; + color: #3e3e3e; + background: #c7f1d7; } article { - max-width: 660px; - margin: 10px auto 0; - text-align: center; - position: relative; + max-width: 660px; + margin: 10px auto 0; + text-align: center; + position: relative; } #gravatar { - position: absolute; - left: 0; - top: 22px; - width: 68px; - height: 68px; + position: absolute; + left: 0; + top: 22px; + width: 68px; + height: 68px; } h1 { - font-weight: 700; - text-align: center; - font-size: 40px; - font-size: 4rem; - text-transform: uppercase; - text-shadow: 0 1px 0 #c7f1d7; - border-bottom: 6px solid #3e3e3e; - padding-bottom: 25px; - line-height: 1.1; - display: inline-block; - margin: 15px auto 5px auto; + font-weight: 700; + text-align: center; + font-size: 40px; + font-size: 4rem; + text-transform: uppercase; + text-shadow: 0 1px 0 #c7f1d7; + border-bottom: 6px solid #3e3e3e; + padding-bottom: 25px; + line-height: 1.1; + display: inline-block; + margin: 15px auto 5px auto; } article p:nth-of-type(1) { - margin: 0; - padding: 21px 0 0; - font-style: italic; - text-align: center; - font-size: 14px; - font-size: 1.4rem; + margin: 0; + padding: 21px 0 0; + font-style: italic; + text-align: center; + font-size: 14px; + font-size: 1.4rem; } article p:last-child { - padding-bottom: 1.3em; - margin-bottom: 0; - font-size: 18px; - font-size: 1.8rem; + padding-bottom: 1.3em; + margin-bottom: 0; + font-size: 18px; + font-size: 1.8rem; } p { - text-align: justify; - font-size: 18px; - font-size: 1.8rem; + text-align: justify; + font-size: 18px; + font-size: 1.8rem; } a { - padding: 0.1em; + padding: 0.1em; } a:link, a:visited { - text-decoration: none; - color: #3e3e3e; - border-bottom: 1px solid; + text-decoration: none; + color: #3e3e3e; + border-bottom: 1px solid; } a:hover { - background: #3e3e3e; - color: white; - border: none; + background: #3e3e3e; + color: white; + border: none; } a:active { - background: #2e2e2e; - position: relative; - top: 1px; + background: #2e2e2e; + position: relative; + top: 1px; } a[href^="mailto"] { - border-bottom: none; + border-bottom: none; } footer { - border-top: 8px solid #3e3e3e; - font-size: 1.8rem; - text-align: center; - max-width: 660px; - margin: 10px auto 0; - padding: 12px 0; - font-style: italic; + border-top: 8px solid #3e3e3e; + font-size: 1.8rem; + text-align: center; + max-width: 660px; + margin: 10px auto 0; + padding: 12px 0; + font-style: italic; } footer p { - text-align: center; + text-align: center; } diff --git a/themes/material-amber.css b/themes/material-amber.css index 11bdc338..da4e6222 100644 --- a/themes/material-amber.css +++ b/themes/material-amber.css @@ -2,147 +2,147 @@ @import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); body { - font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; - padding: .4em; - font-size: 1.1em; - background: #eee; - color: #5c5c5c + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c } a:link, a:visited { - text-decoration: none + text-decoration: none } article { - background: #fff; - border-radius: 2px; - display: block; - margin: 1em; - box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - transition: box-shadow .2s ease-in-out; - position: relative; - max-width: 800px; - margin: 10px auto 0 + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 } article:hover { - box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) } article h1 { - color: #fff; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - height: 4.5em; - width: 100%; - margin: 0 auto; - padding-top: 3.5em; - padding-bottom: .7em; - box-sizing: border-box; - font-size: 2em; - font-weight: 300 + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 } article h1, article h1+p { - background: #ffc107; - font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; - padding-left: 6% + background: #ffc107; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% } article h1+p { - color: #fff8e1; - margin: 0; - text-align: left; - box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); - font-size: 1em; - padding-top: .6em; - min-height: 3.6em; - font-weight: 400; - margin-top: 0 + color: #fff8e1; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 } article h1+p a:link, article h1+p a:visited { - color: #ffecb3 + color: #ffecb3 } article h1+p a:hover { - color: #ff6f00 + color: #ff6f00 } article p { - padding: 0 2em; - text-align: justify + padding: 0 2em; + text-align: justify } article p:last-child { - color: #ffa000; - padding-bottom: 1.8em; - font-size: .9em + color: #ffa000; + padding-bottom: 1.8em; + font-size: .9em } footer { - margin: 0 auto; - font-size: .8em; - text-align: center + margin: 0 auto; + font-size: .8em; + text-align: center } footer a:link, footer a:visited { - color: #5c5c5c + color: #5c5c5c } footer a:hover { - color: #ff6f00 + color: #ff6f00 } #gravatar { - display: block; - float: right; - border-radius: 100%; - box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - transition: box-shadow .2s ease-in-out + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out } #gravatar:hover { - box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) } @media (min-width:750px) { - #gravatar { - position: absolute; - top: 10.8em; - right: 3em - } + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } - #gravatar+h1+p+p { - padding-top: 2em - } + #gravatar+h1+p+p { + padding-top: 2em + } - h1+p { - padding-right: 6em - } + h1+p { + padding-right: 6em + } - h1+p+p { - padding-top: .8em - } + h1+p+p { + padding-top: .8em + } } @media (max-width:750px) { - #gravatar { - position: fixed; - bottom: 1em; - right: 1em - } + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } - article h1+p { - font-size: .8em; - padding-bottom: 1em - } + article h1+p { + font-size: .8em; + padding-bottom: 1em + } - article h1+p+p { - padding-top: .8em - } + article h1+p+p { + padding-top: .8em + } - footer { - padding-bottom: 4em - } + footer { + padding-bottom: 4em + } } diff --git a/themes/material-blue.css b/themes/material-blue.css index 6b847a55..4f1bc702 100644 --- a/themes/material-blue.css +++ b/themes/material-blue.css @@ -2,147 +2,147 @@ @import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); body { - font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; - padding: .4em; - font-size: 1.1em; - background: #eee; - color: #5c5c5c + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c } a:link, a:visited { - text-decoration: none + text-decoration: none } article { - background: #fff; - border-radius: 2px; - display: block; - margin: 1em; - box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - transition: box-shadow .2s ease-in-out; - position: relative; - max-width: 800px; - margin: 10px auto 0 + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 } article:hover { - box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) } article h1 { - color: #fff; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - height: 4.5em; - width: 100%; - margin: 0 auto; - padding-top: 3.5em; - padding-bottom: .7em; - box-sizing: border-box; - font-size: 2em; - font-weight: 300 + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 } article h1, article h1+p { - background: #2196f3; - font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; - padding-left: 6% + background: #2196f3; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% } article h1+p { - color: #e3f2fd; - margin: 0; - text-align: left; - box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); - font-size: 1em; - padding-top: .6em; - min-height: 3.6em; - font-weight: 400; - margin-top: 0 + color: #e3f2fd; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 } article h1+p a:link, article h1+p a:visited { - color: #bbdefb + color: #bbdefb } article h1+p a:hover { - color: #0d47a1 + color: #0d47a1 } article p { - padding: 0 2em; - text-align: justify + padding: 0 2em; + text-align: justify } article p:last-child { - color: #1976d2; - padding-bottom: 1.8em; - font-size: .9em + color: #1976d2; + padding-bottom: 1.8em; + font-size: .9em } footer { - margin: 0 auto; - font-size: .8em; - text-align: center + margin: 0 auto; + font-size: .8em; + text-align: center } footer a:link, footer a:visited { - color: #5c5c5c + color: #5c5c5c } footer a:hover { - color: #0d47a1 + color: #0d47a1 } #gravatar { - display: block; - float: right; - border-radius: 100%; - box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - transition: box-shadow .2s ease-in-out + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out } #gravatar:hover { - box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) } @media (min-width:750px) { - #gravatar { - position: absolute; - top: 10.8em; - right: 3em - } + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } - #gravatar+h1+p+p { - padding-top: 2em - } + #gravatar+h1+p+p { + padding-top: 2em + } - h1+p { - padding-right: 6em - } + h1+p { + padding-right: 6em + } - h1+p+p { - padding-top: .8em - } + h1+p+p { + padding-top: .8em + } } @media (max-width:750px) { - #gravatar { - position: fixed; - bottom: 1em; - right: 1em - } + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } - article h1+p { - font-size: .8em; - padding-bottom: 1em - } + article h1+p { + font-size: .8em; + padding-bottom: 1em + } - article h1+p+p { - padding-top: .8em - } + article h1+p+p { + padding-top: .8em + } - footer { - padding-bottom: 4em - } + footer { + padding-bottom: 4em + } } diff --git a/themes/material-brown.css b/themes/material-brown.css index 7e2f6729..d1c72e45 100644 --- a/themes/material-brown.css +++ b/themes/material-brown.css @@ -2,147 +2,147 @@ @import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); body { - font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; - padding: .4em; - font-size: 1.1em; - background: #eee; - color: #5c5c5c + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c } a:link, a:visited { - text-decoration: none + text-decoration: none } article { - background: #fff; - border-radius: 2px; - display: block; - margin: 1em; - box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - transition: box-shadow .2s ease-in-out; - position: relative; - max-width: 800px; - margin: 10px auto 0 + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 } article:hover { - box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) } article h1 { - color: #fff; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - height: 4.5em; - width: 100%; - margin: 0 auto; - padding-top: 3.5em; - padding-bottom: .7em; - box-sizing: border-box; - font-size: 2em; - font-weight: 300 + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 } article h1, article h1+p { - background: #795548; - font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; - padding-left: 6% + background: #795548; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% } article h1+p { - color: #efebe9; - margin: 0; - text-align: left; - box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); - font-size: 1em; - padding-top: .6em; - min-height: 3.6em; - font-weight: 400; - margin-top: 0 + color: #efebe9; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 } article h1+p a:link, article h1+p a:visited { - color: #d7ccc8 + color: #d7ccc8 } article h1+p a:hover { - color: #3e2723 + color: #3e2723 } article p { - padding: 0 2em; - text-align: justify + padding: 0 2em; + text-align: justify } article p:last-child { - color: #5d4037; - padding-bottom: 1.8em; - font-size: .9em + color: #5d4037; + padding-bottom: 1.8em; + font-size: .9em } footer { - margin: 0 auto; - font-size: .8em; - text-align: center + margin: 0 auto; + font-size: .8em; + text-align: center } footer a:link, footer a:visited { - color: #5c5c5c + color: #5c5c5c } footer a:hover { - color: #3e2723 + color: #3e2723 } #gravatar { - display: block; - float: right; - border-radius: 100%; - box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - transition: box-shadow .2s ease-in-out + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out } #gravatar:hover { - box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) } @media (min-width:750px) { - #gravatar { - position: absolute; - top: 10.8em; - right: 3em - } + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } - #gravatar+h1+p+p { - padding-top: 2em - } + #gravatar+h1+p+p { + padding-top: 2em + } - h1+p { - padding-right: 6em - } + h1+p { + padding-right: 6em + } - h1+p+p { - padding-top: .8em - } + h1+p+p { + padding-top: .8em + } } @media (max-width:750px) { - #gravatar { - position: fixed; - bottom: 1em; - right: 1em - } + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } - article h1+p { - font-size: .8em; - padding-bottom: 1em - } + article h1+p { + font-size: .8em; + padding-bottom: 1em + } - article h1+p+p { - padding-top: .8em - } + article h1+p+p { + padding-top: .8em + } - footer { - padding-bottom: 4em - } + footer { + padding-bottom: 4em + } } diff --git a/themes/material-cyan.css b/themes/material-cyan.css index ac1bae7c..cc4e6c77 100644 --- a/themes/material-cyan.css +++ b/themes/material-cyan.css @@ -2,147 +2,147 @@ @import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); body { - font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; - padding: .4em; - font-size: 1.1em; - background: #eee; - color: #5c5c5c + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c } a:link, a:visited { - text-decoration: none + text-decoration: none } article { - background: #fff; - border-radius: 2px; - display: block; - margin: 1em; - box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - transition: box-shadow .2s ease-in-out; - position: relative; - max-width: 800px; - margin: 10px auto 0 + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 } article:hover { - box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) } article h1 { - color: #fff; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - height: 4.5em; - width: 100%; - margin: 0 auto; - padding-top: 3.5em; - padding-bottom: .7em; - box-sizing: border-box; - font-size: 2em; - font-weight: 300 + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 } article h1, article h1+p { - background: #00bcd4; - font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; - padding-left: 6% + background: #00bcd4; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% } article h1+p { - color: #e0f7fa; - margin: 0; - text-align: left; - box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); - font-size: 1em; - padding-top: .6em; - min-height: 3.6em; - font-weight: 400; - margin-top: 0 + color: #e0f7fa; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 } article h1+p a:link, article h1+p a:visited { - color: #b2ebf2 + color: #b2ebf2 } article h1+p a:hover { - color: #006064 + color: #006064 } article p { - padding: 0 2em; - text-align: justify + padding: 0 2em; + text-align: justify } article p:last-child { - color: #0097a7; - padding-bottom: 1.8em; - font-size: .9em + color: #0097a7; + padding-bottom: 1.8em; + font-size: .9em } footer { - margin: 0 auto; - font-size: .8em; - text-align: center + margin: 0 auto; + font-size: .8em; + text-align: center } footer a:link, footer a:visited { - color: #5c5c5c + color: #5c5c5c } footer a:hover { - color: #006064 + color: #006064 } #gravatar { - display: block; - float: right; - border-radius: 100%; - box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - transition: box-shadow .2s ease-in-out + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out } #gravatar:hover { - box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) } @media (min-width:750px) { - #gravatar { - position: absolute; - top: 10.8em; - right: 3em - } + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } - #gravatar+h1+p+p { - padding-top: 2em - } + #gravatar+h1+p+p { + padding-top: 2em + } - h1+p { - padding-right: 6em - } + h1+p { + padding-right: 6em + } - h1+p+p { - padding-top: .8em - } + h1+p+p { + padding-top: .8em + } } @media (max-width:750px) { - #gravatar { - position: fixed; - bottom: 1em; - right: 1em - } + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } - article h1+p { - font-size: .8em; - padding-bottom: 1em - } + article h1+p { + font-size: .8em; + padding-bottom: 1em + } - article h1+p+p { - padding-top: .8em - } + article h1+p+p { + padding-top: .8em + } - footer { - padding-bottom: 4em - } + footer { + padding-bottom: 4em + } } diff --git a/themes/material-deep-orange.css b/themes/material-deep-orange.css index d4bb1d6a..110bb035 100644 --- a/themes/material-deep-orange.css +++ b/themes/material-deep-orange.css @@ -2,147 +2,147 @@ @import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); body { - font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; - padding: .4em; - font-size: 1.1em; - background: #eee; - color: #5c5c5c + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c } a:link, a:visited { - text-decoration: none + text-decoration: none } article { - background: #fff; - border-radius: 2px; - display: block; - margin: 1em; - box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - transition: box-shadow .2s ease-in-out; - position: relative; - max-width: 800px; - margin: 10px auto 0 + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 } article:hover { - box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) } article h1 { - color: #fff; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - height: 4.5em; - width: 100%; - margin: 0 auto; - padding-top: 3.5em; - padding-bottom: .7em; - box-sizing: border-box; - font-size: 2em; - font-weight: 300 + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 } article h1, article h1+p { - background: #ff5722; - font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; - padding-left: 6% + background: #ff5722; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% } article h1+p { - color: #fbe9e7; - margin: 0; - text-align: left; - box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); - font-size: 1em; - padding-top: .6em; - min-height: 3.6em; - font-weight: 400; - margin-top: 0 + color: #fbe9e7; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 } article h1+p a:link, article h1+p a:visited { - color: #ffccbc + color: #ffccbc } article h1+p a:hover { - color: #bf360c + color: #bf360c } article p { - padding: 0 2em; - text-align: justify + padding: 0 2em; + text-align: justify } article p:last-child { - color: #e64a19; - padding-bottom: 1.8em; - font-size: .9em + color: #e64a19; + padding-bottom: 1.8em; + font-size: .9em } footer { - margin: 0 auto; - font-size: .8em; - text-align: center + margin: 0 auto; + font-size: .8em; + text-align: center } footer a:link, footer a:visited { - color: #5c5c5c + color: #5c5c5c } footer a:hover { - color: #bf360c + color: #bf360c } #gravatar { - display: block; - float: right; - border-radius: 100%; - box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - transition: box-shadow .2s ease-in-out + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out } #gravatar:hover { - box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) } @media (min-width:750px) { - #gravatar { - position: absolute; - top: 10.8em; - right: 3em - } + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } - #gravatar+h1+p+p { - padding-top: 2em - } + #gravatar+h1+p+p { + padding-top: 2em + } - h1+p { - padding-right: 6em - } + h1+p { + padding-right: 6em + } - h1+p+p { - padding-top: .8em - } + h1+p+p { + padding-top: .8em + } } @media (max-width:750px) { - #gravatar { - position: fixed; - bottom: 1em; - right: 1em - } + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } - article h1+p { - font-size: .8em; - padding-bottom: 1em - } + article h1+p { + font-size: .8em; + padding-bottom: 1em + } - article h1+p+p { - padding-top: .8em - } + article h1+p+p { + padding-top: .8em + } - footer { - padding-bottom: 4em - } + footer { + padding-bottom: 4em + } } diff --git a/themes/material-deep-purple.css b/themes/material-deep-purple.css index 8c92912b..ef4e7626 100644 --- a/themes/material-deep-purple.css +++ b/themes/material-deep-purple.css @@ -2,147 +2,147 @@ @import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); body { - font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; - padding: .4em; - font-size: 1.1em; - background: #eee; - color: #5c5c5c + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c } a:link, a:visited { - text-decoration: none + text-decoration: none } article { - background: #fff; - border-radius: 2px; - display: block; - margin: 1em; - box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - transition: box-shadow .2s ease-in-out; - position: relative; - max-width: 800px; - margin: 10px auto 0 + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 } article:hover { - box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) } article h1 { - color: #fff; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - height: 4.5em; - width: 100%; - margin: 0 auto; - padding-top: 3.5em; - padding-bottom: .7em; - box-sizing: border-box; - font-size: 2em; - font-weight: 300 + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 } article h1, article h1+p { - background: #673ab7; - font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; - padding-left: 6% + background: #673ab7; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% } article h1+p { - color: #ede7f6; - margin: 0; - text-align: left; - box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); - font-size: 1em; - padding-top: .6em; - min-height: 3.6em; - font-weight: 400; - margin-top: 0 + color: #ede7f6; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 } article h1+p a:link, article h1+p a:visited { - color: #d1c4e9 + color: #d1c4e9 } article h1+p a:hover { - color: #311b92 + color: #311b92 } article p { - padding: 0 2em; - text-align: justify + padding: 0 2em; + text-align: justify } article p:last-child { - color: #512da8; - padding-bottom: 1.8em; - font-size: .9em + color: #512da8; + padding-bottom: 1.8em; + font-size: .9em } footer { - margin: 0 auto; - font-size: .8em; - text-align: center + margin: 0 auto; + font-size: .8em; + text-align: center } footer a:link, footer a:visited { - color: #5c5c5c + color: #5c5c5c } footer a:hover { - color: #311b92 + color: #311b92 } #gravatar { - display: block; - float: right; - border-radius: 100%; - box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - transition: box-shadow .2s ease-in-out + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out } #gravatar:hover { - box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) } @media (min-width:750px) { - #gravatar { - position: absolute; - top: 10.8em; - right: 3em - } + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } - #gravatar+h1+p+p { - padding-top: 2em - } + #gravatar+h1+p+p { + padding-top: 2em + } - h1+p { - padding-right: 6em - } + h1+p { + padding-right: 6em + } - h1+p+p { - padding-top: .8em - } + h1+p+p { + padding-top: .8em + } } @media (max-width:750px) { - #gravatar { - position: fixed; - bottom: 1em; - right: 1em - } + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } - article h1+p { - font-size: .8em; - padding-bottom: 1em - } + article h1+p { + font-size: .8em; + padding-bottom: 1em + } - article h1+p+p { - padding-top: .8em - } + article h1+p+p { + padding-top: .8em + } - footer { - padding-bottom: 4em - } + footer { + padding-bottom: 4em + } } diff --git a/themes/material-green.css b/themes/material-green.css index a4c041ed..9b1e4be6 100644 --- a/themes/material-green.css +++ b/themes/material-green.css @@ -2,147 +2,147 @@ @import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); body { - font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; - padding: .4em; - font-size: 1.1em; - background: #eee; - color: #5c5c5c + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c } a:link, a:visited { - text-decoration: none + text-decoration: none } article { - background: #fff; - border-radius: 2px; - display: block; - margin: 1em; - box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - transition: box-shadow .2s ease-in-out; - position: relative; - max-width: 800px; - margin: 10px auto 0 + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 } article:hover { - box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) } article h1 { - color: #fff; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - height: 4.5em; - width: 100%; - margin: 0 auto; - padding-top: 3.5em; - padding-bottom: .7em; - box-sizing: border-box; - font-size: 2em; - font-weight: 300 + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 } article h1, article h1+p { - background: #4caf50; - font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; - padding-left: 6% + background: #4caf50; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% } article h1+p { - color: #e8f5e9; - margin: 0; - text-align: left; - box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); - font-size: 1em; - padding-top: .6em; - min-height: 3.6em; - font-weight: 400; - margin-top: 0 + color: #e8f5e9; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 } article h1+p a:link, article h1+p a:visited { - color: #c8e6c9 + color: #c8e6c9 } article h1+p a:hover { - color: #1b5e20 + color: #1b5e20 } article p { - padding: 0 2em; - text-align: justify + padding: 0 2em; + text-align: justify } article p:last-child { - color: #388e3c; - padding-bottom: 1.8em; - font-size: .9em + color: #388e3c; + padding-bottom: 1.8em; + font-size: .9em } footer { - margin: 0 auto; - font-size: .8em; - text-align: center + margin: 0 auto; + font-size: .8em; + text-align: center } footer a:link, footer a:visited { - color: #5c5c5c + color: #5c5c5c } footer a:hover { - color: #1b5e20 + color: #1b5e20 } #gravatar { - display: block; - float: right; - border-radius: 100%; - box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - transition: box-shadow .2s ease-in-out + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out } #gravatar:hover { - box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) } @media (min-width:750px) { - #gravatar { - position: absolute; - top: 10.8em; - right: 3em - } + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } - #gravatar+h1+p+p { - padding-top: 2em - } + #gravatar+h1+p+p { + padding-top: 2em + } - h1+p { - padding-right: 6em - } + h1+p { + padding-right: 6em + } - h1+p+p { - padding-top: .8em - } + h1+p+p { + padding-top: .8em + } } @media (max-width:750px) { - #gravatar { - position: fixed; - bottom: 1em; - right: 1em - } + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } - article h1+p { - font-size: .8em; - padding-bottom: 1em - } + article h1+p { + font-size: .8em; + padding-bottom: 1em + } - article h1+p+p { - padding-top: .8em - } + article h1+p+p { + padding-top: .8em + } - footer { - padding-bottom: 4em - } + footer { + padding-bottom: 4em + } } diff --git a/themes/material-grey.css b/themes/material-grey.css index 386214a0..091d9527 100644 --- a/themes/material-grey.css +++ b/themes/material-grey.css @@ -2,147 +2,147 @@ @import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); body { - font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; - padding: .4em; - font-size: 1.1em; - background: #eee; - color: #5c5c5c + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c } a:link, a:visited { - text-decoration: none + text-decoration: none } article { - background: #fff; - border-radius: 2px; - display: block; - margin: 1em; - box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - transition: box-shadow .2s ease-in-out; - position: relative; - max-width: 800px; - margin: 10px auto 0 + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 } article:hover { - box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) } article h1 { - color: #fff; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - height: 4.5em; - width: 100%; - margin: 0 auto; - padding-top: 3.5em; - padding-bottom: .7em; - box-sizing: border-box; - font-size: 2em; - font-weight: 300 + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 } article h1, article h1+p { - background: #9e9e9e; - font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; - padding-left: 6% + background: #9e9e9e; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% } article h1+p { - color: #fafafa; - margin: 0; - text-align: left; - box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); - font-size: 1em; - padding-top: .6em; - min-height: 3.6em; - font-weight: 400; - margin-top: 0 + color: #fafafa; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 } article h1+p a:link, article h1+p a:visited { - color: #f5f5f5 + color: #f5f5f5 } article h1+p a:hover { - color: #212121 + color: #212121 } article p { - padding: 0 2em; - text-align: justify + padding: 0 2em; + text-align: justify } article p:last-child { - color: #616161; - padding-bottom: 1.8em; - font-size: .9em + color: #616161; + padding-bottom: 1.8em; + font-size: .9em } footer { - margin: 0 auto; - font-size: .8em; - text-align: center + margin: 0 auto; + font-size: .8em; + text-align: center } footer a:link, footer a:visited { - color: #5c5c5c + color: #5c5c5c } footer a:hover { - color: #212121 + color: #212121 } #gravatar { - display: block; - float: right; - border-radius: 100%; - box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - transition: box-shadow .2s ease-in-out + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out } #gravatar:hover { - box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) } @media (min-width:750px) { - #gravatar { - position: absolute; - top: 10.8em; - right: 3em - } + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } - #gravatar+h1+p+p { - padding-top: 2em - } + #gravatar+h1+p+p { + padding-top: 2em + } - h1+p { - padding-right: 6em - } + h1+p { + padding-right: 6em + } - h1+p+p { - padding-top: .8em - } + h1+p+p { + padding-top: .8em + } } @media (max-width:750px) { - #gravatar { - position: fixed; - bottom: 1em; - right: 1em - } + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } - article h1+p { - font-size: .8em; - padding-bottom: 1em - } + article h1+p { + font-size: .8em; + padding-bottom: 1em + } - article h1+p+p { - padding-top: .8em - } + article h1+p+p { + padding-top: .8em + } - footer { - padding-bottom: 4em - } + footer { + padding-bottom: 4em + } } diff --git a/themes/material-indigo.css b/themes/material-indigo.css index 95e1121c..4ad58800 100644 --- a/themes/material-indigo.css +++ b/themes/material-indigo.css @@ -2,147 +2,147 @@ @import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); body { - font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; - padding: .4em; - font-size: 1.1em; - background: #eee; - color: #5c5c5c + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c } a:link, a:visited { - text-decoration: none + text-decoration: none } article { - background: #fff; - border-radius: 2px; - display: block; - margin: 1em; - box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - transition: box-shadow .2s ease-in-out; - position: relative; - max-width: 800px; - margin: 10px auto 0 + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 } article:hover { - box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) } article h1 { - color: #fff; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - height: 4.5em; - width: 100%; - margin: 0 auto; - padding-top: 3.5em; - padding-bottom: .7em; - box-sizing: border-box; - font-size: 2em; - font-weight: 300 + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 } article h1, article h1+p { - background: #3f51b5; - font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; - padding-left: 6% + background: #3f51b5; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% } article h1+p { - color: #e8eaf6; - margin: 0; - text-align: left; - box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); - font-size: 1em; - padding-top: .6em; - min-height: 3.6em; - font-weight: 400; - margin-top: 0 + color: #e8eaf6; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 } article h1+p a:link, article h1+p a:visited { - color: #c5cae9 + color: #c5cae9 } article h1+p a:hover { - color: #1a237e + color: #1a237e } article p { - padding: 0 2em; - text-align: justify + padding: 0 2em; + text-align: justify } article p:last-child { - color: #303f9f; - padding-bottom: 1.8em; - font-size: .9em + color: #303f9f; + padding-bottom: 1.8em; + font-size: .9em } footer { - margin: 0 auto; - font-size: .8em; - text-align: center + margin: 0 auto; + font-size: .8em; + text-align: center } footer a:link, footer a:visited { - color: #5c5c5c + color: #5c5c5c } footer a:hover { - color: #1a237e + color: #1a237e } #gravatar { - display: block; - float: right; - border-radius: 100%; - box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - transition: box-shadow .2s ease-in-out + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out } #gravatar:hover { - box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) } @media (min-width:750px) { - #gravatar { - position: absolute; - top: 10.8em; - right: 3em - } + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } - #gravatar+h1+p+p { - padding-top: 2em - } + #gravatar+h1+p+p { + padding-top: 2em + } - h1+p { - padding-right: 6em - } + h1+p { + padding-right: 6em + } - h1+p+p { - padding-top: .8em - } + h1+p+p { + padding-top: .8em + } } @media (max-width:750px) { - #gravatar { - position: fixed; - bottom: 1em; - right: 1em - } + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } - article h1+p { - font-size: .8em; - padding-bottom: 1em - } + article h1+p { + font-size: .8em; + padding-bottom: 1em + } - article h1+p+p { - padding-top: .8em - } + article h1+p+p { + padding-top: .8em + } - footer { - padding-bottom: 4em - } + footer { + padding-bottom: 4em + } } diff --git a/themes/material-light-blue.css b/themes/material-light-blue.css index 2699530e..873965f7 100644 --- a/themes/material-light-blue.css +++ b/themes/material-light-blue.css @@ -2,147 +2,147 @@ @import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); body { - font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; - padding: .4em; - font-size: 1.1em; - background: #eee; - color: #5c5c5c + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c } a:link, a:visited { - text-decoration: none + text-decoration: none } article { - background: #fff; - border-radius: 2px; - display: block; - margin: 1em; - box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - transition: box-shadow .2s ease-in-out; - position: relative; - max-width: 800px; - margin: 10px auto 0 + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 } article:hover { - box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) } article h1 { - color: #fff; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - height: 4.5em; - width: 100%; - margin: 0 auto; - padding-top: 3.5em; - padding-bottom: .7em; - box-sizing: border-box; - font-size: 2em; - font-weight: 300 + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 } article h1, article h1+p { - background: #03a9f4; - font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; - padding-left: 6% + background: #03a9f4; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% } article h1+p { - color: #e1f5fe; - margin: 0; - text-align: left; - box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); - font-size: 1em; - padding-top: .6em; - min-height: 3.6em; - font-weight: 400; - margin-top: 0 + color: #e1f5fe; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 } article h1+p a:link, article h1+p a:visited { - color: #b3e5fc + color: #b3e5fc } article h1+p a:hover { - color: #01579b + color: #01579b } article p { - padding: 0 2em; - text-align: justify + padding: 0 2em; + text-align: justify } article p:last-child { - color: #0288d1; - padding-bottom: 1.8em; - font-size: .9em + color: #0288d1; + padding-bottom: 1.8em; + font-size: .9em } footer { - margin: 0 auto; - font-size: .8em; - text-align: center + margin: 0 auto; + font-size: .8em; + text-align: center } footer a:link, footer a:visited { - color: #5c5c5c + color: #5c5c5c } footer a:hover { - color: #01579b + color: #01579b } #gravatar { - display: block; - float: right; - border-radius: 100%; - box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - transition: box-shadow .2s ease-in-out + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out } #gravatar:hover { - box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) } @media (min-width:750px) { - #gravatar { - position: absolute; - top: 10.8em; - right: 3em - } + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } - #gravatar+h1+p+p { - padding-top: 2em - } + #gravatar+h1+p+p { + padding-top: 2em + } - h1+p { - padding-right: 6em - } + h1+p { + padding-right: 6em + } - h1+p+p { - padding-top: .8em - } + h1+p+p { + padding-top: .8em + } } @media (max-width:750px) { - #gravatar { - position: fixed; - bottom: 1em; - right: 1em - } + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } - article h1+p { - font-size: .8em; - padding-bottom: 1em - } + article h1+p { + font-size: .8em; + padding-bottom: 1em + } - article h1+p+p { - padding-top: .8em - } + article h1+p+p { + padding-top: .8em + } - footer { - padding-bottom: 4em - } + footer { + padding-bottom: 4em + } } diff --git a/themes/material-light-green.css b/themes/material-light-green.css index ccdf3cda..3ff00238 100644 --- a/themes/material-light-green.css +++ b/themes/material-light-green.css @@ -2,147 +2,147 @@ @import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); body { - font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; - padding: .4em; - font-size: 1.1em; - background: #eee; - color: #5c5c5c + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c } a:link, a:visited { - text-decoration: none + text-decoration: none } article { - background: #fff; - border-radius: 2px; - display: block; - margin: 1em; - box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - transition: box-shadow .2s ease-in-out; - position: relative; - max-width: 800px; - margin: 10px auto 0 + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 } article:hover { - box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) } article h1 { - color: #fff; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - height: 4.5em; - width: 100%; - margin: 0 auto; - padding-top: 3.5em; - padding-bottom: .7em; - box-sizing: border-box; - font-size: 2em; - font-weight: 300 + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 } article h1, article h1+p { - background: #8bc34a; - font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; - padding-left: 6% + background: #8bc34a; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% } article h1+p { - color: #f1f8e9; - margin: 0; - text-align: left; - box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); - font-size: 1em; - padding-top: .6em; - min-height: 3.6em; - font-weight: 400; - margin-top: 0 + color: #f1f8e9; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 } article h1+p a:link, article h1+p a:visited { - color: #dcedc8 + color: #dcedc8 } article h1+p a:hover { - color: #33691e + color: #33691e } article p { - padding: 0 2em; - text-align: justify + padding: 0 2em; + text-align: justify } article p:last-child { - color: #689f38; - padding-bottom: 1.8em; - font-size: .9em + color: #689f38; + padding-bottom: 1.8em; + font-size: .9em } footer { - margin: 0 auto; - font-size: .8em; - text-align: center + margin: 0 auto; + font-size: .8em; + text-align: center } footer a:link, footer a:visited { - color: #5c5c5c + color: #5c5c5c } footer a:hover { - color: #33691e + color: #33691e } #gravatar { - display: block; - float: right; - border-radius: 100%; - box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - transition: box-shadow .2s ease-in-out + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out } #gravatar:hover { - box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) } @media (min-width:750px) { - #gravatar { - position: absolute; - top: 10.8em; - right: 3em - } + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } - #gravatar+h1+p+p { - padding-top: 2em - } + #gravatar+h1+p+p { + padding-top: 2em + } - h1+p { - padding-right: 6em - } + h1+p { + padding-right: 6em + } - h1+p+p { - padding-top: .8em - } + h1+p+p { + padding-top: .8em + } } @media (max-width:750px) { - #gravatar { - position: fixed; - bottom: 1em; - right: 1em - } + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } - article h1+p { - font-size: .8em; - padding-bottom: 1em - } + article h1+p { + font-size: .8em; + padding-bottom: 1em + } - article h1+p+p { - padding-top: .8em - } + article h1+p+p { + padding-top: .8em + } - footer { - padding-bottom: 4em - } + footer { + padding-bottom: 4em + } } diff --git a/themes/material-lime.css b/themes/material-lime.css index e9d63673..0f1ce85f 100644 --- a/themes/material-lime.css +++ b/themes/material-lime.css @@ -2,147 +2,147 @@ @import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); body { - font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; - padding: .4em; - font-size: 1.1em; - background: #eee; - color: #5c5c5c + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c } a:link, a:visited { - text-decoration: none + text-decoration: none } article { - background: #fff; - border-radius: 2px; - display: block; - margin: 1em; - box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - transition: box-shadow .2s ease-in-out; - position: relative; - max-width: 800px; - margin: 10px auto 0 + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 } article:hover { - box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) } article h1 { - color: #fff; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - height: 4.5em; - width: 100%; - margin: 0 auto; - padding-top: 3.5em; - padding-bottom: .7em; - box-sizing: border-box; - font-size: 2em; - font-weight: 300 + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 } article h1, article h1+p { - background: #cddc39; - font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; - padding-left: 6% + background: #cddc39; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% } article h1+p { - color: #f9fbe7; - margin: 0; - text-align: left; - box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); - font-size: 1em; - padding-top: .6em; - min-height: 3.6em; - font-weight: 400; - margin-top: 0 + color: #f9fbe7; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 } article h1+p a:link, article h1+p a:visited { - color: #f0f4c3 + color: #f0f4c3 } article h1+p a:hover { - color: #827717 + color: #827717 } article p { - padding: 0 2em; - text-align: justify + padding: 0 2em; + text-align: justify } article p:last-child { - color: #afb42b; - padding-bottom: 1.8em; - font-size: .9em + color: #afb42b; + padding-bottom: 1.8em; + font-size: .9em } footer { - margin: 0 auto; - font-size: .8em; - text-align: center + margin: 0 auto; + font-size: .8em; + text-align: center } footer a:link, footer a:visited { - color: #5c5c5c + color: #5c5c5c } footer a:hover { - color: #827717 + color: #827717 } #gravatar { - display: block; - float: right; - border-radius: 100%; - box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - transition: box-shadow .2s ease-in-out + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out } #gravatar:hover { - box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) } @media (min-width:750px) { - #gravatar { - position: absolute; - top: 10.8em; - right: 3em - } + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } - #gravatar+h1+p+p { - padding-top: 2em - } + #gravatar+h1+p+p { + padding-top: 2em + } - h1+p { - padding-right: 6em - } + h1+p { + padding-right: 6em + } - h1+p+p { - padding-top: .8em - } + h1+p+p { + padding-top: .8em + } } @media (max-width:750px) { - #gravatar { - position: fixed; - bottom: 1em; - right: 1em - } + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } - article h1+p { - font-size: .8em; - padding-bottom: 1em - } + article h1+p { + font-size: .8em; + padding-bottom: 1em + } - article h1+p+p { - padding-top: .8em - } + article h1+p+p { + padding-top: .8em + } - footer { - padding-bottom: 4em - } + footer { + padding-bottom: 4em + } } diff --git a/themes/material-orange.css b/themes/material-orange.css index 75378182..7e1d28fe 100644 --- a/themes/material-orange.css +++ b/themes/material-orange.css @@ -2,147 +2,147 @@ @import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); body { - font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; - padding: .4em; - font-size: 1.1em; - background: #eee; - color: #5c5c5c + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c } a:link, a:visited { - text-decoration: none + text-decoration: none } article { - background: #fff; - border-radius: 2px; - display: block; - margin: 1em; - box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - transition: box-shadow .2s ease-in-out; - position: relative; - max-width: 800px; - margin: 10px auto 0 + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 } article:hover { - box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) } article h1 { - color: #fff; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - height: 4.5em; - width: 100%; - margin: 0 auto; - padding-top: 3.5em; - padding-bottom: .7em; - box-sizing: border-box; - font-size: 2em; - font-weight: 300 + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 } article h1, article h1+p { - background: #ff9800; - font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; - padding-left: 6% + background: #ff9800; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% } article h1+p { - color: #fff3e0; - margin: 0; - text-align: left; - box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); - font-size: 1em; - padding-top: .6em; - min-height: 3.6em; - font-weight: 400; - margin-top: 0 + color: #fff3e0; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 } article h1+p a:link, article h1+p a:visited { - color: #ffe0b2 + color: #ffe0b2 } article h1+p a:hover { - color: #e65100 + color: #e65100 } article p { - padding: 0 2em; - text-align: justify + padding: 0 2em; + text-align: justify } article p:last-child { - color: #f57c00; - padding-bottom: 1.8em; - font-size: .9em + color: #f57c00; + padding-bottom: 1.8em; + font-size: .9em } footer { - margin: 0 auto; - font-size: .8em; - text-align: center + margin: 0 auto; + font-size: .8em; + text-align: center } footer a:link, footer a:visited { - color: #5c5c5c + color: #5c5c5c } footer a:hover { - color: #e65100 + color: #e65100 } #gravatar { - display: block; - float: right; - border-radius: 100%; - box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - transition: box-shadow .2s ease-in-out + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out } #gravatar:hover { - box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) } @media (min-width:750px) { - #gravatar { - position: absolute; - top: 10.8em; - right: 3em - } + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } - #gravatar+h1+p+p { - padding-top: 2em - } + #gravatar+h1+p+p { + padding-top: 2em + } - h1+p { - padding-right: 6em - } + h1+p { + padding-right: 6em + } - h1+p+p { - padding-top: .8em - } + h1+p+p { + padding-top: .8em + } } @media (max-width:750px) { - #gravatar { - position: fixed; - bottom: 1em; - right: 1em - } + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } - article h1+p { - font-size: .8em; - padding-bottom: 1em - } + article h1+p { + font-size: .8em; + padding-bottom: 1em + } - article h1+p+p { - padding-top: .8em - } + article h1+p+p { + padding-top: .8em + } - footer { - padding-bottom: 4em - } + footer { + padding-bottom: 4em + } } diff --git a/themes/material-pink.css b/themes/material-pink.css index 996d8dd6..1f84c8a4 100644 --- a/themes/material-pink.css +++ b/themes/material-pink.css @@ -2,147 +2,147 @@ @import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); body { - font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; - padding: .4em; - font-size: 1.1em; - background: #eee; - color: #5c5c5c + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c } a:link, a:visited { - text-decoration: none + text-decoration: none } article { - background: #fff; - border-radius: 2px; - display: block; - margin: 1em; - box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - transition: box-shadow .2s ease-in-out; - position: relative; - max-width: 800px; - margin: 10px auto 0 + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 } article:hover { - box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) } article h1 { - color: #fff; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - height: 4.5em; - width: 100%; - margin: 0 auto; - padding-top: 3.5em; - padding-bottom: .7em; - box-sizing: border-box; - font-size: 2em; - font-weight: 300 + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 } article h1, article h1+p { - background: #e91e63; - font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; - padding-left: 6% + background: #e91e63; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% } article h1+p { - color: #fce4ec; - margin: 0; - text-align: left; - box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); - font-size: 1em; - padding-top: .6em; - min-height: 3.6em; - font-weight: 400; - margin-top: 0 + color: #fce4ec; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 } article h1+p a:link, article h1+p a:visited { - color: #f8bbd0 + color: #f8bbd0 } article h1+p a:hover { - color: #880e4f + color: #880e4f } article p { - padding: 0 2em; - text-align: justify + padding: 0 2em; + text-align: justify } article p:last-child { - color: #c2185b; - padding-bottom: 1.8em; - font-size: .9em + color: #c2185b; + padding-bottom: 1.8em; + font-size: .9em } footer { - margin: 0 auto; - font-size: .8em; - text-align: center + margin: 0 auto; + font-size: .8em; + text-align: center } footer a:link, footer a:visited { - color: #5c5c5c + color: #5c5c5c } footer a:hover { - color: #880e4f + color: #880e4f } #gravatar { - display: block; - float: right; - border-radius: 100%; - box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - transition: box-shadow .2s ease-in-out + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out } #gravatar:hover { - box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) } @media (min-width:750px) { - #gravatar { - position: absolute; - top: 10.8em; - right: 3em - } + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } - #gravatar+h1+p+p { - padding-top: 2em - } + #gravatar+h1+p+p { + padding-top: 2em + } - h1+p { - padding-right: 6em - } + h1+p { + padding-right: 6em + } - h1+p+p { - padding-top: .8em - } + h1+p+p { + padding-top: .8em + } } @media (max-width:750px) { - #gravatar { - position: fixed; - bottom: 1em; - right: 1em - } + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } - article h1+p { - font-size: .8em; - padding-bottom: 1em - } + article h1+p { + font-size: .8em; + padding-bottom: 1em + } - article h1+p+p { - padding-top: .8em - } + article h1+p+p { + padding-top: .8em + } - footer { - padding-bottom: 4em - } + footer { + padding-bottom: 4em + } } diff --git a/themes/material-purple.css b/themes/material-purple.css index ff168e32..ad7ae0fb 100644 --- a/themes/material-purple.css +++ b/themes/material-purple.css @@ -2,147 +2,147 @@ @import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); body { - font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; - padding: .4em; - font-size: 1.1em; - background: #eee; - color: #5c5c5c + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c } a:link, a:visited { - text-decoration: none + text-decoration: none } article { - background: #fff; - border-radius: 2px; - display: block; - margin: 1em; - box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - transition: box-shadow .2s ease-in-out; - position: relative; - max-width: 800px; - margin: 10px auto 0 + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 } article:hover { - box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) } article h1 { - color: #fff; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - height: 4.5em; - width: 100%; - margin: 0 auto; - padding-top: 3.5em; - padding-bottom: .7em; - box-sizing: border-box; - font-size: 2em; - font-weight: 300 + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 } article h1, article h1+p { - background: #9c27b0; - font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; - padding-left: 6% + background: #9c27b0; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% } article h1+p { - color: #f3e5f5; - margin: 0; - text-align: left; - box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); - font-size: 1em; - padding-top: .6em; - min-height: 3.6em; - font-weight: 400; - margin-top: 0 + color: #f3e5f5; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 } article h1+p a:link, article h1+p a:visited { - color: #e1bee7 + color: #e1bee7 } article h1+p a:hover { - color: #4a148c + color: #4a148c } article p { - padding: 0 2em; - text-align: justify + padding: 0 2em; + text-align: justify } article p:last-child { - color: #7b1fa2; - padding-bottom: 1.8em; - font-size: .9em + color: #7b1fa2; + padding-bottom: 1.8em; + font-size: .9em } footer { - margin: 0 auto; - font-size: .8em; - text-align: center + margin: 0 auto; + font-size: .8em; + text-align: center } footer a:link, footer a:visited { - color: #5c5c5c + color: #5c5c5c } footer a:hover { - color: #4a148c + color: #4a148c } #gravatar { - display: block; - float: right; - border-radius: 100%; - box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - transition: box-shadow .2s ease-in-out + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out } #gravatar:hover { - box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) } @media (min-width:750px) { - #gravatar { - position: absolute; - top: 10.8em; - right: 3em - } + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } - #gravatar+h1+p+p { - padding-top: 2em - } + #gravatar+h1+p+p { + padding-top: 2em + } - h1+p { - padding-right: 6em - } + h1+p { + padding-right: 6em + } - h1+p+p { - padding-top: .8em - } + h1+p+p { + padding-top: .8em + } } @media (max-width:750px) { - #gravatar { - position: fixed; - bottom: 1em; - right: 1em - } + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } - article h1+p { - font-size: .8em; - padding-bottom: 1em - } + article h1+p { + font-size: .8em; + padding-bottom: 1em + } - article h1+p+p { - padding-top: .8em - } + article h1+p+p { + padding-top: .8em + } - footer { - padding-bottom: 4em - } + footer { + padding-bottom: 4em + } } diff --git a/themes/material-red.css b/themes/material-red.css index 2b7ebbf1..af8e0619 100644 --- a/themes/material-red.css +++ b/themes/material-red.css @@ -2,147 +2,147 @@ @import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); body { - font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; - padding: .4em; - font-size: 1.1em; - background: #eee; - color: #5c5c5c + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c } a:link, a:visited { - text-decoration: none + text-decoration: none } article { - background: #fff; - border-radius: 2px; - display: block; - margin: 1em; - box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - transition: box-shadow .2s ease-in-out; - position: relative; - max-width: 800px; - margin: 10px auto 0 + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 } article:hover { - box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) } article h1 { - color: #fff; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - height: 4.5em; - width: 100%; - margin: 0 auto; - padding-top: 3.5em; - padding-bottom: .7em; - box-sizing: border-box; - font-size: 2em; - font-weight: 300 + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 } article h1, article h1+p { - background: #f44336; - font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; - padding-left: 6% + background: #f44336; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% } article h1+p { - color: #ffebee; - margin: 0; - text-align: left; - box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); - font-size: 1em; - padding-top: .6em; - min-height: 3.6em; - font-weight: 400; - margin-top: 0 + color: #ffebee; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 } article h1+p a:link, article h1+p a:visited { - color: #ffcdd2 + color: #ffcdd2 } article h1+p a:hover { - color: #b71c1c + color: #b71c1c } article p { - padding: 0 2em; - text-align: justify + padding: 0 2em; + text-align: justify } article p:last-child { - color: #d32f2f; - padding-bottom: 1.8em; - font-size: .9em + color: #d32f2f; + padding-bottom: 1.8em; + font-size: .9em } footer { - margin: 0 auto; - font-size: .8em; - text-align: center + margin: 0 auto; + font-size: .8em; + text-align: center } footer a:link, footer a:visited { - color: #5c5c5c + color: #5c5c5c } footer a:hover { - color: #b71c1c + color: #b71c1c } #gravatar { - display: block; - float: right; - border-radius: 100%; - box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - transition: box-shadow .2s ease-in-out + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out } #gravatar:hover { - box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) } @media (min-width:750px) { - #gravatar { - position: absolute; - top: 10.8em; - right: 3em - } + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } - #gravatar+h1+p+p { - padding-top: 2em - } + #gravatar+h1+p+p { + padding-top: 2em + } - h1+p { - padding-right: 6em - } + h1+p { + padding-right: 6em + } - h1+p+p { - padding-top: .8em - } + h1+p+p { + padding-top: .8em + } } @media (max-width:750px) { - #gravatar { - position: fixed; - bottom: 1em; - right: 1em - } + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } - article h1+p { - font-size: .8em; - padding-bottom: 1em - } + article h1+p { + font-size: .8em; + padding-bottom: 1em + } - article h1+p+p { - padding-top: .8em - } + article h1+p+p { + padding-top: .8em + } - footer { - padding-bottom: 4em - } + footer { + padding-bottom: 4em + } } diff --git a/themes/material-teal.css b/themes/material-teal.css index b2cde091..e9d270a8 100644 --- a/themes/material-teal.css +++ b/themes/material-teal.css @@ -2,147 +2,147 @@ @import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); body { - font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; - padding: .4em; - font-size: 1.1em; - background: #eee; - color: #5c5c5c + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c } a:link, a:visited { - text-decoration: none + text-decoration: none } article { - background: #fff; - border-radius: 2px; - display: block; - margin: 1em; - box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - transition: box-shadow .2s ease-in-out; - position: relative; - max-width: 800px; - margin: 10px auto 0 + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 } article:hover { - box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) } article h1 { - color: #fff; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - height: 4.5em; - width: 100%; - margin: 0 auto; - padding-top: 3.5em; - padding-bottom: .7em; - box-sizing: border-box; - font-size: 2em; - font-weight: 300 + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 } article h1, article h1+p { - background: #009688; - font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; - padding-left: 6% + background: #009688; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% } article h1+p { - color: #e0f2f1; - margin: 0; - text-align: left; - box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); - font-size: 1em; - padding-top: .6em; - min-height: 3.6em; - font-weight: 400; - margin-top: 0 + color: #e0f2f1; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 } article h1+p a:link, article h1+p a:visited { - color: #b2dfdb + color: #b2dfdb } article h1+p a:hover { - color: #004d40 + color: #004d40 } article p { - padding: 0 2em; - text-align: justify + padding: 0 2em; + text-align: justify } article p:last-child { - color: #00796b; - padding-bottom: 1.8em; - font-size: .9em + color: #00796b; + padding-bottom: 1.8em; + font-size: .9em } footer { - margin: 0 auto; - font-size: .8em; - text-align: center + margin: 0 auto; + font-size: .8em; + text-align: center } footer a:link, footer a:visited { - color: #5c5c5c + color: #5c5c5c } footer a:hover { - color: #004d40 + color: #004d40 } #gravatar { - display: block; - float: right; - border-radius: 100%; - box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - transition: box-shadow .2s ease-in-out + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out } #gravatar:hover { - box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) } @media (min-width:750px) { - #gravatar { - position: absolute; - top: 10.8em; - right: 3em - } + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } - #gravatar+h1+p+p { - padding-top: 2em - } + #gravatar+h1+p+p { + padding-top: 2em + } - h1+p { - padding-right: 6em - } + h1+p { + padding-right: 6em + } - h1+p+p { - padding-top: .8em - } + h1+p+p { + padding-top: .8em + } } @media (max-width:750px) { - #gravatar { - position: fixed; - bottom: 1em; - right: 1em - } + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } - article h1+p { - font-size: .8em; - padding-bottom: 1em - } + article h1+p { + font-size: .8em; + padding-bottom: 1em + } - article h1+p+p { - padding-top: .8em - } + article h1+p+p { + padding-top: .8em + } - footer { - padding-bottom: 4em - } + footer { + padding-bottom: 4em + } } diff --git a/themes/material-yellow.css b/themes/material-yellow.css index 97143621..1a21ae7d 100644 --- a/themes/material-yellow.css +++ b/themes/material-yellow.css @@ -2,147 +2,147 @@ @import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); body { - font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; - padding: .4em; - font-size: 1.1em; - background: #eee; - color: #5c5c5c + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c } a:link, a:visited { - text-decoration: none + text-decoration: none } article { - background: #fff; - border-radius: 2px; - display: block; - margin: 1em; - box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - transition: box-shadow .2s ease-in-out; - position: relative; - max-width: 800px; - margin: 10px auto 0 + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 } article:hover { - box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) } article h1 { - color: #fff; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - height: 4.5em; - width: 100%; - margin: 0 auto; - padding-top: 3.5em; - padding-bottom: .7em; - box-sizing: border-box; - font-size: 2em; - font-weight: 300 + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 } article h1, article h1+p { - background: #ffeb3b; - font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; - padding-left: 6% + background: #ffeb3b; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% } article h1+p { - color: #fffde7; - margin: 0; - text-align: left; - box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); - font-size: 1em; - padding-top: .6em; - min-height: 3.6em; - font-weight: 400; - margin-top: 0 + color: #fffde7; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 } article h1+p a:link, article h1+p a:visited { - color: #fff9c4 + color: #fff9c4 } article h1+p a:hover { - color: #f57f17 + color: #f57f17 } article p { - padding: 0 2em; - text-align: justify + padding: 0 2em; + text-align: justify } article p:last-child { - color: #fbc02d; - padding-bottom: 1.8em; - font-size: .9em + color: #fbc02d; + padding-bottom: 1.8em; + font-size: .9em } footer { - margin: 0 auto; - font-size: .8em; - text-align: center + margin: 0 auto; + font-size: .8em; + text-align: center } footer a:link, footer a:visited { - color: #5c5c5c + color: #5c5c5c } footer a:hover { - color: #f57f17 + color: #f57f17 } #gravatar { - display: block; - float: right; - border-radius: 100%; - box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - transition: box-shadow .2s ease-in-out + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out } #gravatar:hover { - box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) } @media (min-width:750px) { - #gravatar { - position: absolute; - top: 10.8em; - right: 3em - } + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } - #gravatar+h1+p+p { - padding-top: 2em - } + #gravatar+h1+p+p { + padding-top: 2em + } - h1+p { - padding-right: 6em - } + h1+p { + padding-right: 6em + } - h1+p+p { - padding-top: .8em - } + h1+p+p { + padding-top: .8em + } } @media (max-width:750px) { - #gravatar { - position: fixed; - bottom: 1em; - right: 1em - } + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } - article h1+p { - font-size: .8em; - padding-bottom: 1em - } + article h1+p { + font-size: .8em; + padding-bottom: 1em + } - article h1+p+p { - padding-top: .8em - } + article h1+p+p { + padding-top: .8em + } - footer { - padding-bottom: 4em - } + footer { + padding-bottom: 4em + } } diff --git a/themes/material.css b/themes/material.css index db45dfd7..dc861ea6 100644 --- a/themes/material.css +++ b/themes/material.css @@ -2,147 +2,147 @@ @import url(https://fonts.googleapis.com/css?family=Roboto:400|Roboto+Condensed:300,400); body { - font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; - padding: .4em; - font-size: 1.1em; - background: #eee; - color: #5c5c5c + font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif; + padding: .4em; + font-size: 1.1em; + background: #eee; + color: #5c5c5c } a:link, a:visited { - text-decoration: none + text-decoration: none } article { - background: #fff; - border-radius: 2px; - display: block; - margin: 1em; - box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); - transition: box-shadow .2s ease-in-out; - position: relative; - max-width: 800px; - margin: 10px auto 0 + background: #fff; + border-radius: 2px; + display: block; + margin: 1em; + box-shadow: 0 1px 2px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24); + transition: box-shadow .2s ease-in-out; + position: relative; + max-width: 800px; + margin: 10px auto 0 } article:hover { - box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) + box-shadow: 0 2px 3px rgba(0, 0, 0, .16), 0 2px 3px rgba(0, 0, 0, .23) } article h1 { - color: #fff; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - height: 4.5em; - width: 100%; - margin: 0 auto; - padding-top: 3.5em; - padding-bottom: .7em; - box-sizing: border-box; - font-size: 2em; - font-weight: 300 + color: #fff; + border-top-left-radius: 2px; + border-top-right-radius: 2px; + height: 4.5em; + width: 100%; + margin: 0 auto; + padding-top: 3.5em; + padding-bottom: .7em; + box-sizing: border-box; + font-size: 2em; + font-weight: 300 } article h1, article h1+p { - background: #607d8b; - font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; - padding-left: 6% + background: #607d8b; + font-family: Roboto Condensed, Helvetica Neue, Helvetica, Arial, sans-serif; + padding-left: 6% } article h1+p { - color: #eceff1; - margin: 0; - text-align: left; - box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); - font-size: 1em; - padding-top: .6em; - min-height: 3.6em; - font-weight: 400; - margin-top: 0 + color: #eceff1; + margin: 0; + text-align: left; + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2); + font-size: 1em; + padding-top: .6em; + min-height: 3.6em; + font-weight: 400; + margin-top: 0 } article h1+p a:link, article h1+p a:visited { - color: #cfd8dc + color: #cfd8dc } article h1+p a:hover { - color: #263238 + color: #263238 } article p { - padding: 0 2em; - text-align: justify + padding: 0 2em; + text-align: justify } article p:last-child { - color: #455a64; - padding-bottom: 1.8em; - font-size: .9em + color: #455a64; + padding-bottom: 1.8em; + font-size: .9em } footer { - margin: 0 auto; - font-size: .8em; - text-align: center + margin: 0 auto; + font-size: .8em; + text-align: center } footer a:link, footer a:visited { - color: #5c5c5c + color: #5c5c5c } footer a:hover { - color: #263238 + color: #263238 } #gravatar { - display: block; - float: right; - border-radius: 100%; - box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); - transition: box-shadow .2s ease-in-out + display: block; + float: right; + border-radius: 100%; + box-shadow: 0 3px 10px rgba(0, 0, 0, .23), 0 3px 10px rgba(0, 0, 0, .16); + transition: box-shadow .2s ease-in-out } #gravatar:hover { - box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) + box-shadow: 0 5px 12px rgba(0, 0, 0, .23), 0 5px 12px rgba(0, 0, 0, .16) } @media (min-width:750px) { - #gravatar { - position: absolute; - top: 10.8em; - right: 3em - } + #gravatar { + position: absolute; + top: 10.8em; + right: 3em + } - #gravatar+h1+p+p { - padding-top: 2em - } + #gravatar+h1+p+p { + padding-top: 2em + } - h1+p { - padding-right: 6em - } + h1+p { + padding-right: 6em + } - h1+p+p { - padding-top: .8em - } + h1+p+p { + padding-top: .8em + } } @media (max-width:750px) { - #gravatar { - position: fixed; - bottom: 1em; - right: 1em - } + #gravatar { + position: fixed; + bottom: 1em; + right: 1em + } - article h1+p { - font-size: .8em; - padding-bottom: 1em - } + article h1+p { + font-size: .8em; + padding-bottom: 1em + } - article h1+p+p { - padding-top: .8em - } + article h1+p+p { + padding-top: .8em + } - footer { - padding-bottom: 4em - } + footer { + padding-bottom: 4em + } } diff --git a/themes/mitserrat.css b/themes/mitserrat.css index 6ea80eba..4856b2bb 100644 --- a/themes/mitserrat.css +++ b/themes/mitserrat.css @@ -2,10 +2,10 @@ MIT-license Theme: MITserrat -version: 1.0 -date: 17/09/2016 -author: Wouter Janson -github: https://github.com/WouterJanson +version: 1.0 +date: 17/09/2016 +author: Wouter Janson +github: https://github.com/WouterJanson description: A simple theme based on the Montserrat font @@ -13,59 +13,59 @@ description: A simple theme based on the Montserrat font @import url(https://fonts.googleapis.com/css?family=Montserrat:400,700); html { - padding: 0; - margin: 0; + padding: 0; + margin: 0; } body { - background-color: #F9F9F9; + background-color: #F9F9F9; } h1 { - color: #B93A32; - font-family: Montserrat; - font-size: 72px; - font-weight: 600; - line-height: 72px; - letter-spacing: -4px; - margin-bottom: 48px; - text-transform: uppercase; - text-align: center; + color: #B93A32; + font-family: Montserrat; + font-size: 72px; + font-weight: 600; + line-height: 72px; + letter-spacing: -4px; + margin-bottom: 48px; + text-transform: uppercase; + text-align: center; } p { - color: #3E4147; - font-family: Montserrat; - font-size: 22px; - font-weight: 500; - line-height: 32px; - margin-bottom: 48px; - margin-left: auto; - margin-right: auto; - max-width: 80%; + color: #3E4147; + font-family: Montserrat; + font-size: 22px; + font-weight: 500; + line-height: 32px; + margin-bottom: 48px; + margin-left: auto; + margin-right: auto; + max-width: 80%; } a { - color: #3E4147; - border-bottom: 3px solid #B93A32; - font-weight: 700; - text-decoration: none; + color: #3E4147; + border-bottom: 3px solid #B93A32; + font-weight: 700; + text-decoration: none; } a:hover { - color: #B93A32; + color: #B93A32; } p:first-of-type, footer { - text-align: center; + text-align: center; } #gravatar { - display: block; - margin-left: auto; - margin-right: auto; - height: 80px; - width: 80px; - margin-top: 72px; - border-radius: 40px; + display: block; + margin-left: auto; + margin-right: auto; + height: 80px; + width: 80px; + margin-top: 72px; + border-radius: 40px; } diff --git a/themes/open-sans.css b/themes/open-sans.css index cc812e74..efd379d8 100644 --- a/themes/open-sans.css +++ b/themes/open-sans.css @@ -1,70 +1,70 @@ @font-face { - font-family: 'Open Sans Bold'; - font-style: normal; - font-weight: 700; - src: local('Open Sans Bold'), local('OpenSans-Bold'), url(https://themes.googleusercontent.com/static/fonts/opensans/v6/k3k702ZOKiLJc3WVjuplzKRDOzjiPcYnFooOUGCOsRk.woff) format('woff') + font-family: 'Open Sans Bold'; + font-style: normal; + font-weight: 700; + src: local('Open Sans Bold'), local('OpenSans-Bold'), url(https://themes.googleusercontent.com/static/fonts/opensans/v6/k3k702ZOKiLJc3WVjuplzKRDOzjiPcYnFooOUGCOsRk.woff) format('woff') } html { - background: #f2f2f8 + background: #f2f2f8 } body { - margin: 0; - padding: 100px; - font-family: 'Open Sans', sans-serif; - font-size: 1.2em; - line-height: 1.6 + margin: 0; + padding: 100px; + font-family: 'Open Sans', sans-serif; + font-size: 1.2em; + line-height: 1.6 } ::selection { - background: #ccc + background: #ccc } ::-moz-selection { - background: #ccc + background: #ccc } h1 { - text-align: center; - font: 36px 'Open Sans Bold' + text-align: center; + font: 36px 'Open Sans Bold' } p { - margin: 25px 0 0 + margin: 25px 0 0 } p:first-of-type { - text-align: center; - margin: 0 0 50px + text-align: center; + margin: 0 0 50px } a { - color: #0a0a0b; - text-decoration: none; - border-bottom: 3px solid rgba(10, 10, 11, 1); - transition: .15s ease + color: #0a0a0b; + text-decoration: none; + border-bottom: 3px solid rgba(10, 10, 11, 1); + transition: .15s ease } a:focus, a:hover { - opacity: .5 + opacity: .5 } article, footer { - display: block; - margin: 0 auto !important; - padding: 25px; - max-width: 900px; - width: 100% + display: block; + margin: 0 auto !important; + padding: 25px; + max-width: 900px; + width: 100% } footer { - text-align: center; - font: 75% 'Open Sans Bold' + text-align: center; + font: 75% 'Open Sans Bold' } #gravatar { - display: block !important; - border-radius: 100%; - margin: 0 auto + display: block !important; + border-radius: 100%; + margin: 0 auto } diff --git a/themes/orange.css b/themes/orange.css index 4d14eead..4d9388b2 100644 --- a/themes/orange.css +++ b/themes/orange.css @@ -1,85 +1,85 @@ @import url(https://fonts.googleapis.com/css?family=PT+Sans|PT+Sans+Caption:700); html, body { - background: #663B14; - font: 13pt "PT Sans", sans-serif; - text-align: center + background: #663B14; + font: 13pt "PT Sans", sans-serif; + text-align: center } a:link, a:visited { - color: #234234; - text-decoration: none + color: #234234; + text-decoration: none } a:hover, a:active { - color: #432321; - text-decoration: underline + color: #432321; + text-decoration: underline } article { - background: #CC9900; - text-align: left; - width: 85%; - margin: 80px auto; - border-radius: 10px; - box-shadow: -1px 1px 20px rgba(30, 30, 30, 0.5), 2px 1px 15px rgba(80, 80, 80, 0.4), inset 0 0 10px rgba(50, 50, 50, 0.7); + background: #CC9900; + text-align: left; + width: 85%; + margin: 80px auto; + border-radius: 10px; + box-shadow: -1px 1px 20px rgba(30, 30, 30, 0.5), 2px 1px 15px rgba(80, 80, 80, 0.4), inset 0 0 10px rgba(50, 50, 50, 0.7); } article h1 { - background: #CC6600; - text-align: center; - font: bold 35pt "PT Sans Caption", "PT Sans", sans-serif; - margin: 0; - padding: 19px; - border-radius: 10px; - box-shadow: inset 0 0 10px rgba(70, 70, 70, 0.2), inset 1px 0 10px rgba(50, 50, 50, 0.3), inset -1px 0 10px rgba(50, 50, 50, 0.3); + background: #CC6600; + text-align: center; + font: bold 35pt "PT Sans Caption", "PT Sans", sans-serif; + margin: 0; + padding: 19px; + border-radius: 10px; + box-shadow: inset 0 0 10px rgba(70, 70, 70, 0.2), inset 1px 0 10px rgba(50, 50, 50, 0.3), inset -1px 0 10px rgba(50, 50, 50, 0.3); } article p { - margin: 0; - padding: 10px 15px + margin: 0; + padding: 10px 15px } footer { - position: fixed; - bottom: 0; - left: 0; - width: 100%; - border-top: 1px solid #7A7A00; - background: #333300; - user-select: none; + position: fixed; + bottom: 0; + left: 0; + width: 100%; + border-top: 1px solid #7A7A00; + background: #333300; + user-select: none; } footer p, footer a { - display: block; - margin: 0; - text-shadow: 0 0 10px #ccc; - font-size: 11.5pt + display: block; + margin: 0; + text-shadow: 0 0 10px #ccc; + font-size: 11.5pt } footer a:link, footer a:visited { - color: #aaa + color: #aaa } footer a:hover, footer a:active { - color: #eee + color: #eee } ::selection { - background: #663300; - color: white + background: #663300; + color: white } ::-moz-selection { - background: #663300; - color: white + background: #663300; + color: white } #gravatar { - position: relative; - float: right; - top: 0.5em; - z-index: 1; - right: 0.7em; - border-radius: 10px; + position: relative; + float: right; + top: 0.5em; + z-index: 1; + right: 0.7em; + border-radius: 10px; } diff --git a/themes/page_gradient_linear.svg b/themes/page_gradient_linear.svg index f09c4a87..ba2d2b4a 100644 --- a/themes/page_gradient_linear.svg +++ b/themes/page_gradient_linear.svg @@ -1,8 +1,8 @@ - - - - - + + + + + diff --git a/themes/page_gradient_radial.svg b/themes/page_gradient_radial.svg index e6c067a4..9339d94d 100644 --- a/themes/page_gradient_radial.svg +++ b/themes/page_gradient_radial.svg @@ -1,8 +1,8 @@ - - - - - + + + + + diff --git a/themes/plaintext.css b/themes/plaintext.css index adef5b43..bdc4f796 100644 --- a/themes/plaintext.css +++ b/themes/plaintext.css @@ -1,9 +1,9 @@ @import url(https://fonts.googleapis.com/css?family=Inconsolata); body { - max-width: 625px; + max-width: 625px; } body, h1, h2, h3, h4, h5, h6 { - font: normal 15px Inconsolata, Consolas, monospace; + font: normal 15px Inconsolata, Consolas, monospace; } diff --git a/themes/rokkitt.css b/themes/rokkitt.css index f86def54..e38b57a6 100644 --- a/themes/rokkitt.css +++ b/themes/rokkitt.css @@ -1,79 +1,79 @@ @import url(https://fonts.googleapis.com/css?family=Rokkitt:400,700); body { - margin: 0 auto; - font: normal x-large/1.3 Rokkitt, Helvetica, Arial; - line-height: 1.2em; - color: #666; - text-align: justify; + margin: 0 auto; + font: normal x-large/1.3 Rokkitt, Helvetica, Arial; + line-height: 1.2em; + color: #666; + text-align: justify; } article, footer { - display: block; - min-width: 360px; - max-width: 900px; - width: 80%; + display: block; + min-width: 360px; + max-width: 900px; + width: 80%; } article { - margin: 0 auto 0 auto; - border: 1px solid; - border-color: #fff #fff #fff #fff; - padding: 2em; - background: #fff; + margin: 0 auto 0 auto; + border: 1px solid; + border-color: #fff #fff #fff #fff; + padding: 2em; + background: #fff; } h1 { - margin: 0; + margin: 0; } article p:first-of-type { - margin-top: 1.6em; + margin-top: 1.6em; } article p:last-child { - margin-bottom: 0; + margin-bottom: 0; } footer { - margin: 0em auto 2em auto; - text-align: center; + margin: 0em auto 2em auto; + text-align: center; } footer a { - color: #abc8e2; - text-shadow: 0 1px 1px #fff; - text-decoration: none; - font-size: .8em; - padding: 1em; + color: #abc8e2; + text-shadow: 0 1px 1px #fff; + text-decoration: none; + font-size: .8em; + padding: 1em; } h1 { - font-weight: normal; - line-height: 36px; - font-size: 2em; - text-align: center + font-weight: normal; + line-height: 36px; + font-size: 2em; + text-align: center } a { - color: #abc8e2; - text-decoration: none; + color: #abc8e2; + text-decoration: none; } #gravatar { - position: relative; - float: right; - margin-bottom: 1em; - margin-left: 1em; - border: 1px solid #ddd; + position: relative; + float: right; + margin-bottom: 1em; + margin-left: 1em; + border: 1px solid #ddd; } @media all and (max-width: 500px) { - article { - padding: 1em; - } + article { + padding: 1em; + } - body { - font-size: 1em; - } + body { + font-size: 1em; + } } diff --git a/themes/silver-style.css b/themes/silver-style.css index fed9f9ee..68813409 100644 --- a/themes/silver-style.css +++ b/themes/silver-style.css @@ -6,79 +6,79 @@ **https://in.linkedin.com/in/devdipesh/ */ body { - margin: 0; - padding: 50px; - font: normal 14px/20px "DroidSansRegular", Arial, Helvetica, sans-serif; - color: #444; - background: #FAFAFA; - background: url(/themes/page_gradient_radial.svg) 50% -300px no-repeat, url(/themes/page_gradient_linear.svg) 50% 0 repeat-x, #FAFAFA; - background-size: 1600px 600px, 100% 500px, auto; + margin: 0; + padding: 50px; + font: normal 14px/20px "DroidSansRegular", Arial, Helvetica, sans-serif; + color: #444; + background: #FAFAFA; + background: url(/themes/page_gradient_radial.svg) 50% -300px no-repeat, url(/themes/page_gradient_linear.svg) 50% 0 repeat-x, #FAFAFA; + background-size: 1600px 600px, 100% 500px, auto; } article { - border-right: 1.5px solid #9ab8ed; - padding: 17px; - border-radius: 1%; - box-shadow: 3px 0px 20px -2px #7ba5e4; - background: radial-gradient(50% 0%, 50% 15px, #EB8CF2 0%, white 100%); + border-right: 1.5px solid #9ab8ed; + padding: 17px; + border-radius: 1%; + box-shadow: 3px 0px 20px -2px #7ba5e4; + background: radial-gradient(50% 0%, 50% 15px, #EB8CF2 0%, white 100%); } article, footer { - display: block; - max-width: 720px; - margin: 0 auto; + display: block; + max-width: 720px; + margin: 0 auto; } article { - padding: 28px; + padding: 28px; } footer { - padding: 0 28px; - text-align: center; + padding: 0 28px; + text-align: center; } h1 { - margin: 0; - font-size: 24px; - line-height: 32px; - color: #008CCC; - text-transform: uppercase; + margin: 0; + font-size: 24px; + line-height: 32px; + color: #008CCC; + text-transform: uppercase; } a, a:visited { - color: #577446; - padding: 4px; - text-decoration: none; + color: #577446; + padding: 4px; + text-decoration: none; } a:active, a:hover { - color: #5dd912; + color: #5dd912; } a img { - position: absolute; - top: 0; - right: 0; - border: 0; + position: absolute; + top: 0; + right: 0; + border: 0; } :-moz-any-link:focus { - background: #bc4a46; + background: #bc4a46; } ::selection { - background: #bc4a46; + background: #bc4a46; } ::-moz-selection { - background: #bc4a46; + background: #bc4a46; } #gravatar { - position: relative; - float: right; - margin-bottom: 1em; - margin-left: 1em; - border: 1px solid #ddd; + position: relative; + float: right; + margin-bottom: 1em; + margin-left: 1em; + border: 1px solid #ddd; } diff --git a/themes/solarized.css b/themes/solarized.css index 8b4d6b25..05919457 100644 --- a/themes/solarized.css +++ b/themes/solarized.css @@ -3,89 +3,89 @@ @import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:300|Source+Code+Pro:700); html { - padding: 0; - font-size: 1em; - background-color: #eee8d5 + padding: 0; + font-size: 1em; + background-color: #eee8d5 } body { - font-family: 'Source Sans Pro', sans-serif; - font-size: 1.5em; - font-weight: 300; - text-align: center; - margin: 0; - background: none repeat scroll 0 0 #eee8d5 + font-family: 'Source Sans Pro', sans-serif; + font-size: 1.5em; + font-weight: 300; + text-align: center; + margin: 0; + background: none repeat scroll 0 0 #eee8d5 } article, footer { - text-align: center; - margin: auto; - max-width: 100% + text-align: center; + margin: auto; + max-width: 100% } article { - margin-top: 0; - padding: 1.75em; - color: #dc322f; - text-align: center; - position: relative; - background: none repeat scroll 0 0 #002b36 + margin-top: 0; + padding: 1.75em; + color: #dc322f; + text-align: center; + position: relative; + background: none repeat scroll 0 0 #002b36 } article p { - text-align: left; - color: #93a1a1 + text-align: left; + color: #93a1a1 } article p:first-of-type { - text-align: center; - color: #b58900 + text-align: center; + color: #b58900 } article p:last-of-type { - color: #268bd2 + color: #268bd2 } #gravatar { - width: 50px; - border: 5px solid #FFF; - border-radius: 15px; - display: block; - margin: 0 auto + width: 50px; + border: 5px solid #FFF; + border-radius: 15px; + display: block; + margin: 0 auto } h1 { - font-size: 2em; - font-weight: 700; - text-transform: uppercase; - display: inline-block; - padding-bottom: 12px; - border-bottom: 2px dashed #dc322f; - margin: 0 + font-size: 2em; + font-weight: 700; + text-transform: uppercase; + display: inline-block; + padding-bottom: 12px; + border-bottom: 2px dashed #dc322f; + margin: 0 } a { - font-family: 'Source Sans Pro', sans-serif; - font-size: 1em; - font-weight: 700; - color: #859900; - text-decoration: none; - word-wrap: break-word + font-family: 'Source Sans Pro', sans-serif; + font-size: 1em; + font-weight: 700; + color: #859900; + text-decoration: none; + word-wrap: break-word } a:active, a:focus, a:hover { - color: #d33682 + color: #d33682 } @media screen and (min-width:960px) { - #gravatar { - display: none; - position: absolute; - top: 2em; - left: 2em - } + #gravatar { + display: none; + position: absolute; + top: 2em; + left: 2em + } - h1 { - font-size: 2.5em - } + h1 { + font-size: 2.5em + } } diff --git a/themes/willpower.css b/themes/willpower.css index 225a622f..b163da77 100644 --- a/themes/willpower.css +++ b/themes/willpower.css @@ -1,72 +1,72 @@ @import url(https://fonts.googleapis.com/css?family=Roboto:400,700); * { - margin: 0; - padding: 0; - box-sizing: boder-box; + margin: 0; + padding: 0; + box-sizing: boder-box; } img { - border: 0; + border: 0; } body { - background: #fff; - font: 16px/28px "Roboto", sans-serif; - color: #888; + background: #fff; + font: 16px/28px "Roboto", sans-serif; + color: #888; } article, footer { - display: block; - max-width: 720px; - margin: 0 auto; + display: block; + max-width: 720px; + margin: 0 auto; } article { - padding: 20px; + padding: 20px; } footer { - padding: 0 20px; - text-align: center; - font-size: 12px; + padding: 0 20px; + text-align: center; + font-size: 12px; } h1 { - font-size: 24px; - line-height: 32px; - color: #399; + font-size: 24px; + line-height: 32px; + color: #399; } a, a:visited { - color: #369; - padding: 4px; - text-decoration: none; + color: #369; + padding: 4px; + text-decoration: none; } a:active, a:hover { - text-decoration: underline; + text-decoration: underline; } a img { - position: absolute; - top: 0; - right: 0; + position: absolute; + top: 0; + right: 0; } article p { - margin: 10px 0; + margin: 10px 0; } article p:last-child { - border-left: 2px solid #399; - padding-left: 10px; + border-left: 2px solid #399; + padding-left: 10px; } #gravatar { - float: right; - margin: 1em; - width: 80px; - height: 80px; - border-radius: 40px; + float: right; + margin: 1em; + width: 80px; + height: 80px; + border-radius: 40px; } diff --git a/themes/xtansia.css b/themes/xtansia.css index bd676fb0..c35303c7 100644 --- a/themes/xtansia.css +++ b/themes/xtansia.css @@ -1,74 +1,74 @@ @import url(https://fonts.googleapis.com/css?family=Rambla:400,400italic); body { - font-family: Rambla, serif; - padding: 32px; - font-size: 1.1em; - background: white; - color: gray; + font-family: Rambla, serif; + padding: 32px; + font-size: 1.1em; + background: white; + color: gray; } article { - max-width: 800px; - text-align: justify; - margin: 10px auto 0; + max-width: 800px; + text-align: justify; + margin: 10px auto 0; } article p:nth-of-type(1) { - text-align: center; - font-style: italic; - font-size: 1.15em; - border-top: 2px dashed DeepSkyBlue; - padding-top: 1.0em; + text-align: center; + font-style: italic; + font-size: 1.15em; + border-top: 2px dashed DeepSkyBlue; + padding-top: 1.0em; } article p:last-child { - border-bottom: 2px dashed DeepSkyBlue; - padding: 0.0em 2.0em 1.0em 2.0em; - font-size: 0.9em; - font-style: italic; + border-bottom: 2px dashed DeepSkyBlue; + padding: 0.0em 2.0em 1.0em 2.0em; + font-size: 0.9em; + font-style: italic; } article h1 { - max-width: 550px; - margin: 0 auto; - border-bottom: groove LightGray; - padding-top: 0.5em; - padding-bottom: 0.5em; - text-align: center; - font-variant: small-caps; - font-size: 1.6em; - font-weight: 450; - letter-spacing: 0.25em; + max-width: 550px; + margin: 0 auto; + border-bottom: groove LightGray; + padding-top: 0.5em; + padding-bottom: 0.5em; + text-align: center; + font-variant: small-caps; + font-size: 1.6em; + font-weight: 450; + letter-spacing: 0.25em; } footer { - max-width: 550px; - border-top: groove LightGray; - margin: 0 auto; - font-size: 0.8em; - font-style: italic; - text-align: center; + max-width: 550px; + border-top: groove LightGray; + margin: 0 auto; + font-size: 0.8em; + font-style: italic; + text-align: center; } a:link, a:visited { - text-decoration: none; - color: SlateGray; - border-bottom: 1px solid; + text-decoration: none; + color: SlateGray; + border-bottom: 1px solid; } a:hover { - color: DeepSkyBlue; - border: none; + color: DeepSkyBlue; + border: none; } a:active { - color: #007399; + color: #007399; } #gravatar { - position: relative; - float: right; - border: 2px solid gray; - top: -1em; + position: relative; + float: right; + border: 2px solid gray; + top: -1em; } diff --git a/users/1000ch.json b/users/1000ch.json index 049df542..7c99833c 100644 --- a/users/1000ch.json +++ b/users/1000ch.json @@ -1,5 +1,5 @@ { - "copyright": "Shogo Sensui", - "url": "http://1000ch.net", - "email": "shogo.sensui@gmail.com" -} + "copyright": "Shogo Sensui", + "url": "http://1000ch.net", + "email": "shogo.sensui@gmail.com" +} \ No newline at end of file diff --git a/users/10kb.json b/users/10kb.json index 57bf6b0a..9ab9dd2c 100644 --- a/users/10kb.json +++ b/users/10kb.json @@ -1,6 +1,6 @@ { - "copyright": "10KB", - "url": "http://10kb.nl", - "email": "info@10kb.nl", - "gravatar": true -} + "copyright": "10KB", + "url": "http://10kb.nl", + "email": "info@10kb.nl", + "gravatar": true +} \ No newline at end of file diff --git a/users/135yshr.json b/users/135yshr.json index 114a5ea7..ac79e2e6 100644 --- a/users/135yshr.json +++ b/users/135yshr.json @@ -1,8 +1,8 @@ { - "copyright": "Yoshihiro Isago, https://twitter.com/135yshr", - "url": "https://twitter.com/135yshr", - "email": "isago@praisefirst.jp", - "format": "html", - "theme": "double-windsor", - "gravatar": true -} + "copyright": "Yoshihiro Isago, https://twitter.com/135yshr", + "url": "https://twitter.com/135yshr", + "email": "isago@praisefirst.jp", + "format": "html", + "theme": "double-windsor", + "gravatar": true +} \ No newline at end of file diff --git a/users/15minuteslate.json b/users/15minuteslate.json index 88d1e4c6..7e08963f 100644 --- a/users/15minuteslate.json +++ b/users/15minuteslate.json @@ -1,7 +1,7 @@ { - "copyright": "15minuteslate", - "url": "http://15minuteslate.net", - "email": "hi@15minuteslate.net", - "format": "html", - "theme": "afterdark" -} + "copyright": "15minuteslate", + "url": "http://15minuteslate.net", + "email": "hi@15minuteslate.net", + "format": "html", + "theme": "afterdark" +} \ No newline at end of file diff --git a/users/1natsu172.json b/users/1natsu172.json index da257408..5ab10754 100644 --- a/users/1natsu172.json +++ b/users/1natsu172.json @@ -1,7 +1,7 @@ { - "copyright": "1natsu, http://1natsu.net", - "url": "http://1natsu.net", - "email": "1natsummer+mitlicenseorg@gmail.com", - "theme": "material-grey", - "gravatar": true -} + "copyright": "1natsu, http://1natsu.net", + "url": "http://1natsu.net", + "email": "1natsummer+mitlicenseorg@gmail.com", + "theme": "material-grey", + "gravatar": true +} \ No newline at end of file diff --git a/users/1up.json b/users/1up.json index 4d25e1ce..c3c5e958 100644 --- a/users/1up.json +++ b/users/1up.json @@ -1,6 +1,6 @@ { - "copyright": "1UP, http://1upnote.com", - "url": "http://1upnote.com", - "email": "1up@1upz.com", - "format": "html" -} + "copyright": "1UP, http://1upnote.com", + "url": "http://1upnote.com", + "email": "1up@1upz.com", + "format": "html" +} \ No newline at end of file diff --git a/users/2357gi.json b/users/2357gi.json index cef06c8c..90d9a8f0 100644 --- a/users/2357gi.json +++ b/users/2357gi.json @@ -1,6 +1,6 @@ { - "copyright": "Kento Ohgi, https://github.com/2357gi", - "url": "https://2357gi.com/", - "format": "txt", - "email": "2357.gi@gmail.com" -} + "copyright": "Kento Ohgi, https://github.com/2357gi", + "url": "https://2357gi.com/", + "format": "txt", + "email": "2357.gi@gmail.com" +} \ No newline at end of file diff --git a/users/284km.json b/users/284km.json index 9e2ce0e8..ed1cefb8 100644 --- a/users/284km.json +++ b/users/284km.json @@ -1,5 +1,5 @@ { - "copyright": "284km", - "email": "k.furuhashi10@gmail.com", - "theme": "double-windsor" -} + "copyright": "284km", + "email": "k.furuhashi10@gmail.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/2nate.json b/users/2nate.json index 10ecfe86..fd3af818 100644 --- a/users/2nate.json +++ b/users/2nate.json @@ -1,6 +1,6 @@ { - "copyright": "2nate", - "url": "http://2nate.com", - "email": "post@2nate.com", - "format": "html" -} + "copyright": "2nate", + "url": "http://2nate.com", + "email": "post@2nate.com", + "format": "html" +} \ No newline at end of file diff --git a/users/321maker.json b/users/321maker.json index 8c20b640..793d4f78 100644 --- a/users/321maker.json +++ b/users/321maker.json @@ -1,6 +1,6 @@ { - "copyright": "321Maker", - "url": "http://321maker.com", - "email": "maker@321maker.com", - "format": "html" -} + "copyright": "321Maker", + "url": "http://321maker.com", + "email": "maker@321maker.com", + "format": "html" +} \ No newline at end of file diff --git a/users/360slider.json b/users/360slider.json index c2a0e7bb..290abad3 100644 --- a/users/360slider.json +++ b/users/360slider.json @@ -1,6 +1,6 @@ { - "copyright": "360 Slider", - "url": "http://360slider.com", - "email": "gaurav@jassal.me", - "format": "txt" -} + "copyright": "360 Slider", + "url": "http://360slider.com", + "email": "gaurav@jassal.me", + "format": "txt" +} \ No newline at end of file diff --git a/users/3846.json b/users/3846.json index 67deaf25..53c2785c 100644 --- a/users/3846.json +++ b/users/3846.json @@ -1,4 +1,4 @@ { - "copyright": "3846masa", - "url": "https://github.com/3846masa" -} + "copyright": "3846masa", + "url": "https://github.com/3846masa" +} \ No newline at end of file diff --git a/users/3846masa.json b/users/3846masa.json index 67deaf25..53c2785c 100644 --- a/users/3846masa.json +++ b/users/3846masa.json @@ -1,4 +1,4 @@ { - "copyright": "3846masa", - "url": "https://github.com/3846masa" -} + "copyright": "3846masa", + "url": "https://github.com/3846masa" +} \ No newline at end of file diff --git a/users/4soft.json b/users/4soft.json index 8ae2e556..1ee8e7cb 100644 --- a/users/4soft.json +++ b/users/4soft.json @@ -1,3 +1,3 @@ { - "copyright": "4Soft" -} + "copyright": "4Soft" +} \ No newline at end of file diff --git a/users/4thace.json b/users/4thace.json index bd265527..54aba95d 100644 --- a/users/4thace.json +++ b/users/4thace.json @@ -1,6 +1,6 @@ { - "copyright": "Richard Magahiz", - "url": "https://magahiz.com", - "email": "frabdango@magahiz.com", - "format": "txt" -} + "copyright": "Richard Magahiz", + "url": "https://magahiz.com", + "email": "frabdango@magahiz.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/5310.json b/users/5310.json index 2e396016..932c799f 100644 --- a/users/5310.json +++ b/users/5310.json @@ -1,7 +1,7 @@ { - "copyright": "Sayantan Chaudhuri", - "url": "https://google.com/+SayantanChaudhuri/about", - "email": "sayantan.chaudhuri@gmail.com", - "theme": "plaintext", - "gravatar": true -} + "copyright": "Sayantan Chaudhuri", + "url": "https://google.com/+SayantanChaudhuri/about", + "email": "sayantan.chaudhuri@gmail.com", + "theme": "plaintext", + "gravatar": true +} \ No newline at end of file diff --git a/users/5509.json b/users/5509.json index 7a05cc76..162a08c6 100644 --- a/users/5509.json +++ b/users/5509.json @@ -1,5 +1,5 @@ { - "copyright": "Kazunori Tokuda, http://5509.me", - "url": "http://5509.me", - "theme": "double-windsor" -} + "copyright": "Kazunori Tokuda, http://5509.me", + "url": "http://5509.me", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/59.json b/users/59.json index 53c3be9f..d7c52c88 100644 --- a/users/59.json +++ b/users/59.json @@ -1,5 +1,5 @@ { - "copyright": "59", - "url": "http://berabou.me", - "theme": "afterdark" -} + "copyright": "59", + "url": "http://berabou.me", + "theme": "afterdark" +} \ No newline at end of file diff --git a/users/59naga.json b/users/59naga.json index a3540bb6..19bfa31a 100644 --- a/users/59naga.json +++ b/users/59naga.json @@ -1,4 +1,4 @@ { - "copyright": "59naga", - "url": "http://berabou.me" -} + "copyright": "59naga", + "url": "http://berabou.me" +} \ No newline at end of file diff --git a/users/623hs.json b/users/623hs.json index d09152ad..b029ced2 100644 --- a/users/623hs.json +++ b/users/623hs.json @@ -1,5 +1,5 @@ { - "copyright": "623HS", - "email": "z.tar.gz@gmail.com", - "theme": "afterdark" -} + "copyright": "623HS", + "email": "z.tar.gz@gmail.com", + "theme": "afterdark" +} \ No newline at end of file diff --git a/users/6n38.json b/users/6n38.json index 519cc513..d48bd623 100644 --- a/users/6n38.json +++ b/users/6n38.json @@ -1,6 +1,6 @@ { - "copyright": "Elena", - "URL": "http://6n38.jp", - "format": "html", - "theme": "material-light-blue" -} + "copyright": "Elena", + "URL": "http://6n38.jp", + "format": "html", + "theme": "material-light-blue" +} \ No newline at end of file diff --git a/users/844196.json b/users/844196.json index 4379c2b6..922f2836 100644 --- a/users/844196.json +++ b/users/844196.json @@ -1,4 +1,4 @@ { - "copyright": "Masaya Tk", - "url": "http://104.844196.com/" -} + "copyright": "Masaya Tk", + "url": "http://104.844196.com/" +} \ No newline at end of file diff --git a/users/9joneg.json b/users/9joneg.json index 231264b0..98e48917 100644 --- a/users/9joneg.json +++ b/users/9joneg.json @@ -1,3 +1,3 @@ { - "copyright": "9joneg" -} + "copyright": "9joneg" +} \ No newline at end of file diff --git a/users/ArvinH.json b/users/ArvinH.json index 2a72e898..dcca0490 100644 --- a/users/ArvinH.json +++ b/users/ArvinH.json @@ -1,7 +1,7 @@ { - "copyright": "Arvin Huang, https://blog.arvinh.info", - "url": "https://blog.arvinh.info", - "email": "arvin0731@gmail.com", - "gravatar": true, - "theme": "dusk" -} + "copyright": "Arvin Huang, https://blog.arvinh.info", + "url": "https://blog.arvinh.info", + "email": "arvin0731@gmail.com", + "gravatar": true, + "theme": "dusk" +} \ No newline at end of file diff --git a/users/BrentonCozby.json b/users/BrentonCozby.json index 447ba20f..705723c8 100644 --- a/users/BrentonCozby.json +++ b/users/BrentonCozby.json @@ -1,8 +1,8 @@ { - "copyright": "Brenton Cozby, https://brentoncozby.com", - "url": "https://brentoncozby.com", - "format": "html", - "email": "brenton.cozby@gmail.com", - "gravatar": true, - "theme": "default" -} + "copyright": "Brenton Cozby, https://brentoncozby.com", + "url": "https://brentoncozby.com", + "format": "html", + "email": "brenton.cozby@gmail.com", + "gravatar": true, + "theme": "default" +} \ No newline at end of file diff --git a/users/DanielArthurUK.json b/users/DanielArthurUK.json index cc0f5239..2a8f7fdc 100644 --- a/users/DanielArthurUK.json +++ b/users/DanielArthurUK.json @@ -1,6 +1,6 @@ { - "copyright": "Daniel Arthur, https://danielarthur.uk", - "url": "https://danielarthur.uk", - "email": "me@danielarthur.uk", - "gravatar": "true" -} + "copyright": "Daniel Arthur, https://danielarthur.uk", + "url": "https://danielarthur.uk", + "email": "me@danielarthur.uk", + "gravatar": "true" +} \ No newline at end of file diff --git a/users/SITZ.json b/users/SITZ.json index 7c9c76bf..100ca1b8 100644 --- a/users/SITZ.json +++ b/users/SITZ.json @@ -1,8 +1,8 @@ { - "copyright": "Sitesh Shrivastava", - "url": "http://www.siteshshrivastava.com", - "email": "siteshshrivastava@gmail.com", - "format": "html", - "theme": "default", - "gravatar": true -} + "copyright": "Sitesh Shrivastava", + "url": "http://www.siteshshrivastava.com", + "email": "siteshshrivastava@gmail.com", + "format": "html", + "theme": "default", + "gravatar": true +} \ No newline at end of file diff --git a/users/a-tech.json b/users/a-tech.json index 660cb426..18365894 100644 --- a/users/a-tech.json +++ b/users/a-tech.json @@ -1,3 +1,3 @@ { - "copyright": "Alplax Technologies" -} + "copyright": "Alplax Technologies" +} \ No newline at end of file diff --git a/users/a.json b/users/a.json index c66e1db6..4b343c00 100644 --- a/users/a.json +++ b/users/a.json @@ -1,6 +1,6 @@ { - "copyright": "Austin Pray", - "url": "http://austinpray.com.com", - "email": "austin@austinpray.com", - "format": "txt" -} + "copyright": "Austin Pray", + "url": "http://austinpray.com.com", + "email": "austin@austinpray.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/aaaaaa.json b/users/aaaaaa.json index 565474ef..a5e96ffe 100644 --- a/users/aaaaaa.json +++ b/users/aaaaaa.json @@ -1,6 +1,6 @@ { - "copyright": "Aa Aa", - "url": "http://aaaaa.com", - "email": "me@mysite.com", - "format": "txt" -} + "copyright": "Aa Aa", + "url": "http://aaaaa.com", + "email": "me@mysite.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/aarjithn.json b/users/aarjithn.json index 6f8098bf..c69db9f9 100644 --- a/users/aarjithn.json +++ b/users/aarjithn.json @@ -1,6 +1,6 @@ { - "copyright": "Aarjith Nandakumar", - "url": "http://aarjithn.github.io", - "email": "aarjithn[at]gmail.com", - "gravatar": "true" -} + "copyright": "Aarjith Nandakumar", + "url": "http://aarjithn.github.io", + "email": "aarjithn[at]gmail.com", + "gravatar": "true" +} \ No newline at end of file diff --git a/users/aaron.json b/users/aaron.json index 780fe7a0..591bbcab 100644 --- a/users/aaron.json +++ b/users/aaron.json @@ -1,3 +1,3 @@ { - "copyright": "Aaron Bassett, http://aaronbassett.com" -} + "copyright": "Aaron Bassett, http://aaronbassett.com" +} \ No newline at end of file diff --git a/users/aaroncaito.json b/users/aaroncaito.json index 0f595aeb..fb24bf52 100644 --- a/users/aaroncaito.json +++ b/users/aaroncaito.json @@ -1,6 +1,6 @@ { - "copyright": "Aaron Caito", - "url": "http://csw.io", - "email": "aaron@csw.io", - "theme": "double-windsor" -} + "copyright": "Aaron Caito", + "url": "http://csw.io", + "email": "aaron@csw.io", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/aarontrostle.json b/users/aarontrostle.json index 2ae2440f..6fdd2490 100644 --- a/users/aarontrostle.json +++ b/users/aarontrostle.json @@ -1,7 +1,7 @@ { - "copyright": "Aaron Trostle, http://aarontrostle.com", - "url": "http://aarontrostle.com", - "email": "aaron.trostle@gmail.com", - "format": "txt", - "theme": "plaintext" -} + "copyright": "Aaron Trostle, http://aarontrostle.com", + "url": "http://aarontrostle.com", + "email": "aaron.trostle@gmail.com", + "format": "txt", + "theme": "plaintext" +} \ No newline at end of file diff --git a/users/aashutoshrathi.json b/users/aashutoshrathi.json index f5f46e0a..e21c0808 100644 --- a/users/aashutoshrathi.json +++ b/users/aashutoshrathi.json @@ -1,7 +1,7 @@ { - "copyright": "Aashutosh Rathi", - "url": "http://aashutoshrathi.co", - "email": "aashutoshrathi@gmail.com", - "format": "txt", - "theme": "dusk" -} + "copyright": "Aashutosh Rathi", + "url": "http://aashutoshrathi.co", + "email": "aashutoshrathi@gmail.com", + "format": "txt", + "theme": "dusk" +} \ No newline at end of file diff --git a/users/aayush.json b/users/aayush.json index 61eb1b7f..fea08f15 100644 --- a/users/aayush.json +++ b/users/aayush.json @@ -1,6 +1,6 @@ { - "copyright": "Aayush Jain", - "email": "aayush.2896@gmail.com", - "gravatar": true, - "theme": "dusk" -} + "copyright": "Aayush Jain", + "email": "aayush.2896@gmail.com", + "gravatar": true, + "theme": "dusk" +} \ No newline at end of file diff --git a/users/ab2d.json b/users/ab2d.json index 088f2cc9..b7f1779e 100644 --- a/users/ab2d.json +++ b/users/ab2d.json @@ -1,3 +1,3 @@ { - "copyright": "Remy Sharp A" -} + "copyright": "Remy Sharp A" +} \ No newline at end of file diff --git a/users/abas.json b/users/abas.json index 37e7d902..0eea856d 100644 --- a/users/abas.json +++ b/users/abas.json @@ -1,8 +1,8 @@ { - "copyright": "Omid Gharib, https://github.com/omidgharib", - "url": "http://omidgharib.ir", - "format": "txt", - "email": "omidgharib@yahoo.com", - "gravatar": true, - "theme": "default" -} + "copyright": "Omid Gharib, https://github.com/omidgharib", + "url": "http://omidgharib.ir", + "format": "txt", + "email": "omidgharib@yahoo.com", + "gravatar": true, + "theme": "default" +} \ No newline at end of file diff --git a/users/abensur.json b/users/abensur.json index f32dd976..fbad5222 100644 --- a/users/abensur.json +++ b/users/abensur.json @@ -1,5 +1,5 @@ { - "copyright": "Rafael Abensur, http://abensur.net", - "url": "http://abensur.net", - "email": "rafael@abensur.net" -} + "copyright": "Rafael Abensur, http://abensur.net", + "url": "http://abensur.net", + "email": "rafael@abensur.net" +} \ No newline at end of file diff --git a/users/abhisekp.json b/users/abhisekp.json index 76f404df..5ca1fae7 100644 --- a/users/abhisekp.json +++ b/users/abhisekp.json @@ -1,6 +1,6 @@ { - "copyright": "Abhisek Pattnaik, https://about.me/abhisekp", - "url": "https://about.me/abhisekp", - "email": "abhisekp@engineer.com", - "gravatar": true -} + "copyright": "Abhisek Pattnaik, https://about.me/abhisekp", + "url": "https://about.me/abhisekp", + "email": "abhisekp@engineer.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/abhshkdz.json b/users/abhshkdz.json index 99496ce9..276f2530 100644 --- a/users/abhshkdz.json +++ b/users/abhshkdz.json @@ -1,6 +1,6 @@ { - "copyright": "Abhishek Das", - "url": "http://abhishekdas.com", - "email": "das.abhshk@gmail.com", - "format": "txt" -} + "copyright": "Abhishek Das", + "url": "http://abhishekdas.com", + "email": "das.abhshk@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/abitgone.json b/users/abitgone.json index a4d39d3a..84a16da5 100644 --- a/users/abitgone.json +++ b/users/abitgone.json @@ -1,7 +1,7 @@ { - "copyright": "Anthony Williams", - "url": "http://abitgone.co.uk", - "email": "anthony@abitgone.co.uk", - "format": "html", - "theme": "flesch" -} + "copyright": "Anthony Williams", + "url": "http://abitgone.co.uk", + "email": "anthony@abitgone.co.uk", + "format": "html", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/abnersajr.json b/users/abnersajr.json index 8ffc90a4..a1015a75 100644 --- a/users/abnersajr.json +++ b/users/abnersajr.json @@ -1,6 +1,6 @@ { - "copyright": "Abner Soares Alves Junior", - "url": "http://abnersajr.net", - "email": "me@abnersajr.net", - "format": "html" -} + "copyright": "Abner Soares Alves Junior", + "url": "http://abnersajr.net", + "email": "me@abnersajr.net", + "format": "html" +} \ No newline at end of file diff --git a/users/abovethewater.json b/users/abovethewater.json index 92cfe0fa..8cfdaace 100644 --- a/users/abovethewater.json +++ b/users/abovethewater.json @@ -1,6 +1,6 @@ { - "copyright": "Joe Mathews", - "url": "http://abovethewater.co.uk", - "email": "joe@abovethewater.co.uk", - "theme": "double-windsor" -} + "copyright": "Joe Mathews", + "url": "http://abovethewater.co.uk", + "email": "joe@abovethewater.co.uk", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/abrambleninja.json b/users/abrambleninja.json index 821431f1..5291b575 100644 --- a/users/abrambleninja.json +++ b/users/abrambleninja.json @@ -1,4 +1,4 @@ { - "copyright": "ABrambleNinja", - "url": "http://boj.cc" -} + "copyright": "ABrambleNinja", + "url": "http://boj.cc" +} \ No newline at end of file diff --git a/users/abs.json b/users/abs.json index 1c0ca2e3..4d05d2ed 100644 --- a/users/abs.json +++ b/users/abs.json @@ -1,6 +1,6 @@ { - "copyright": "Austin Siford, https://abs.ec", - "url": "https://abs.ec", - "email": "dizzy@wow.com", - "gravatar": true -} + "copyright": "Austin Siford, https://abs.ec", + "url": "https://abs.ec", + "email": "dizzy@wow.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/abuasmaa.json b/users/abuasmaa.json index 3d41299c..76a6cf14 100644 --- a/users/abuasmaa.json +++ b/users/abuasmaa.json @@ -1,3 +1,3 @@ { - "copyright": "Abd Al-Ala Camara" -} + "copyright": "Abd Al-Ala Camara" +} \ No newline at end of file diff --git a/users/abulava.json b/users/abulava.json index d81edac2..4fded70e 100644 --- a/users/abulava.json +++ b/users/abulava.json @@ -1,6 +1,6 @@ { - "copyright": "Andrey Bulava", - "email": "abulava@gmail.com", - "gravatar": true, - "theme": "material-indigo" -} + "copyright": "Andrey Bulava", + "email": "abulava@gmail.com", + "gravatar": true, + "theme": "material-indigo" +} \ No newline at end of file diff --git a/users/ac.json b/users/ac.json index 34ce8f79..be467ef7 100644 --- a/users/ac.json +++ b/users/ac.json @@ -1,5 +1,5 @@ { - "copyright": "Alan Cohen", - "url": "https://twitter.com/alan_mit", - "email": "alan.mit@gmail.com" -} + "copyright": "Alan Cohen", + "url": "https://twitter.com/alan_mit", + "email": "alan.mit@gmail.com" +} \ No newline at end of file diff --git a/users/acaua.json b/users/acaua.json index 80f892ed..50da51a1 100644 --- a/users/acaua.json +++ b/users/acaua.json @@ -1,5 +1,5 @@ { - "copyright": "Acau\u00c3\u00a3 Montiel", - "url": "http://acauamontiel.com.br", - "email": "contato@acauamontiel.com.br" -} + "copyright": "Acauã Montiel", + "url": "http://acauamontiel.com.br", + "email": "contato@acauamontiel.com.br" +} \ No newline at end of file diff --git a/users/acenode.json b/users/acenode.json index afa86a03..44fed8cc 100644 --- a/users/acenode.json +++ b/users/acenode.json @@ -1,6 +1,6 @@ { - "copyright": "AceNode", - "url": "http://acenode.com https://github.com/acenode", - "email": "open@acenode.com", - "format": "txt" -} + "copyright": "AceNode", + "url": "http://acenode.com https://github.com/acenode", + "email": "open@acenode.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/achilles.json b/users/achilles.json index d07f58b5..37d85d78 100644 --- a/users/achilles.json +++ b/users/achilles.json @@ -1,6 +1,6 @@ { - "copyright": "Achillefs Charmpilas", - "url": "http://humbuckercode.co.uk/licks/", - "email": "ac@humbuckercode.co.uk", - "format": "txt" -} + "copyright": "Achillefs Charmpilas", + "url": "http://humbuckercode.co.uk/licks/", + "email": "ac@humbuckercode.co.uk", + "format": "txt" +} \ No newline at end of file diff --git a/users/achun.json b/users/achun.json index a6c898f7..9a3b1c75 100644 --- a/users/achun.json +++ b/users/achun.json @@ -1,3 +1,3 @@ { - "copyright": "achun, achun.shx@qq.com" -} + "copyright": "achun, achun.shx@qq.com" +} \ No newline at end of file diff --git a/users/aclemen1.json b/users/aclemen1.json index defc6f3e..38d4aa8a 100644 --- a/users/aclemen1.json +++ b/users/aclemen1.json @@ -1,6 +1,6 @@ { - "copyright": "Alain Cl\u00e9ment-Pavon", - "email": "alain.clement-pavon@unil.ch", - "format": "txt", - "gravatar": true -} + "copyright": "Alain Clément-Pavon", + "email": "alain.clement-pavon@unil.ch", + "format": "txt", + "gravatar": true +} \ No newline at end of file diff --git a/users/acolchado.json b/users/acolchado.json index d34d8601..26760ab2 100644 --- a/users/acolchado.json +++ b/users/acolchado.json @@ -1,3 +1,3 @@ { - "copyright": "Agustin Colchado" -} + "copyright": "Agustin Colchado" +} \ No newline at end of file diff --git a/users/acollington.json b/users/acollington.json index d1ac7a1f..b3e050cf 100644 --- a/users/acollington.json +++ b/users/acollington.json @@ -1,6 +1,6 @@ { - "copyright": "Andrew Collington, http://www.amnuts.com/", - "url": "http://www.amnuts.com/", - "email": "andy@amnuts.com", - "gravatar": true -} + "copyright": "Andrew Collington, http://www.amnuts.com/", + "url": "http://www.amnuts.com/", + "email": "andy@amnuts.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/adafruit.json b/users/adafruit.json index aba66601..4dc8174c 100644 --- a/users/adafruit.json +++ b/users/adafruit.json @@ -1,3 +1,3 @@ { - "copyright": "Adafruit" -} + "copyright": "Adafruit" +} \ No newline at end of file diff --git a/users/adam-lynch.json b/users/adam-lynch.json index da366f42..b15731f9 100644 --- a/users/adam-lynch.json +++ b/users/adam-lynch.json @@ -1,6 +1,6 @@ { - "copyright": "Adam Lynch", - "url": "http://adamlynch.ie", - "email": "contact@adamlynch.ie", - "format": "txt" -} + "copyright": "Adam Lynch", + "url": "http://adamlynch.ie", + "email": "contact@adamlynch.ie", + "format": "txt" +} \ No newline at end of file diff --git a/users/adam.json b/users/adam.json index 3f8ef215..1255bb21 100644 --- a/users/adam.json +++ b/users/adam.json @@ -1,7 +1,7 @@ { - "copyright": "Adam Demasi", - "url": "http://kirb.me/", - "email": "adam@hbang.ws", - "gravatar": true, - "theme": "solarized" -} + "copyright": "Adam Demasi", + "url": "http://kirb.me/", + "email": "adam@hbang.ws", + "gravatar": true, + "theme": "solarized" +} \ No newline at end of file diff --git a/users/adamh.json b/users/adamh.json index 7ba309f9..b7b83cab 100644 --- a/users/adamh.json +++ b/users/adamh.json @@ -1,4 +1,4 @@ { - "copyright": "Adam Holt", - "url": "http://adamholt.co.uk/" -} + "copyright": "Adam Holt", + "url": "http://adamholt.co.uk/" +} \ No newline at end of file diff --git a/users/adampritchard.json b/users/adampritchard.json index 200babf9..e7c36d36 100644 --- a/users/adampritchard.json +++ b/users/adampritchard.json @@ -1,3 +1,3 @@ { - "copyright": "Adam Pritchard" -} + "copyright": "Adam Pritchard" +} \ No newline at end of file diff --git a/users/adamreeve.json b/users/adamreeve.json index b8ae9f14..79548654 100644 --- a/users/adamreeve.json +++ b/users/adamreeve.json @@ -1,5 +1,5 @@ { - "copyright": "Adam Reeve, http://adamreeve.com", - "url": "http://adamreeve.com", - "theme": "friendly" -} + "copyright": "Adam Reeve, http://adamreeve.com", + "url": "http://adamreeve.com", + "theme": "friendly" +} \ No newline at end of file diff --git a/users/adamroberts.json b/users/adamroberts.json index c1609233..7d7b28ec 100644 --- a/users/adamroberts.json +++ b/users/adamroberts.json @@ -1,3 +1,3 @@ { - "copyright": "Adam Roberts" -} + "copyright": "Adam Roberts" +} \ No newline at end of file diff --git a/users/adi.json b/users/adi.json index 1696b3a9..3a58e0f0 100644 --- a/users/adi.json +++ b/users/adi.json @@ -1,4 +1,4 @@ { - "copyright": "Adrian Mester, http://adrianmester.com", - "url": "http://adrianmester.com" -} + "copyright": "Adrian Mester, http://adrianmester.com", + "url": "http://adrianmester.com" +} \ No newline at end of file diff --git a/users/aditya.json b/users/aditya.json index 9000998b..f39dff16 100644 --- a/users/aditya.json +++ b/users/aditya.json @@ -1,6 +1,6 @@ { - "copyright": "Aditya Prakash", - "url": "http://adityaprakash.in", - "email": "me@adityaprakash.in", - "format": "html" -} + "copyright": "Aditya Prakash", + "url": "http://adityaprakash.in", + "email": "me@adityaprakash.in", + "format": "html" +} \ No newline at end of file diff --git a/users/adjohnson916.json b/users/adjohnson916.json index 377fef5d..3c6903e3 100644 --- a/users/adjohnson916.json +++ b/users/adjohnson916.json @@ -1,4 +1,4 @@ { - "copyright": "Anders D. Johnson, http://andrz.me", - "url": "http://andrz.me" -} + "copyright": "Anders D. Johnson, http://andrz.me", + "url": "http://andrz.me" +} \ No newline at end of file diff --git a/users/adopi.json b/users/adopi.json index 873074d6..19b0445b 100644 --- a/users/adopi.json +++ b/users/adopi.json @@ -1,5 +1,5 @@ { - "copyright": "Adonis Najimi", - "email": "adopi.naj@gmail.com", - "format": "html" -} + "copyright": "Adonis Najimi", + "email": "adopi.naj@gmail.com", + "format": "html" +} \ No newline at end of file diff --git a/users/adr1enbe4udou1n.json b/users/adr1enbe4udou1n.json index 75ed7b02..51b2f242 100644 --- a/users/adr1enbe4udou1n.json +++ b/users/adr1enbe4udou1n.json @@ -1,6 +1,6 @@ { - "copyright": "Adrien Beaudouin", - "email": "adrien.beaudouin@outlook.com", - "gravatar": true, - "theme": "material-teal" -} + "copyright": "Adrien Beaudouin", + "email": "adrien.beaudouin@outlook.com", + "gravatar": true, + "theme": "material-teal" +} \ No newline at end of file diff --git a/users/adtaylor.json b/users/adtaylor.json index 76918d92..dce3abb5 100644 --- a/users/adtaylor.json +++ b/users/adtaylor.json @@ -1,4 +1,4 @@ { - "copyright": "Adam Taylor, http://adtaylor.co.uk", - "url": "http://adtaylor.co.uk" -} + "copyright": "Adam Taylor, http://adtaylor.co.uk", + "url": "http://adtaylor.co.uk" +} \ No newline at end of file diff --git a/users/adthul.json b/users/adthul.json index 836be406..125b3b33 100644 --- a/users/adthul.json +++ b/users/adthul.json @@ -1,6 +1,6 @@ { - "copyright": "Andy Thul", - "email": "thul.andy@gmail.com", - "gravatar": true, - "theme": "xtansia" -} + "copyright": "Andy Thul", + "email": "thul.andy@gmail.com", + "gravatar": true, + "theme": "xtansia" +} \ No newline at end of file diff --git a/users/adultlink.json b/users/adultlink.json index 0d981a58..f39cea71 100644 --- a/users/adultlink.json +++ b/users/adultlink.json @@ -1,6 +1,6 @@ { - "copyright": "Guillermo Angel", - "email": "ved.adultlink@gmail.com", - "gravatar": true, - "theme": "material-green" -} + "copyright": "Guillermo Angel", + "email": "ved.adultlink@gmail.com", + "gravatar": true, + "theme": "material-green" +} \ No newline at end of file diff --git a/users/ael.json b/users/ael.json index d853e89a..f51ffb28 100644 --- a/users/ael.json +++ b/users/ael.json @@ -1,4 +1,4 @@ { - "copyright": "Futoshi Takeo", - "url": "http://ael.aquilegia.info/" -} + "copyright": "Futoshi Takeo", + "url": "http://ael.aquilegia.info/" +} \ No newline at end of file diff --git a/users/aen.json b/users/aen.json index d86c94cd..1d406e99 100644 --- a/users/aen.json +++ b/users/aen.json @@ -1,3 +1,3 @@ { - "copyright": "Aen Tan" -} + "copyright": "Aen Tan" +} \ No newline at end of file diff --git a/users/aendrew.json b/users/aendrew.json index 87d823d7..ece4f63c 100644 --- a/users/aendrew.json +++ b/users/aendrew.json @@ -1,5 +1,5 @@ { - "copyright": "\u00c6ndrew Rininsland", - "url": "http://aendrew.com", - "email": "aendrew@aendrew.com" -} + "copyright": "Ændrew Rininsland", + "url": "http://aendrew.com", + "email": "aendrew@aendrew.com" +} \ No newline at end of file diff --git a/users/aereal.json b/users/aereal.json index 76c7f837..4c59241a 100644 --- a/users/aereal.json +++ b/users/aereal.json @@ -1,5 +1,5 @@ { - "copyright": "Hanae Aoki, kerare.org", - "url": "http://kerare.org/", - "theme": "afterdark" -} + "copyright": "Hanae Aoki, kerare.org", + "url": "http://kerare.org/", + "theme": "afterdark" +} \ No newline at end of file diff --git a/users/aergonaut.json b/users/aergonaut.json index b54c3e1a..eed9b4c8 100644 --- a/users/aergonaut.json +++ b/users/aergonaut.json @@ -1,4 +1,4 @@ { - "copyright": "Chris Fung", - "url": "https://github.com/aergonaut" -} + "copyright": "Chris Fung", + "url": "https://github.com/aergonaut" +} \ No newline at end of file diff --git a/users/aetheris.json b/users/aetheris.json index e04f0304..3599cc8a 100644 --- a/users/aetheris.json +++ b/users/aetheris.json @@ -1,4 +1,4 @@ { - "copyright": "Alex Cai", - "email": "alex.cai@uwaterloo.ca" -} + "copyright": "Alex Cai", + "email": "alex.cai@uwaterloo.ca" +} \ No newline at end of file diff --git a/users/af.json b/users/af.json index 0e804801..46964949 100644 --- a/users/af.json +++ b/users/af.json @@ -1,7 +1,7 @@ { - "copyright": "Stanislav Lechev [AngelFire], http://0xAF.org", - "url": "http://0xAF.org", - "email": "af@0xAF.org", - "gravatar": true, - "theme": "dusk" -} + "copyright": "Stanislav Lechev [AngelFire], http://0xAF.org", + "url": "http://0xAF.org", + "email": "af@0xAF.org", + "gravatar": true, + "theme": "dusk" +} \ No newline at end of file diff --git a/users/afein.json b/users/afein.json index f6320c3f..19281fc8 100644 --- a/users/afein.json +++ b/users/afein.json @@ -1,4 +1,4 @@ { - "copyright": "Alex Mavrogiannis", - "theme": "double-windsor" -} + "copyright": "Alex Mavrogiannis", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/afghah.json b/users/afghah.json index 47dadf36..55275258 100644 --- a/users/afghah.json +++ b/users/afghah.json @@ -1,3 +1,3 @@ { - "copyright": "Ali Afghah" -} + "copyright": "Ali Afghah" +} \ No newline at end of file diff --git a/users/afiore.json b/users/afiore.json index 43e954b4..3ece5d93 100644 --- a/users/afiore.json +++ b/users/afiore.json @@ -1,3 +1,3 @@ { - "copyright": "Andrea Fiore" -} + "copyright": "Andrea Fiore" +} \ No newline at end of file diff --git a/users/afonsof.json b/users/afonsof.json index 683ecc2d..0bba0978 100644 --- a/users/afonsof.json +++ b/users/afonsof.json @@ -1,7 +1,7 @@ { - "copyright": "Afonso F", - "url": "http://afonsof.com", - "email": "me@afonsof.com", - "format": "html", - "gravatar": true -} + "copyright": "Afonso F", + "url": "http://afonsof.com", + "email": "me@afonsof.com", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/agentmilindu.json b/users/agentmilindu.json index 00d2f386..379b39d2 100644 --- a/users/agentmilindu.json +++ b/users/agentmilindu.json @@ -1,7 +1,7 @@ { - "copyright": "Milindu Sanoj Kumarage", - "url": "http://agentmilindu.com", - "email": "agentmilindu@gmail.com", - "gravatar": true, - "theme": "double-windsor" -} + "copyright": "Milindu Sanoj Kumarage", + "url": "http://agentmilindu.com", + "email": "agentmilindu@gmail.com", + "gravatar": true, + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/agnium.json b/users/agnium.json index fc4225e4..219bb60d 100644 --- a/users/agnium.json +++ b/users/agnium.json @@ -1,7 +1,7 @@ { - "copyright": "Agnium, http://agnium.co.id", - "url": "http://agnium.co.id", - "email": "info@agnium.co.id", - "theme": "material-red", - "gravatar": true -} + "copyright": "Agnium, http://agnium.co.id", + "url": "http://agnium.co.id", + "email": "info@agnium.co.id", + "theme": "material-red", + "gravatar": true +} \ No newline at end of file diff --git a/users/ago6e.json b/users/ago6e.json index 42b42d31..fff119b9 100644 --- a/users/ago6e.json +++ b/users/ago6e.json @@ -1,5 +1,5 @@ { - "copyright": "Futoshi Takeo", - "url": "http://code.google.com/p/ago6e-libraries/", - "format": "txt" -} + "copyright": "Futoshi Takeo", + "url": "http://code.google.com/p/ago6e-libraries/", + "format": "txt" +} \ No newline at end of file diff --git a/users/ahaasler.json b/users/ahaasler.json index 6ff59251..b82ae8f8 100644 --- a/users/ahaasler.json +++ b/users/ahaasler.json @@ -1,8 +1,8 @@ { - "copyright": "Adrian Haasler Garc\u00c3\u00ada", - "url": "https://www.adrianhaasler.com", - "email": "dev@adrianhaasler.com", - "format": "html", - "gravatar": true, - "theme": "material-blue" -} + "copyright": "Adrian Haasler García", + "url": "https://www.adrianhaasler.com", + "email": "dev@adrianhaasler.com", + "format": "html", + "gravatar": true, + "theme": "material-blue" +} \ No newline at end of file diff --git a/users/aheissenberger.json b/users/aheissenberger.json index cdc2e728..a06061b1 100644 --- a/users/aheissenberger.json +++ b/users/aheissenberger.json @@ -1,3 +1,3 @@ { - "copyright": "Andreas Heissenberger" -} + "copyright": "Andreas Heissenberger" +} \ No newline at end of file diff --git a/users/ahluntang.json b/users/ahluntang.json index 85d5dffa..15d4715e 100644 --- a/users/ahluntang.json +++ b/users/ahluntang.json @@ -1,6 +1,6 @@ { - "copyright": "Ah-Lun Tang", - "url": "http://ahlun.be", - "email": "tang@ahlun.be", - "format": "txt" -} + "copyright": "Ah-Lun Tang", + "url": "http://ahlun.be", + "email": "tang@ahlun.be", + "format": "txt" +} \ No newline at end of file diff --git a/users/ahmet.json b/users/ahmet.json index 5c27000e..528b37d0 100644 --- a/users/ahmet.json +++ b/users/ahmet.json @@ -1,5 +1,5 @@ { - "copyright": "Ahmet AYGUN", - "url": "http://github.com/ahmet", - "theme": "flesch" -} + "copyright": "Ahmet AYGUN", + "url": "http://github.com/ahmet", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/ahsanhabib.json b/users/ahsanhabib.json index 9fb74938..6efd81c3 100644 --- a/users/ahsanhabib.json +++ b/users/ahsanhabib.json @@ -1,3 +1,3 @@ { - "copyright": "Ahsan Habib" -} + "copyright": "Ahsan Habib" +} \ No newline at end of file diff --git a/users/ai-create-team.json b/users/ai-create-team.json index 3d5ef569..baaa4ca3 100644 --- a/users/ai-create-team.json +++ b/users/ai-create-team.json @@ -1,5 +1,5 @@ { - "copyright": "AI Create team", - "url": "https://github.com/AI-create-team/", - "email": "ai.create.team@gmail.com" -} + "copyright": "AI Create team", + "url": "https://github.com/AI-create-team/", + "email": "ai.create.team@gmail.com" +} \ No newline at end of file diff --git a/users/aike.json b/users/aike.json index 94e36664..e757cbbc 100644 --- a/users/aike.json +++ b/users/aike.json @@ -1,4 +1,4 @@ { - "copyright": "aike", - "url": "https://github.com/aike" -} + "copyright": "aike", + "url": "https://github.com/aike" +} \ No newline at end of file diff --git a/users/ailen0ada.json b/users/ailen0ada.json index 1b9296a3..3917bd94 100644 --- a/users/ailen0ada.json +++ b/users/ailen0ada.json @@ -1,4 +1,4 @@ { - "copyright": "Tsubasa HIRANO", - "url": "https://github.com/ailen0ada" -} + "copyright": "Tsubasa HIRANO", + "url": "https://github.com/ailen0ada" +} \ No newline at end of file diff --git a/users/airtonix.json b/users/airtonix.json index 44b3afe2..56acb1a4 100644 --- a/users/airtonix.json +++ b/users/airtonix.json @@ -1,6 +1,6 @@ { - "copyright": "Zenobius Jiricek", - "url": "http://airtonix.net", - "email": "airtonix@gmail.com", - "format": "txt" -} + "copyright": "Zenobius Jiricek", + "url": "http://airtonix.net", + "email": "airtonix@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/aj9.json b/users/aj9.json index 6b1368a1..8277b92c 100644 --- a/users/aj9.json +++ b/users/aj9.json @@ -1,4 +1,4 @@ { - "copyright": "Adam Gask", - "url": "http://aj9.github.io" -} + "copyright": "Adam Gask", + "url": "http://aj9.github.io" +} \ No newline at end of file diff --git a/users/ajay.json b/users/ajay.json index f9c6759f..2445c62b 100644 --- a/users/ajay.json +++ b/users/ajay.json @@ -1,3 +1,3 @@ { - "copyright": "Ajay Raj" -} + "copyright": "Ajay Raj" +} \ No newline at end of file diff --git a/users/ajaykarwal.json b/users/ajaykarwal.json index 32410ace..a4a6c8e4 100644 --- a/users/ajaykarwal.json +++ b/users/ajaykarwal.json @@ -1,6 +1,6 @@ { - "copyright": "Ajay Karwal, http://ajaykarwal.com", - "url": "http://ajaykarwal.com", - "email": "ajaykarwal@gmail.com", - "gravatar": true -} + "copyright": "Ajay Karwal, http://ajaykarwal.com", + "url": "http://ajaykarwal.com", + "email": "ajaykarwal@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/ajenjo.json b/users/ajenjo.json index 5c0e934e..4aeeb365 100644 --- a/users/ajenjo.json +++ b/users/ajenjo.json @@ -1,7 +1,7 @@ { - "copyright": "Jon Dotsoy.", - "url": "https://github.com/ajenjo/ajenjo-server", - "email": "ajenjo@jon.soy", - "theme": "xtansia", - "gravatar": true -} + "copyright": "Jon Dotsoy.", + "url": "https://github.com/ajenjo/ajenjo-server", + "email": "ajenjo@jon.soy", + "theme": "xtansia", + "gravatar": true +} \ No newline at end of file diff --git a/users/ajmal.json b/users/ajmal.json index a468013f..75ac4edc 100644 --- a/users/ajmal.json +++ b/users/ajmal.json @@ -1,4 +1,4 @@ { - "copyright": "Ajmal Eylia", - "url": "http://ajmaleylia.com" -} + "copyright": "Ajmal Eylia", + "url": "http://ajmaleylia.com" +} \ No newline at end of file diff --git a/users/ajmichael.json b/users/ajmichael.json index d7206518..f5f6f607 100644 --- a/users/ajmichael.json +++ b/users/ajmichael.json @@ -1,4 +1,4 @@ { - "copyright": "Adam Michael", - "email": "adam@ajmichael.net" -} + "copyright": "Adam Michael", + "email": "adam@ajmichael.net" +} \ No newline at end of file diff --git a/users/ajsquared.json b/users/ajsquared.json index 4dcd983d..5a009439 100644 --- a/users/ajsquared.json +++ b/users/ajsquared.json @@ -1,6 +1,6 @@ { - "copyright": "Andrew Johnson", - "url": "http://andrewjamesjohnson.com", - "email": "andrew@andrewjamesjohnson.com", - "theme": "double-windsor" -} + "copyright": "Andrew Johnson", + "url": "http://andrewjamesjohnson.com", + "email": "andrew@andrewjamesjohnson.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/ak.json b/users/ak.json index 1f9d6a5e..119ee121 100644 --- a/users/ak.json +++ b/users/ak.json @@ -1,3 +1,3 @@ { - "copyright": "Abhishek Kandoi" -} + "copyright": "Abhishek Kandoi" +} \ No newline at end of file diff --git a/users/akash.json b/users/akash.json index 791cd249..637300bf 100644 --- a/users/akash.json +++ b/users/akash.json @@ -1,6 +1,6 @@ { - "copyright": "Akash Kothawale", - "url": "https://decached.com", - "email": "akash@decached.com", - "format": "txt" -} + "copyright": "Akash Kothawale", + "url": "https://decached.com", + "email": "akash@decached.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/akervern.json b/users/akervern.json index 9eb55680..ba0aa9c5 100644 --- a/users/akervern.json +++ b/users/akervern.json @@ -1,3 +1,3 @@ { - "copyright": "Arnaud Kervern" -} + "copyright": "Arnaud Kervern" +} \ No newline at end of file diff --git a/users/akizor.json b/users/akizor.json index c95c563f..01639d2d 100644 --- a/users/akizor.json +++ b/users/akizor.json @@ -1,7 +1,7 @@ { - "copyright": "Daniel Pl\u00c4\u0192cint\u00c4\u0192", - "url": "http://artgames.ro", - "email": "daniel@artgames.ro", - "gravatar": true, - "theme": "flesch" -} + "copyright": "Daniel Plăcintă", + "url": "http://artgames.ro", + "email": "daniel@artgames.ro", + "gravatar": true, + "theme": "flesch" +} \ No newline at end of file diff --git a/users/akkartik.json b/users/akkartik.json index 524b1f85..4d420cd7 100644 --- a/users/akkartik.json +++ b/users/akkartik.json @@ -1,3 +1,3 @@ { - "copyright": "Kartik Agaram" -} + "copyright": "Kartik Agaram" +} \ No newline at end of file diff --git a/users/akky.json b/users/akky.json index 0c47bedd..7d56b8fe 100644 --- a/users/akky.json +++ b/users/akky.json @@ -1,3 +1,3 @@ { - "copyright": "Akky AKIMOTO" -} + "copyright": "Akky AKIMOTO" +} \ No newline at end of file diff --git a/users/aknosis.json b/users/aknosis.json index e3a35295..93e63620 100644 --- a/users/aknosis.json +++ b/users/aknosis.json @@ -1,4 +1,4 @@ { - "copyright": "Paul Giberson", - "url": "http://aknosis.com" -} + "copyright": "Paul Giberson", + "url": "http://aknosis.com" +} \ No newline at end of file diff --git a/users/akshay.json b/users/akshay.json index e3a4fd2f..a66b7b6f 100644 --- a/users/akshay.json +++ b/users/akshay.json @@ -1,3 +1,3 @@ { - "copyright": "Akshay Mhatre" -} + "copyright": "Akshay Mhatre" +} \ No newline at end of file diff --git a/users/akshaymhatre.json b/users/akshaymhatre.json index e3a4fd2f..a66b7b6f 100644 --- a/users/akshaymhatre.json +++ b/users/akshaymhatre.json @@ -1,3 +1,3 @@ { - "copyright": "Akshay Mhatre" -} + "copyright": "Akshay Mhatre" +} \ No newline at end of file diff --git a/users/alberto.json b/users/alberto.json index 5430932a..b2bbf0a2 100644 --- a/users/alberto.json +++ b/users/alberto.json @@ -1,7 +1,7 @@ { - "copyright": "Alberto Chvaicer, http://flavors.me/alberto", - "url": "http://flavors.me/alberto", - "email": "achvaicer@gmail.com", - "gravatar": true, - "theme": "orange" -} + "copyright": "Alberto Chvaicer, http://flavors.me/alberto", + "url": "http://flavors.me/alberto", + "email": "achvaicer@gmail.com", + "gravatar": true, + "theme": "orange" +} \ No newline at end of file diff --git a/users/albertofdzm.json b/users/albertofdzm.json index 37c8445b..a163f09d 100644 --- a/users/albertofdzm.json +++ b/users/albertofdzm.json @@ -1,7 +1,7 @@ { - "copyright": "Alberto Fernandez Medina, http://onlythepixel.com", - "url": "http://onlythepixel.com", - "email": "albertofdzm@gmail.com", - "gravatar": true, - "theme": "black-beauty" -} + "copyright": "Alberto Fernandez Medina, http://onlythepixel.com", + "url": "http://onlythepixel.com", + "email": "albertofdzm@gmail.com", + "gravatar": true, + "theme": "black-beauty" +} \ No newline at end of file diff --git a/users/albertogasparin.json b/users/albertogasparin.json index 9c8de3c9..3b787161 100644 --- a/users/albertogasparin.json +++ b/users/albertogasparin.json @@ -1,3 +1,3 @@ { - "copyright": "Alberto Gasparin" -} + "copyright": "Alberto Gasparin" +} \ No newline at end of file diff --git a/users/alco.json b/users/alco.json index f0d62ea1..ac086e3b 100644 --- a/users/alco.json +++ b/users/alco.json @@ -1,3 +1,3 @@ { - "copyright": "Ricardo Alcocer" -} + "copyright": "Ricardo Alcocer" +} \ No newline at end of file diff --git a/users/alcore.json b/users/alcore.json index c74a6141..441da242 100644 --- a/users/alcore.json +++ b/users/alcore.json @@ -1,8 +1,8 @@ { - "copyright": "Michal Chojnacki, http://muyo.io", - "url": "http://muyo.io", - "email": "m.chojnacki@muyo.io", - "format": "html", - "theme": "flesch", - "gravatar": true -} + "copyright": "Michal Chojnacki, http://muyo.io", + "url": "http://muyo.io", + "email": "m.chojnacki@muyo.io", + "format": "html", + "theme": "flesch", + "gravatar": true +} \ No newline at end of file diff --git a/users/aldenquimby.json b/users/aldenquimby.json index 35d50b0b..9d534f3c 100644 --- a/users/aldenquimby.json +++ b/users/aldenquimby.json @@ -1,6 +1,6 @@ { - "copyright": "Alden Quimby", - "url": "http://www.aldenquimby.com", - "email": "aldenquimby@gmail.com", - "gravatar": true -} + "copyright": "Alden Quimby", + "url": "http://www.aldenquimby.com", + "email": "aldenquimby@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/aldo.json b/users/aldo.json index 2c6f576d..8c4d89ea 100644 --- a/users/aldo.json +++ b/users/aldo.json @@ -1,6 +1,6 @@ { - "copyright": "Aldo Iljazi", - "url": "http://aldo.io", - "email": "mail@aldo.io", - "theme": "flesch" -} + "copyright": "Aldo Iljazi", + "url": "http://aldo.io", + "email": "mail@aldo.io", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/aldoborrero.json b/users/aldoborrero.json index f6625571..bdc3a8d5 100644 --- a/users/aldoborrero.json +++ b/users/aldoborrero.json @@ -1,3 +1,3 @@ { - "copyright": "Aldo Borrero" -} + "copyright": "Aldo Borrero" +} \ No newline at end of file diff --git a/users/ale.json b/users/ale.json index ed6b6d52..ecae2267 100644 --- a/users/ale.json +++ b/users/ale.json @@ -1,6 +1,6 @@ { - "copyright": "Alejandro Morales", - "url": "http://alejandromorales.co.cc", - "email": "alejandro@numbus.co", - "theme": "double-windsor" -} + "copyright": "Alejandro Morales", + "url": "http://alejandromorales.co.cc", + "email": "alejandro@numbus.co", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/aleksi.json b/users/aleksi.json index 31cd4490..e806c1b0 100644 --- a/users/aleksi.json +++ b/users/aleksi.json @@ -1,3 +1,3 @@ { - "copyright": "Alexey Palazhchenko" -} + "copyright": "Alexey Palazhchenko" +} \ No newline at end of file diff --git a/users/alessioalex.json b/users/alessioalex.json index cae6d826..f7941e8d 100644 --- a/users/alessioalex.json +++ b/users/alessioalex.json @@ -1,5 +1,5 @@ { - "copyright": "Alexandru Vladutu", - "email": "alexandru.vladutu@gmail.com", - "gravatar": true -} + "copyright": "Alexandru Vladutu", + "email": "alexandru.vladutu@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/aleung.json b/users/aleung.json index 11ba47ff..eecf6e96 100644 --- a/users/aleung.json +++ b/users/aleung.json @@ -1,5 +1,5 @@ { - "copyright": "Leo Liang", - "url": "https://github.com/aleung", - "email": "leoliang@gmail.com" -} + "copyright": "Leo Liang", + "url": "https://github.com/aleung", + "email": "leoliang@gmail.com" +} \ No newline at end of file diff --git a/users/alex.json b/users/alex.json index 0cb608b5..632827ab 100644 --- a/users/alex.json +++ b/users/alex.json @@ -1,3 +1,3 @@ { - "copyright": "Alex Peattie" -} + "copyright": "Alex Peattie" +} \ No newline at end of file diff --git a/users/alexaaronfrancisco.json b/users/alexaaronfrancisco.json index 341ce7cd..28aa3b57 100644 --- a/users/alexaaronfrancisco.json +++ b/users/alexaaronfrancisco.json @@ -1,3 +1,3 @@ { - "copyright": "Alexander Aaron Francisco" -} + "copyright": "Alexander Aaron Francisco" +} \ No newline at end of file diff --git a/users/alexander.json b/users/alexander.json index bdc2bc47..45fd3bec 100644 --- a/users/alexander.json +++ b/users/alexander.json @@ -1,5 +1,5 @@ { - "copyright": "Alexander Shpilkin", - "url": "http://about.me/alex.shpilkin", - "email": "ashpilkin@gmail.com" -} + "copyright": "Alexander Shpilkin", + "url": "http://about.me/alex.shpilkin", + "email": "ashpilkin@gmail.com" +} \ No newline at end of file diff --git a/users/alexb.json b/users/alexb.json index db4c6308..6017c9d9 100644 --- a/users/alexb.json +++ b/users/alexb.json @@ -1,5 +1,5 @@ { - "copyright": "Alex Bierwagen", - "url": "http://alexb.ninja", - "email": "me@alexb.ninja" -} + "copyright": "Alex Bierwagen", + "url": "http://alexb.ninja", + "email": "me@alexb.ninja" +} \ No newline at end of file diff --git a/users/alexgleason.json b/users/alexgleason.json index 3cfc3c75..1d279ec8 100644 --- a/users/alexgleason.json +++ b/users/alexgleason.json @@ -1,3 +1,3 @@ { - "copyright": "Alex Gleason" -} + "copyright": "Alex Gleason" +} \ No newline at end of file diff --git a/users/alexh.json b/users/alexh.json index 408ff4a9..0a614688 100644 --- a/users/alexh.json +++ b/users/alexh.json @@ -1,6 +1,6 @@ { - "copyright": "Alex Hamilton", - "url": "https://hmltn.me", - "email": "github@aehmlo.me", - "gravatar": true -} + "copyright": "Alex Hamilton", + "url": "https://hmltn.me", + "email": "github@aehmlo.me", + "gravatar": true +} \ No newline at end of file diff --git a/users/alexluke.json b/users/alexluke.json index 0d372a59..d9f9d362 100644 --- a/users/alexluke.json +++ b/users/alexluke.json @@ -1,5 +1,5 @@ { - "copyright": "Alex Luke", - "url": "http://alexluke.me", - "email": "alex@alexluke.me" -} + "copyright": "Alex Luke", + "url": "http://alexluke.me", + "email": "alex@alexluke.me" +} \ No newline at end of file diff --git a/users/alexowl.json b/users/alexowl.json index 974a3e96..d4a4a940 100644 --- a/users/alexowl.json +++ b/users/alexowl.json @@ -1,8 +1,8 @@ { - "copyright": "Alex Owl, https://github.com/AlexOwl", - "email": "AlexOwl@protonmail.com", - "url": "https://github.com/AlexOwl", - "format": "html", - "gravatar": true, - "theme": "material-red" -} + "copyright": "Alex Owl, https://github.com/AlexOwl", + "email": "AlexOwl@protonmail.com", + "url": "https://github.com/AlexOwl", + "format": "html", + "gravatar": true, + "theme": "material-red" +} \ No newline at end of file diff --git a/users/ali-sdk.json b/users/ali-sdk.json index dd8d70dc..13648b0a 100644 --- a/users/ali-sdk.json +++ b/users/ali-sdk.json @@ -1,6 +1,6 @@ { - "copyright": "ali-sdk and other contributors", - "url": "https://github.com/ali-sdk", - "email": "m@fengmk2.com", - "format": "txt" -} + "copyright": "ali-sdk and other contributors", + "url": "https://github.com/ali-sdk", + "email": "m@fengmk2.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/ali.json b/users/ali.json index 540b8d9d..8ce407d5 100644 --- a/users/ali.json +++ b/users/ali.json @@ -1,6 +1,6 @@ { - "copyright": "Ali El-Ashram", - "url": "http://aliel.herokuapp.com", - "email": "ali.elashram@gmail.com", - "format": "txt" -} + "copyright": "Ali El-Ashram", + "url": "http://aliel.herokuapp.com", + "email": "ali.elashram@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/alias.json b/users/alias.json index 9007afa3..190b9459 100644 --- a/users/alias.json +++ b/users/alias.json @@ -1,6 +1,6 @@ { - "copyright": "Alias,http://www.alias4bb.com", - "url": "http://www.alias4bb.com", - "email": "yygggg@foxmail.com", - "gravatar": true -} + "copyright": "Alias,http://www.alias4bb.com", + "url": "http://www.alias4bb.com", + "email": "yygggg@foxmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/alibabatajine.json b/users/alibabatajine.json index 022fbdb4..dda8119c 100644 --- a/users/alibabatajine.json +++ b/users/alibabatajine.json @@ -1,6 +1,6 @@ { - "copyright": "Harald Haesler", - "url": "http://www.tajine.de", - "email": "mit@tajine.de", - "theme": "double-windsor" -} + "copyright": "Harald Haesler", + "url": "http://www.tajine.de", + "email": "mit@tajine.de", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/aliel.json b/users/aliel.json index 208eccf4..282d55c0 100644 --- a/users/aliel.json +++ b/users/aliel.json @@ -1,6 +1,6 @@ { - "copyright": "Ali El-Ashram", - "url": "http://aliel.herokuapp.com", - "email": "ali.elashram@gmail.com", - "theme": "double-windsor" -} + "copyright": "Ali El-Ashram", + "url": "http://aliel.herokuapp.com", + "email": "ali.elashram@gmail.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/alimd.json b/users/alimd.json index 2c647021..dc2454c0 100644 --- a/users/alimd.json +++ b/users/alimd.json @@ -1,7 +1,7 @@ { - "copyright": "Ali Mihandoost, http://ali.md", - "url": "http://ali.md", - "email": "i@ali.md", - "theme": "flesch", - "gravatar": true -} + "copyright": "Ali Mihandoost, http://ali.md", + "url": "http://ali.md", + "email": "i@ali.md", + "theme": "flesch", + "gravatar": true +} \ No newline at end of file diff --git a/users/alisch.json b/users/alisch.json index f473faf2..5a0dc297 100644 --- a/users/alisch.json +++ b/users/alisch.json @@ -1,6 +1,6 @@ { - "copyright": "Ali SADEGHIPOURKORABASLO", - "url": "https://alisch.me/", - "email": "mail@alisch.me", - "format": "txt" -} + "copyright": "Ali SADEGHIPOURKORABASLO", + "url": "https://alisch.me/", + "email": "mail@alisch.me", + "format": "txt" +} \ No newline at end of file diff --git a/users/alisdair.json b/users/alisdair.json index 8fa3a656..d9708672 100644 --- a/users/alisdair.json +++ b/users/alisdair.json @@ -1,3 +1,3 @@ { - "copyright": "Alisdair McDiarmid" -} + "copyright": "Alisdair McDiarmid" +} \ No newline at end of file diff --git a/users/allthingssmitty.json b/users/allthingssmitty.json index ad11d7a0..ad3e15e7 100644 --- a/users/allthingssmitty.json +++ b/users/allthingssmitty.json @@ -1,6 +1,6 @@ { - "copyright": "Matt Smith, https://github.com/AllThingsSmitty", - "url": "https://github.com/AllThingsSmitty", - "theme": "default", - "gravatar": true -} + "copyright": "Matt Smith, https://github.com/AllThingsSmitty", + "url": "https://github.com/AllThingsSmitty", + "theme": "default", + "gravatar": true +} \ No newline at end of file diff --git a/users/almad.json b/users/almad.json index 5f573208..1911dced 100644 --- a/users/almad.json +++ b/users/almad.json @@ -1,7 +1,7 @@ { - "copyright": "Lukas Linhart", - "url": "http://almad.net", - "email": "bugs@almad.net", - "format": "html", - "theme": "eula-modern" -} + "copyright": "Lukas Linhart", + "url": "http://almad.net", + "email": "bugs@almad.net", + "format": "html", + "theme": "eula-modern" +} \ No newline at end of file diff --git a/users/alno.json b/users/alno.json index 832c1516..061928a1 100644 --- a/users/alno.json +++ b/users/alno.json @@ -1,5 +1,5 @@ { - "copyright": "Alexey Noskov", - "url": "http://alno.name/", - "email": "alexey.noskov@gmail.com" -} + "copyright": "Alexey Noskov", + "url": "http://alno.name/", + "email": "alexey.noskov@gmail.com" +} \ No newline at end of file diff --git a/users/alphawhy.json b/users/alphawhy.json index b6548dbc..19433cfb 100644 --- a/users/alphawhy.json +++ b/users/alphawhy.json @@ -1,3 +1,3 @@ { - "copyright": "Alpha Why" -} + "copyright": "Alpha Why" +} \ No newline at end of file diff --git a/users/altun.json b/users/altun.json index 778458f2..7ba378c8 100644 --- a/users/altun.json +++ b/users/altun.json @@ -1,6 +1,6 @@ { - "copyright": "Mustafa Altun", - "url": "http://mustafaaltun.com", - "email": "gmail@mustafaaltun.com", - "format": "txt" -} + "copyright": "Mustafa Altun", + "url": "http://mustafaaltun.com", + "email": "gmail@mustafaaltun.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/amaan.json b/users/amaan.json index 7c6b06f4..dc4d0502 100644 --- a/users/amaan.json +++ b/users/amaan.json @@ -1,3 +1,3 @@ { - "copyright": "Amaan Cheval" -} + "copyright": "Amaan Cheval" +} \ No newline at end of file diff --git a/users/amarlearning.json b/users/amarlearning.json index d4af9eb5..83ba8021 100644 --- a/users/amarlearning.json +++ b/users/amarlearning.json @@ -1,7 +1,7 @@ { - "copyright": "Amar Prakash Pandey, http://amarpandey.me", - "url": "http://amarpandey.me", - "email": "amar.om1994@gmail.com", - "theme": "material-pink", - "gravatar": true -} + "copyright": "Amar Prakash Pandey, http://amarpandey.me", + "url": "http://amarpandey.me", + "email": "amar.om1994@gmail.com", + "theme": "material-pink", + "gravatar": true +} \ No newline at end of file diff --git a/users/amiranda.json b/users/amiranda.json index a2ee9604..dc94686b 100644 --- a/users/amiranda.json +++ b/users/amiranda.json @@ -1,3 +1,3 @@ { - "copyright": "Alex Miranda" -} + "copyright": "Alex Miranda" +} \ No newline at end of file diff --git a/users/amitmerchant1990.json b/users/amitmerchant1990.json index e16a76cc..0a6e9249 100644 --- a/users/amitmerchant1990.json +++ b/users/amitmerchant1990.json @@ -1,6 +1,6 @@ { - "copyright": "Amit Merchant", - "url": "https://github.com/amitmerchant1990", - "email": "bullredeyes@gmail.com", - "theme": "cherry" -} + "copyright": "Amit Merchant", + "url": "https://github.com/amitmerchant1990", + "email": "bullredeyes@gmail.com", + "theme": "cherry" +} \ No newline at end of file diff --git a/users/amjad.json b/users/amjad.json index 9940638d..89071537 100644 --- a/users/amjad.json +++ b/users/amjad.json @@ -1,7 +1,7 @@ { - "copyright": "Amjad Ali", - "url": "http://amjd.github.io", - "email": "amjad.4@gmail.com", - "gravatar": true, - "theme": "black-beauty" -} + "copyright": "Amjad Ali", + "url": "http://amjd.github.io", + "email": "amjad.4@gmail.com", + "gravatar": true, + "theme": "black-beauty" +} \ No newline at end of file diff --git a/users/analogj.json b/users/analogj.json index 7543317f..24334b28 100644 --- a/users/analogj.json +++ b/users/analogj.json @@ -1,3 +1,3 @@ { - "copyright": "Jason Kulatunga" -} + "copyright": "Jason Kulatunga" +} \ No newline at end of file diff --git a/users/anant.json b/users/anant.json index 5846d27e..ab3bc458 100644 --- a/users/anant.json +++ b/users/anant.json @@ -1,3 +1,3 @@ { - "copyright": "Anant Jain" -} + "copyright": "Anant Jain" +} \ No newline at end of file diff --git a/users/ancy.json b/users/ancy.json index 99e40003..fac3a809 100644 --- a/users/ancy.json +++ b/users/ancy.json @@ -1,5 +1,5 @@ { - "copyright": "Ancy , http://lazulirose.com", - "url": "http://lazulirose.com", - "theme": "double-windsor" -} + "copyright": "Ancy , http://lazulirose.com", + "url": "http://lazulirose.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/and3k5.json b/users/and3k5.json index e6e06a41..55302a6d 100644 --- a/users/and3k5.json +++ b/users/and3k5.json @@ -1,3 +1,3 @@ { - "copyright": "Anders Kjeldsen" -} + "copyright": "Anders Kjeldsen" +} \ No newline at end of file diff --git a/users/andersonaguiar.json b/users/andersonaguiar.json index 8a3ddf7b..45266f95 100644 --- a/users/andersonaguiar.json +++ b/users/andersonaguiar.json @@ -1,5 +1,5 @@ { - "copyright": "Anderson Aguiar", - "url": "http://andersonaguiar.com.br", - "email": "andersonaguiar.web@gmail.com" -} + "copyright": "Anderson Aguiar", + "url": "http://andersonaguiar.com.br", + "email": "andersonaguiar.web@gmail.com" +} \ No newline at end of file diff --git a/users/andre.json b/users/andre.json index 7bd03b3b..4c5342f7 100644 --- a/users/andre.json +++ b/users/andre.json @@ -1,3 +1,3 @@ { - "copyright": "Andr\u00e9 Braga" -} + "copyright": "André Braga" +} \ No newline at end of file diff --git a/users/andreasonny.json b/users/andreasonny.json index bb633709..541d543b 100644 --- a/users/andreasonny.json +++ b/users/andreasonny.json @@ -1,7 +1,7 @@ { - "copyright": "Andrea SonnY", - "url": "https://github.com/andreasonny83", - "email": "andreasonny83@gmail.com", - "gravatar": true, - "theme": "material-teal" -} + "copyright": "Andrea SonnY", + "url": "https://github.com/andreasonny83", + "email": "andreasonny83@gmail.com", + "gravatar": true, + "theme": "material-teal" +} \ No newline at end of file diff --git a/users/andreif.json b/users/andreif.json index 6998e56f..eacaa97a 100644 --- a/users/andreif.json +++ b/users/andreif.json @@ -1,5 +1,5 @@ { - "copyright": "Andrei Fokau", - "email": "fokau@kth.se", - "url": "https://github.com/andreif" -} + "copyright": "Andrei Fokau", + "email": "fokau@kth.se", + "url": "https://github.com/andreif" +} \ No newline at end of file diff --git a/users/andreisebastianc.json b/users/andreisebastianc.json index 78410148..2f54583d 100644 --- a/users/andreisebastianc.json +++ b/users/andreisebastianc.json @@ -1,5 +1,5 @@ { - "copyright": "Andrei Sebastian C\u00c3\u00aempean", - "email": "andreisebastianc@gmail.com", - "format": "txt" -} + "copyright": "Andrei Sebastian Cîmpean", + "email": "andreisebastianc@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/andrel.json b/users/andrel.json index c1fc34df..f260884c 100644 --- a/users/andrel.json +++ b/users/andrel.json @@ -1,7 +1,7 @@ { - "copyright": "Andre Loureiro", - "url": "http://andrel.me", - "email": "hi@andrel.me", - "gravatar": true, - "theme": "opensans" -} + "copyright": "Andre Loureiro", + "url": "http://andrel.me", + "email": "hi@andrel.me", + "gravatar": true, + "theme": "opensans" +} \ No newline at end of file diff --git a/users/andreloureiro.json b/users/andreloureiro.json index c4bbb9f4..f22e3fff 100644 --- a/users/andreloureiro.json +++ b/users/andreloureiro.json @@ -1,6 +1,6 @@ { - "copyright": "Andre Loureiro", - "url": "http://andrel.me", - "email": "andreloureiroo@gmail.com", - "format": "txt" -} + "copyright": "Andre Loureiro", + "url": "http://andrel.me", + "email": "andreloureiroo@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/andrew.json b/users/andrew.json index 654f25f1..2d05c0b6 100644 --- a/users/andrew.json +++ b/users/andrew.json @@ -1,5 +1,5 @@ { - "copyright": "Andrew Fischer", - "email": "afischer15@mac.com", - "gravatar": true -} + "copyright": "Andrew Fischer", + "email": "afischer15@mac.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/andreyknupp.json b/users/andreyknupp.json index e92ea844..07a58379 100644 --- a/users/andreyknupp.json +++ b/users/andreyknupp.json @@ -1,6 +1,6 @@ { - "copyright": "Andrey Knupp", - "url": "http://github.com/andreyknupp", - "email": "andreykvital@gmail.com", - "format": "txt" -} + "copyright": "Andrey Knupp", + "url": "http://github.com/andreyknupp", + "email": "andreykvital@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/andrezero.json b/users/andrezero.json index a3cedfbb..8f5652d2 100644 --- a/users/andrezero.json +++ b/users/andrezero.json @@ -1,6 +1,6 @@ { - "copyright": "Andre Torgal", - "url": "http://andretorgal.com", - "email": "andre.torgal@gmail.com", - "theme": "double-windsor" -} + "copyright": "Andre Torgal", + "url": "http://andretorgal.com", + "email": "andre.torgal@gmail.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/androidnix.json b/users/androidnix.json index 1c85ec6b..2e648b32 100644 --- a/users/androidnix.json +++ b/users/androidnix.json @@ -1,6 +1,6 @@ { - "copyright": "Androidnix - Android Tools for Linux Users", - "theme": "flesch", - "email": "support@icodeclarity.com", - "format": "html" -} + "copyright": "Androidnix - Android Tools for Linux Users", + "theme": "flesch", + "email": "support@icodeclarity.com", + "format": "html" +} \ No newline at end of file diff --git a/users/andrsd.json b/users/andrsd.json index 8e84e07e..2d2a01fb 100644 --- a/users/andrsd.json +++ b/users/andrsd.json @@ -1,7 +1,7 @@ { - "copyright": "David Andrs", - "url": "https://github.com/andrsd", - "email": "andrsd@gmail.com", - "gravatar": true, - "theme": "material-blue" -} + "copyright": "David Andrs", + "url": "https://github.com/andrsd", + "email": "andrsd@gmail.com", + "gravatar": true, + "theme": "material-blue" +} \ No newline at end of file diff --git a/users/andxyz.json b/users/andxyz.json index b60fbcab..a8353e20 100644 --- a/users/andxyz.json +++ b/users/andxyz.json @@ -1,6 +1,6 @@ { - "copyright": "Andrew Stevens", - "url": "http://andxyz.com", - "email": "andy@andxyz.com", - "format": "txt" -} + "copyright": "Andrew Stevens", + "url": "http://andxyz.com", + "email": "andy@andxyz.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/andyedinborough.json b/users/andyedinborough.json index beb9a128..381d2dce 100644 --- a/users/andyedinborough.json +++ b/users/andyedinborough.json @@ -1,3 +1,3 @@ { - "copyright": "Andy Edinborough" -} + "copyright": "Andy Edinborough" +} \ No newline at end of file diff --git a/users/andystubbs.json b/users/andystubbs.json index dbe32bfc..b1164b45 100644 --- a/users/andystubbs.json +++ b/users/andystubbs.json @@ -1,3 +1,3 @@ { - "copyright": "Andy Stubbs" -} + "copyright": "Andy Stubbs" +} \ No newline at end of file diff --git a/users/angrychimp.json b/users/angrychimp.json index 3d798128..25009899 100644 --- a/users/angrychimp.json +++ b/users/angrychimp.json @@ -1,7 +1,7 @@ { - "copyright": "Randall Kahler", - "url": "https://angrychimp.net", - "email": "rkahler@gmail.com", - "gravatar": true, - "theme": "material-teal" -} + "copyright": "Randall Kahler", + "url": "https://angrychimp.net", + "email": "rkahler@gmail.com", + "gravatar": true, + "theme": "material-teal" +} \ No newline at end of file diff --git a/users/angus.json b/users/angus.json index d15a5e9d..f16b23c1 100644 --- a/users/angus.json +++ b/users/angus.json @@ -1,3 +1,3 @@ { - "copyright": "Angus Thomsen" -} + "copyright": "Angus Thomsen" +} \ No newline at end of file diff --git a/users/angusm.json b/users/angusm.json index a657593b..33b0d090 100644 --- a/users/angusm.json +++ b/users/angusm.json @@ -1,3 +1,3 @@ { - "copyright": "Angus McIntyre" -} + "copyright": "Angus McIntyre" +} \ No newline at end of file diff --git a/users/anish.json b/users/anish.json index 73b0e22d..99a78a5a 100644 --- a/users/anish.json +++ b/users/anish.json @@ -1,6 +1,6 @@ { - "copyright": "Anish Athalye", - "email": "anish-foss@mit.edu", - "gravatar": true, - "theme": "xtansia" -} + "copyright": "Anish Athalye", + "email": "anish-foss@mit.edu", + "gravatar": true, + "theme": "xtansia" +} \ No newline at end of file diff --git a/users/anishathalye.json b/users/anishathalye.json index 73b0e22d..99a78a5a 100644 --- a/users/anishathalye.json +++ b/users/anishathalye.json @@ -1,6 +1,6 @@ { - "copyright": "Anish Athalye", - "email": "anish-foss@mit.edu", - "gravatar": true, - "theme": "xtansia" -} + "copyright": "Anish Athalye", + "email": "anish-foss@mit.edu", + "gravatar": true, + "theme": "xtansia" +} \ No newline at end of file diff --git a/users/ankur.json b/users/ankur.json index 00c7f19d..c637fbe8 100644 --- a/users/ankur.json +++ b/users/ankur.json @@ -1,7 +1,7 @@ { - "copyright": "Ankur Jaiswal", - "email": "aj17@iitbbs.ac.in", - "theme": "dusk", - "format": "html", - "gravatar": true -} + "copyright": "Ankur Jaiswal", + "email": "aj17@iitbbs.ac.in", + "theme": "dusk", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/anmoljagetia.json b/users/anmoljagetia.json index 9f620ea8..45b6d9f3 100644 --- a/users/anmoljagetia.json +++ b/users/anmoljagetia.json @@ -1,6 +1,6 @@ { - "copyright": "Anmol Jagetia", - "url": "http://anmoljagetia.me", - "email": "anmoljagetia@gmail.com", - "theme": "solarized" -} + "copyright": "Anmol Jagetia", + "url": "http://anmoljagetia.me", + "email": "anmoljagetia@gmail.com", + "theme": "solarized" +} \ No newline at end of file diff --git a/users/anon.json b/users/anon.json index 28b9b02d..252e9dce 100644 --- a/users/anon.json +++ b/users/anon.json @@ -1,8 +1,8 @@ { - "copyright": "anon", - "url": "http://anoncom.net", - "email": "anon@anoncom.net", - "format": "html", - "theme": "eula-modern", - "gravatar": true -} + "copyright": "anon", + "url": "http://anoncom.net", + "email": "anon@anoncom.net", + "format": "html", + "theme": "eula-modern", + "gravatar": true +} \ No newline at end of file diff --git a/users/anovsiradj.json b/users/anovsiradj.json index e0d884a5..76a72b1d 100644 --- a/users/anovsiradj.json +++ b/users/anovsiradj.json @@ -1,6 +1,6 @@ { - "copyright": "Mayendra Costanov (anovsiradj)", - "email": "anov.siradj(22@(gmail|live).com|@gin.co.id)", - "url": "http://ne-a-r.blogspot.com/ncr", - "format": "txt" -} + "copyright": "Mayendra Costanov (anovsiradj)", + "email": "anov.siradj(22@(gmail|live).com|@gin.co.id)", + "url": "http://ne-a-r.blogspot.com/ncr", + "format": "txt" +} \ No newline at end of file diff --git a/users/anrodon.json b/users/anrodon.json index 8ee2fd0c..ccbf5953 100644 --- a/users/anrodon.json +++ b/users/anrodon.json @@ -1,6 +1,6 @@ { - "copyright": "Andreu Rodr\u00c3\u00adguez i Donaire", - "url": "http://arodriguezdonaire.com", - "email": "arodriguezdonaire@gmail.com", - "format": "txt" -} + "copyright": "Andreu Rodríguez i Donaire", + "url": "http://arodriguezdonaire.com", + "email": "arodriguezdonaire@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/anshul.json b/users/anshul.json index ec0a2d31..f780c37e 100644 --- a/users/anshul.json +++ b/users/anshul.json @@ -1,4 +1,4 @@ { - "copyright": "Anshul Shah", - "email": "anshulshah96@gmail.com" -} + "copyright": "Anshul Shah", + "email": "anshulshah96@gmail.com" +} \ No newline at end of file diff --git a/users/anthkris.json b/users/anthkris.json index f400a1f8..82cd35b7 100644 --- a/users/anthkris.json +++ b/users/anthkris.json @@ -1,7 +1,7 @@ { - "copyright": "Kristin Anthony, http://knanthony.com", - "url": "http://knanthony.com", - "email": "kristin@knanthony.com", - "format": "html", - "theme": "mitserrat" -} + "copyright": "Kristin Anthony, http://knanthony.com", + "url": "http://knanthony.com", + "email": "kristin@knanthony.com", + "format": "html", + "theme": "mitserrat" +} \ No newline at end of file diff --git a/users/anthony.json b/users/anthony.json index 23964319..83c7b6d7 100644 --- a/users/anthony.json +++ b/users/anthony.json @@ -1,7 +1,7 @@ { - "copyright": "Anthony Rappa", - "url": "http://rappasoft.com", - "email": "rappa819@gmail.com", - "format": "html", - "gravatar": true -} + "copyright": "Anthony Rappa", + "url": "http://rappasoft.com", + "email": "rappa819@gmail.com", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/antimatter15.json b/users/antimatter15.json index 7b09581a..58547cba 100644 --- a/users/antimatter15.json +++ b/users/antimatter15.json @@ -1,5 +1,5 @@ { - "copyright": "Kevin Kwok", - "url": "http://antimatter15.com", - "email": "antimatter15@gmail.com" -} + "copyright": "Kevin Kwok", + "url": "http://antimatter15.com", + "email": "antimatter15@gmail.com" +} \ No newline at end of file diff --git a/users/anton.json b/users/anton.json index 19ed5c55..9440d5b0 100644 --- a/users/anton.json +++ b/users/anton.json @@ -1,3 +1,3 @@ { - "copyright": "Anton Piatek" -} + "copyright": "Anton Piatek" +} \ No newline at end of file diff --git a/users/antonhalim.json b/users/antonhalim.json index 965bc15a..110f64bb 100644 --- a/users/antonhalim.json +++ b/users/antonhalim.json @@ -1,6 +1,6 @@ { - "copyright": "Anton Halim, http://antonhalim.me", - "url": "antonhalim.me", - "email": "anton@antonhalim.me", - "theme": "flesch" -} + "copyright": "Anton Halim, http://antonhalim.me", + "url": "antonhalim.me", + "email": "anton@antonhalim.me", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/antonholmgren.json b/users/antonholmgren.json index 23f04bc4..4343b16c 100644 --- a/users/antonholmgren.json +++ b/users/antonholmgren.json @@ -1,6 +1,6 @@ { - "copyright": "Anton Holmgren", - "url": "http://antonholmgren.com", - "email": "me@antonholmgren.com", - "format": "txt" -} + "copyright": "Anton Holmgren", + "url": "http://antonholmgren.com", + "email": "me@antonholmgren.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/antonio.json b/users/antonio.json index 1411e2d2..64973a25 100644 --- a/users/antonio.json +++ b/users/antonio.json @@ -1,4 +1,4 @@ { - "copyright": "Antonio Santos", - "theme": "afterdark" -} + "copyright": "Antonio Santos", + "theme": "afterdark" +} \ No newline at end of file diff --git a/users/antonybailey.json b/users/antonybailey.json index bc6837c7..1a14a4f1 100644 --- a/users/antonybailey.json +++ b/users/antonybailey.json @@ -1,6 +1,6 @@ { - "copyright": "Antony Bailey", - "url": "http://www.antonybailey.net", - "email": "support@antonybailey.net", - "format": "txt" -} + "copyright": "Antony Bailey", + "url": "http://www.antonybailey.net", + "email": "support@antonybailey.net", + "format": "txt" +} \ No newline at end of file diff --git a/users/anunay.json b/users/anunay.json index 7a18c212..805d7f24 100644 --- a/users/anunay.json +++ b/users/anunay.json @@ -1,6 +1,6 @@ { - "copyright": "Anunay Dahal", - "url": "http://anunaydahal.com", - "email": "anunay.dahal@gmail.com", - "format": "txt" -} + "copyright": "Anunay Dahal", + "url": "http://anunaydahal.com", + "email": "anunay.dahal@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/anuraj.json b/users/anuraj.json index 573a4939..9fef2aae 100644 --- a/users/anuraj.json +++ b/users/anuraj.json @@ -1,6 +1,6 @@ { - "copyright": "Anuraj P", - "url": "https://dotnetthoughts.net", - "email": "me@dotnetthoughts.net", - "format": "html" -} + "copyright": "Anuraj P", + "url": "https://dotnetthoughts.net", + "email": "me@dotnetthoughts.net", + "format": "html" +} \ No newline at end of file diff --git a/users/anwarjaved.json b/users/anwarjaved.json index 04bccb8f..5b34c143 100644 --- a/users/anwarjaved.json +++ b/users/anwarjaved.json @@ -1,7 +1,7 @@ { - "copyright": "Anwar Javed", - "email": "anwarjaved@gmail.com", - "format": "html", - "gravatar": true, - "theme": "default-dark" -} + "copyright": "Anwar Javed", + "email": "anwarjaved@gmail.com", + "format": "html", + "gravatar": true, + "theme": "default-dark" +} \ No newline at end of file diff --git a/users/anze.json b/users/anze.json index 5e36bb47..abbd7ea4 100644 --- a/users/anze.json +++ b/users/anze.json @@ -1,6 +1,6 @@ { - "copyright": "Alberto Anzellotti", - "url": "http://anzellotti.cu.cc", - "email": "alberto.anzellotti@gmail.com", - "format": "txt" -} + "copyright": "Alberto Anzellotti", + "url": "http://anzellotti.cu.cc", + "email": "alberto.anzellotti@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/apnerve.json b/users/apnerve.json index 71375b13..1ad4ba37 100644 --- a/users/apnerve.json +++ b/users/apnerve.json @@ -1,3 +1,3 @@ { - "copyright": "Praveen Kumar" -} + "copyright": "Praveen Kumar" +} \ No newline at end of file diff --git a/users/apollojustice.json b/users/apollojustice.json index 85eccdf3..18adb1d6 100644 --- a/users/apollojustice.json +++ b/users/apollojustice.json @@ -1,7 +1,7 @@ { - "copyright": "Ricardo Garcia (ApolloJustice)", - "url": "https://apollo.pw", - "email": "me@apollo.pw", - "theme": "material-indigo", - "gravatar": true -} + "copyright": "Ricardo Garcia (ApolloJustice)", + "url": "https://apollo.pw", + "email": "me@apollo.pw", + "theme": "material-indigo", + "gravatar": true +} \ No newline at end of file diff --git a/users/aponxi.json b/users/aponxi.json index 9cc16efe..5ea47d11 100644 --- a/users/aponxi.json +++ b/users/aponxi.json @@ -1,7 +1,7 @@ { - "copyright": "WeaponXI", - "url": "http://www.weaponxi.com", - "email": "aponxi@weaponxi.com", - "format": "html", - "theme": "blackwood" -} + "copyright": "WeaponXI", + "url": "http://www.weaponxi.com", + "email": "aponxi@weaponxi.com", + "format": "html", + "theme": "blackwood" +} \ No newline at end of file diff --git a/users/apopelo.json b/users/apopelo.json index a16ce5ef..54f3d563 100644 --- a/users/apopelo.json +++ b/users/apopelo.json @@ -1,3 +1,3 @@ { - "copyright": "Andrey Popelo" -} + "copyright": "Andrey Popelo" +} \ No newline at end of file diff --git a/users/appsattic.json b/users/appsattic.json index 34ff9faf..fe8ef433 100644 --- a/users/appsattic.json +++ b/users/appsattic.json @@ -1,5 +1,5 @@ { - "copyright": "AppsAttic Ltd", - "url": "http://appsattic.com/", - "email": "chilts@appsattic.com" -} + "copyright": "AppsAttic Ltd", + "url": "http://appsattic.com/", + "email": "chilts@appsattic.com" +} \ No newline at end of file diff --git a/users/apriendeau.json b/users/apriendeau.json index a42f6185..bbeb0cb2 100644 --- a/users/apriendeau.json +++ b/users/apriendeau.json @@ -1,5 +1,5 @@ { - "copyright": "Austin Riendeau", - "url": "http://apriendeau.com", - "email": "austin@apriendeau.com" -} + "copyright": "Austin Riendeau", + "url": "http://apriendeau.com", + "email": "austin@apriendeau.com" +} \ No newline at end of file diff --git a/users/aps.json b/users/aps.json index aab647dc..77b8fea9 100644 --- a/users/aps.json +++ b/users/aps.json @@ -1,6 +1,6 @@ { - "copyright": "Aman Pratap Singh, http://amanpratapsingh.in", - "url": "http://amanpratapsingh.in", - "email": "amanprtpsingh@gmail.com", - "theme": "material-pink" -} + "copyright": "Aman Pratap Singh, http://amanpratapsingh.in", + "url": "http://amanpratapsingh.in", + "email": "amanprtpsingh@gmail.com", + "theme": "material-pink" +} \ No newline at end of file diff --git a/users/ar.json b/users/ar.json index 1db7041d..0439f4c4 100644 --- a/users/ar.json +++ b/users/ar.json @@ -1,3 +1,3 @@ { - "copyright": "Alexander Rosolko" -} + "copyright": "Alexander Rosolko" +} \ No newline at end of file diff --git a/users/arashmilani.json b/users/arashmilani.json index c18f0cd8..cf895342 100644 --- a/users/arashmilani.json +++ b/users/arashmilani.json @@ -1,7 +1,7 @@ { - "copyright": "Arash Milani", - "url": "http://arashmilani.com", - "email": "me@arashmilani.com", - "format": "html", - "gravatar": true -} + "copyright": "Arash Milani", + "url": "http://arashmilani.com", + "email": "me@arashmilani.com", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/ariporad.json b/users/ariporad.json index 581b2e01..100fa462 100644 --- a/users/ariporad.json +++ b/users/ariporad.json @@ -1,6 +1,6 @@ { - "copyright": "Ari Porad", - "url": "http: //ariporad.com", - "email": "ari@ariporad.com", - "gravatar": true -} + "copyright": "Ari Porad", + "url": "http: //ariporad.com", + "email": "ari@ariporad.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/arizzol.json b/users/arizzol.json index 88c51a43..e3e5f52a 100644 --- a/users/arizzol.json +++ b/users/arizzol.json @@ -1,3 +1,3 @@ { - "copyright": "Arier Filizzola" -} + "copyright": "Arier Filizzola" +} \ No newline at end of file diff --git a/users/arjun.json b/users/arjun.json index d27e8f4c..c39c8290 100644 --- a/users/arjun.json +++ b/users/arjun.json @@ -1,5 +1,5 @@ { - "copyright": "Arjun Rao", - "url": "https://arjun.fyi", - "email": "contact@arjun.fyi" -} + "copyright": "Arjun Rao", + "url": "https://arjun.fyi", + "email": "contact@arjun.fyi" +} \ No newline at end of file diff --git a/users/arlo.json b/users/arlo.json index 54a9b37d..83c50ca1 100644 --- a/users/arlo.json +++ b/users/arlo.json @@ -1,4 +1,4 @@ { - "copyright": "Arlo Carreon, http://arlocarreon.com", - "url": "http://arlocarreon.com" -} + "copyright": "Arlo Carreon, http://arlocarreon.com", + "url": "http://arlocarreon.com" +} \ No newline at end of file diff --git a/users/armpit.json b/users/armpit.json index a3a82504..70666924 100644 --- a/users/armpit.json +++ b/users/armpit.json @@ -1,3 +1,3 @@ { - "copyright": "Shane Holding" -} + "copyright": "Shane Holding" +} \ No newline at end of file diff --git a/users/armujahid.json b/users/armujahid.json index aaaef49c..ae4fb4d9 100644 --- a/users/armujahid.json +++ b/users/armujahid.json @@ -1,7 +1,7 @@ { - "copyright": "Abdul Rauf, https://armujahid.me", - "url": "https://armujahid.me", - "email": "abdulraufmujahid@gmail.com", - "theme": "material", - "gravatar": true -} + "copyright": "Abdul Rauf, https://armujahid.me", + "url": "https://armujahid.me", + "email": "abdulraufmujahid@gmail.com", + "theme": "material", + "gravatar": true +} \ No newline at end of file diff --git a/users/arnavroy.json b/users/arnavroy.json index 4e02197c..c6c236c4 100644 --- a/users/arnavroy.json +++ b/users/arnavroy.json @@ -1,6 +1,6 @@ { - "copyright": "Arnav Roy", - "url": "http://www.arnavroy.com", - "email": "roy.arnav@gmail.com", - "format": "txt" -} + "copyright": "Arnav Roy", + "url": "http://www.arnavroy.com", + "email": "roy.arnav@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/arroxa.json b/users/arroxa.json index 942a5a66..3853f39b 100644 --- a/users/arroxa.json +++ b/users/arroxa.json @@ -1,4 +1,4 @@ { - "copyright": "Arroxa", - "theme": "eula-modern" -} + "copyright": "Arroxa", + "theme": "eula-modern" +} \ No newline at end of file diff --git a/users/artemave.json b/users/artemave.json index 9f45c8d5..47612906 100644 --- a/users/artemave.json +++ b/users/artemave.json @@ -1,3 +1,3 @@ { - "copyright": "Artem Avetisyan" -} + "copyright": "Artem Avetisyan" +} \ No newline at end of file diff --git a/users/arthurfigueiredo.json b/users/arthurfigueiredo.json index 22fbb58b..0dbd96ec 100644 --- a/users/arthurfigueiredo.json +++ b/users/arthurfigueiredo.json @@ -1,6 +1,6 @@ { - "copyright": "Arthur Figueiredo Nunes", - "url": "http://www.arthurfigueiredo.com.br", - "email": "arthurfn.webdev@gmail.com", - "format": "html" -} + "copyright": "Arthur Figueiredo Nunes", + "url": "http://www.arthurfigueiredo.com.br", + "email": "arthurfn.webdev@gmail.com", + "format": "html" +} \ No newline at end of file diff --git a/users/arthurguy.json b/users/arthurguy.json index 186cd5e7..a8839ef0 100644 --- a/users/arthurguy.json +++ b/users/arthurguy.json @@ -1,3 +1,3 @@ { - "copyright": "Arthur Guy" -} + "copyright": "Arthur Guy" +} \ No newline at end of file diff --git a/users/artnc.json b/users/artnc.json index 2dab7a70..ada7b072 100644 --- a/users/artnc.json +++ b/users/artnc.json @@ -1,3 +1,3 @@ { - "copyright": "Art Chaidarun" -} + "copyright": "Art Chaidarun" +} \ No newline at end of file diff --git a/users/aruhan.json b/users/aruhan.json index cc03fcc8..aedf609a 100644 --- a/users/aruhan.json +++ b/users/aruhan.json @@ -1,3 +1,3 @@ { - "copyright": "Takashi Harada" -} + "copyright": "Takashi Harada" +} \ No newline at end of file diff --git a/users/arulrajnet.json b/users/arulrajnet.json index 525d1e31..0a7efd28 100644 --- a/users/arulrajnet.json +++ b/users/arulrajnet.json @@ -1,6 +1,6 @@ { - "copyright": "Arulraj Venni", - "url": "http://arulraj.net", - "email": "me@arulraj.net", - "gravatar": true -} + "copyright": "Arulraj Venni", + "url": "http://arulraj.net", + "email": "me@arulraj.net", + "gravatar": true +} \ No newline at end of file diff --git a/users/arunoda.json b/users/arunoda.json index 812a1862..39183d02 100644 --- a/users/arunoda.json +++ b/users/arunoda.json @@ -1,3 +1,3 @@ { - "copyright": "Arunoda Susiripala" -} + "copyright": "Arunoda Susiripala" +} \ No newline at end of file diff --git a/users/arvid.json b/users/arvid.json index b3057653..5def2348 100644 --- a/users/arvid.json +++ b/users/arvid.json @@ -1,4 +1,4 @@ { - "copyright": "Arvid Bj\u00f6rkstr\u00f6m", - "email": "arvid@bjorkstrom.se" -} + "copyright": "Arvid Björkström", + "email": "arvid@bjorkstrom.se" +} \ No newline at end of file diff --git a/users/asante.json b/users/asante.json index 286d1509..3be6ef01 100644 --- a/users/asante.json +++ b/users/asante.json @@ -1,3 +1,3 @@ { - "copyright": "Alexander Sante" -} + "copyright": "Alexander Sante" +} \ No newline at end of file diff --git a/users/asbubam.json b/users/asbubam.json index dcde87f1..0bf7bbc7 100644 --- a/users/asbubam.json +++ b/users/asbubam.json @@ -1,6 +1,6 @@ { - "copyright": "asbubam", - "url": "http://blog.2dal.com", - "email": "asbubam@gmail.com", - "format": "txt" -} + "copyright": "asbubam", + "url": "http://blog.2dal.com", + "email": "asbubam@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/aschn.json b/users/aschn.json index 7915fa7f..e5c0d61b 100644 --- a/users/aschn.json +++ b/users/aschn.json @@ -1,3 +1,3 @@ { - "copyright": "Anna Schneider" -} + "copyright": "Anna Schneider" +} \ No newline at end of file diff --git a/users/asdbasjdbaskjd.json b/users/asdbasjdbaskjd.json index cc3199af..0d246a78 100644 --- a/users/asdbasjdbaskjd.json +++ b/users/asdbasjdbaskjd.json @@ -1,3 +1,3 @@ { - "copyright": "Lucas Galfas\u00f3" -} + "copyright": "Lucas Galfasó" +} \ No newline at end of file diff --git a/users/asdbjasbdja.json b/users/asdbjasbdja.json index 6206bafc..30511a5e 100644 --- a/users/asdbjasbdja.json +++ b/users/asdbjasbdja.json @@ -1,3 +1,3 @@ { - "copyright": "ajsdhbjabsdh" -} + "copyright": "ajsdhbjabsdh" +} \ No newline at end of file diff --git a/users/aseemk.json b/users/aseemk.json index 73d44545..d577bf10 100644 --- a/users/aseemk.json +++ b/users/aseemk.json @@ -1,5 +1,5 @@ { - "copyright": "Aseem Kishore", - "url": "http://aseemk.com/", - "email": "aseem.kishore@gmail.com" -} + "copyright": "Aseem Kishore", + "url": "http://aseemk.com/", + "email": "aseem.kishore@gmail.com" +} \ No newline at end of file diff --git a/users/ashchan.json b/users/ashchan.json index ffaec4c5..9ad2d379 100644 --- a/users/ashchan.json +++ b/users/ashchan.json @@ -1,5 +1,5 @@ { - "copyright": "James Chen", - "url": "http://ashchan.com", - "email": "ashchan@gmail.com" -} + "copyright": "James Chen", + "url": "http://ashchan.com", + "email": "ashchan@gmail.com" +} \ No newline at end of file diff --git a/users/ashtonwar.json b/users/ashtonwar.json index c0038220..3d651099 100644 --- a/users/ashtonwar.json +++ b/users/ashtonwar.json @@ -1,3 +1,3 @@ { - "copyright": "Ashton War" -} + "copyright": "Ashton War" +} \ No newline at end of file diff --git a/users/ask11.json b/users/ask11.json index 5e0b7d7d..6efcde9c 100644 --- a/users/ask11.json +++ b/users/ask11.json @@ -1,5 +1,5 @@ { - "copyright": "Aleksey Kulikov", - "email": "alekseys.kulikov@gmail.com", - "format": "txt" -} + "copyright": "Aleksey Kulikov", + "email": "alekseys.kulikov@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/askesian.json b/users/askesian.json index 494b6895..79ab2022 100644 --- a/users/askesian.json +++ b/users/askesian.json @@ -1,5 +1,5 @@ { - "copyright": "askesian", - "url": "http://askesian.com", - "email": "askesian@outlook.com" -} + "copyright": "askesian", + "url": "http://askesian.com", + "email": "askesian@outlook.com" +} \ No newline at end of file diff --git a/users/asolkar.json b/users/asolkar.json index 54ebe1bc..af074ed7 100644 --- a/users/asolkar.json +++ b/users/asolkar.json @@ -1,5 +1,5 @@ { - "copyright": "Mahesh Asolkar", - "url": "http://mahesha.com", - "theme": "double-windsor" -} + "copyright": "Mahesh Asolkar", + "url": "http://mahesha.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/assefamaru.json b/users/assefamaru.json index 4abebfa4..fc261a0e 100644 --- a/users/assefamaru.json +++ b/users/assefamaru.json @@ -1,8 +1,8 @@ { - "copyright": "Alexander Maru", - "url": "https://alexander.fyi", - "email": "iam@alexander.fyi", - "format": "txt", - "gravatar": true, - "theme": "plaintext" -} + "copyright": "Alexander Maru", + "url": "https://alexander.fyi", + "email": "iam@alexander.fyi", + "format": "txt", + "gravatar": true, + "theme": "plaintext" +} \ No newline at end of file diff --git a/users/astrocb.json b/users/astrocb.json index ad71b42a..e401c2e0 100644 --- a/users/astrocb.json +++ b/users/astrocb.json @@ -1,8 +1,8 @@ { - "copyright": "Cameron Bernhardt", - "url": "http://github.com/AstroCB", - "email": "cambernhardt@me.com", - "format": "html", - "gravatar": true, - "theme": "black-beauty" -} + "copyright": "Cameron Bernhardt", + "url": "http://github.com/AstroCB", + "email": "cambernhardt@me.com", + "format": "html", + "gravatar": true, + "theme": "black-beauty" +} \ No newline at end of file diff --git a/users/ata.json b/users/ata.json index 5a1aade9..99a028ca 100644 --- a/users/ata.json +++ b/users/ata.json @@ -1,5 +1,5 @@ { - "copyright": "Andrew Amis, http://geeklob.wordpress.com", - "url": "http://geeklob.wordpress.com", - "email": "atamiser@gmail.com" -} + "copyright": "Andrew Amis, http://geeklob.wordpress.com", + "url": "http://geeklob.wordpress.com", + "email": "atamiser@gmail.com" +} \ No newline at end of file diff --git a/users/atbox.json b/users/atbox.json index c288c185..978e7380 100644 --- a/users/atbox.json +++ b/users/atbox.json @@ -1,8 +1,8 @@ { - "copyright": "Atbox, https://atbox.io", - "url": "https://atbox.io", - "format": "html", - "email": "info@atbox.io", - "gravatar": true, - "theme": "opensans" -} + "copyright": "Atbox, https://atbox.io", + "url": "https://atbox.io", + "format": "html", + "email": "info@atbox.io", + "gravatar": true, + "theme": "opensans" +} \ No newline at end of file diff --git a/users/atelierbram.json b/users/atelierbram.json index 466fa470..0fbd6e11 100644 --- a/users/atelierbram.json +++ b/users/atelierbram.json @@ -1,5 +1,5 @@ { - "copyright": "Bram de Haan, http://atelierbramdehaan.nl", - "url": "http://atelierbramdehaan.nl", - "theme": "black-beauty" -} + "copyright": "Bram de Haan, http://atelierbramdehaan.nl", + "url": "http://atelierbramdehaan.nl", + "theme": "black-beauty" +} \ No newline at end of file diff --git a/users/atilafassina.json b/users/atilafassina.json index 79e34e58..80733683 100644 --- a/users/atilafassina.json +++ b/users/atilafassina.json @@ -1,7 +1,7 @@ { - "copyright": "Átila Fassina, http://atilafassina.com", - "url": "http://atilafassina.com", - "email": "hey@atilafassina.com", - "theme": "material-teal", - "gravatar": true -} + "copyright": "Átila Fassina, http://atilafassina.com", + "url": "http://atilafassina.com", + "email": "hey@atilafassina.com", + "theme": "material-teal", + "gravatar": true +} \ No newline at end of file diff --git a/users/atran.json b/users/atran.json index 716de297..e9af3d69 100644 --- a/users/atran.json +++ b/users/atran.json @@ -1,4 +1,4 @@ { - "copyright": "Anthony Tran", - "url": "http://anthonytran.info" -} + "copyright": "Anthony Tran", + "url": "http://anthonytran.info" +} \ No newline at end of file diff --git a/users/ats.json b/users/ats.json index e9ac27ea..84fecb04 100644 --- a/users/ats.json +++ b/users/ats.json @@ -1,3 +1,3 @@ { - "copyright": "ActBlue Technical Services" -} + "copyright": "ActBlue Technical Services" +} \ No newline at end of file diff --git a/users/audreyr.json b/users/audreyr.json index a17a9002..283b42ff 100644 --- a/users/audreyr.json +++ b/users/audreyr.json @@ -1,6 +1,6 @@ { - "copyright": "Audrey Roy", - "url": "http://www.audreymroy.com", - "email": "audreyr@cartwheelweb.com", - "format": "txt" -} + "copyright": "Audrey Roy", + "url": "http://www.audreymroy.com", + "email": "audreyr@cartwheelweb.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/aus3ris.json b/users/aus3ris.json index fbf30197..e706550c 100644 --- a/users/aus3ris.json +++ b/users/aus3ris.json @@ -1,6 +1,6 @@ { - "copyright": "Austris Landmanis", - "url": "http://chevron.lv", - "email": "austris@chevron.lv", - "format": "txt" -} + "copyright": "Austris Landmanis", + "url": "http://chevron.lv", + "email": "austris@chevron.lv", + "format": "txt" +} \ No newline at end of file diff --git a/users/aus3ys.json b/users/aus3ys.json index 0e2aa101..81863e40 100644 --- a/users/aus3ys.json +++ b/users/aus3ys.json @@ -1,4 +1,4 @@ { - "copyright": "Austris Landmanis", - "email": "aus3ys@gmail.com" -} + "copyright": "Austris Landmanis", + "email": "aus3ys@gmail.com" +} \ No newline at end of file diff --git a/users/austegard.json b/users/austegard.json index 053f8846..d59e8335 100644 --- a/users/austegard.json +++ b/users/austegard.json @@ -1,5 +1,5 @@ { - "copyright": "Oskar Austegard, http://austegard.com", - "url": "http://austegard.com", - "email": "me@austegard.com" -} + "copyright": "Oskar Austegard, http://austegard.com", + "url": "http://austegard.com", + "email": "me@austegard.com" +} \ No newline at end of file diff --git a/users/austin.json b/users/austin.json index 63ed1724..5d135e83 100644 --- a/users/austin.json +++ b/users/austin.json @@ -1,6 +1,6 @@ { - "copyright": "Austin Riendeau", - "url": "http://apriendeau.com", - "email": "austin@apriendeau.com", - "format": "txt" -} + "copyright": "Austin Riendeau", + "url": "http://apriendeau.com", + "email": "austin@apriendeau.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/avdaredevil.json b/users/avdaredevil.json index 8283e7fa..7ae12a29 100644 --- a/users/avdaredevil.json +++ b/users/avdaredevil.json @@ -1,7 +1,7 @@ { - "copyright": "Apoorv Verma", - "url": "https://www.linkedin.com/in/apoorvverma", - "email": "avdaredevil@gmail.com", - "format": "txt", - "gravatar": true -} + "copyright": "Apoorv Verma", + "url": "https://www.linkedin.com/in/apoorvverma", + "email": "avdaredevil@gmail.com", + "format": "txt", + "gravatar": true +} \ No newline at end of file diff --git a/users/avelino.json b/users/avelino.json index ff889ab0..dbb1fbbd 100644 --- a/users/avelino.json +++ b/users/avelino.json @@ -1,6 +1,6 @@ { - "copyright": "Avelino", - "url": "http://avelino.xxx", - "email": "thiago@avelino.xxx", - "gravatar": true -} + "copyright": "Avelino", + "url": "http://avelino.xxx", + "email": "thiago@avelino.xxx", + "gravatar": true +} \ No newline at end of file diff --git a/users/average-studios.json b/users/average-studios.json index dda00190..069c9df2 100644 --- a/users/average-studios.json +++ b/users/average-studios.json @@ -1,3 +1,3 @@ { - "copyright": "Andrew Stewart" -} + "copyright": "Andrew Stewart" +} \ No newline at end of file diff --git a/users/avidal.json b/users/avidal.json index 00f9c116..c5b356cb 100644 --- a/users/avidal.json +++ b/users/avidal.json @@ -1,6 +1,6 @@ { - "copyright": "Alex Vidal", - "url": "https://github.com/avidal", - "email": "alex.vidal@gmail.com", - "format": "html" -} + "copyright": "Alex Vidal", + "url": "https://github.com/avidal", + "email": "alex.vidal@gmail.com", + "format": "html" +} \ No newline at end of file diff --git a/users/avidenie.json b/users/avidenie.json index d8e34619..493eb3f0 100644 --- a/users/avidenie.json +++ b/users/avidenie.json @@ -1,6 +1,6 @@ { - "copyright": "Adrian Videnie", - "url": "http://web.expectations.ro", - "email": "avidenie@gmail.com", - "theme": "eula-modern" -} + "copyright": "Adrian Videnie", + "url": "http://web.expectations.ro", + "email": "avidenie@gmail.com", + "theme": "eula-modern" +} \ No newline at end of file diff --git a/users/avm99963.json b/users/avm99963.json index db439e8d..befae28e 100644 --- a/users/avm99963.json +++ b/users/avm99963.json @@ -1,7 +1,7 @@ { - "copyright": "Adri\u00e0 Vilanova Mart\u00ednez", - "url": "http://avm99963.tk", - "email": "me@avm99963.tk", - "gravatar": true, - "theme": "material-indigo" -} + "copyright": "Adrià Vilanova Martínez", + "url": "http://avm99963.tk", + "email": "me@avm99963.tk", + "gravatar": true, + "theme": "material-indigo" +} \ No newline at end of file diff --git a/users/awles.json b/users/awles.json index a30b9ad1..f1ada7b0 100644 --- a/users/awles.json +++ b/users/awles.json @@ -1,7 +1,7 @@ { - "copyright": "Alessio Malu, https://github.com/awles", - "url": "http://alessiomalu.com", - "format": "txt", - "email": "hello@alessiomalu.com", - "theme": "double-windsor" -} + "copyright": "Alessio Malu, https://github.com/awles", + "url": "http://alessiomalu.com", + "format": "txt", + "email": "hello@alessiomalu.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/axe312.json b/users/axe312.json index 8f8b6b21..b8f4700c 100644 --- a/users/axe312.json +++ b/users/axe312.json @@ -1,3 +1,3 @@ { - "copyright": "Benedikt R\u00f6tsch" -} + "copyright": "Benedikt Rötsch" +} \ No newline at end of file diff --git a/users/axelav.json b/users/axelav.json index 99414e2f..429e9e6e 100644 --- a/users/axelav.json +++ b/users/axelav.json @@ -1,6 +1,6 @@ { - "copyright": "Axel Anderson, axelav.com", - "url": "http://axelav.com", - "email": "axelav@gmail.com", - "format": "txt" -} + "copyright": "Axel Anderson, axelav.com", + "url": "http://axelav.com", + "email": "axelav@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/axisthemes.json b/users/axisthemes.json index 3ac49a5e..490873b6 100644 --- a/users/axisthemes.json +++ b/users/axisthemes.json @@ -1,5 +1,5 @@ { - "copyright": "AxisThemes", - "url": "http://axisthemes.com", - "theme": "double-windsor" -} + "copyright": "AxisThemes", + "url": "http://axisthemes.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/axot.json b/users/axot.json index 64114648..f920a646 100644 --- a/users/axot.json +++ b/users/axot.json @@ -1,6 +1,6 @@ { - "copyright": "Zheng Shao", - "url": "http://www.axot.org", - "email": "imaxot@gmail.com", - "theme": "blackwood" -} + "copyright": "Zheng Shao", + "url": "http://www.axot.org", + "email": "imaxot@gmail.com", + "theme": "blackwood" +} \ No newline at end of file diff --git a/users/axross.json b/users/axross.json index ef0fa8f4..a49a5135 100644 --- a/users/axross.json +++ b/users/axross.json @@ -1,7 +1,7 @@ { - "copyright": "Kohei Asai", - "url": "https://github.com/axross", - "email": "me@axross.io", - "format": "txt", - "gravatar": true -} + "copyright": "Kohei Asai", + "url": "https://github.com/axross", + "email": "me@axross.io", + "format": "txt", + "gravatar": true +} \ No newline at end of file diff --git a/users/ayahya.json b/users/ayahya.json index 2ae45cf4..22324e49 100644 --- a/users/ayahya.json +++ b/users/ayahya.json @@ -1,8 +1,8 @@ { - "copyright": "Abdullah Yahya", - "url": "https://ayahya.me", - "email": "me.ayahya@gmail.com", - "format": "html", - "gravatar": true, - "theme": "material" -} + "copyright": "Abdullah Yahya", + "url": "https://ayahya.me", + "email": "me.ayahya@gmail.com", + "format": "html", + "gravatar": true, + "theme": "material" +} \ No newline at end of file diff --git a/users/ayesh.json b/users/ayesh.json index a1cc5784..3c53d0df 100644 --- a/users/ayesh.json +++ b/users/ayesh.json @@ -1,4 +1,4 @@ { - "copyright": "Ayesh Karunaratne", - "url": "http://ayesh.me" -} + "copyright": "Ayesh Karunaratne", + "url": "http://ayesh.me" +} \ No newline at end of file diff --git a/users/azamara.json b/users/azamara.json index 8fd8faef..7ca2af7f 100644 --- a/users/azamara.json +++ b/users/azamara.json @@ -1,4 +1,4 @@ { - "copyright": "William Kim, http://azamara.io/", - "url": "http://azamara.io/" -} + "copyright": "William Kim, http://azamara.io/", + "url": "http://azamara.io/" +} \ No newline at end of file diff --git a/users/azder.json b/users/azder.json index 64df0963..55c76ed6 100644 --- a/users/azder.json +++ b/users/azder.json @@ -1,5 +1,5 @@ { - "copyright": "Goran Peoski", - "email": "azhder@gmail.com", - "format": "txt" -} + "copyright": "Goran Peoski", + "email": "azhder@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/azizur.json b/users/azizur.json index 8210d7b2..65589fbe 100644 --- a/users/azizur.json +++ b/users/azizur.json @@ -1,3 +1,3 @@ { - "copyright": "Azizur Rahman" -} + "copyright": "Azizur Rahman" +} \ No newline at end of file diff --git a/users/azlab.json b/users/azlab.json index c41583c6..13418fb8 100644 --- a/users/azlab.json +++ b/users/azlab.json @@ -1,3 +1,3 @@ { - "copyright": "AnZen-Lab (UEC, Tokyo)" -} + "copyright": "AnZen-Lab (UEC, Tokyo)" +} \ No newline at end of file diff --git a/users/azu.json b/users/azu.json index c95686d0..922063d4 100644 --- a/users/azu.json +++ b/users/azu.json @@ -1,4 +1,4 @@ { - "copyright": "azu", - "url": "http://efcl.info/" -} + "copyright": "azu", + "url": "http://efcl.info/" +} \ No newline at end of file diff --git a/users/b.json b/users/b.json index a8e9e924..5d5eea25 100644 --- a/users/b.json +++ b/users/b.json @@ -1,5 +1,5 @@ { - "copyright": "Brian Seward, http://brianseward.com", - "url": "http://brianseward.com", - "theme": "default" -} + "copyright": "Brian Seward, http://brianseward.com", + "url": "http://brianseward.com", + "theme": "default" +} \ No newline at end of file diff --git a/users/b4b4r07.json b/users/b4b4r07.json index ab84fd77..c656b55e 100644 --- a/users/b4b4r07.json +++ b/users/b4b4r07.json @@ -1,6 +1,6 @@ { - "copyright": "Masaki Ishiyama", - "url": "http://b4b4r07.com", - "email": "b4b4r07@gmail.com", - "format": "txt" -} + "copyright": "Masaki Ishiyama", + "url": "http://b4b4r07.com", + "email": "b4b4r07@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/baenziger-hug.json b/users/baenziger-hug.json index 98e370b0..d449fb99 100644 --- a/users/baenziger-hug.json +++ b/users/baenziger-hug.json @@ -1,6 +1,6 @@ { - "copyright": "B\u00e4nziger Hug Ltd.", - "url": "http://baenziger-hug.com", - "email": "oh@baenziger-hug.com", - "format": "html" -} + "copyright": "Bänziger Hug Ltd.", + "url": "http://baenziger-hug.com", + "email": "oh@baenziger-hug.com", + "format": "html" +} \ No newline at end of file diff --git a/users/bai.json b/users/bai.json index 96df267c..4ddb76ff 100644 --- a/users/bai.json +++ b/users/bai.json @@ -1,4 +1,4 @@ { - "copyright": "Vlad Gorodetsky", - "email": "v@gor.io" -} + "copyright": "Vlad Gorodetsky", + "email": "v@gor.io" +} \ No newline at end of file diff --git a/users/baivong.json b/users/baivong.json index 2e3c6b33..7dbbaa41 100644 --- a/users/baivong.json +++ b/users/baivong.json @@ -1,8 +1,8 @@ { - "copyright": "Zzbaivong", - "url": "https://baivong.github.io", - "email": "Zzbaivong@gmail.com", - "format": "html", - "gravatar": true, - "theme": "material-teal" -} + "copyright": "Zzbaivong", + "url": "https://baivong.github.io", + "email": "Zzbaivong@gmail.com", + "format": "html", + "gravatar": true, + "theme": "material-teal" +} \ No newline at end of file diff --git a/users/balbeko.json b/users/balbeko.json index 56481d7e..77bfbd08 100644 --- a/users/balbeko.json +++ b/users/balbeko.json @@ -1,6 +1,6 @@ { - "copyright": "Sergey Balbeko, http://balbeko.com/", - "email": "sergey@balbeko.com", - "url": "http://balbeko.com/", - "theme": "double-windsor" -} + "copyright": "Sergey Balbeko, http://balbeko.com/", + "email": "sergey@balbeko.com", + "url": "http://balbeko.com/", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/bamorim.json b/users/bamorim.json index ac8c351f..00d46764 100644 --- a/users/bamorim.json +++ b/users/bamorim.json @@ -1,6 +1,6 @@ { - "copyright": "Bernardo Amorim", - "url": "http://bamorim.com", - "email": "contato@bamorim.com", - "format": "html" -} + "copyright": "Bernardo Amorim", + "url": "http://bamorim.com", + "email": "contato@bamorim.com", + "format": "html" +} \ No newline at end of file diff --git a/users/bankfacil.json b/users/bankfacil.json index 3d0af525..c1d26f6c 100644 --- a/users/bankfacil.json +++ b/users/bankfacil.json @@ -1,4 +1,4 @@ { - "copyright": "BankFacil, http://bankfacil.com.br", - "url": "http://bankfacil.com.br" -} + "copyright": "BankFacil, http://bankfacil.com.br", + "url": "http://bankfacil.com.br" +} \ No newline at end of file diff --git a/users/banyan.json b/users/banyan.json index 144b1017..fbcafa2d 100644 --- a/users/banyan.json +++ b/users/banyan.json @@ -1,6 +1,6 @@ { - "copyright": "Kohei Hasegawa, https://github.com/banyan", - "url": "https://github.com/banyan", - "email": "ameutau@gmail.com", - "theme": "flesch" -} + "copyright": "Kohei Hasegawa, https://github.com/banyan", + "url": "https://github.com/banyan", + "email": "ameutau@gmail.com", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/bardi.json b/users/bardi.json index 8828d093..ee487db7 100644 --- a/users/bardi.json +++ b/users/bardi.json @@ -1,6 +1,6 @@ { - "copyright": "Bardi Harborow", - "url": "https://www.bardiharborow.com", - "email": "bardi@bardiharborow.com", - "gravatar": true -} + "copyright": "Bardi Harborow", + "url": "https://www.bardiharborow.com", + "email": "bardi@bardiharborow.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/barnik.json b/users/barnik.json index 7957533b..433fc979 100644 --- a/users/barnik.json +++ b/users/barnik.json @@ -1,4 +1,4 @@ { - "copyright": "Barnik Ray", - "email": "barnikray@live.com" -} + "copyright": "Barnik Ray", + "email": "barnikray@live.com" +} \ No newline at end of file diff --git a/users/bartaz.json b/users/bartaz.json index 54c59750..74fffbdc 100644 --- a/users/bartaz.json +++ b/users/bartaz.json @@ -1,3 +1,3 @@ { - "copyright": "Bartek Szopka" -} + "copyright": "Bartek Szopka" +} \ No newline at end of file diff --git a/users/bat.json b/users/bat.json index 2006d7a0..6d8adb1c 100644 --- a/users/bat.json +++ b/users/bat.json @@ -1,3 +1,3 @@ { - "copyright": "Ben Atkin" -} + "copyright": "Ben Atkin" +} \ No newline at end of file diff --git a/users/batu.json b/users/batu.json index 960a4ca2..3b2307ca 100644 --- a/users/batu.json +++ b/users/batu.json @@ -1,5 +1,5 @@ { - "copyright": "Batuhan Icoz, http://batu.me/1", - "url": "http://batu.me/1", - "email": "i@batu.me" -} + "copyright": "Batuhan Icoz, http://batu.me/1", + "url": "http://batu.me/1", + "email": "i@batu.me" +} \ No newline at end of file diff --git a/users/bauglir.json b/users/bauglir.json index b276ef1e..5526a46d 100644 --- a/users/bauglir.json +++ b/users/bauglir.json @@ -1,6 +1,6 @@ { - "copyright": "Joris Kraak, https://majorfail.com", - "url": "https://majorfail.com", - "email": "joris@majorfail.com", - "gravatar": true -} + "copyright": "Joris Kraak, https://majorfail.com", + "url": "https://majorfail.com", + "email": "joris@majorfail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/bazilio.json b/users/bazilio.json index 4aa37bb2..6bbb5623 100644 --- a/users/bazilio.json +++ b/users/bazilio.json @@ -1,7 +1,7 @@ { - "copyright": "Bazilio", - "email": "x.bazilio@gmail.com", - "format": "txt", - "gravatar": false, - "theme": "plaintext" -} + "copyright": "Bazilio", + "email": "x.bazilio@gmail.com", + "format": "txt", + "gravatar": false, + "theme": "plaintext" +} \ No newline at end of file diff --git a/users/bbuecherl.json b/users/bbuecherl.json index 5a36ed07..4c0fa1e7 100644 --- a/users/bbuecherl.json +++ b/users/bbuecherl.json @@ -1,7 +1,7 @@ { - "copyright": "Bernhard B\u00fccherl, http://bbuecherl.de", - "url": "http://bbuecherl.de", - "email": "bernhard.buecherl@gmail.com", - "theme": "friendly", - "gravatar": true -} + "copyright": "Bernhard Bücherl, http://bbuecherl.de", + "url": "http://bbuecherl.de", + "email": "bernhard.buecherl@gmail.com", + "theme": "friendly", + "gravatar": true +} \ No newline at end of file diff --git a/users/bcse.json b/users/bcse.json index 21263068..c0be33a8 100644 --- a/users/bcse.json +++ b/users/bcse.json @@ -1,5 +1,5 @@ { - "copyright": "Grey Lee, http://bcse.tw", - "url": "http://bcse.tw", - "theme": "double-windsor" -} + "copyright": "Grey Lee, http://bcse.tw", + "url": "http://bcse.tw", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/bdukes.json b/users/bdukes.json index 3084e47b..7dcfa674 100644 --- a/users/bdukes.json +++ b/users/bdukes.json @@ -1,4 +1,4 @@ { - "copyright": "Brian Dukes", - "email": "dukes.brian@gmail.com" -} + "copyright": "Brian Dukes", + "email": "dukes.brian@gmail.com" +} \ No newline at end of file diff --git a/users/bear.json b/users/bear.json index d19e1e8d..eb02d171 100644 --- a/users/bear.json +++ b/users/bear.json @@ -1,6 +1,6 @@ { - "copyright": "Alexander Harkness", - "url": "http://www.bearbin.net", - "email": "bearbin@gmail.com", - "format": "txt" -} + "copyright": "Alexander Harkness", + "url": "http://www.bearbin.net", + "email": "bearbin@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/becevka.json b/users/becevka.json index 80be111a..17a72e88 100644 --- a/users/becevka.json +++ b/users/becevka.json @@ -1,7 +1,7 @@ { - "copyright": "Wolfgang Bas, https://becevka.com", - "url": "https://becevka.com", - "email": "wolf@becevka.com", - "gravatar": true, - "theme": "dusk" -} + "copyright": "Wolfgang Bas, https://becevka.com", + "url": "https://becevka.com", + "email": "wolf@becevka.com", + "gravatar": true, + "theme": "dusk" +} \ No newline at end of file diff --git a/users/bee.json b/users/bee.json index 6f8efc91..aa175102 100644 --- a/users/bee.json +++ b/users/bee.json @@ -1,5 +1,5 @@ { - "copyright": "Songbee", - "url": "http://songbee.net", - "email": "hi@songbee.net" -} + "copyright": "Songbee", + "url": "http://songbee.net", + "email": "hi@songbee.net" +} \ No newline at end of file diff --git a/users/beedaan.json b/users/beedaan.json index 15db2697..e5856267 100644 --- a/users/beedaan.json +++ b/users/beedaan.json @@ -1,6 +1,6 @@ { - "copyright": "Brendan Heussler", - "url": "http://bheussler.name", - "email": "bheussler@gmail.com", - "theme": "flesch" -} + "copyright": "Brendan Heussler", + "url": "http://bheussler.name", + "email": "bheussler@gmail.com", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/beingtomgreen.json b/users/beingtomgreen.json index 23033c3f..f1e354e2 100644 --- a/users/beingtomgreen.json +++ b/users/beingtomgreen.json @@ -1,6 +1,6 @@ { - "copyright": "Tom Green", - "url": "http://beingtomgreen.com", - "email": "tom@beingtomgreen.com", - "format": "html" -} + "copyright": "Tom Green", + "url": "http://beingtomgreen.com", + "email": "tom@beingtomgreen.com", + "format": "html" +} \ No newline at end of file diff --git a/users/beintoo.json b/users/beintoo.json index 0d3bab24..84741cd1 100644 --- a/users/beintoo.json +++ b/users/beintoo.json @@ -1,5 +1,5 @@ { - "copyright": "Beintoo", - "url": "http://www.beintoo.com/", - "theme": "material-light-green" -} + "copyright": "Beintoo", + "url": "http://www.beintoo.com/", + "theme": "material-light-green" +} \ No newline at end of file diff --git a/users/belldandu.json b/users/belldandu.json index ec6277d5..63fc91a7 100644 --- a/users/belldandu.json +++ b/users/belldandu.json @@ -1,6 +1,6 @@ { - "copyright": "Belldandu, http://ilp.moe", - "url": "http://ilp.moe", - "email": "kami@ilp.moe", - "format": "html" -} + "copyright": "Belldandu, http://ilp.moe", + "url": "http://ilp.moe", + "email": "kami@ilp.moe", + "format": "html" +} \ No newline at end of file diff --git a/users/beloi.json b/users/beloi.json index b4471702..019a3cc5 100644 --- a/users/beloi.json +++ b/users/beloi.json @@ -1,4 +1,4 @@ { - "copyright": "Beloi Ignacio", - "format": "txt" -} + "copyright": "Beloi Ignacio", + "format": "txt" +} \ No newline at end of file diff --git a/users/ben.json b/users/ben.json index bcab4fc5..05b52a49 100644 --- a/users/ben.json +++ b/users/ben.json @@ -1,3 +1,3 @@ { - "copyright": "Ben Smithett" -} + "copyright": "Ben Smithett" +} \ No newline at end of file diff --git a/users/benatkin.json b/users/benatkin.json index 2006d7a0..6d8adb1c 100644 --- a/users/benatkin.json +++ b/users/benatkin.json @@ -1,3 +1,3 @@ { - "copyright": "Ben Atkin" -} + "copyright": "Ben Atkin" +} \ No newline at end of file diff --git a/users/benbarber.json b/users/benbarber.json index b5ae90c3..7aec9f7e 100644 --- a/users/benbarber.json +++ b/users/benbarber.json @@ -1,4 +1,4 @@ { - "copyright": "Benjamin Barber", - "theme": "plaintext" -} + "copyright": "Benjamin Barber", + "theme": "plaintext" +} \ No newline at end of file diff --git a/users/benizi.json b/users/benizi.json index 38c45fe3..153fbb33 100644 --- a/users/benizi.json +++ b/users/benizi.json @@ -1,4 +1,4 @@ { - "copyright": "Benjamin R. Haskell", - "email": "mit-license@benizi.com" -} + "copyright": "Benjamin R. Haskell", + "email": "mit-license@benizi.com" +} \ No newline at end of file diff --git a/users/benjie.json b/users/benjie.json index 936899aa..42566e77 100644 --- a/users/benjie.json +++ b/users/benjie.json @@ -1,3 +1,3 @@ { - "copyright": "Benjie Gillam" -} + "copyright": "Benjie Gillam" +} \ No newline at end of file diff --git a/users/benniemosher.json b/users/benniemosher.json index ed1d1b51..43e1b0a3 100644 --- a/users/benniemosher.json +++ b/users/benniemosher.json @@ -1,3 +1,3 @@ { - "copyright": "Bennie Mosher" -} + "copyright": "Bennie Mosher" +} \ No newline at end of file diff --git a/users/bensarmiento.json b/users/bensarmiento.json index 839ec0b9..4681a5dd 100644 --- a/users/bensarmiento.json +++ b/users/bensarmiento.json @@ -1,6 +1,6 @@ { - "copyright": "Ben Sarmiento, http://bensarmiento.com", - "url": "http://bensarmiento.com", - "email": "me@bensarmiento.com", - "gravatar": true -} + "copyright": "Ben Sarmiento, http://bensarmiento.com", + "url": "http://bensarmiento.com", + "email": "me@bensarmiento.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/benspotatoes.json b/users/benspotatoes.json index c7524083..0b855c77 100644 --- a/users/benspotatoes.json +++ b/users/benspotatoes.json @@ -1,6 +1,6 @@ { - "copyright": "Benjamin Hsieh", - "url": "http://benspotatoes.com", - "email": "benspotatoes@gmail.com", - "format": "html" -} + "copyright": "Benjamin Hsieh", + "url": "http://benspotatoes.com", + "email": "benspotatoes@gmail.com", + "format": "html" +} \ No newline at end of file diff --git a/users/berbaquero.json b/users/berbaquero.json index 086ec238..fd9ce0bd 100644 --- a/users/berbaquero.json +++ b/users/berbaquero.json @@ -1,3 +1,3 @@ { - "copyright": "Bernardo Baquero Stand" -} + "copyright": "Bernardo Baquero Stand" +} \ No newline at end of file diff --git a/users/berngfilho.json b/users/berngfilho.json index 6ae7a275..7eec071c 100644 --- a/users/berngfilho.json +++ b/users/berngfilho.json @@ -1,6 +1,6 @@ { - "copyright": "Bernardo Gurgel Filho", - "url": "http://bernardogfilho.github.io", - "email": "bernardogfilho@gmail.com", - "format": "txt" -} + "copyright": "Bernardo Gurgel Filho", + "url": "http://bernardogfilho.github.io", + "email": "bernardogfilho@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/bescott.json b/users/bescott.json index a85f52ca..1a03452f 100644 --- a/users/bescott.json +++ b/users/bescott.json @@ -1,6 +1,6 @@ { - "copyright": "Ben Scott, http://bescott.org", - "url": "http://bescott.org", - "email": "bescott@andrew.cmu.edu", - "theme": "default-dark" -} + "copyright": "Ben Scott, http://bescott.org", + "url": "http://bescott.org", + "email": "bescott@andrew.cmu.edu", + "theme": "default-dark" +} \ No newline at end of file diff --git a/users/beshr.json b/users/beshr.json index a79ef770..e40d2034 100644 --- a/users/beshr.json +++ b/users/beshr.json @@ -1,5 +1,5 @@ { - "copyright": "Beshr Kayali, http://beshr.com", - "url": "http://beshr.com", - "email": "me@beshr.com" -} + "copyright": "Beshr Kayali, http://beshr.com", + "url": "http://beshr.com", + "email": "me@beshr.com" +} \ No newline at end of file diff --git a/users/besson.json b/users/besson.json index 1e74e617..e7952e8c 100644 --- a/users/besson.json +++ b/users/besson.json @@ -1,7 +1,7 @@ { - "copyright": "Lilian Besson, http://perso.crans.org/besson/", - "url": "http://perso.crans.org/besson/", - "email": "besson at crans dot org", - "format": "html", - "gravatar": true -} + "copyright": "Lilian Besson, http://perso.crans.org/besson/", + "url": "http://perso.crans.org/besson/", + "email": "besson at crans dot org", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/bethanyr.json b/users/bethanyr.json index 76fab4c1..1dc1fba3 100644 --- a/users/bethanyr.json +++ b/users/bethanyr.json @@ -1,6 +1,6 @@ { - "copyright": "Bethany Rentz", - "url": "http:http://www.bethanyrentz.com", - "email": "bethany.rentz@hotmail.com", - "format": "txt" -} + "copyright": "Bethany Rentz", + "url": "http:http://www.bethanyrentz.com", + "email": "bethany.rentz@hotmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/betomuniz.json b/users/betomuniz.json index ec416e03..01a88f42 100644 --- a/users/betomuniz.json +++ b/users/betomuniz.json @@ -1,3 +1,3 @@ { - "copyright": "Beto Muniz" -} + "copyright": "Beto Muniz" +} \ No newline at end of file diff --git a/users/beyondweb.json b/users/beyondweb.json index 855af4c7..8e7199ad 100644 --- a/users/beyondweb.json +++ b/users/beyondweb.json @@ -1,4 +1,4 @@ { - "copyright": "BeyondWEB", - "url": "http://beyondweb.co.za" -} + "copyright": "BeyondWEB", + "url": "http://beyondweb.co.za" +} \ No newline at end of file diff --git a/users/bezoerb.json b/users/bezoerb.json index 27a2d734..189cb734 100644 --- a/users/bezoerb.json +++ b/users/bezoerb.json @@ -1,4 +1,4 @@ { - "copyright": "Ben Z\u00f6rb", - "email": "ben@sommerlaune.com" -} + "copyright": "Ben Zörb", + "email": "ben@sommerlaune.com" +} \ No newline at end of file diff --git a/users/bfoxwell.json b/users/bfoxwell.json index 359c32fc..029ebf72 100644 --- a/users/bfoxwell.json +++ b/users/bfoxwell.json @@ -1,3 +1,3 @@ { - "copyright": "Brian Foxwell" -} + "copyright": "Brian Foxwell" +} \ No newline at end of file diff --git a/users/bh.json b/users/bh.json index a4779f4c..218eb664 100644 --- a/users/bh.json +++ b/users/bh.json @@ -1,6 +1,6 @@ { - "copyright": "B\u00e4nziger Hug Ltd.", - "url": "http://baenziger-hug.com", - "email": "oh@baenziger-hug.com", - "format": "txt" -} + "copyright": "Bänziger Hug Ltd.", + "url": "http://baenziger-hug.com", + "email": "oh@baenziger-hug.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/bharath063.json b/users/bharath063.json index 3c17a59c..3b9b8c05 100644 --- a/users/bharath063.json +++ b/users/bharath063.json @@ -1,3 +1,3 @@ { - "copyright": "Bharath Balan" -} + "copyright": "Bharath Balan" +} \ No newline at end of file diff --git a/users/bigab.json b/users/bigab.json index ad857029..2f36b329 100644 --- a/users/bigab.json +++ b/users/bigab.json @@ -1,3 +1,3 @@ { - "copyright": "Adam Barrett" -} + "copyright": "Adam Barrett" +} \ No newline at end of file diff --git a/users/bih.json b/users/bih.json index 3ffdf252..a7c74e25 100644 --- a/users/bih.json +++ b/users/bih.json @@ -1,5 +1,5 @@ { - "copyright": "Bilawal Hameed", - "url": "http://bilaw.al", - "email": "me@bilaw.al" -} + "copyright": "Bilawal Hameed", + "url": "http://bilaw.al", + "email": "me@bilaw.al" +} \ No newline at end of file diff --git a/users/bilger.json b/users/bilger.json index 1525111e..1e2b4b68 100644 --- a/users/bilger.json +++ b/users/bilger.json @@ -1,6 +1,6 @@ { - "copyright": "Matthias Bilger", - "url": "http://bilger.info", - "email": "matthias@bilger.info", - "format": "txt" -} + "copyright": "Matthias Bilger", + "url": "http://bilger.info", + "email": "matthias@bilger.info", + "format": "txt" +} \ No newline at end of file diff --git a/users/biomassives.json b/users/biomassives.json index 89c02db4..455d9e56 100644 --- a/users/biomassives.json +++ b/users/biomassives.json @@ -1,3 +1,3 @@ { - "copyright": "Biomassives Group Ltd." -} + "copyright": "Biomassives Group Ltd." +} \ No newline at end of file diff --git a/users/bipbop.json b/users/bipbop.json index 40b5d4a0..00b77e18 100644 --- a/users/bipbop.json +++ b/users/bipbop.json @@ -1,6 +1,6 @@ { - "copyright": "BIPBOP SOFTWARE E SERVICOS LTDA", - "url": "http://www.bipbop.com.br/", - "email": "contato@bipbop.com.br", - "format": "txt" -} + "copyright": "BIPBOP SOFTWARE E SERVICOS LTDA", + "url": "http://www.bipbop.com.br/", + "email": "contato@bipbop.com.br", + "format": "txt" +} \ No newline at end of file diff --git a/users/birdi.json b/users/birdi.json index 4774a4d6..d1a6345d 100644 --- a/users/birdi.json +++ b/users/birdi.json @@ -1,7 +1,7 @@ { - "copyright": "Birdicode", - "url": "http://black-burn.ch", - "email": "birdicode@gmail.com", - "format": "html", - "theme": "xtansia" -} + "copyright": "Birdicode", + "url": "http://black-burn.ch", + "email": "birdicode@gmail.com", + "format": "html", + "theme": "xtansia" +} \ No newline at end of file diff --git a/users/birkof.json b/users/birkof.json index 7113d3a9..389f3ae7 100644 --- a/users/birkof.json +++ b/users/birkof.json @@ -1,8 +1,8 @@ { - "copyright": "Daniel STANCU, http://birkof.ro", - "url": "http://birkof.ro", - "theme": "afterdark", - "email": "birkof@birkof.ro", - "gravatar": true, - "format": "html" -} + "copyright": "Daniel STANCU, http://birkof.ro", + "url": "http://birkof.ro", + "theme": "afterdark", + "email": "birkof@birkof.ro", + "gravatar": true, + "format": "html" +} \ No newline at end of file diff --git a/users/bitbonsai.json b/users/bitbonsai.json index 3d9f5271..48aa74cf 100644 --- a/users/bitbonsai.json +++ b/users/bitbonsai.json @@ -1,8 +1,8 @@ { - "copyright": "Mauricio Wolff - BitBonsai", - "url": "http://bitbonsai.com", - "email": "m@bitbonsai.com", - "format": "html", - "gravatar": true, - "theme": "double-windsor" -} + "copyright": "Mauricio Wolff - BitBonsai", + "url": "http://bitbonsai.com", + "email": "m@bitbonsai.com", + "format": "html", + "gravatar": true, + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/bitmxittz.json b/users/bitmxittz.json index 391c2c3d..82c0ba1c 100644 --- a/users/bitmxittz.json +++ b/users/bitmxittz.json @@ -1,7 +1,7 @@ { - "copyright": "Bitmxittz", - "url": "http://bitmxittz.com", - "email": "contact@bitmxittz.com", - "theme": "flesch", - "gravatar": true -} + "copyright": "Bitmxittz", + "url": "http://bitmxittz.com", + "email": "contact@bitmxittz.com", + "theme": "flesch", + "gravatar": true +} \ No newline at end of file diff --git a/users/bjeanes.json b/users/bjeanes.json index e00aa5cb..20f3ad9b 100644 --- a/users/bjeanes.json +++ b/users/bjeanes.json @@ -1,6 +1,6 @@ { - "copyright": "Bo Jeanes", - "url": "http://bjeanes.com", - "email": "me@bjeanes.com", - "format": "txt" -} + "copyright": "Bo Jeanes", + "url": "http://bjeanes.com", + "email": "me@bjeanes.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/blacklite.json b/users/blacklite.json index 2a69a8f6..1724d244 100644 --- a/users/blacklite.json +++ b/users/blacklite.json @@ -1,7 +1,7 @@ { - "copyright": "David Driscoll", - "url": "http://blacklite.ca", - "email": "david@blacklite.ca", - "gravatar": true, - "theme": "opensans" -} + "copyright": "David Driscoll", + "url": "http://blacklite.ca", + "email": "david@blacklite.ca", + "gravatar": true, + "theme": "opensans" +} \ No newline at end of file diff --git a/users/blahah.json b/users/blahah.json index 0ed19c79..be9c57c1 100644 --- a/users/blahah.json +++ b/users/blahah.json @@ -1,3 +1,3 @@ { - "copyright": "Richard Smith-Unna" -} + "copyright": "Richard Smith-Unna" +} \ No newline at end of file diff --git a/users/blake.json b/users/blake.json index 6aeb1670..2a332e55 100644 --- a/users/blake.json +++ b/users/blake.json @@ -1,6 +1,6 @@ { - "copyright": "Blake Owens", - "url": "http://blakeowens.com", - "email": "blake@blakeowens.com", - "format": "html" -} + "copyright": "Blake Owens", + "url": "http://blakeowens.com", + "email": "blake@blakeowens.com", + "format": "html" +} \ No newline at end of file diff --git a/users/blaulan.json b/users/blaulan.json index 4cff7ca3..440882a2 100644 --- a/users/blaulan.json +++ b/users/blaulan.json @@ -1,6 +1,6 @@ { - "copyright": "Eric Wu", - "url": "http://blaulan.com", - "email": "me@blaulan.com", - "format": "txt" -} + "copyright": "Eric Wu", + "url": "http://blaulan.com", + "email": "me@blaulan.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/blazeworx.json b/users/blazeworx.json index b8bf58b1..47eaf32b 100644 --- a/users/blazeworx.json +++ b/users/blazeworx.json @@ -1,6 +1,6 @@ { - "copyright": "Alex Carter", - "url": "http://blazeworx.com", - "email": "alex@blazeworx.com", - "format": "txt" -} + "copyright": "Alex Carter", + "url": "http://blazeworx.com", + "email": "alex@blazeworx.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/blim.json b/users/blim.json index e0e65563..72f9c4f6 100644 --- a/users/blim.json +++ b/users/blim.json @@ -1,3 +1,3 @@ { - "copyright": "Koo Chi Hoon, http://i-blim.com/" -} + "copyright": "Koo Chi Hoon, http://i-blim.com/" +} \ No newline at end of file diff --git a/users/blitzkraft.json b/users/blitzkraft.json index d5fe325b..6d3df4db 100644 --- a/users/blitzkraft.json +++ b/users/blitzkraft.json @@ -1,6 +1,6 @@ { - "copyright": "BK Bolisetty, http://blitzkraft.me", - "url": "http://blitzkraft.me", - "email": "bk@blitzkraft.me", - "theme": "default-dark" -} + "copyright": "BK Bolisetty, http://blitzkraft.me", + "url": "http://blitzkraft.me", + "email": "bk@blitzkraft.me", + "theme": "default-dark" +} \ No newline at end of file diff --git a/users/blueberrystream.json b/users/blueberrystream.json index b4d9701f..a5277d88 100644 --- a/users/blueberrystream.json +++ b/users/blueberrystream.json @@ -1,7 +1,7 @@ { - "copyright": "Fumihito Hachinohe", - "email": "kid0725@gmail.com", - "format": "html", - "theme": "opensans", - "gravatar": true -} + "copyright": "Fumihito Hachinohe", + "email": "kid0725@gmail.com", + "format": "html", + "theme": "opensans", + "gravatar": true +} \ No newline at end of file diff --git a/users/blueimp.json b/users/blueimp.json index bb5ff3e4..f3325009 100644 --- a/users/blueimp.json +++ b/users/blueimp.json @@ -1,4 +1,4 @@ { - "copyright": "Sebastian Tschan", - "url": "https://blueimp.net" -} + "copyright": "Sebastian Tschan", + "url": "https://blueimp.net" +} \ No newline at end of file diff --git a/users/blunderboy.json b/users/blunderboy.json index d1df2e18..f9970127 100644 --- a/users/blunderboy.json +++ b/users/blunderboy.json @@ -1,6 +1,6 @@ { - "copyright": "Sachin Jain", - "email": "sachinjain024@gmail.com", - "theme": "cherry", - "format": "txt" -} + "copyright": "Sachin Jain", + "email": "sachinjain024@gmail.com", + "theme": "cherry", + "format": "txt" +} \ No newline at end of file diff --git a/users/bmaeser.json b/users/bmaeser.json index a96bf78c..066cb2dd 100644 --- a/users/bmaeser.json +++ b/users/bmaeser.json @@ -1,4 +1,4 @@ { - "copyright": "Bernhard M\u00c3\u00a4ser, http://bmaeser.io", - "url": "http://bmaeser.io" -} + "copyright": "Bernhard Mäser, http://bmaeser.io", + "url": "http://bmaeser.io" +} \ No newline at end of file diff --git a/users/bmelton.json b/users/bmelton.json index 90abc0cb..8fae896f 100644 --- a/users/bmelton.json +++ b/users/bmelton.json @@ -1,3 +1,3 @@ { - "copyright": "Barry Melton" -} + "copyright": "Barry Melton" +} \ No newline at end of file diff --git a/users/bmintz.json b/users/bmintz.json index cd5697d3..1c49330d 100644 --- a/users/bmintz.json +++ b/users/bmintz.json @@ -1,4 +1,4 @@ { - "copyright": "Benjamin Mintz", - "theme": "black-beauty" -} + "copyright": "Benjamin Mintz", + "theme": "black-beauty" +} \ No newline at end of file diff --git a/users/boardintelligence.json b/users/boardintelligence.json index 0598bd22..4f42c6b1 100644 --- a/users/boardintelligence.json +++ b/users/boardintelligence.json @@ -1,5 +1,5 @@ { - "copyright": "Board Intelligence", - "url": "http://boardintelligence.co.uk", - "email": "boardiq@boardintelligence.co.uk" -} + "copyright": "Board Intelligence", + "url": "http://boardintelligence.co.uk", + "email": "boardiq@boardintelligence.co.uk" +} \ No newline at end of file diff --git a/users/bobby-tables.json b/users/bobby-tables.json index b3da2d34..9b802cf3 100644 --- a/users/bobby-tables.json +++ b/users/bobby-tables.json @@ -1,4 +1,4 @@ { - "copyright": "Bobby Tables", - "email": "bobby.tables@mailinator.com\">Little Bobby TablesLittle Bobby Tables" -} + "copyright": "Johannes Holzfuß " +} \ No newline at end of file diff --git a/users/davejustice.json b/users/davejustice.json index 61c0ca93..7afbd8d7 100644 --- a/users/davejustice.json +++ b/users/davejustice.json @@ -1,6 +1,6 @@ { - "copyright": "Dave Justice", - "url": "http://davejustice.com", - "email": "davejustishh@gmail.com", - "format": "txt" -} + "copyright": "Dave Justice", + "url": "http://davejustice.com", + "email": "davejustishh@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/daveross.json b/users/daveross.json index d52c023a..257ab099 100644 --- a/users/daveross.json +++ b/users/daveross.json @@ -1,6 +1,6 @@ { - "copyright": "David Michael Ross", - "url": "http://davidmichaelross.com", - "email": "dave@davidmichaelross.com", - "theme": "double-windsor" -} + "copyright": "David Michael Ross", + "url": "http://davidmichaelross.com", + "email": "dave@davidmichaelross.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/davestern.json b/users/davestern.json index 826961bd..493aca2d 100644 --- a/users/davestern.json +++ b/users/davestern.json @@ -1,6 +1,6 @@ { - "copyright": "Dave Stern", - "url": "https://github.com/davestern", - "email": "dave@davestern.com", - "theme": "double-windsor" -} + "copyright": "Dave Stern", + "url": "https://github.com/davestern", + "email": "dave@davestern.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/david.json b/users/david.json index 1efb5845..282039e7 100644 --- a/users/david.json +++ b/users/david.json @@ -1,3 +1,3 @@ { - "copyright": "David Pennington " -} + "copyright": "David Pennington " +} \ No newline at end of file diff --git a/users/davidcmoulton.json b/users/davidcmoulton.json index bb3ee0eb..5e480f02 100644 --- a/users/davidcmoulton.json +++ b/users/davidcmoulton.json @@ -1,4 +1,4 @@ { - "copyright": "David Moulton", - "theme": "afterdark" -} + "copyright": "David Moulton", + "theme": "afterdark" +} \ No newline at end of file diff --git a/users/davidgovea.json b/users/davidgovea.json index c16112f6..7aa312e5 100644 --- a/users/davidgovea.json +++ b/users/davidgovea.json @@ -1,6 +1,6 @@ { - "copyright": "David Govea", - "url": "https://github.com/davidgovea", - "email": "govea.d@gmail.com", - "format": "txt" -} + "copyright": "David Govea", + "url": "https://github.com/davidgovea", + "email": "govea.d@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/davidsonfellipe.json b/users/davidsonfellipe.json index 82439aaf..ca679558 100644 --- a/users/davidsonfellipe.json +++ b/users/davidsonfellipe.json @@ -1,5 +1,5 @@ { - "copyright": "Davidson Fellipe", - "url": "http://fellipe.com", - "email": "email@fellipe.com" -} + "copyright": "Davidson Fellipe", + "url": "http://fellipe.com", + "email": "email@fellipe.com" +} \ No newline at end of file diff --git a/users/davidzitting.json b/users/davidzitting.json index 9bcfadbc..9ead1b79 100644 --- a/users/davidzitting.json +++ b/users/davidzitting.json @@ -1,7 +1,7 @@ { - "copyright": "David Zitting, https://twitter.com/dgzitting", - "url": "https://twitter.com/dgzitting", - "format": "html", - "email": "davidzittingaccts1@gmail.com", - "theme": "default" -} + "copyright": "David Zitting, https://twitter.com/dgzitting", + "url": "https://twitter.com/dgzitting", + "format": "html", + "email": "davidzittingaccts1@gmail.com", + "theme": "default" +} \ No newline at end of file diff --git a/users/daviesgeek.json b/users/daviesgeek.json index 60d35ee4..20211abb 100644 --- a/users/daviesgeek.json +++ b/users/daviesgeek.json @@ -1,7 +1,7 @@ { - "copyright": "Matthew Davies", - "url": "http://daviesgeek.com", - "theme": "double-windsor", - "email": "matthew@daviesgeek.com", - "gravatar": true -} + "copyright": "Matthew Davies", + "url": "http://daviesgeek.com", + "theme": "double-windsor", + "email": "matthew@daviesgeek.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/davisonio.json b/users/davisonio.json index c9a3ea51..0a431d38 100644 --- a/users/davisonio.json +++ b/users/davisonio.json @@ -1,6 +1,6 @@ { - "copyright": "Craig Davison", - "url": "https://davison.io", - "email": "craig@davison.io", - "format": "txt" -} + "copyright": "Craig Davison", + "url": "https://davison.io", + "email": "craig@davison.io", + "format": "txt" +} \ No newline at end of file diff --git a/users/davoclavo.json b/users/davoclavo.json index e0562c21..2996e07c 100644 --- a/users/davoclavo.json +++ b/users/davoclavo.json @@ -1,3 +1,3 @@ { - "copyright": "David G\u00f3mez Urquiza" -} + "copyright": "David Gómez Urquiza" +} \ No newline at end of file diff --git a/users/dawneraq.json b/users/dawneraq.json index bb6b9da2..ba6cbdf0 100644 --- a/users/dawneraq.json +++ b/users/dawneraq.json @@ -1,6 +1,6 @@ { - "copyright": "Andrew Aquino, https://dawneraq.github.io", - "url": "https://dawneraq.github.io", - "email": "dawneraq@gmail.com", - "gravatar": true -} + "copyright": "Andrew Aquino, https://dawneraq.github.io", + "url": "https://dawneraq.github.io", + "email": "dawneraq@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/daxlab.json b/users/daxlab.json index 308f5f7d..1620a85c 100644 --- a/users/daxlab.json +++ b/users/daxlab.json @@ -1,7 +1,7 @@ { - "copyright": "Mandeep Singh", - "url": "https://github.com/daxlab", - "email": "mandeep25894@gmail.com", - "theme": "material-green", - "gravatar": true -} + "copyright": "Mandeep Singh", + "url": "https://github.com/daxlab", + "email": "mandeep25894@gmail.com", + "theme": "material-green", + "gravatar": true +} \ No newline at end of file diff --git a/users/dayflower.json b/users/dayflower.json index 3d5a6e30..c6a73958 100644 --- a/users/dayflower.json +++ b/users/dayflower.json @@ -1,4 +1,4 @@ { - "copyright": "dayflower", - "gravatar": "true" -} + "copyright": "dayflower", + "gravatar": "true" +} \ No newline at end of file diff --git a/users/dayvsonlima.json b/users/dayvsonlima.json index 88a1b4b0..04d01e47 100644 --- a/users/dayvsonlima.json +++ b/users/dayvsonlima.json @@ -1,5 +1,5 @@ { - "copyright": "Dayvson Lima", - "email": "dayvsonlima31@gmail.com", - "format": "txt" -} + "copyright": "Dayvson Lima", + "email": "dayvsonlima31@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/dbohdan.json b/users/dbohdan.json index 280eb4b5..90b9a321 100644 --- a/users/dbohdan.json +++ b/users/dbohdan.json @@ -1,3 +1,3 @@ { - "copyright": "Danyil Bohdan" -} + "copyright": "Danyil Bohdan" +} \ No newline at end of file diff --git a/users/dcgauld.json b/users/dcgauld.json index d8bf3778..a6f18dd3 100644 --- a/users/dcgauld.json +++ b/users/dcgauld.json @@ -1,3 +1,3 @@ { - "copyright": "David Gauld" -} + "copyright": "David Gauld" +} \ No newline at end of file diff --git a/users/dch.json b/users/dch.json index 79d4cc55..1108befc 100644 --- a/users/dch.json +++ b/users/dch.json @@ -1,6 +1,6 @@ { - "copyright": "Dave Cottlehuber", - "url": "http://jsonified.com", - "email": "dch@jsonified.com", - "format": "txt" -} + "copyright": "Dave Cottlehuber", + "url": "http://jsonified.com", + "email": "dch@jsonified.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/dcronkite.json b/users/dcronkite.json index d2e88b98..f70409ee 100644 --- a/users/dcronkite.json +++ b/users/dcronkite.json @@ -1,4 +1,4 @@ { - "copyright": "David Cronkite", - "format": "txt" -} + "copyright": "David Cronkite", + "format": "txt" +} \ No newline at end of file diff --git a/users/dcunited001.json b/users/dcunited001.json index d34f802a..20c729e2 100644 --- a/users/dcunited001.json +++ b/users/dcunited001.json @@ -1,8 +1,8 @@ { - "copyright": "David Conner", - "email": "dconner.pro@gmail.com", - "format": "html", - "gravatar": "true", - "url": "http://te.xel.io", - "theme": "opensans" -} + "copyright": "David Conner", + "email": "dconner.pro@gmail.com", + "format": "html", + "gravatar": "true", + "url": "http://te.xel.io", + "theme": "opensans" +} \ No newline at end of file diff --git a/users/dd.json b/users/dd.json index afe752e1..f03601ae 100644 --- a/users/dd.json +++ b/users/dd.json @@ -1,3 +1,3 @@ { - "copyright": "Dave Della Costa" -} + "copyright": "Dave Della Costa" +} \ No newline at end of file diff --git a/users/ddd.json b/users/ddd.json index 4e4e8721..dfd69c53 100644 --- a/users/ddd.json +++ b/users/ddd.json @@ -1,6 +1,6 @@ { - "copyright": "D Deryl Downey, http://deryldowney.com", - "url": "http://deryldowney.com", - "email": "ddd@deryldowney.com", - "theme": "eula-modern" -} + "copyright": "D Deryl Downey, http://deryldowney.com", + "url": "http://deryldowney.com", + "email": "ddd@deryldowney.com", + "theme": "eula-modern" +} \ No newline at end of file diff --git a/users/ddeaguiar.json b/users/ddeaguiar.json index bf003e7b..b5930fa0 100644 --- a/users/ddeaguiar.json +++ b/users/ddeaguiar.json @@ -1,4 +1,4 @@ { - "copyright": "Daniel De Aguiar", - "format": "txt" -} + "copyright": "Daniel De Aguiar", + "format": "txt" +} \ No newline at end of file diff --git a/users/ddl1st.json b/users/ddl1st.json index 1c2971f1..d6a6f6c5 100644 --- a/users/ddl1st.json +++ b/users/ddl1st.json @@ -1,6 +1,6 @@ { - "copyright": "ddl1st", - "url": "http://ddl1st.github.com", - "email": "looooooooooooooooooooooooooops@gmail.com", - "format": "txt" -} + "copyright": "ddl1st", + "url": "http://ddl1st.github.com", + "email": "looooooooooooooooooooooooooops@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/ddproxy.json b/users/ddproxy.json index ca49bdc8..d157dd95 100644 --- a/users/ddproxy.json +++ b/users/ddproxy.json @@ -1,6 +1,6 @@ { - "copyright": "Jon West", - "email": "ddproxy@gmail.com", - "format": "html", - "theme": "material-blue" -} + "copyright": "Jon West", + "email": "ddproxy@gmail.com", + "format": "html", + "theme": "material-blue" +} \ No newline at end of file diff --git a/users/deacalion.json b/users/deacalion.json index b1f2e29d..5068933f 100644 --- a/users/deacalion.json +++ b/users/deacalion.json @@ -1,7 +1,7 @@ { - "copyright": "Matt Deacalion Stevens", - "url": "http://dirtymonkey.co.uk", - "email": "matt@dirtymonkey.co.uk", - "gravatar": true, - "theme": "default dark" -} + "copyright": "Matt Deacalion Stevens", + "url": "http://dirtymonkey.co.uk", + "email": "matt@dirtymonkey.co.uk", + "gravatar": true, + "theme": "default dark" +} \ No newline at end of file diff --git a/users/deanlandolt.json b/users/deanlandolt.json index f1617bc7..7ae24946 100644 --- a/users/deanlandolt.json +++ b/users/deanlandolt.json @@ -1,6 +1,6 @@ { - "copyright": "Dean Landolt", - "url": "http://deanlandolt.com", - "email": "dean@deanlandolt.com", - "format": "txt" -} + "copyright": "Dean Landolt", + "url": "http://deanlandolt.com", + "email": "dean@deanlandolt.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/decached.json b/users/decached.json index 60063f51..63b66a64 100644 --- a/users/decached.json +++ b/users/decached.json @@ -1,3 +1,3 @@ { - "copyright": "Akash Kothawale" -} + "copyright": "Akash Kothawale" +} \ No newline at end of file diff --git a/users/decklin.json b/users/decklin.json index 1258d5f4..f5dd8003 100644 --- a/users/decklin.json +++ b/users/decklin.json @@ -1,3 +1,3 @@ { - "copyright": "Decklin Foster" -} + "copyright": "Decklin Foster" +} \ No newline at end of file diff --git a/users/deecewan.json b/users/deecewan.json index 8a385fbe..0894e433 100644 --- a/users/deecewan.json +++ b/users/deecewan.json @@ -1,6 +1,6 @@ { - "copyright": "David Buchan-Swanson", - "email": "david.buchanswanson@gmail.com", - "theme": "material-light-blue", - "gravatar": true -} + "copyright": "David Buchan-Swanson", + "email": "david.buchanswanson@gmail.com", + "theme": "material-light-blue", + "gravatar": true +} \ No newline at end of file diff --git a/users/deefour.json b/users/deefour.json index 6d631421..76a9d472 100644 --- a/users/deefour.json +++ b/users/deefour.json @@ -1,8 +1,8 @@ { - "copyright": "Jason Daly (deefour)", - "url": "http://deefour.me", - "email": "jason@deefour.me", - "format": "html", - "gravater": true, - "theme": "plaintext" -} + "copyright": "Jason Daly (deefour)", + "url": "http://deefour.me", + "email": "jason@deefour.me", + "format": "html", + "gravater": true, + "theme": "plaintext" +} \ No newline at end of file diff --git a/users/deepak.json b/users/deepak.json index fed7498e..78ccf561 100644 --- a/users/deepak.json +++ b/users/deepak.json @@ -1,6 +1,6 @@ { - "copyright": "Deepak Kamat", - "url": "http://www.stramaxon.com/", - "email": "depy45631@gmail.com", - "theme": "solarized" -} + "copyright": "Deepak Kamat", + "url": "http://www.stramaxon.com/", + "email": "depy45631@gmail.com", + "theme": "solarized" +} \ No newline at end of file diff --git a/users/deeplysimple.json b/users/deeplysimple.json index 85943e00..a3c84866 100644 --- a/users/deeplysimple.json +++ b/users/deeplysimple.json @@ -1,5 +1,5 @@ { - "copyright": "Deeplysimple", - "url": "http://deeplysimple.com", - "email": "hello@deeplysimple.com" -} + "copyright": "Deeplysimple", + "url": "http://deeplysimple.com", + "email": "hello@deeplysimple.com" +} \ No newline at end of file diff --git a/users/definedcode.json b/users/definedcode.json index 19fc6644..f1ee3cab 100644 --- a/users/definedcode.json +++ b/users/definedcode.json @@ -1,6 +1,6 @@ { - "copyright": "Defined Code Ltd", - "url": "http://serverctrl.io", - "email": "mail@definedcode.com", - "format": "txt" -} + "copyright": "Defined Code Ltd", + "url": "http://serverctrl.io", + "email": "mail@definedcode.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/degree9.json b/users/degree9.json index d65a433f..cae5ec0d 100644 --- a/users/degree9.json +++ b/users/degree9.json @@ -1,3 +1,3 @@ { - "copyright": "Matthew Ratzke" -} + "copyright": "Matthew Ratzke" +} \ No newline at end of file diff --git a/users/dehnavi.json b/users/dehnavi.json index 66ae669f..e1eab0e9 100644 --- a/users/dehnavi.json +++ b/users/dehnavi.json @@ -1,7 +1,7 @@ { - "copyright": "Hossein Dehnavi", - "url": "http://dehnavi.info", - "email": "hossein.dehnavy@gmail.com", - "theme": "open-sans", - "gravatar": true -} + "copyright": "Hossein Dehnavi", + "url": "http://dehnavi.info", + "email": "hossein.dehnavy@gmail.com", + "theme": "open-sans", + "gravatar": true +} \ No newline at end of file diff --git a/users/deif.json b/users/deif.json index e40af071..35622a98 100644 --- a/users/deif.json +++ b/users/deif.json @@ -1,4 +1,4 @@ { - "copyright": "David Fisher-Moreau", - "email": "deiform87@gmail.com" -} + "copyright": "David Fisher-Moreau", + "email": "deiform87@gmail.com" +} \ No newline at end of file diff --git a/users/deirdre.json b/users/deirdre.json index f3c59fc8..bd7f0a3b 100644 --- a/users/deirdre.json +++ b/users/deirdre.json @@ -1,6 +1,6 @@ { - "copyright": "Deirdre Allison", - "url": "http://deirdreallison.com", - "email": "deirdre9@gmail.com", - "format": "txt" -} + "copyright": "Deirdre Allison", + "url": "http://deirdreallison.com", + "email": "deirdre9@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/dejal.json b/users/dejal.json index 169ef390..019a5248 100644 --- a/users/dejal.json +++ b/users/dejal.json @@ -1,4 +1,4 @@ { - "copyright": "Dejal Systems, LLC, http://www.dejal.com/developer/", - "url": "http://www.dejal.com/developer/" -} + "copyright": "Dejal Systems, LLC, http://www.dejal.com/developer/", + "url": "http://www.dejal.com/developer/" +} \ No newline at end of file diff --git a/users/dejay.json b/users/dejay.json index 408b449b..428e4717 100644 --- a/users/dejay.json +++ b/users/dejay.json @@ -1,5 +1,5 @@ { - "copyright": "David Heaney", - "url": "http://dejayheaney.com", - "format": "txt" -} + "copyright": "David Heaney", + "url": "http://dejayheaney.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/delicatebits.json b/users/delicatebits.json index 7705feb1..91611e78 100644 --- a/users/delicatebits.json +++ b/users/delicatebits.json @@ -1,5 +1,5 @@ { - "copyright": "delicatebits", - "url": "https://github.com/delicatebits", - "theme": "xtansia" -} + "copyright": "delicatebits", + "url": "https://github.com/delicatebits", + "theme": "xtansia" +} \ No newline at end of file diff --git a/users/delorean.json b/users/delorean.json index da94dfe9..3d1a8db4 100644 --- a/users/delorean.json +++ b/users/delorean.json @@ -1,6 +1,6 @@ { - "copyright": "Fatih Kadir Ak\u0131n", - "url": "http://deloreanjs.org", - "email": "fka@fatihak.in", - "format": "txt" -} + "copyright": "Fatih Kadir Akın", + "url": "http://deloreanjs.org", + "email": "fka@fatihak.in", + "format": "txt" +} \ No newline at end of file diff --git a/users/delphidabbler.json b/users/delphidabbler.json index 19dec11f..f6e19003 100644 --- a/users/delphidabbler.json +++ b/users/delphidabbler.json @@ -1,6 +1,6 @@ { - "copyright": "Peter D Johnson", - "url": "http://delphidabbler.com/", - "format": "text", - "version": "fdcf640" -} + "copyright": "Peter D Johnson", + "url": "http://delphidabbler.com/", + "format": "text", + "version": "fdcf640" +} \ No newline at end of file diff --git a/users/denbuzze.json b/users/denbuzze.json index 83a95ead..92c85455 100644 --- a/users/denbuzze.json +++ b/users/denbuzze.json @@ -1,3 +1,3 @@ { - "copyright": "Christian Vuerings" -} + "copyright": "Christian Vuerings" +} \ No newline at end of file diff --git a/users/denis.json b/users/denis.json index 9ae95355..6551e8ed 100644 --- a/users/denis.json +++ b/users/denis.json @@ -1,3 +1,3 @@ { - "copyright": "Denis Ciccale" -} + "copyright": "Denis Ciccale" +} \ No newline at end of file diff --git a/users/denji.json b/users/denji.json index ac004b2e..52c91fcb 100644 --- a/users/denji.json +++ b/users/denji.json @@ -1,8 +1,8 @@ { - "copyright": "Denis Denisov", - "email": "denji0k@gmail.com", - "format": "html", - "gravatar": true, - "theme": "opensans", - "url": "https://github.com/denji" -} + "copyright": "Denis Denisov", + "email": "denji0k@gmail.com", + "format": "html", + "gravatar": true, + "theme": "opensans", + "url": "https://github.com/denji" +} \ No newline at end of file diff --git a/users/derek-palmer.json b/users/derek-palmer.json index 2d2f6821..a7fe52a0 100644 --- a/users/derek-palmer.json +++ b/users/derek-palmer.json @@ -1,7 +1,7 @@ { - "copyright": "Derek Palmer, http://derek-palmer.com", - "url": "http://derek-palmer.com", - "theme": "material-light-blue", - "email": "dpalmerdev@gmail.com", - "format": "html" -} + "copyright": "Derek Palmer, http://derek-palmer.com", + "url": "http://derek-palmer.com", + "theme": "material-light-blue", + "email": "dpalmerdev@gmail.com", + "format": "html" +} \ No newline at end of file diff --git a/users/derekahmedzai.json b/users/derekahmedzai.json index e5257936..d42151fe 100644 --- a/users/derekahmedzai.json +++ b/users/derekahmedzai.json @@ -1,5 +1,5 @@ { - "copyright": "Derek Ahmedzai", - "url": "http://www.sharpshooter.org", - "email": "derek@sharpshooter.org" -} + "copyright": "Derek Ahmedzai", + "url": "http://www.sharpshooter.org", + "email": "derek@sharpshooter.org" +} \ No newline at end of file diff --git a/users/desandro.json b/users/desandro.json index 379c98ff..a10eab0d 100644 --- a/users/desandro.json +++ b/users/desandro.json @@ -1,5 +1,5 @@ { - "copyright": "David DeSandro", - "url": "http://desandro.com", - "theme": "double-windsor" -} + "copyright": "David DeSandro", + "url": "http://desandro.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/designa.json b/users/designa.json index a9fde3d3..754736c5 100644 --- a/users/designa.json +++ b/users/designa.json @@ -1,6 +1,6 @@ { - "copyright": "Designa", - "url": "http://designa.com.br", - "email": "contato@designa.com.br", - "format": "txt" -} + "copyright": "Designa", + "url": "http://designa.com.br", + "email": "contato@designa.com.br", + "format": "txt" +} \ No newline at end of file diff --git a/users/deuxhuithuit.json b/users/deuxhuithuit.json index 669b2010..ab97d280 100644 --- a/users/deuxhuithuit.json +++ b/users/deuxhuithuit.json @@ -1,6 +1,6 @@ { - "copyright": "Deux Huit Huit", - "url": "https://deuxhuithuit.com", - "theme": "flesch", - "gravatar": true -} + "copyright": "Deux Huit Huit", + "url": "https://deuxhuithuit.com", + "theme": "flesch", + "gravatar": true +} \ No newline at end of file diff --git a/users/dev-dipesh.json b/users/dev-dipesh.json index 91d7adf0..2ae60c46 100644 --- a/users/dev-dipesh.json +++ b/users/dev-dipesh.json @@ -1,7 +1,7 @@ { - "copyright": "Dipesh Bhardwaj", - "email": "itdeveloper03@gmail.com", - "url": "http://in.linkedin.com/in/devdipesh/", - "theme": "silver-style", - "gravatar": true -} + "copyright": "Dipesh Bhardwaj", + "email": "itdeveloper03@gmail.com", + "url": "http://in.linkedin.com/in/devdipesh/", + "theme": "silver-style", + "gravatar": true +} \ No newline at end of file diff --git a/users/dev.json b/users/dev.json index acc9cd48..f7bc4359 100644 --- a/users/dev.json +++ b/users/dev.json @@ -1,5 +1,5 @@ { - "copyright": "Ko\u0142o Naukowe >DEV", - "url": "http://dev.uek.krakow.pl", - "email": "dev@uek.krakow.pl" -} + "copyright": "Koło Naukowe >DEV", + "url": "http://dev.uek.krakow.pl", + "email": "dev@uek.krakow.pl" +} \ No newline at end of file diff --git a/users/devan.json b/users/devan.json index 4f41e043..ba5880ce 100644 --- a/users/devan.json +++ b/users/devan.json @@ -1,4 +1,4 @@ { - "copyright": "Devan Carpenter", - "email": "devanc@gmail.com" -} + "copyright": "Devan Carpenter", + "email": "devanc@gmail.com" +} \ No newline at end of file diff --git a/users/devgru.json b/users/devgru.json index beb66f30..73ebaeb9 100644 --- a/users/devgru.json +++ b/users/devgru.json @@ -1,5 +1,5 @@ { - "copyright": "Dmitriy Semyushkin, https://devg.ru", - "url": "https://devg.ru", - "email": "git@devg.ru" -} + "copyright": "Dmitriy Semyushkin, https://devg.ru", + "url": "https://devg.ru", + "email": "git@devg.ru" +} \ No newline at end of file diff --git a/users/devin.json b/users/devin.json index 51cbddbd..c5ced2fb 100644 --- a/users/devin.json +++ b/users/devin.json @@ -1,5 +1,5 @@ { - "copyright": "Devin Smith", - "url": "http://devinrsmith.com", - "email": "devinrsmith@protonmail.com" -} + "copyright": "Devin Smith", + "url": "http://devinrsmith.com", + "email": "devinrsmith@protonmail.com" +} \ No newline at end of file diff --git a/users/devinus.json b/users/devinus.json index 2ee88dee..26c45941 100644 --- a/users/devinus.json +++ b/users/devinus.json @@ -1,6 +1,6 @@ { - "copyright": "Devin Torres", - "url": "http://devintorr.es/", - "email": "devin@devintorr.es", - "format": "txt" -} + "copyright": "Devin Torres", + "url": "http://devintorr.es/", + "email": "devin@devintorr.es", + "format": "txt" +} \ No newline at end of file diff --git a/users/devssay.json b/users/devssay.json index f476aca0..b8c6c178 100644 --- a/users/devssay.json +++ b/users/devssay.json @@ -1,5 +1,5 @@ { - "copyright": "Seokmoon Jang, http://drssay.com/", - "url": "http://drssay.com", - "theme": "afterdark" -} + "copyright": "Seokmoon Jang, http://drssay.com/", + "url": "http://drssay.com", + "theme": "afterdark" +} \ No newline at end of file diff --git a/users/dexafree.json b/users/dexafree.json index be0ccddd..1a4fb20b 100644 --- a/users/dexafree.json +++ b/users/dexafree.json @@ -1,3 +1,3 @@ { - "copyright": "Dexafree" -} + "copyright": "Dexafree" +} \ No newline at end of file diff --git a/users/dexterind.json b/users/dexterind.json index 7e06ca85..d29184d9 100644 --- a/users/dexterind.json +++ b/users/dexterind.json @@ -1,6 +1,6 @@ { - "copyright": "Dexter Industries", - "url": "https://dexterindustries.com", - "email": "support@dexterindustries.com", - "format": "html" -} + "copyright": "Dexter Industries", + "url": "https://dexterindustries.com", + "email": "support@dexterindustries.com", + "format": "html" +} \ No newline at end of file diff --git a/users/deyvisonrocha.json b/users/deyvisonrocha.json index 35161324..af07b74d 100644 --- a/users/deyvisonrocha.json +++ b/users/deyvisonrocha.json @@ -1,5 +1,5 @@ { - "copyright": "Deyvison Rocha", - "url": "http://deyvison.me", - "email": "deyvison@gmail.com" -} + "copyright": "Deyvison Rocha", + "url": "http://deyvison.me", + "email": "deyvison@gmail.com" +} \ No newline at end of file diff --git a/users/dgoodlad.json b/users/dgoodlad.json index 1e80a772..ca6916c3 100644 --- a/users/dgoodlad.json +++ b/users/dgoodlad.json @@ -1,5 +1,5 @@ { - "copyright": "David Goodlad", - "url": "http://d.goodlad.net/", - "email": "david@goodlad.net" -} + "copyright": "David Goodlad", + "url": "http://d.goodlad.net/", + "email": "david@goodlad.net" +} \ No newline at end of file diff --git a/users/dgt.json b/users/dgt.json index cf627378..a08ca7c1 100644 --- a/users/dgt.json +++ b/users/dgt.json @@ -1,6 +1,6 @@ { - "copyright": "Daniel G. Taylor", - "email": "danielgtaylor@gmail.com", - "gravatar": true, - "theme": "flesch" -} + "copyright": "Daniel G. Taylor", + "email": "danielgtaylor@gmail.com", + "gravatar": true, + "theme": "flesch" +} \ No newline at end of file diff --git a/users/dh.json b/users/dh.json index f241cddf..e11c707d 100644 --- a/users/dh.json +++ b/users/dh.json @@ -1,6 +1,6 @@ { - "copyright": "Daniel Honies", - "url": "http://danielhonies.me", - "email": "daniel.honies@gmail.com", - "theme": "material-red" -} + "copyright": "Daniel Honies", + "url": "http://danielhonies.me", + "email": "daniel.honies@gmail.com", + "theme": "material-red" +} \ No newline at end of file diff --git a/users/dhainzl.json b/users/dhainzl.json index e595c7bb..62fff2b8 100644 --- a/users/dhainzl.json +++ b/users/dhainzl.json @@ -1,7 +1,7 @@ { - "copyright": "David Hainzl", - "url": "http://dhainzl.at", - "email": "david@dhainzl.at", - "gravatar": true, - "theme": "material-deep-orange" -} + "copyright": "David Hainzl", + "url": "http://dhainzl.at", + "email": "david@dhainzl.at", + "gravatar": true, + "theme": "material-deep-orange" +} \ No newline at end of file diff --git a/users/dhaval.json b/users/dhaval.json index 47e86a43..6cd9d695 100644 --- a/users/dhaval.json +++ b/users/dhaval.json @@ -1,8 +1,8 @@ { - "copyright": "Dhaval Kapil", - "url": "https://dhavalkapil.com", - "email": "me@dhavalkapil.com", - "format": "html", - "gravatar": true, - "theme": "rokkitt" -} + "copyright": "Dhaval Kapil", + "url": "https://dhavalkapil.com", + "email": "me@dhavalkapil.com", + "format": "html", + "gravatar": true, + "theme": "rokkitt" +} \ No newline at end of file diff --git a/users/dhavalkapil.json b/users/dhavalkapil.json index 47e86a43..6cd9d695 100644 --- a/users/dhavalkapil.json +++ b/users/dhavalkapil.json @@ -1,8 +1,8 @@ { - "copyright": "Dhaval Kapil", - "url": "https://dhavalkapil.com", - "email": "me@dhavalkapil.com", - "format": "html", - "gravatar": true, - "theme": "rokkitt" -} + "copyright": "Dhaval Kapil", + "url": "https://dhavalkapil.com", + "email": "me@dhavalkapil.com", + "format": "html", + "gravatar": true, + "theme": "rokkitt" +} \ No newline at end of file diff --git a/users/dhawal.json b/users/dhawal.json index 83867488..cfd8a7e2 100644 --- a/users/dhawal.json +++ b/users/dhawal.json @@ -1,8 +1,8 @@ { - "copyright": "Dhawal Mehta, http://dhawalmehta.com", - "url": "http://dhawalmehta.com", - "email": "dhawalmehta91@gmail.com", - "gravatar": true, - "format": "html", - "theme": "dusk" -} + "copyright": "Dhawal Mehta, http://dhawalmehta.com", + "url": "http://dhawalmehta.com", + "email": "dhawalmehta91@gmail.com", + "gravatar": true, + "format": "html", + "theme": "dusk" +} \ No newline at end of file diff --git a/users/dhuyy.json b/users/dhuyy.json index 5aa68e0f..ab8835ae 100644 --- a/users/dhuyy.json +++ b/users/dhuyy.json @@ -1,5 +1,5 @@ { - "copyright": "Vandhuy Martins", - "url": "http://dhuymartins.com.br", - "email": "vandhuy@gmail.com" -} + "copyright": "Vandhuy Martins", + "url": "http://dhuymartins.com.br", + "email": "vandhuy@gmail.com" +} \ No newline at end of file diff --git a/users/dhyegofernando.json b/users/dhyegofernando.json index c47f28fc..31f478a8 100644 --- a/users/dhyegofernando.json +++ b/users/dhyegofernando.json @@ -1,7 +1,7 @@ { - "copyright": "Dhyego Fernando", - "url": "https://github.com/dhyegofernando", - "email": "dhyegofernando@gmail.com", - "gravatar": true, - "theme": "double-windsor" -} + "copyright": "Dhyego Fernando", + "url": "https://github.com/dhyegofernando", + "email": "dhyegofernando@gmail.com", + "gravatar": true, + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/diadatp.json b/users/diadatp.json index 5323eb9e..7a902c93 100644 --- a/users/diadatp.json +++ b/users/diadatp.json @@ -1,5 +1,5 @@ { - "copyright": "Bittu N", - "url": "http://diadatp.com", - "email": "admin@diadatp.com" -} + "copyright": "Bittu N", + "url": "http://diadatp.com", + "email": "admin@diadatp.com" +} \ No newline at end of file diff --git a/users/diessica.json b/users/diessica.json index 2cb13dde..e0fd5a0d 100644 --- a/users/diessica.json +++ b/users/diessica.json @@ -1,7 +1,7 @@ { - "copyright": "Di\u00e9ssica Gurskas", - "url": "http://diessi.ca", - "email": "diessicode@gmail.com", - "theme": "double-windsor", - "gravatar": true -} + "copyright": "Diéssica Gurskas", + "url": "http://diessi.ca", + "email": "diessicode@gmail.com", + "theme": "double-windsor", + "gravatar": true +} \ No newline at end of file diff --git a/users/digipars.json b/users/digipars.json index 4ee5c8f9..602b170f 100644 --- a/users/digipars.json +++ b/users/digipars.json @@ -1,7 +1,7 @@ { - "copyright": "DigiPars, http://digipars.com", - "url": "http://digipars.com/", - "format": "html", - "gravatar": false, - "theme": "plaintext" -} + "copyright": "DigiPars, http://digipars.com", + "url": "http://digipars.com/", + "format": "html", + "gravatar": false, + "theme": "plaintext" +} \ No newline at end of file diff --git a/users/digitalnatives.json b/users/digitalnatives.json index 456890b9..35a4ffad 100644 --- a/users/digitalnatives.json +++ b/users/digitalnatives.json @@ -1,4 +1,4 @@ { - "copyright": "Digital Natives", - "url": "http://digitalnatives.hu/" -} + "copyright": "Digital Natives", + "url": "http://digitalnatives.hu/" +} \ No newline at end of file diff --git a/users/dimakovalevskyi.json b/users/dimakovalevskyi.json index 87a40c69..0b8e8a4e 100644 --- a/users/dimakovalevskyi.json +++ b/users/dimakovalevskyi.json @@ -1,7 +1,7 @@ { - "copyright": "Dmytro Kovalevskyi", - "email": "dimakovalevskyi@gmail.com", - "url": "https://dimakovalevskyi.github.io", - "format": "html", - "gravatar": true -} + "copyright": "Dmytro Kovalevskyi", + "email": "dimakovalevskyi@gmail.com", + "url": "https://dimakovalevskyi.github.io", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/disposaboy.json b/users/disposaboy.json index 00d8e96b..76790f14 100644 --- a/users/disposaboy.json +++ b/users/disposaboy.json @@ -1,6 +1,6 @@ { - "copyright": "DisposaBoy", - "url": "http://gosublime.org/", - "email": "disposaboy@dby.me", - "format": "txt" -} + "copyright": "DisposaBoy", + "url": "http://gosublime.org/", + "email": "disposaboy@dby.me", + "format": "txt" +} \ No newline at end of file diff --git a/users/dissimile.json b/users/dissimile.json index 1a520125..7be01e2e 100644 --- a/users/dissimile.json +++ b/users/dissimile.json @@ -1,6 +1,6 @@ { - "copyright": "Hugo Jobling", - "url": "http://www.thisishugo.com", - "email": "me@thisishugo.com", - "format": "txt" -} + "copyright": "Hugo Jobling", + "url": "http://www.thisishugo.com", + "email": "me@thisishugo.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/diti.json b/users/diti.json index 8ba4f431..4e81180a 100644 --- a/users/diti.json +++ b/users/diti.json @@ -1,8 +1,8 @@ { - "copyright": "Dimitri Torterat", - "url": "http://diti.me/", - "email": "kra@diti.me", - "format": "html", - "gravatar": true, - "theme": "hipster-gray" -} + "copyright": "Dimitri Torterat", + "url": "http://diti.me/", + "email": "kra@diti.me", + "format": "html", + "gravatar": true, + "theme": "hipster-gray" +} \ No newline at end of file diff --git a/users/divyanshu.json b/users/divyanshu.json index b1df611d..a6de46d0 100644 --- a/users/divyanshu.json +++ b/users/divyanshu.json @@ -1,8 +1,8 @@ { - "copyright": "Divyanshu Rawat, http://www.divyanshurawat.in", - "url": "http://www.divyanshurawat.in", - "email": "divyanshu.r46956@gmail.com", - "gravatar": true, - "theme": "material-deep-orange", - "format": "html" -} + "copyright": "Divyanshu Rawat, http://www.divyanshurawat.in", + "url": "http://www.divyanshurawat.in", + "email": "divyanshu.r46956@gmail.com", + "gravatar": true, + "theme": "material-deep-orange", + "format": "html" +} \ No newline at end of file diff --git a/users/djakobik.json b/users/djakobik.json index 9623a4fb..20a047f6 100644 --- a/users/djakobik.json +++ b/users/djakobik.json @@ -1,3 +1,3 @@ { - "copyright": "David Jakobik" -} + "copyright": "David Jakobik" +} \ No newline at end of file diff --git a/users/djalmaaraujo.json b/users/djalmaaraujo.json index 509626cf..72ad0fb6 100644 --- a/users/djalmaaraujo.json +++ b/users/djalmaaraujo.json @@ -1,6 +1,6 @@ { - "copyright": "Djalma Araujo", - "url": "http://djalmaaraujo.github.io/", - "email": "djalma.araujo@gmail.com", - "gravatar": true -} + "copyright": "Djalma Araujo", + "url": "http://djalmaaraujo.github.io/", + "email": "djalma.araujo@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/djdch.json b/users/djdch.json index 4bd84f38..39460e10 100644 --- a/users/djdch.json +++ b/users/djdch.json @@ -1,5 +1,5 @@ { - "copyright": "DjDCH", - "url": "http://djdch.com/", - "email": "coding@djdch.com" -} + "copyright": "DjDCH", + "url": "http://djdch.com/", + "email": "coding@djdch.com" +} \ No newline at end of file diff --git a/users/djohnson.json b/users/djohnson.json index 3e39eef3..3e88c423 100644 --- a/users/djohnson.json +++ b/users/djohnson.json @@ -1,8 +1,8 @@ { - "copyright": "Duncan Johnson, http://duncanjohnson.ca/", - "url": "http://duncanjohnson.ca/", - "email": "duncan@duncanjohnson.ca", - "format": "html", - "gravatar": "true", - "theme": "double-windsor" -} + "copyright": "Duncan Johnson, http://duncanjohnson.ca/", + "url": "http://duncanjohnson.ca/", + "email": "duncan@duncanjohnson.ca", + "format": "html", + "gravatar": "true", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/dkiyatkin.json b/users/dkiyatkin.json index a18df8a5..64e1b8b4 100644 --- a/users/dkiyatkin.json +++ b/users/dkiyatkin.json @@ -1,7 +1,7 @@ { - "copyright": "Dmitriy Kiyatkin, http://dkiyatkin.com", - "url": "http://dkiyatkin.com", - "email": "info@dkiyatkin.com", - "format": "html", - "gravatar": true -} + "copyright": "Dmitriy Kiyatkin, http://dkiyatkin.com", + "url": "http://dkiyatkin.com", + "email": "info@dkiyatkin.com", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/dlambert.json b/users/dlambert.json index f2f5a987..ad552802 100644 --- a/users/dlambert.json +++ b/users/dlambert.json @@ -1,5 +1,5 @@ { - "copyright": "Derek J. Lambert", - "url": "http://dereklambert.com", - "email": "dlambert@dereklambert.com" -} + "copyright": "Derek J. Lambert", + "url": "http://dereklambert.com", + "email": "dlambert@dereklambert.com" +} \ No newline at end of file diff --git a/users/dlukov.json b/users/dlukov.json index 5ab5c4cc..4ff1e896 100644 --- a/users/dlukov.json +++ b/users/dlukov.json @@ -1,6 +1,6 @@ { - "copyright": "Denis Lukov", - "url": "http://github.com/NeXTs", - "email": "denismassters@gmail.com", - "theme": "double-windsor" -} + "copyright": "Denis Lukov", + "url": "http://github.com/NeXTs", + "email": "denismassters@gmail.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/dmcclccam.json b/users/dmcclccam.json index ad8bdb58..caa901eb 100644 --- a/users/dmcclccam.json +++ b/users/dmcclccam.json @@ -1,6 +1,6 @@ { - "copyright": "Danilo Moreira de Castro", - "url": "http://dmcclccam.com.br", - "email": "danilo.moreira94@gmail.com", - "format": "txt" -} + "copyright": "Danilo Moreira de Castro", + "url": "http://dmcclccam.com.br", + "email": "danilo.moreira94@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/dmg.json b/users/dmg.json index e0b4b089..05bde92f 100644 --- a/users/dmg.json +++ b/users/dmg.json @@ -1,4 +1,4 @@ { - "copyright": "Daniel M. Gehrlein", - "url": "http://dmglab.de" -} + "copyright": "Daniel M. Gehrlein", + "url": "http://dmglab.de" +} \ No newline at end of file diff --git a/users/dmk.json b/users/dmk.json index d3a2fc87..e5af6b37 100644 --- a/users/dmk.json +++ b/users/dmk.json @@ -1,3 +1,3 @@ { - "copyright": "Dominik Kukacka" -} + "copyright": "Dominik Kukacka" +} \ No newline at end of file diff --git a/users/dmorrison42.json b/users/dmorrison42.json index d87685f5..4d562d88 100644 --- a/users/dmorrison42.json +++ b/users/dmorrison42.json @@ -1,3 +1,3 @@ { - "copyright": "Daniel Morrison" -} + "copyright": "Daniel Morrison" +} \ No newline at end of file diff --git a/users/dn.json b/users/dn.json index 57d86ec6..60364c7a 100644 --- a/users/dn.json +++ b/users/dn.json @@ -1,6 +1,6 @@ { - "copyright": "David Newman", - "format": "txt", - "email": "davidjndev@gmail.com", - "theme": "default" -} + "copyright": "David Newman", + "format": "txt", + "email": "davidjndev@gmail.com", + "theme": "default" +} \ No newline at end of file diff --git a/users/dobtco.json b/users/dobtco.json index 46af0843..e010243b 100644 --- a/users/dobtco.json +++ b/users/dobtco.json @@ -1,3 +1,3 @@ { - "copyright": "Department of Better Technology" -} + "copyright": "Department of Better Technology" +} \ No newline at end of file diff --git a/users/dochang.json b/users/dochang.json index bda011ad..5b37d9c8 100644 --- a/users/dochang.json +++ b/users/dochang.json @@ -1,5 +1,5 @@ { - "copyright": "ZHANG Weiyi", - "url": "https://github.com/dochang", - "email": "dochang@gmail.com" -} + "copyright": "ZHANG Weiyi", + "url": "https://github.com/dochang", + "email": "dochang@gmail.com" +} \ No newline at end of file diff --git a/users/dog2puppy.json b/users/dog2puppy.json index 423322be..2432162a 100644 --- a/users/dog2puppy.json +++ b/users/dog2puppy.json @@ -1,8 +1,8 @@ { - "copyright": "Dog2puppy", - "url": "https://www.dog2puppy-github.tk", - "email": "dog2puppy.mc@gmail.com", - "format": "html", - "theme": "material-light-blue", - "gravatar": true -} + "copyright": "Dog2puppy", + "url": "https://www.dog2puppy-github.tk", + "email": "dog2puppy.mc@gmail.com", + "format": "html", + "theme": "material-light-blue", + "gravatar": true +} \ No newline at end of file diff --git a/users/dogan.json b/users/dogan.json index e2c8f3f6..8c76912e 100644 --- a/users/dogan.json +++ b/users/dogan.json @@ -1,3 +1,3 @@ { - "copyright": "Wojciech Dogan Doganowski" -} + "copyright": "Wojciech Dogan Doganowski" +} \ No newline at end of file diff --git a/users/doiio.json b/users/doiio.json index b276a666..4e81c969 100644 --- a/users/doiio.json +++ b/users/doiio.json @@ -1,3 +1,3 @@ { - "copyright": "Open Access Dojo" -} + "copyright": "Open Access Dojo" +} \ No newline at end of file diff --git a/users/don.json b/users/don.json index 7c792be1..c53cc5f5 100644 --- a/users/don.json +++ b/users/don.json @@ -1,3 +1,3 @@ { - "copyright": "Don Chea" -} + "copyright": "Don Chea" +} \ No newline at end of file diff --git a/users/dongilbert.json b/users/dongilbert.json index 1d6f0bde..17a21735 100644 --- a/users/dongilbert.json +++ b/users/dongilbert.json @@ -1,6 +1,6 @@ { - "copyright": "Don Gilbert", - "url": "http://dongilbert.net", - "email": "don@dongilbert.net", - "format": "txt" -} + "copyright": "Don Gilbert", + "url": "http://dongilbert.net", + "email": "don@dongilbert.net", + "format": "txt" +} \ No newline at end of file diff --git a/users/donortega.json b/users/donortega.json index 47da2aee..e70684a3 100644 --- a/users/donortega.json +++ b/users/donortega.json @@ -1,4 +1,4 @@ { - "copyright": "Don Ortega", - "url": "http://donortega.com" -} + "copyright": "Don Ortega", + "url": "http://donortega.com" +} \ No newline at end of file diff --git a/users/donoskaro.json b/users/donoskaro.json index c722d696..d5d60ff6 100644 --- a/users/donoskaro.json +++ b/users/donoskaro.json @@ -1,8 +1,8 @@ { - "copyright": "Oskar Augustyn", - "url": "https://donoskaro.com", - "email": "oskar@augustyn.co", - "format": "html", - "theme": "material-blue", - "gravatar": true -} + "copyright": "Oskar Augustyn", + "url": "https://donoskaro.com", + "email": "oskar@augustyn.co", + "format": "html", + "theme": "material-blue", + "gravatar": true +} \ No newline at end of file diff --git a/users/doossy.json b/users/doossy.json index 5fc6dc3a..1e13abeb 100644 --- a/users/doossy.json +++ b/users/doossy.json @@ -1,6 +1,6 @@ { - "copyright": "doossy", - "url": "http://www.doossy.com", - "email": "it@doossy.com", - "format": "txt" -} + "copyright": "doossy", + "url": "http://www.doossy.com", + "email": "it@doossy.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/dopppler.json b/users/dopppler.json index 2c2eec91..ec246b79 100644 --- a/users/dopppler.json +++ b/users/dopppler.json @@ -1,5 +1,5 @@ { - "copyright": "dopppler", - "url": "https://github.com/dopppler", - "email": "dopppler@foxmail.com" -} + "copyright": "dopppler", + "url": "https://github.com/dopppler", + "email": "dopppler@foxmail.com" +} \ No newline at end of file diff --git a/users/dorian.json b/users/dorian.json index 55f71d2c..e5a06e04 100644 --- a/users/dorian.json +++ b/users/dorian.json @@ -1,3 +1,3 @@ { - "copyright": "Dorian Mari\u00e9" -} + "copyright": "Dorian Marié" +} \ No newline at end of file diff --git a/users/dotamir.json b/users/dotamir.json index 1200c898..16734231 100644 --- a/users/dotamir.json +++ b/users/dotamir.json @@ -1,6 +1,6 @@ { - "copyright": "Amirhossein Eslami, http://dotam.ir", - "url": "http://dotam.ir", - "email": "eslami.amir76@gmail.com", - "gravatar": true -} + "copyright": "Amirhossein Eslami, http://dotam.ir", + "url": "http://dotam.ir", + "email": "eslami.amir76@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/dougborg.json b/users/dougborg.json index 62425672..54b52a93 100644 --- a/users/dougborg.json +++ b/users/dougborg.json @@ -1,6 +1,6 @@ { - "copyright": "Douglas Borg, http://dougborg.org", - "url": "http://dougborg.org", - "email": "dougborg@dougborg.org", - "gravatar": true -} + "copyright": "Douglas Borg, http://dougborg.org", + "url": "http://dougborg.org", + "email": "dougborg@dougborg.org", + "gravatar": true +} \ No newline at end of file diff --git a/users/dougneiner.json b/users/dougneiner.json index fdc3140b..b2495e7e 100644 --- a/users/dougneiner.json +++ b/users/dougneiner.json @@ -1,4 +1,4 @@ { - "copyright": "Doug Neiner, http://dougneiner.com", - "url": "http://dougneiner.com" -} + "copyright": "Doug Neiner, http://dougneiner.com", + "url": "http://dougneiner.com" +} \ No newline at end of file diff --git a/users/dragonfly.json b/users/dragonfly.json index 0b909a3a..67a7a8d6 100644 --- a/users/dragonfly.json +++ b/users/dragonfly.json @@ -1,3 +1,3 @@ { - "copyright": "ISLE Consultants & the Dragonfly project" -} + "copyright": "ISLE Consultants & the Dragonfly project" +} \ No newline at end of file diff --git a/users/dreams.json b/users/dreams.json index 4cb4c1e2..513a13a3 100644 --- a/users/dreams.json +++ b/users/dreams.json @@ -1,4 +1,4 @@ { - "copyright": "Dreams of .NET, http://www.dreamsof.net", - "url": "http://www.dreamsof.net" -} + "copyright": "Dreams of .NET, http://www.dreamsof.net", + "url": "http://www.dreamsof.net" +} \ No newline at end of file diff --git a/users/dreamysource.json b/users/dreamysource.json index de129c9c..5181d71f 100644 --- a/users/dreamysource.json +++ b/users/dreamysource.json @@ -1,7 +1,7 @@ { - "copyright": "DreamySource", - "url": "http://dreamysource.fr", - "email": "contact@dreamysource.fr", - "gravatar": true, - "theme": "friendly" -} + "copyright": "DreamySource", + "url": "http://dreamysource.fr", + "email": "contact@dreamysource.fr", + "gravatar": true, + "theme": "friendly" +} \ No newline at end of file diff --git a/users/druznek.json b/users/druznek.json index 59b41a9f..17f01cff 100644 --- a/users/druznek.json +++ b/users/druznek.json @@ -1,4 +1,4 @@ { - "copyright": "druzn3k", - "format": "txt" -} + "copyright": "druzn3k", + "format": "txt" +} \ No newline at end of file diff --git a/users/drzax.json b/users/drzax.json index 1da86952..2acbe254 100644 --- a/users/drzax.json +++ b/users/drzax.json @@ -1,6 +1,6 @@ { - "copyright": "Simon Elvery", - "url": "http://elvery.net", - "email": "simon@elvery.net", - "format": "txt" -} + "copyright": "Simon Elvery", + "url": "http://elvery.net", + "email": "simon@elvery.net", + "format": "txt" +} \ No newline at end of file diff --git a/users/ds82.json b/users/ds82.json index abbe3144..85aa1e62 100644 --- a/users/ds82.json +++ b/users/ds82.json @@ -1,6 +1,6 @@ { - "copyright": "Dennis Saenger", - "url": "http://dennis.io", - "email": "mit-license@mail.ds82.de", - "format": "txt" -} + "copyright": "Dennis Saenger", + "url": "http://dennis.io", + "email": "mit-license@mail.ds82.de", + "format": "txt" +} \ No newline at end of file diff --git a/users/dsc.json b/users/dsc.json index a20fa0a0..2ac8ec42 100644 --- a/users/dsc.json +++ b/users/dsc.json @@ -1,3 +1,3 @@ { - "copyright": "David Alan Schoonover" -} + "copyright": "David Alan Schoonover" +} \ No newline at end of file diff --git a/users/dsernst.json b/users/dsernst.json index ed87a83b..3687fac8 100644 --- a/users/dsernst.json +++ b/users/dsernst.json @@ -1,5 +1,5 @@ { - "copyright": "David Ernst", - "url": "http://dsernst.com", - "email": "david@dsernst.com" -} + "copyright": "David Ernst", + "url": "http://dsernst.com", + "email": "david@dsernst.com" +} \ No newline at end of file diff --git a/users/dshaw.json b/users/dshaw.json index fc82d309..919c9371 100644 --- a/users/dshaw.json +++ b/users/dshaw.json @@ -1,4 +1,4 @@ { - "copyright": "Daniel D. Shaw", - "url": "http://dshaw.com" -} + "copyright": "Daniel D. Shaw", + "url": "http://dshaw.com" +} \ No newline at end of file diff --git a/users/ducky.json b/users/ducky.json index 7176a61b..a3bf11b0 100644 --- a/users/ducky.json +++ b/users/ducky.json @@ -1,7 +1,7 @@ { - "copyright": "Ducky", - "url": "https://ducky.ws", - "email": "ducky.vexton@outlook.com", - "gravatar": true, - "theme": "default" -} + "copyright": "Ducky", + "url": "https://ducky.ws", + "email": "ducky.vexton@outlook.com", + "gravatar": true, + "theme": "default" +} \ No newline at end of file diff --git a/users/duncanmcdougall.json b/users/duncanmcdougall.json index 02f6039a..dfd18b4e 100644 --- a/users/duncanmcdougall.json +++ b/users/duncanmcdougall.json @@ -1,6 +1,6 @@ { - "copyright": "Duncan McDougall, http://www.duncanmcdougall.co.uk", - "url": "http://www.duncanmcdougall.co.uk", - "format": "html", - "theme": "double-windsor" -} + "copyright": "Duncan McDougall, http://www.duncanmcdougall.co.uk", + "url": "http://www.duncanmcdougall.co.uk", + "format": "html", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/dusong.json b/users/dusong.json index 13aa54c0..256cdaa4 100644 --- a/users/dusong.json +++ b/users/dusong.json @@ -1,6 +1,6 @@ { - "copyright": "Du Song", - "url": "http://rollingcode.org", - "email": "freewizard@gmail.com", - "format": "txt" -} + "copyright": "Du Song", + "url": "http://rollingcode.org", + "email": "freewizard@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/dva.json b/users/dva.json index cfa63431..7a8f6105 100644 --- a/users/dva.json +++ b/users/dva.json @@ -1,6 +1,6 @@ { - "copyright": "Denis Andryushchenko", - "url": "http://2citizen.com", - "email": "denisva@gmail.com", - "format": "txt" -} + "copyright": "Denis Andryushchenko", + "url": "http://2citizen.com", + "email": "denisva@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/dvni.json b/users/dvni.json index 8d7d6549..d85f6183 100644 --- a/users/dvni.json +++ b/users/dvni.json @@ -1,5 +1,5 @@ { - "copyright": "Daniel P\u00e9rez", - "format": "html", - "theme": "material-indigo" -} + "copyright": "Daniel Pérez", + "format": "html", + "theme": "material-indigo" +} \ No newline at end of file diff --git a/users/dvrein.json b/users/dvrein.json index 483a640c..29624ae5 100644 --- a/users/dvrein.json +++ b/users/dvrein.json @@ -1,7 +1,7 @@ { - "copyright": "dvrein", - "url": "https://github.com/dvrein", - "gravatar": "false", - "format": "html", - "theme": "xtansia" -} + "copyright": "dvrein", + "url": "https://github.com/dvrein", + "gravatar": "false", + "format": "html", + "theme": "xtansia" +} \ No newline at end of file diff --git a/users/dwettstein.json b/users/dwettstein.json index 59ff91e5..d68aca5c 100644 --- a/users/dwettstein.json +++ b/users/dwettstein.json @@ -1,7 +1,7 @@ { - "copyright": "David Wettstein, http://wettste.in", - "url": "http://wettste.in", - "theme": "default", - "format": "txt", - "gravatar": false -} + "copyright": "David Wettstein, http://wettste.in", + "url": "http://wettste.in", + "theme": "default", + "format": "txt", + "gravatar": false +} \ No newline at end of file diff --git a/users/dwradcliffe.json b/users/dwradcliffe.json index aec35f4d..752a8126 100644 --- a/users/dwradcliffe.json +++ b/users/dwradcliffe.json @@ -1,4 +1,4 @@ { - "copyright": "David Radcliffe, http://dwradcliffe.com", - "url": "http://dwradcliffe.com" -} + "copyright": "David Radcliffe, http://dwradcliffe.com", + "url": "http://dwradcliffe.com" +} \ No newline at end of file diff --git a/users/dydx.json b/users/dydx.json index 46635a23..1d0255e2 100644 --- a/users/dydx.json +++ b/users/dydx.json @@ -1,3 +1,3 @@ { - "copyright": "Josh Sandlin" -} + "copyright": "Josh Sandlin" +} \ No newline at end of file diff --git a/users/dylanthomas.json b/users/dylanthomas.json index 1449305a..f11ec814 100644 --- a/users/dylanthomas.json +++ b/users/dylanthomas.json @@ -1,7 +1,7 @@ { - "copyright": "Dylan Thomas, https://github.com/dylan93", - "email": "dylan.thomas@vt.edu", - "url": "https://github.com/dylan93", - "format": "html", - "theme": "material-deep-purple" -} + "copyright": "Dylan Thomas, https://github.com/dylan93", + "email": "dylan.thomas@vt.edu", + "url": "https://github.com/dylan93", + "format": "html", + "theme": "material-deep-purple" +} \ No newline at end of file diff --git a/users/dym.json b/users/dym.json index 5595af2a..f3c0d25f 100644 --- a/users/dym.json +++ b/users/dym.json @@ -1,7 +1,7 @@ { - "copyright": "DYM", - "url": "http://dym.sh", - "email": "re@dym.sh", - "theme": "hipster-gray", - "gravatar": false -} + "copyright": "DYM", + "url": "http://dym.sh", + "email": "re@dym.sh", + "theme": "hipster-gray", + "gravatar": false +} \ No newline at end of file diff --git a/users/earaujoassis.json b/users/earaujoassis.json index 9694d481..746dd6c8 100644 --- a/users/earaujoassis.json +++ b/users/earaujoassis.json @@ -1,5 +1,5 @@ { - "copyright": "Ewerton Carlos Assis", - "url": "http://quatrolabs.com/p/carlos", - "email": "earaujoassis@gmail.com" -} + "copyright": "Ewerton Carlos Assis", + "url": "http://quatrolabs.com/p/carlos", + "email": "earaujoassis@gmail.com" +} \ No newline at end of file diff --git a/users/ebith.json b/users/ebith.json index f279486c..e116a34f 100644 --- a/users/ebith.json +++ b/users/ebith.json @@ -1,3 +1,3 @@ { - "copyright": "ebith" -} + "copyright": "ebith" +} \ No newline at end of file diff --git a/users/echo.json b/users/echo.json index 5dc01a2d..2172dcb8 100644 --- a/users/echo.json +++ b/users/echo.json @@ -1,5 +1,5 @@ { - "copyright": "ECHO Inc, http://www.echonet.org/", - "url": "http://www.echonet.org/", - "theme": "material-green" -} + "copyright": "ECHO Inc, http://www.echonet.org/", + "url": "http://www.echonet.org/", + "theme": "material-green" +} \ No newline at end of file diff --git a/users/eddiemonge.json b/users/eddiemonge.json index 3223c7c4..65a44a06 100644 --- a/users/eddiemonge.json +++ b/users/eddiemonge.json @@ -1,4 +1,4 @@ { - "copyright": "Eddie Monge Jr., http://eddiemonge.com", - "url": "http://eddiemonge.com" -} + "copyright": "Eddie Monge Jr., http://eddiemonge.com", + "url": "http://eddiemonge.com" +} \ No newline at end of file diff --git a/users/eddywashere.json b/users/eddywashere.json index fa23d9bd..ead74fa9 100644 --- a/users/eddywashere.json +++ b/users/eddywashere.json @@ -1,6 +1,6 @@ { - "copyright": "Eddy Hernandez", - "url": "http://eddywashere.com", - "email": "edward.d.hernandez@gmail.com", - "format": "txt" -} + "copyright": "Eddy Hernandez", + "url": "http://eddywashere.com", + "email": "edward.d.hernandez@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/ederribeiro.json b/users/ederribeiro.json index 1523eea3..3f5e8cd1 100644 --- a/users/ederribeiro.json +++ b/users/ederribeiro.json @@ -1,7 +1,7 @@ { - "copyright": "Eder Ribeiro", - "url": "http://ederibeiro.com", - "email": "eder@ederibeiro.com", - "gravatar": true, - "theme": "default-dark" -} + "copyright": "Eder Ribeiro", + "url": "http://ederibeiro.com", + "email": "eder@ederibeiro.com", + "gravatar": true, + "theme": "default-dark" +} \ No newline at end of file diff --git a/users/ederssouza.json b/users/ederssouza.json index 6e0cfc91..5c9001d5 100644 --- a/users/ederssouza.json +++ b/users/ederssouza.json @@ -1,7 +1,7 @@ { - "copyright": "Eder Sampaio", - "url": "https://ederssouza.github.io", - "email": "eder@edersampaio.com.br", - "gravatar": false, - "theme": "default" -} + "copyright": "Eder Sampaio", + "url": "https://ederssouza.github.io", + "email": "eder@edersampaio.com.br", + "gravatar": false, + "theme": "default" +} \ No newline at end of file diff --git a/users/edferras.json b/users/edferras.json index 6fe6bdd2..e8c48719 100644 --- a/users/edferras.json +++ b/users/edferras.json @@ -1,5 +1,5 @@ { - "copyright": "Eduardo Ferras", - "url": "https://github.com/edferras", - "email": "edferras@gmail.com" -} + "copyright": "Eduardo Ferras", + "url": "https://github.com/edferras", + "email": "edferras@gmail.com" +} \ No newline at end of file diff --git a/users/editorconfig.json b/users/editorconfig.json index ebfe6f71..ea0f3cda 100644 --- a/users/editorconfig.json +++ b/users/editorconfig.json @@ -1,5 +1,5 @@ { - "copyright": "EditorConfig Team", - "url": "http://editorconfig.org", - "theme": "default" -} + "copyright": "EditorConfig Team", + "url": "http://editorconfig.org", + "theme": "default" +} \ No newline at end of file diff --git a/users/edmondmajoriii.json b/users/edmondmajoriii.json index 6cdaf2c1..ac6b7a1c 100644 --- a/users/edmondmajoriii.json +++ b/users/edmondmajoriii.json @@ -1,7 +1,7 @@ { - "copyright": "Edmond Major III, http://edmondmajor.com", - "url": "http://edmondmajor.com", - "format": "html", - "email": "spmediallc@gmail.com", - "theme": "default" -} + "copyright": "Edmond Major III, http://edmondmajor.com", + "url": "http://edmondmajor.com", + "format": "html", + "email": "spmediallc@gmail.com", + "theme": "default" +} \ No newline at end of file diff --git a/users/edsurge.json b/users/edsurge.json index a5736c79..05b6a210 100644 --- a/users/edsurge.json +++ b/users/edsurge.json @@ -1,3 +1,3 @@ { - "copyright": "EdSurge, Inc." -} + "copyright": "EdSurge, Inc." +} \ No newline at end of file diff --git a/users/eduan.json b/users/eduan.json index eff0dc3f..49a03085 100644 --- a/users/eduan.json +++ b/users/eduan.json @@ -1,7 +1,7 @@ { - "copyright": "Greduan", - "url": "http://greduan.com", - "email": "eduan@websharks-inc.com", - "format": "html", - "theme": "default" -} + "copyright": "Greduan", + "url": "http://greduan.com", + "email": "eduan@websharks-inc.com", + "format": "html", + "theme": "default" +} \ No newline at end of file diff --git a/users/eduardorabelo.json b/users/eduardorabelo.json index 8f0aadb0..805cc493 100644 --- a/users/eduardorabelo.json +++ b/users/eduardorabelo.json @@ -1,7 +1,7 @@ { - "copyright": "Eduardo Rabelo", - "url": "http://eduardorabelo.com.br", - "email": "oieduardorabelo@gmail.com", - "gravatar": true, - "theme": "default" -} + "copyright": "Eduardo Rabelo", + "url": "http://eduardorabelo.com.br", + "email": "oieduardorabelo@gmail.com", + "gravatar": true, + "theme": "default" +} \ No newline at end of file diff --git a/users/eduardostuart.json b/users/eduardostuart.json index 1607d04a..a4d8ba4f 100644 --- a/users/eduardostuart.json +++ b/users/eduardostuart.json @@ -1,7 +1,7 @@ { - "copyright": "Eduardo Stuart", - "url": "https://s.tuart.me", - "email": "hi@s.tuart.me", - "format": "html", - "theme": "afterdark" -} + "copyright": "Eduardo Stuart", + "url": "https://s.tuart.me", + "email": "hi@s.tuart.me", + "format": "html", + "theme": "afterdark" +} \ No newline at end of file diff --git a/users/eduncan911.json b/users/eduncan911.json index 41cfbb00..edbcf1d5 100644 --- a/users/eduncan911.json +++ b/users/eduncan911.json @@ -1,7 +1,7 @@ { - "copyright": "Eric Duncan, http://eduncan911.com", - "url": "http://eduncan911.com", - "email": "copyright@eduncan911.com", - "gravatar": true, - "theme": "double-windsor" -} + "copyright": "Eric Duncan, http://eduncan911.com", + "url": "http://eduncan911.com", + "email": "copyright@eduncan911.com", + "gravatar": true, + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/edvinas.json b/users/edvinas.json index 55ec6839..eb134f03 100644 --- a/users/edvinas.json +++ b/users/edvinas.json @@ -1,3 +1,3 @@ { - "copyright": "Edvinas Jurevicius" -} + "copyright": "Edvinas Jurevicius" +} \ No newline at end of file diff --git a/users/eek.json b/users/eek.json index e8edd45d..d761889c 100644 --- a/users/eek.json +++ b/users/eek.json @@ -1,6 +1,6 @@ { - "copyright": "Radu-Sebastian Amarie", - "url": "https://eek.ro", - "email": "hello@eek.ro", - "format": "txt" -} + "copyright": "Radu-Sebastian Amarie", + "url": "https://eek.ro", + "email": "hello@eek.ro", + "format": "txt" +} \ No newline at end of file diff --git a/users/eeleater.json b/users/eeleater.json index 5edaf4b6..2171269c 100644 --- a/users/eeleater.json +++ b/users/eeleater.json @@ -1,3 +1,3 @@ { - "copyright": "Nikolas Weger" -} + "copyright": "Nikolas Weger" +} \ No newline at end of file diff --git a/users/ef-labs.json b/users/ef-labs.json index fff09576..85e543f8 100644 --- a/users/ef-labs.json +++ b/users/ef-labs.json @@ -1,6 +1,6 @@ { - "copyright": "EF Learning Labs", - "url": "https://www.ef.com", - "email": "labs.oss@EF.com", - "format": "html" -} + "copyright": "EF Learning Labs", + "url": "https://www.ef.com", + "email": "labs.oss@EF.com", + "format": "html" +} \ No newline at end of file diff --git a/users/efrainc.json b/users/efrainc.json index 1761b27b..d4a2a49e 100644 --- a/users/efrainc.json +++ b/users/efrainc.json @@ -1,7 +1,7 @@ { - "copyright": "Efrain Camacho", - "url": "http://github.com/efrainc", - "email": "efrainc88@gmail.com", - "gravatar": false, - "theme": "solarized" -} + "copyright": "Efrain Camacho", + "url": "http://github.com/efrainc", + "email": "efrainc88@gmail.com", + "gravatar": false, + "theme": "solarized" +} \ No newline at end of file diff --git a/users/efrea2004k.json b/users/efrea2004k.json index 717a160a..6a7ee9f4 100644 --- a/users/efrea2004k.json +++ b/users/efrea2004k.json @@ -1,8 +1,8 @@ { - "copyright": "Efreak2004", - "url": "http://www.efreakbnc.net", - "email": "efreak@users.noreply.github.com", - "format": "html", - "gravatar": true, - "theme": "blackwood" -} + "copyright": "Efreak2004", + "url": "http://www.efreakbnc.net", + "email": "efreak@users.noreply.github.com", + "format": "html", + "gravatar": true, + "theme": "blackwood" +} \ No newline at end of file diff --git a/users/efreak.json b/users/efreak.json index 6d97331b..95358936 100644 --- a/users/efreak.json +++ b/users/efreak.json @@ -1,8 +1,8 @@ { - "copyright": "Efreak", - "url": "http://www.efreakbnc.net", - "email": "efreak@users.noreply.github.com", - "format": "html", - "gravatar": true, - "theme": "blackwood" -} + "copyright": "Efreak", + "url": "http://www.efreakbnc.net", + "email": "efreak@users.noreply.github.com", + "format": "html", + "gravatar": true, + "theme": "blackwood" +} \ No newline at end of file diff --git a/users/efreak2004.json b/users/efreak2004.json index 717a160a..6a7ee9f4 100644 --- a/users/efreak2004.json +++ b/users/efreak2004.json @@ -1,8 +1,8 @@ { - "copyright": "Efreak2004", - "url": "http://www.efreakbnc.net", - "email": "efreak@users.noreply.github.com", - "format": "html", - "gravatar": true, - "theme": "blackwood" -} + "copyright": "Efreak2004", + "url": "http://www.efreakbnc.net", + "email": "efreak@users.noreply.github.com", + "format": "html", + "gravatar": true, + "theme": "blackwood" +} \ No newline at end of file diff --git a/users/efries.json b/users/efries.json index f6c79d07..d7fb13c1 100644 --- a/users/efries.json +++ b/users/efries.json @@ -1,3 +1,3 @@ { - "copyright": "Ernesto Fries Urioste" -} + "copyright": "Ernesto Fries Urioste" +} \ No newline at end of file diff --git a/users/egeriis.json b/users/egeriis.json index fbee5a3e..9b64a0f6 100644 --- a/users/egeriis.json +++ b/users/egeriis.json @@ -1,6 +1,6 @@ { - "copyright": "Ronni Egeriis Persson", - "url": "http://egeriis.me", - "email": "ronni@egeriis.me", - "gravatar": "true" -} + "copyright": "Ronni Egeriis Persson", + "url": "http://egeriis.me", + "email": "ronni@egeriis.me", + "gravatar": "true" +} \ No newline at end of file diff --git a/users/eggforsale.json b/users/eggforsale.json index a4b3f390..e8b6eff6 100644 --- a/users/eggforsale.json +++ b/users/eggforsale.json @@ -1,6 +1,6 @@ { - "copyright": "EggForSale Platform", - "url": "http://www.eggforsale.com", - "email": "support@eggforsale.com", - "format": "html" -} + "copyright": "EggForSale Platform", + "url": "http://www.eggforsale.com", + "email": "support@eggforsale.com", + "format": "html" +} \ No newline at end of file diff --git a/users/egoist.json b/users/egoist.json index 92ed667e..e9e45070 100644 --- a/users/egoist.json +++ b/users/egoist.json @@ -1,8 +1,8 @@ { - "gravatar": true, - "copyright": "EGOIST", - "theme": "material-pink", - "url": "https://egoistian.com", - "email": "0x142857@gmail.com", - "format": "txt" -} + "gravatar": true, + "copyright": "EGOIST", + "theme": "material-pink", + "url": "https://egoistian.com", + "email": "0x142857@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/ehealthafrica.json b/users/ehealthafrica.json index f5f83502..c13a2adc 100644 --- a/users/ehealthafrica.json +++ b/users/ehealthafrica.json @@ -1,5 +1,5 @@ { - "copyright": "eHealth Africa", - "url": "http://ehealthafrica.org", - "email": "oss@ehealthafrica.org" -} + "copyright": "eHealth Africa", + "url": "http://ehealthafrica.org", + "email": "oss@ehealthafrica.org" +} \ No newline at end of file diff --git a/users/ehecatl.json b/users/ehecatl.json index a70b279e..4d262cf4 100644 --- a/users/ehecatl.json +++ b/users/ehecatl.json @@ -1,3 +1,3 @@ { - "copyright": "Servicios de Software Ehecatl SA de CV" -} + "copyright": "Servicios de Software Ehecatl SA de CV" +} \ No newline at end of file diff --git a/users/ehsan.json b/users/ehsan.json index 32370c82..77f4a358 100644 --- a/users/ehsan.json +++ b/users/ehsan.json @@ -1,7 +1,7 @@ { - "copyright": "Ehsan Aghaei, http://ehsanaghaei.ir", - "url": "http://ehsanaghaei.ir", - "email": "ehsan.aghaeii@gmail.com", - "format": "txt", - "theme": "opensans" -} + "copyright": "Ehsan Aghaei, http://ehsanaghaei.ir", + "url": "http://ehsanaghaei.ir", + "email": "ehsan.aghaeii@gmail.com", + "format": "txt", + "theme": "opensans" +} \ No newline at end of file diff --git a/users/eib.json b/users/eib.json index 6bfa8898..539aaca1 100644 --- a/users/eib.json +++ b/users/eib.json @@ -1,4 +1,4 @@ { - "copyright": "Ethan Blackwelder, http://eblackwelder.com", - "url": "http://eblackwelder.com" -} + "copyright": "Ethan Blackwelder, http://eblackwelder.com", + "url": "http://eblackwelder.com" +} \ No newline at end of file diff --git a/users/einaru.json b/users/einaru.json index 0922d99e..a2e250fe 100644 --- a/users/einaru.json +++ b/users/einaru.json @@ -1,3 +1,3 @@ { - "copyright": "Einar Uvsl\u00f8kk" -} + "copyright": "Einar Uvsløkk" +} \ No newline at end of file diff --git a/users/ekamil.json b/users/ekamil.json index 9023b6c3..858925f6 100644 --- a/users/ekamil.json +++ b/users/ekamil.json @@ -1,3 +1,3 @@ { - "copyright": "Kamil Essekkat" -} + "copyright": "Kamil Essekkat" +} \ No newline at end of file diff --git a/users/ekin.json b/users/ekin.json index 896559d9..12960cfe 100644 --- a/users/ekin.json +++ b/users/ekin.json @@ -1,3 +1,3 @@ { - "copyright": "Ekin Koc" -} + "copyright": "Ekin Koc" +} \ No newline at end of file diff --git a/users/elegwance.json b/users/elegwance.json index b92ba85e..6d3e2744 100644 --- a/users/elegwance.json +++ b/users/elegwance.json @@ -1,3 +1,3 @@ { - "copyright": "Jae-Kwang Lee, http://elegwance.com" -} + "copyright": "Jae-Kwang Lee, http://elegwance.com" +} \ No newline at end of file diff --git a/users/elektronaut.json b/users/elektronaut.json index 3fdeb8aa..d7737792 100644 --- a/users/elektronaut.json +++ b/users/elektronaut.json @@ -1,4 +1,4 @@ { - "copyright": "Inge J\u00f8rgensen", - "url": "http://elektronaut.no" -} + "copyright": "Inge Jørgensen", + "url": "http://elektronaut.no" +} \ No newline at end of file diff --git a/users/eleven.json b/users/eleven.json index 80815e93..0b174739 100644 --- a/users/eleven.json +++ b/users/eleven.json @@ -1,5 +1,5 @@ { - "copyright": "Eleven Inc.", - "url": "https://github.com/eleven", - "theme": "double-windsor" -} + "copyright": "Eleven Inc.", + "url": "https://github.com/eleven", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/elgook.json b/users/elgook.json index 02a1dfdf..fdd88a27 100644 --- a/users/elgook.json +++ b/users/elgook.json @@ -1,3 +1,3 @@ { - "copyright": "elgook" -} + "copyright": "elgook" +} \ No newline at end of file diff --git a/users/elifiner.json b/users/elifiner.json index e9f191c8..01bea0f6 100644 --- a/users/elifiner.json +++ b/users/elifiner.json @@ -1,6 +1,6 @@ { - "copyright": "Eli Finer", - "url": "http://elifiner.com", - "email": "eli.finer@gmail.com", - "format": "txt" -} + "copyright": "Eli Finer", + "url": "http://elifiner.com", + "email": "eli.finer@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/elim.json b/users/elim.json index 17274a99..7bf3e850 100644 --- a/users/elim.json +++ b/users/elim.json @@ -1,4 +1,4 @@ { - "copyright": "Takeru Naito", - "url": "https://github.com/elim" -} + "copyright": "Takeru Naito", + "url": "https://github.com/elim" +} \ No newline at end of file diff --git a/users/elisaado.json b/users/elisaado.json index 4999b877..6f68946c 100644 --- a/users/elisaado.json +++ b/users/elisaado.json @@ -1,6 +1,6 @@ { - "copyright": "Eli Saado", - "url": "https://elisaado.com", - "email": "eli5saado@gmail.com", - "theme": "material-teal" -} + "copyright": "Eli Saado", + "url": "https://elisaado.com", + "email": "eli5saado@gmail.com", + "theme": "material-teal" +} \ No newline at end of file diff --git a/users/ellekasai.json b/users/ellekasai.json index 4caddf11..da6f28e5 100644 --- a/users/ellekasai.json +++ b/users/ellekasai.json @@ -1,3 +1,3 @@ { - "copyright": "Elle Kasai" -} + "copyright": "Elle Kasai" +} \ No newline at end of file diff --git a/users/elliotec.json b/users/elliotec.json index 447a868f..9f20c04d 100644 --- a/users/elliotec.json +++ b/users/elliotec.json @@ -1,3 +1,3 @@ { - "copyright": "Michael Elliott" -} + "copyright": "Michael Elliott" +} \ No newline at end of file diff --git a/users/ellis.json b/users/ellis.json index f88128bc..120904af 100644 --- a/users/ellis.json +++ b/users/ellis.json @@ -1,3 +1,3 @@ { - "copyright": "Ellis Sharp" -} + "copyright": "Ellis Sharp" +} \ No newline at end of file diff --git a/users/elmer.json b/users/elmer.json index 381e7791..7a14df44 100644 --- a/users/elmer.json +++ b/users/elmer.json @@ -1,7 +1,7 @@ { - "url": "http://variable-scope.com", - "theme": "friendly", - "gravatar": true, - "email": "elmer.delooff@gmail.com", - "copyright": "Elmer de Looff" -} + "url": "http://variable-scope.com", + "theme": "friendly", + "gravatar": true, + "email": "elmer.delooff@gmail.com", + "copyright": "Elmer de Looff" +} \ No newline at end of file diff --git a/users/elsknerd.json b/users/elsknerd.json index fde52679..3712458b 100644 --- a/users/elsknerd.json +++ b/users/elsknerd.json @@ -1,6 +1,6 @@ { - "copyright": "Dennis Heinrich, https://elsknerd.de", - "url": "https://elsknerd.de", - "theme": "dusk", - "gravatar": true -} + "copyright": "Dennis Heinrich, https://elsknerd.de", + "url": "https://elsknerd.de", + "theme": "dusk", + "gravatar": true +} \ No newline at end of file diff --git a/users/elsmore.json b/users/elsmore.json index bdc33365..17575b74 100644 --- a/users/elsmore.json +++ b/users/elsmore.json @@ -1,6 +1,6 @@ { - "copyright": "Mike Elsmore, http://elsmore.me", - "url": "http://elsmore.me", - "theme": "hipster-grey", - "email": "mike@elsmore.me" -} + "copyright": "Mike Elsmore, http://elsmore.me", + "url": "http://elsmore.me", + "theme": "hipster-grey", + "email": "mike@elsmore.me" +} \ No newline at end of file diff --git a/users/emabrey.json b/users/emabrey.json index bcb9b112..280531d4 100644 --- a/users/emabrey.json +++ b/users/emabrey.json @@ -1,5 +1,5 @@ { - "copyright": "Emily Mabrey", - "email": "emilymabrey93@gmail.com", - "format": "txt" -} + "copyright": "Emily Mabrey", + "email": "emilymabrey93@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/emanuelpessoa.json b/users/emanuelpessoa.json index bf46b2d2..753f9c72 100644 --- a/users/emanuelpessoa.json +++ b/users/emanuelpessoa.json @@ -1,5 +1,5 @@ { - "copyright": "Emanuel Pessoa", - "url": "http://emanuelpessoa.com.br", - "email": "emanuelpessoaa@gmail.com" -} + "copyright": "Emanuel Pessoa", + "url": "http://emanuelpessoa.com.br", + "email": "emanuelpessoaa@gmail.com" +} \ No newline at end of file diff --git a/users/emberads.json b/users/emberads.json index 9d691ab9..1e5ba6bd 100644 --- a/users/emberads.json +++ b/users/emberads.json @@ -1,4 +1,4 @@ { - "copyright": "emberads ltd", - "url": "http://emberads.com/" -} + "copyright": "emberads ltd", + "url": "http://emberads.com/" +} \ No newline at end of file diff --git a/users/emd.json b/users/emd.json index 44443cb1..1e5c3d21 100644 --- a/users/emd.json +++ b/users/emd.json @@ -1,5 +1,5 @@ { - "copyright": "Erin Dalzell, http://thedalzells.org", - "url": "http://thedalzells.org", - "email": "erin@thedalzells.org" -} + "copyright": "Erin Dalzell, http://thedalzells.org", + "url": "http://thedalzells.org", + "email": "erin@thedalzells.org" +} \ No newline at end of file diff --git a/users/emir.json b/users/emir.json index 76655266..b8cc970f 100644 --- a/users/emir.json +++ b/users/emir.json @@ -1,7 +1,7 @@ { - "copyright": "Emir Kar\u015f\u0131yakal\u0131, http://emirkarsiyakali.com", - "url": "http://emirkarsiyakali.com", - "email": "emirkarsiyakali@gmail.com", - "gravatar": true, - "theme": "default" -} + "copyright": "Emir Karşıyakalı, http://emirkarsiyakali.com", + "url": "http://emirkarsiyakali.com", + "email": "emirkarsiyakali@gmail.com", + "gravatar": true, + "theme": "default" +} \ No newline at end of file diff --git a/users/emiw.json b/users/emiw.json index a39b588d..807e5a94 100644 --- a/users/emiw.json +++ b/users/emiw.json @@ -1,6 +1,6 @@ { - "copyright": "EMIW, LLC", - "url": "http://emiw.xyz", - "email": "emiw@emiw.xyz", - "gravatar": true -} + "copyright": "EMIW, LLC", + "url": "http://emiw.xyz", + "email": "emiw@emiw.xyz", + "gravatar": true +} \ No newline at end of file diff --git a/users/emma.json b/users/emma.json index a72fdb0c..6cc957ab 100644 --- a/users/emma.json +++ b/users/emma.json @@ -1,3 +1,3 @@ { - "copyright": "Emma Hardman" -} + "copyright": "Emma Hardman" +} \ No newline at end of file diff --git a/users/emmanuel.json b/users/emmanuel.json index 45033ab6..909229ee 100644 --- a/users/emmanuel.json +++ b/users/emmanuel.json @@ -1,3 +1,3 @@ { - "copyright": "Emmanuel Gomez" -} + "copyright": "Emmanuel Gomez" +} \ No newline at end of file diff --git a/users/endel-test.json b/users/endel-test.json index 62acf996..4aa0373e 100644 --- a/users/endel-test.json +++ b/users/endel-test.json @@ -1,7 +1,7 @@ { - "copyright": "Endel Dreyer", - "url": "http://endel.me", - "email": "endel.dreyer@gmail.com", - "theme": "flesch", - "gravatar": true -} + "copyright": "Endel Dreyer", + "url": "http://endel.me", + "email": "endel.dreyer@gmail.com", + "theme": "flesch", + "gravatar": true +} \ No newline at end of file diff --git a/users/endel.json b/users/endel.json index 1a2dae78..d6582c80 100644 --- a/users/endel.json +++ b/users/endel.json @@ -1,6 +1,6 @@ { - "copyright": "Endel Dreyer", - "url": "http://endel.me", - "email": "endel.dreyer@gmail.com", - "theme": "flesch" -} + "copyright": "Endel Dreyer", + "url": "http://endel.me", + "email": "endel.dreyer@gmail.com", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/ender.json b/users/ender.json index 23f14c70..b2485a99 100644 --- a/users/ender.json +++ b/users/ender.json @@ -1,6 +1,6 @@ { - "copyright": "Andrew Bowers, http://agamecoder.com", - "url": "http://agamecoder.com", - "email": "andrew.bowers@agamecoder.com", - "theme": "afterdark" -} + "copyright": "Andrew Bowers, http://agamecoder.com", + "url": "http://agamecoder.com", + "email": "andrew.bowers@agamecoder.com", + "theme": "afterdark" +} \ No newline at end of file diff --git a/users/endorama.json b/users/endorama.json index dff1ea55..7e8c2e83 100644 --- a/users/endorama.json +++ b/users/endorama.json @@ -1,5 +1,5 @@ { - "copyright": "Edoardo Tenani", - "url": "http://about.me/edoardo.tenani", - "gravatar": true -} + "copyright": "Edoardo Tenani", + "url": "http://about.me/edoardo.tenani", + "gravatar": true +} \ No newline at end of file diff --git a/users/enfos.json b/users/enfos.json index 5c0135d5..6851a1e4 100644 --- a/users/enfos.json +++ b/users/enfos.json @@ -1,8 +1,8 @@ { - "copyright": "ENFOS, Inc.", - "url": "http://enfos.com", - "format": "html", - "email": "shadi@enfos.com", - "gravatar": true, - "theme": "magic-mint" -} + "copyright": "ENFOS, Inc.", + "url": "http://enfos.com", + "format": "html", + "email": "shadi@enfos.com", + "gravatar": true, + "theme": "magic-mint" +} \ No newline at end of file diff --git a/users/englishtown.json b/users/englishtown.json index 492a80e2..a409fc20 100644 --- a/users/englishtown.json +++ b/users/englishtown.json @@ -1,6 +1,6 @@ { - "copyright": "Englishtown", - "url": "http://englishtown.com", - "email": "opensource@englishtown.com", - "format": "html" -} + "copyright": "Englishtown", + "url": "http://englishtown.com", + "email": "opensource@englishtown.com", + "format": "html" +} \ No newline at end of file diff --git a/users/enigmaticflare.json b/users/enigmaticflare.json index 8afe7c42..fe0f86a1 100644 --- a/users/enigmaticflare.json +++ b/users/enigmaticflare.json @@ -1,3 +1,3 @@ { - "copyright": "Enigmatic Flare" -} + "copyright": "Enigmatic Flare" +} \ No newline at end of file diff --git a/users/enov.json b/users/enov.json index 2c0481c9..5140195e 100644 --- a/users/enov.json +++ b/users/enov.json @@ -1,3 +1,3 @@ { - "copyright": "Samuel Demirdjian" -} + "copyright": "Samuel Demirdjian" +} \ No newline at end of file diff --git a/users/entist.json b/users/entist.json index dac4f968..11c26feb 100644 --- a/users/entist.json +++ b/users/entist.json @@ -1,3 +1,3 @@ { - "copyright": "Aiden J Lee, http://entist.net/" -} + "copyright": "Aiden J Lee, http://entist.net/" +} \ No newline at end of file diff --git a/users/eoc-lover.json b/users/eoc-lover.json index 1de1cba3..0c6abcb6 100644 --- a/users/eoc-lover.json +++ b/users/eoc-lover.json @@ -1,3 +1,3 @@ { - "copyright": "EOW Lover" -} + "copyright": "EOW Lover" +} \ No newline at end of file diff --git a/users/eoin.json b/users/eoin.json index 870ca556..aec64651 100644 --- a/users/eoin.json +++ b/users/eoin.json @@ -1,6 +1,6 @@ { - "copyright": "Eoin O'Brien, https://eoinobrien.me", - "url": "https://eoinobrien.me", - "email": "eoinobrien910@gmail.com", - "gravatar": true -} + "copyright": "Eoin O'Brien, https://eoinobrien.me", + "url": "https://eoinobrien.me", + "email": "eoinobrien910@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/erbesharat.json b/users/erbesharat.json index 5085f330..a6a14825 100644 --- a/users/erbesharat.json +++ b/users/erbesharat.json @@ -1,8 +1,8 @@ { - "copyright": "Erfan Besharat", - "url": "http://erfanbs.net", - "email": "erbesharat@gmail.com", - "format": "txt", - "gravatar": true, - "theme": "willpower" -} + "copyright": "Erfan Besharat", + "url": "http://erfanbs.net", + "email": "erbesharat@gmail.com", + "format": "txt", + "gravatar": true, + "theme": "willpower" +} \ No newline at end of file diff --git a/users/erbridge.json b/users/erbridge.json index a33ce89d..f43ffab1 100644 --- a/users/erbridge.json +++ b/users/erbridge.json @@ -1,3 +1,3 @@ { - "copyright": "Felix Laurie von Massenbach" -} + "copyright": "Felix Laurie von Massenbach" +} \ No newline at end of file diff --git a/users/ere.json b/users/ere.json index 0d30bf0c..cb0844dc 100644 --- a/users/ere.json +++ b/users/ere.json @@ -1,6 +1,6 @@ { - "copyright": "csjcndkscc", - "url": "http://rarp.com", - "email": "me@mysite.com", - "format": "txt" -} + "copyright": "csjcndkscc", + "url": "http://rarp.com", + "email": "me@mysite.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/erfan.json b/users/erfan.json index 18adf512..cc457eb8 100644 --- a/users/erfan.json +++ b/users/erfan.json @@ -1,8 +1,8 @@ { - "copyright": "Erfan Besharat", - "url": "http://erfanbs.net", - "email": "erbesharat@gmail.com", - "format": "html", - "gravatar": true, - "theme": "willpower" -} + "copyright": "Erfan Besharat", + "url": "http://erfanbs.net", + "email": "erbesharat@gmail.com", + "format": "html", + "gravatar": true, + "theme": "willpower" +} \ No newline at end of file diff --git a/users/ericcristhiano.json b/users/ericcristhiano.json index 50eecf61..c49e30db 100644 --- a/users/ericcristhiano.json +++ b/users/ericcristhiano.json @@ -1,4 +1,4 @@ { - "copyright": "Eric Cristhiano", - "email": "ericcristhiano@gmail.com" -} + "copyright": "Eric Cristhiano", + "email": "ericcristhiano@gmail.com" +} \ No newline at end of file diff --git a/users/ericdouglas.json b/users/ericdouglas.json index 9ade5e47..0cd5a351 100644 --- a/users/ericdouglas.json +++ b/users/ericdouglas.json @@ -1,5 +1,5 @@ { - "copyright": "Eric Douglas", - "url": "https://github.com/ericdouglas", - "email": "eric.douglas.mail@gmail.com" -} + "copyright": "Eric Douglas", + "url": "https://github.com/ericdouglas", + "email": "eric.douglas.mail@gmail.com" +} \ No newline at end of file diff --git a/users/eriklindebratt.json b/users/eriklindebratt.json index 882a5882..ed639273 100644 --- a/users/eriklindebratt.json +++ b/users/eriklindebratt.json @@ -1,5 +1,5 @@ { - "copyright": "Erik Lindebratt, https://twitter.com/eriklindebratt", - "email": "erik.lindebratt@gmail.com", - "gravatar": true -} + "copyright": "Erik Lindebratt, https://twitter.com/eriklindebratt", + "email": "erik.lindebratt@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/erikvorhes.json b/users/erikvorhes.json index dc34a3a6..7528da17 100644 --- a/users/erikvorhes.json +++ b/users/erikvorhes.json @@ -1,6 +1,6 @@ { - "copyright": "Erik Vorhes", - "url": "http://erikanderica.org/erik", - "email": "erik@erikanderica.org", - "format": "txt" -} + "copyright": "Erik Vorhes", + "url": "http://erikanderica.org/erik", + "email": "erik@erikanderica.org", + "format": "txt" +} \ No newline at end of file diff --git a/users/erkobridee.json b/users/erkobridee.json index c659c54d..a537b6dc 100644 --- a/users/erkobridee.json +++ b/users/erkobridee.json @@ -1,5 +1,5 @@ { - "copyright": "Erko Bridee de Almeida Cabrera, http://erkobridee.com", - "url": "http://erkobridee.com", - "email": "erko.bridee@gmail.com" -} + "copyright": "Erko Bridee de Almeida Cabrera, http://erkobridee.com", + "url": "http://erkobridee.com", + "email": "erko.bridee@gmail.com" +} \ No newline at end of file diff --git a/users/errordeveloper.json b/users/errordeveloper.json index 873fe0c8..4735798a 100644 --- a/users/errordeveloper.json +++ b/users/errordeveloper.json @@ -1,6 +1,6 @@ { - "copyright": "Ilya Dmitrichenko", - "url": "https://git.io/ilya.dmitrichenko", - "email": "errordeveloper@gmail.com", - "theme": "flesch" -} + "copyright": "Ilya Dmitrichenko", + "url": "https://git.io/ilya.dmitrichenko", + "email": "errordeveloper@gmail.com", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/estupendo.json b/users/estupendo.json index 522abced..12f6be9c 100644 --- a/users/estupendo.json +++ b/users/estupendo.json @@ -1,6 +1,6 @@ { - "copyright": "Jonas Orrico", - "url": "http://estupendo.net", - "email": "jonas@estupendo.net", - "format": "txt" -} + "copyright": "Jonas Orrico", + "url": "http://estupendo.net", + "email": "jonas@estupendo.net", + "format": "txt" +} \ No newline at end of file diff --git a/users/ether.json b/users/ether.json index 89249b22..bf87197c 100644 --- a/users/ether.json +++ b/users/ether.json @@ -1,5 +1,5 @@ { - "copyright": "Ether Creative", - "url": "http://ethercreative.co.uk", - "email": "hello@ethercreative.co.uk" -} + "copyright": "Ether Creative", + "url": "http://ethercreative.co.uk", + "email": "hello@ethercreative.co.uk" +} \ No newline at end of file diff --git a/users/ethercycle.json b/users/ethercycle.json index 7a721114..88edfc9f 100644 --- a/users/ethercycle.json +++ b/users/ethercycle.json @@ -1,3 +1,3 @@ { - "copyright": "Ethercycle" -} + "copyright": "Ethercycle" +} \ No newline at end of file diff --git a/users/evan.json b/users/evan.json index 680d77fd..c628b484 100644 --- a/users/evan.json +++ b/users/evan.json @@ -1,3 +1,3 @@ { - "copyright": "Thomas Evan Lecklider" -} + "copyright": "Thomas Evan Lecklider" +} \ No newline at end of file diff --git a/users/evansolomon.json b/users/evansolomon.json index 887a137e..0d223937 100644 --- a/users/evansolomon.json +++ b/users/evansolomon.json @@ -1,3 +1,3 @@ { - "copyright": "Evan Solomon" -} + "copyright": "Evan Solomon" +} \ No newline at end of file diff --git a/users/evenchange4.json b/users/evenchange4.json index dac19dc7..d33c9ed4 100644 --- a/users/evenchange4.json +++ b/users/evenchange4.json @@ -1,7 +1,7 @@ { - "copyright": "Michael Hsu, https://michaelhsu.tw", - "url": "https://michaelhsu.tw", - "email": "evenchange4@gmail.com", - "format": "txt", - "theme": "plaintext" -} + "copyright": "Michael Hsu, https://michaelhsu.tw", + "url": "https://michaelhsu.tw", + "email": "evenchange4@gmail.com", + "format": "txt", + "theme": "plaintext" +} \ No newline at end of file diff --git a/users/evenellie.json b/users/evenellie.json index 7167b65e..f310cb67 100644 --- a/users/evenellie.json +++ b/users/evenellie.json @@ -1,5 +1,5 @@ { - "copyright": "Ellen Musick", - "email": "ellen.musick@gmail.com", - "format": "txt" -} + "copyright": "Ellen Musick", + "email": "ellen.musick@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/evertton.json b/users/evertton.json index a8208e3e..967aedfb 100644 --- a/users/evertton.json +++ b/users/evertton.json @@ -1,7 +1,7 @@ { - "copyright": "Evertton de Lima", - "email": "e.everttonlima@gmail.com", - "format": "html", - "gravatar": true, - "theme": "friendly" -} + "copyright": "Evertton de Lima", + "email": "e.everttonlima@gmail.com", + "format": "html", + "gravatar": true, + "theme": "friendly" +} \ No newline at end of file diff --git a/users/ew.json b/users/ew.json index e4704e24..d5ae5c82 100644 --- a/users/ew.json +++ b/users/ew.json @@ -1,5 +1,5 @@ { - "copyright": "Electric Wizardry, LLC", - "url": "http://electric-wizardry.com", - "theme": "silver-style" -} + "copyright": "Electric Wizardry, LLC", + "url": "http://electric-wizardry.com", + "theme": "silver-style" +} \ No newline at end of file diff --git a/users/ewafford.json b/users/ewafford.json index f5ae2d8e..e8d4e349 100644 --- a/users/ewafford.json +++ b/users/ewafford.json @@ -1,3 +1,3 @@ { - "copyright": "Eric Wafford" -} + "copyright": "Eric Wafford" +} \ No newline at end of file diff --git a/users/ewerton-araujo.json b/users/ewerton-araujo.json index 74d0d7d6..cce4ccd4 100644 --- a/users/ewerton-araujo.json +++ b/users/ewerton-araujo.json @@ -1,5 +1,5 @@ { - "copyright": "Ewerton Assis", - "url": "http://ewerton-araujo.com", - "email": "hey@ewerton-araujo.com" -} + "copyright": "Ewerton Assis", + "url": "http://ewerton-araujo.com", + "email": "hey@ewerton-araujo.com" +} \ No newline at end of file diff --git a/users/example.json b/users/example.json index 7aa1cefd..7a916ba8 100644 --- a/users/example.json +++ b/users/example.json @@ -1,5 +1,5 @@ { - "//1": "Security holding user", - "//2": "This user is being locked to allow for an example.", - "locked": true -} + "//1": "Security holding user", + "//2": "This user is being locked to allow for an example.", + "locked": true +} \ No newline at end of file diff --git a/users/expbytes.json b/users/expbytes.json index 5ecf2e8c..89627d8e 100644 --- a/users/expbytes.json +++ b/users/expbytes.json @@ -1,3 +1,3 @@ { - "copyright": "ExpBytes Software" -} + "copyright": "ExpBytes Software" +} \ No newline at end of file diff --git a/users/eyecatchup.json b/users/eyecatchup.json index 40c9d4d3..82f2fc7c 100644 --- a/users/eyecatchup.json +++ b/users/eyecatchup.json @@ -1,6 +1,6 @@ { - "copyright": "Stephan Schmitz, https://github.com/eyecatchup", - "url": "https://github.com/eyecatchup", - "email": "eyecatchup@gmail.com", - "theme": "default" -} + "copyright": "Stephan Schmitz, https://github.com/eyecatchup", + "url": "https://github.com/eyecatchup", + "email": "eyecatchup@gmail.com", + "theme": "default" +} \ No newline at end of file diff --git a/users/f.json b/users/f.json index 91630482..d5b67222 100644 --- a/users/f.json +++ b/users/f.json @@ -1,5 +1,5 @@ { - "copyright": "Fatih Kadir Akin", - "url": "http://fatihak.in", - "email": "fka@fatihak.in" -} + "copyright": "Fatih Kadir Akin", + "url": "http://fatihak.in", + "email": "fka@fatihak.in" +} \ No newline at end of file diff --git a/users/fabdouglas.json b/users/fabdouglas.json index 0e078030..3edc2686 100644 --- a/users/fabdouglas.json +++ b/users/fabdouglas.json @@ -1,6 +1,6 @@ { - "copyright": "Fabrice Daugan", - "email": "fabrice.daugan@gmail.com", - "theme": "material-brown", - "gravatar": true -} + "copyright": "Fabrice Daugan", + "email": "fabrice.daugan@gmail.com", + "theme": "material-brown", + "gravatar": true +} \ No newline at end of file diff --git a/users/fabian.json b/users/fabian.json index df40ab66..124251cc 100644 --- a/users/fabian.json +++ b/users/fabian.json @@ -1,6 +1,6 @@ { - "copyright": "Fabian Beiner", - "url": "https://fabianbeiner.de", - "email": "fb@fabianbeiner.de", - "format": "txt" -} + "copyright": "Fabian Beiner", + "url": "https://fabianbeiner.de", + "email": "fb@fabianbeiner.de", + "format": "txt" +} \ No newline at end of file diff --git a/users/fabianbeiner.json b/users/fabianbeiner.json index df40ab66..124251cc 100644 --- a/users/fabianbeiner.json +++ b/users/fabianbeiner.json @@ -1,6 +1,6 @@ { - "copyright": "Fabian Beiner", - "url": "https://fabianbeiner.de", - "email": "fb@fabianbeiner.de", - "format": "txt" -} + "copyright": "Fabian Beiner", + "url": "https://fabianbeiner.de", + "email": "fb@fabianbeiner.de", + "format": "txt" +} \ No newline at end of file diff --git a/users/fabianmoronzirfas.json b/users/fabianmoronzirfas.json index 47d29a50..a72a9465 100644 --- a/users/fabianmoronzirfas.json +++ b/users/fabianmoronzirfas.json @@ -1,8 +1,8 @@ { - "copyright": "Fabian Mor\u00f3n Zirfas", - "format": "txt", - "url": "https://fabianmoronzirfas.me", - "email": "fabian.moron.zirfas@gmail.com", - "gravatar": true, - "theme": "default" -} + "copyright": "Fabian Morón Zirfas", + "format": "txt", + "url": "https://fabianmoronzirfas.me", + "email": "fabian.moron.zirfas@gmail.com", + "gravatar": true, + "theme": "default" +} \ No newline at end of file diff --git a/users/fabianperez.json b/users/fabianperez.json index f725394f..9208113e 100644 --- a/users/fabianperez.json +++ b/users/fabianperez.json @@ -1,3 +1,3 @@ { - "copyright": "Fabian Perez" -} + "copyright": "Fabian Perez" +} \ No newline at end of file diff --git a/users/fabiantheblind.json b/users/fabiantheblind.json index 3b85624e..7b61ef79 100644 --- a/users/fabiantheblind.json +++ b/users/fabiantheblind.json @@ -1,4 +1,4 @@ { - "copyright": "Fabian Mor\u00f3n Zirfas", - "format": "txt" -} + "copyright": "Fabian Morón Zirfas", + "format": "txt" +} \ No newline at end of file diff --git a/users/fabien.json b/users/fabien.json index c6abeac7..2981ab9d 100644 --- a/users/fabien.json +++ b/users/fabien.json @@ -1,3 +1,3 @@ { - "copyright": "Fabien OCarroll" -} + "copyright": "Fabien OCarroll" +} \ No newline at end of file diff --git a/users/fabioluciano.json b/users/fabioluciano.json index c66604dc..6f7a777a 100644 --- a/users/fabioluciano.json +++ b/users/fabioluciano.json @@ -1,8 +1,8 @@ { - "copyright": "F\u00c3\u00a1bio Luciano", - "url": "http://naoimporta.com", - "email": "fabio@naoimporta.com", - "format": "html", - "gravatar": "true", - "theme": "flesch" -} + "copyright": "Fábio Luciano", + "url": "http://naoimporta.com", + "email": "fabio@naoimporta.com", + "format": "html", + "gravatar": "true", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/fabryz.json b/users/fabryz.json index ccb07de2..b1e0e025 100644 --- a/users/fabryz.json +++ b/users/fabryz.json @@ -1,3 +1,3 @@ { - "copyright": "Fabrizio Codello" -} + "copyright": "Fabrizio Codello" +} \ No newline at end of file diff --git a/users/facundofarias.json b/users/facundofarias.json index ec9d3fa3..c08cd4e5 100644 --- a/users/facundofarias.json +++ b/users/facundofarias.json @@ -1,6 +1,6 @@ { - "copyright": "Facundo Farias", - "url": "http://facundofarias.github.io/", - "email": "facundo.farias@gmail.com", - "gravatar": true -} + "copyright": "Facundo Farias", + "url": "http://facundofarias.github.io/", + "email": "facundo.farias@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/faeliaso.json b/users/faeliaso.json index dd8c7ac5..bd50625a 100644 --- a/users/faeliaso.json +++ b/users/faeliaso.json @@ -1,3 +1,3 @@ { - "copyright": "Elias de Oliveira" -} + "copyright": "Elias de Oliveira" +} \ No newline at end of file diff --git a/users/fancyguy.json b/users/fancyguy.json index f574ce65..19e02923 100644 --- a/users/fancyguy.json +++ b/users/fancyguy.json @@ -1,3 +1,3 @@ { - "copyright": "FancyGuy Technologies" -} + "copyright": "FancyGuy Technologies" +} \ No newline at end of file diff --git a/users/fanestra.json b/users/fanestra.json index 58bb8a81..49028b20 100644 --- a/users/fanestra.json +++ b/users/fanestra.json @@ -1,5 +1,5 @@ { - "copyright": "Fanetra", - "url": "http://fanestra.net", - "email": "ops@fanestra.net" -} + "copyright": "Fanetra", + "url": "http://fanestra.net", + "email": "ops@fanestra.net" +} \ No newline at end of file diff --git a/users/fannheyward.json b/users/fannheyward.json index 163c1346..5eca9827 100644 --- a/users/fannheyward.json +++ b/users/fannheyward.json @@ -1,7 +1,7 @@ { - "copyright": "Heyward Fann", - "url": "http://fann.im", - "email": "fannheyward@gmail.com", - "format": "txt", - "theme": "plaintext" -} + "copyright": "Heyward Fann", + "url": "http://fann.im", + "email": "fannheyward@gmail.com", + "format": "txt", + "theme": "plaintext" +} \ No newline at end of file diff --git a/users/fauzism.json b/users/fauzism.json index 300b8fc1..21d0786d 100644 --- a/users/fauzism.json +++ b/users/fauzism.json @@ -1,6 +1,6 @@ { - "copyright": "Yousuf Fauzan", - "url": "http://fauzism.com", - "email": "yousuffauzan@gmail.com", - "theme": "default" -} + "copyright": "Yousuf Fauzan", + "url": "http://fauzism.com", + "email": "yousuffauzan@gmail.com", + "theme": "default" +} \ No newline at end of file diff --git a/users/fd.json b/users/fd.json index f2b98e8f..2bd50abb 100644 --- a/users/fd.json +++ b/users/fd.json @@ -1,5 +1,5 @@ { - "copyright": "Simon Menke", - "url": "http://github.com/fd", - "email": "simon.menke@gmail.com" -} + "copyright": "Simon Menke", + "url": "http://github.com/fd", + "email": "simon.menke@gmail.com" +} \ No newline at end of file diff --git a/users/fdavidcl.json b/users/fdavidcl.json index 23e4ef09..90b10b9d 100644 --- a/users/fdavidcl.json +++ b/users/fdavidcl.json @@ -1,4 +1,4 @@ { - "copyright": "David Charte", - "url": "http://fdavidcl.me" -} + "copyright": "David Charte", + "url": "http://fdavidcl.me" +} \ No newline at end of file diff --git a/users/fefc.json b/users/fefc.json index 313c24ee..aa5b1344 100644 --- a/users/fefc.json +++ b/users/fefc.json @@ -1,3 +1,3 @@ { - "copyright": "Front End Friends Club" -} + "copyright": "Front End Friends Club" +} \ No newline at end of file diff --git a/users/felipe.json b/users/felipe.json index 2c1d9735..f2cec2f4 100644 --- a/users/felipe.json +++ b/users/felipe.json @@ -1,4 +1,4 @@ { - "copyright": "Felipe Marcos", - "email": "hey@felipemarcos.com" -} + "copyright": "Felipe Marcos", + "email": "hey@felipemarcos.com" +} \ No newline at end of file diff --git a/users/felipefialho.json b/users/felipefialho.json index 7bbe6bd3..fb22b41e 100644 --- a/users/felipefialho.json +++ b/users/felipefialho.json @@ -1,5 +1,5 @@ { - "copyright": "Felipe Fialho", - "url": "http://www.felipefialho.com/", - "email": "hi@felipefialho.com" -} + "copyright": "Felipe Fialho", + "url": "http://www.felipefialho.com/", + "email": "hi@felipefialho.com" +} \ No newline at end of file diff --git a/users/felix-schuetz.json b/users/felix-schuetz.json index c50bf347..98d74012 100644 --- a/users/felix-schuetz.json +++ b/users/felix-schuetz.json @@ -1,6 +1,6 @@ { - "copyright": "Felix Sch\u00c3\u00bctz", - "url": "https://felix-schuetz.de", - "email": "mail@felix-schuetz.de", - "gravatar": true -} + "copyright": "Felix Schütz", + "url": "https://felix-schuetz.de", + "email": "mail@felix-schuetz.de", + "gravatar": true +} \ No newline at end of file diff --git a/users/felix.json b/users/felix.json index 1b972f17..1d822269 100644 --- a/users/felix.json +++ b/users/felix.json @@ -1,6 +1,6 @@ { - "copyright": "Felix Grabowski", - "url": "http://www.myriadvisuals.com", - "email": "admin@myriadvisuals.com", - "format": "txt" -} + "copyright": "Felix Grabowski", + "url": "http://www.myriadvisuals.com", + "email": "admin@myriadvisuals.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/felixsanz.json b/users/felixsanz.json index 81b80298..f444eb94 100644 --- a/users/felixsanz.json +++ b/users/felixsanz.json @@ -1,8 +1,8 @@ { - "copyright": "F\u00c3\u00a9lix Sanz, https://felixsanz.com", - "url": "https://felixsanz.com", - "email": "me@felixsanz.com", - "gravatar": true, - "format": "html", - "theme": "default" -} + "copyright": "Félix Sanz, https://felixsanz.com", + "url": "https://felixsanz.com", + "email": "me@felixsanz.com", + "gravatar": true, + "format": "html", + "theme": "default" +} \ No newline at end of file diff --git a/users/fendi.json b/users/fendi.json index 453db266..3a3b1821 100644 --- a/users/fendi.json +++ b/users/fendi.json @@ -1,7 +1,7 @@ { - "copyright": "Sutrisno Efendi", - "url": "http://kangfendi.net", - "email": "kangfend@gmail.com", - "gravatar": true, - "theme": "material-light-blue" -} + "copyright": "Sutrisno Efendi", + "url": "http://kangfendi.net", + "email": "kangfend@gmail.com", + "gravatar": true, + "theme": "material-light-blue" +} \ No newline at end of file diff --git a/users/fengmk2.json b/users/fengmk2.json index 08164e9e..2e87ce0e 100644 --- a/users/fengmk2.json +++ b/users/fengmk2.json @@ -1,6 +1,6 @@ { - "copyright": "fengmk2", - "url": "http://fengmk2.com", - "email": "m@fengmk2.com", - "format": "txt" -} + "copyright": "fengmk2", + "url": "http://fengmk2.com", + "email": "m@fengmk2.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/fenris-studios.json b/users/fenris-studios.json index b31d8bdb..51ca0d87 100644 --- a/users/fenris-studios.json +++ b/users/fenris-studios.json @@ -1,6 +1,6 @@ { - "copyright": "Fenris Studios, http://fenris.io", - "url": "http://fenris.io", - "format": "html", - "theme": "material-red" -} + "copyright": "Fenris Studios, http://fenris.io", + "url": "http://fenris.io", + "format": "html", + "theme": "material-red" +} \ No newline at end of file diff --git a/users/feross.json b/users/feross.json index 6016ef14..78942306 100644 --- a/users/feross.json +++ b/users/feross.json @@ -1,5 +1,5 @@ { - "copyright": "Feross Aboukhadijeh, http://feross.org", - "url": "http://feross.org", - "theme": "flesch" -} + "copyright": "Feross Aboukhadijeh, http://feross.org", + "url": "http://feross.org", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/ff.json b/users/ff.json index ea6ef508..1a376f83 100644 --- a/users/ff.json +++ b/users/ff.json @@ -1,3 +1,3 @@ { - "copyright": "Florian Fida" -} + "copyright": "Florian Fida" +} \ No newline at end of file diff --git a/users/ffljjqbqvsywxqakpvdbwyqqyt.json b/users/ffljjqbqvsywxqakpvdbwyqqyt.json index ae746533..a1ab0e28 100644 --- a/users/ffljjqbqvsywxqakpvdbwyqqyt.json +++ b/users/ffljjqbqvsywxqakpvdbwyqqyt.json @@ -1,3 +1,3 @@ { - "copyright": "ffljjqbqvsywxqakpvdbwyqqyt" -} + "copyright": "ffljjqbqvsywxqakpvdbwyqqyt" +} \ No newline at end of file diff --git a/users/ffljjqbqvsywxqakpvdbwyqqytt.json b/users/ffljjqbqvsywxqakpvdbwyqqytt.json index 9d1cbd4c..f0b395ba 100644 --- a/users/ffljjqbqvsywxqakpvdbwyqqytt.json +++ b/users/ffljjqbqvsywxqakpvdbwyqqytt.json @@ -1,3 +1,3 @@ { - "copyright": "ffljjqbqvsywxqakpvdbwyqqytt" -} + "copyright": "ffljjqbqvsywxqakpvdbwyqqytt" +} \ No newline at end of file diff --git a/users/fgsdhkdfjghdksfgjsg.json b/users/fgsdhkdfjghdksfgjsg.json index 700b3736..fa03f181 100644 --- a/users/fgsdhkdfjghdksfgjsg.json +++ b/users/fgsdhkdfjghdksfgjsg.json @@ -1,3 +1,3 @@ { - "copyright": "Remy Sharp" -} + "copyright": "Remy Sharp" +} \ No newline at end of file diff --git a/users/fh.json b/users/fh.json index 32e48e8d..a806fd0b 100644 --- a/users/fh.json +++ b/users/fh.json @@ -1,8 +1,8 @@ { - "copyright": "Feras ALHAEK", - "url": "http://alhaek.com", - "email": "feras@alhaek.com", - "format": "txt", - "gravatar": true, - "theme": "eula-modern" -} + "copyright": "Feras ALHAEK", + "url": "http://alhaek.com", + "email": "feras@alhaek.com", + "format": "txt", + "gravatar": true, + "theme": "eula-modern" +} \ No newline at end of file diff --git a/users/fiber-miniapp.json b/users/fiber-miniapp.json index fe218399..d74f4f8d 100644 --- a/users/fiber-miniapp.json +++ b/users/fiber-miniapp.json @@ -1,3 +1,3 @@ { - "copyright": "RIKEN AICS" -} + "copyright": "RIKEN AICS" +} \ No newline at end of file diff --git a/users/fiber.json b/users/fiber.json index dacf9b4c..af794b3e 100644 --- a/users/fiber.json +++ b/users/fiber.json @@ -1,3 +1,3 @@ { - "copyright": "Sven Engelhardt" -} + "copyright": "Sven Engelhardt" +} \ No newline at end of file diff --git a/users/fibo.json b/users/fibo.json index 8c11cf2b..9c54ce96 100644 --- a/users/fibo.json +++ b/users/fibo.json @@ -1,4 +1,4 @@ { - "copyright": "Gianluca Casati, http://g14n.info", - "url": "http://g14n.info" -} + "copyright": "Gianluca Casati, http://g14n.info", + "url": "http://g14n.info" +} \ No newline at end of file diff --git a/users/filepang.json b/users/filepang.json index 08663e9c..e0bc2005 100644 --- a/users/filepang.json +++ b/users/filepang.json @@ -1,3 +1,3 @@ { - "copyright": "Sung Su Kim, http://www.filepang.co.kr" -} + "copyright": "Sung Su Kim, http://www.filepang.co.kr" +} \ No newline at end of file diff --git a/users/filipebarros.json b/users/filipebarros.json index cbee5554..2683b90d 100644 --- a/users/filipebarros.json +++ b/users/filipebarros.json @@ -1,4 +1,4 @@ { - "copyright": "Filipe Barros", - "email": "filipebarrossi@gmail.com" -} + "copyright": "Filipe Barros", + "email": "filipebarrossi@gmail.com" +} \ No newline at end of file diff --git a/users/filosottile.json b/users/filosottile.json index d27a9e80..5568edf9 100644 --- a/users/filosottile.json +++ b/users/filosottile.json @@ -1,7 +1,7 @@ { - "copyright": "Filippo Valsorda, FiloSottile", - "url": "http://filippo.io", - "email": "fv@filippo.io", - "theme": "default", - "gravatar": true -} + "copyright": "Filippo Valsorda, FiloSottile", + "url": "http://filippo.io", + "email": "fv@filippo.io", + "theme": "default", + "gravatar": true +} \ No newline at end of file diff --git a/users/fireball.json b/users/fireball.json index dfbfeaa4..769fda63 100644 --- a/users/fireball.json +++ b/users/fireball.json @@ -1,3 +1,3 @@ { - "copyright": "Tyler Reed" -} + "copyright": "Tyler Reed" +} \ No newline at end of file diff --git a/users/firebase.json b/users/firebase.json index 5484b105..b02d7d5a 100644 --- a/users/firebase.json +++ b/users/firebase.json @@ -1,5 +1,5 @@ { - "copyright": "Firebase", - "url": "https://firebase.com", - "email": "opensource@firebase.com" -} + "copyright": "Firebase", + "url": "https://firebase.com", + "email": "opensource@firebase.com" +} \ No newline at end of file diff --git a/users/fireflies.json b/users/fireflies.json index e9bc5e96..63dfbf24 100644 --- a/users/fireflies.json +++ b/users/fireflies.json @@ -1,6 +1,6 @@ { - "copyright": "Connor Spencer Harries", - "url": "https://smirking.ninja", - "email": "connor@smirking.ninja", - "format": "txt" -} + "copyright": "Connor Spencer Harries", + "url": "https://smirking.ninja", + "email": "connor@smirking.ninja", + "format": "txt" +} \ No newline at end of file diff --git a/users/firejune.json b/users/firejune.json index 6854e2c2..8cb37e38 100644 --- a/users/firejune.json +++ b/users/firejune.json @@ -1,6 +1,6 @@ { - "copyright": "Joon Kyoung, @firejune, http://firejune.com", - "url": "http://firejune.com", - "email": "to@firejune.com", - "theme": "flesch" -} + "copyright": "Joon Kyoung, @firejune, http://firejune.com", + "url": "http://firejune.com", + "email": "to@firejune.com", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/fitjs.json b/users/fitjs.json index 600eb1d9..d60dee80 100644 --- a/users/fitjs.json +++ b/users/fitjs.json @@ -1,6 +1,6 @@ { - "copyright": "Sufijen Bani", - "url": "http://fitjs.sbani.net", - "email": "sufijen-fitjs@sbani.net", - "format": "txt" -} + "copyright": "Sufijen Bani", + "url": "http://fitjs.sbani.net", + "email": "sufijen-fitjs@sbani.net", + "format": "txt" +} \ No newline at end of file diff --git a/users/fixate.json b/users/fixate.json index c7ab4834..b4c336cf 100644 --- a/users/fixate.json +++ b/users/fixate.json @@ -1,5 +1,5 @@ { - "copyright": "Fixate Web and Design, http://fixate.it/", - "url": "http://fixate.it/", - "theme": "double-windsor" -} + "copyright": "Fixate Web and Design, http://fixate.it/", + "url": "http://fixate.it/", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/fjellerup.json b/users/fjellerup.json index c459dd70..3d42b54d 100644 --- a/users/fjellerup.json +++ b/users/fjellerup.json @@ -1,3 +1,3 @@ { - "copyright": "Mikkel Fjellerup Jensen" -} + "copyright": "Mikkel Fjellerup Jensen" +} \ No newline at end of file diff --git a/users/fjorgemota.json b/users/fjorgemota.json index b005903b..be56b8c1 100644 --- a/users/fjorgemota.json +++ b/users/fjorgemota.json @@ -1,4 +1,4 @@ { - "copyright": "Fernando Jorge Mota", - "url": "http://fjorgemota.com" -} + "copyright": "Fernando Jorge Mota", + "url": "http://fjorgemota.com" +} \ No newline at end of file diff --git a/users/fka.json b/users/fka.json index 0f133592..5707a0ff 100644 --- a/users/fka.json +++ b/users/fka.json @@ -1,3 +1,3 @@ { - "copyright": "Fatih Kadir Akin" -} + "copyright": "Fatih Kadir Akin" +} \ No newline at end of file diff --git a/users/flat.json b/users/flat.json index 462bf103..b6825a07 100644 --- a/users/flat.json +++ b/users/flat.json @@ -1,4 +1,4 @@ { - "copyright": "Flat", - "url": "https://github.com/Flatta" -} + "copyright": "Flat", + "url": "https://github.com/Flatta" +} \ No newline at end of file diff --git a/users/flattr.json b/users/flattr.json index a800c330..45a153ab 100644 --- a/users/flattr.json +++ b/users/flattr.json @@ -1,5 +1,5 @@ { - "copyright": "Flattr AB", - "url": "http://flattr.com", - "theme": "double-windsor " -} + "copyright": "Flattr AB", + "url": "http://flattr.com", + "theme": "double-windsor " +} \ No newline at end of file diff --git a/users/fleeting.json b/users/fleeting.json index c9a60793..e41de92f 100644 --- a/users/fleeting.json +++ b/users/fleeting.json @@ -1,5 +1,5 @@ { - "copyright": "James Fleeting, http://jamesfleeting.com", - "url": "http://jamesfleeting.com", - "theme": "flesch" -} + "copyright": "James Fleeting, http://jamesfleeting.com", + "url": "http://jamesfleeting.com", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/flesch.json b/users/flesch.json index 99c3bbec..2fbc7453 100644 --- a/users/flesch.json +++ b/users/flesch.json @@ -1,5 +1,5 @@ { - "copyright": "John Flesch, http://fles.ch", - "url": "http://fles.ch", - "theme": "flesch" -} + "copyright": "John Flesch, http://fles.ch", + "url": "http://fles.ch", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/fletc3her.json b/users/fletc3her.json index 92c5e88b..f01c0a37 100644 --- a/users/fletc3her.json +++ b/users/fletc3her.json @@ -1,6 +1,6 @@ { - "copyright": "Fletcher Sandbeck", - "url": "http://www.fletc3her.com", - "email": "fletc3her@gmail.com", - "gravatar": true -} + "copyright": "Fletcher Sandbeck", + "url": "http://www.fletc3her.com", + "email": "fletc3her@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/flexd.json b/users/flexd.json index 2e6ae741..9c4c3d7d 100644 --- a/users/flexd.json +++ b/users/flexd.json @@ -1,6 +1,6 @@ { - "copyright": "Kristoffer Berdal", - "url": "http://cognitive.io", - "email": "web@flexd.net", - "format": "txt" -} + "copyright": "Kristoffer Berdal", + "url": "http://cognitive.io", + "email": "web@flexd.net", + "format": "txt" +} \ No newline at end of file diff --git a/users/floppy.json b/users/floppy.json index a89ac264..207ec96b 100644 --- a/users/floppy.json +++ b/users/floppy.json @@ -1,6 +1,6 @@ { - "copyright": "James Smith", - "url": "http://floppy.org.uk", - "email": "james@floppy.org.uk", - "gravatar": true -} + "copyright": "James Smith", + "url": "http://floppy.org.uk", + "email": "james@floppy.org.uk", + "gravatar": true +} \ No newline at end of file diff --git a/users/florian.json b/users/florian.json index 5ae79957..b0f55d65 100644 --- a/users/florian.json +++ b/users/florian.json @@ -1,5 +1,5 @@ { - "copyright": "Florian Pircher ", - "url": "http://addpixel.net", - "format": "html" -} + "copyright": "Florian Pircher ", + "url": "http://addpixel.net", + "format": "html" +} \ No newline at end of file diff --git a/users/floydpink.json b/users/floydpink.json index defe6b16..d3ce3af9 100644 --- a/users/floydpink.json +++ b/users/floydpink.json @@ -1,7 +1,7 @@ { - "copyright": "Hari Menon, https://harimenon.com", - "url": "https://harimenon.com", - "email": "me@harimenon.com", - "gravatar": true, - "theme": "double-windsor" -} + "copyright": "Hari Menon, https://harimenon.com", + "url": "https://harimenon.com", + "email": "me@harimenon.com", + "gravatar": true, + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/flyjs.json b/users/flyjs.json index 440d76e4..f8462419 100644 --- a/users/flyjs.json +++ b/users/flyjs.json @@ -1,3 +1,3 @@ { - "copyright": "Oleg Pimenov" -} + "copyright": "Oleg Pimenov" +} \ No newline at end of file diff --git a/users/fm.json b/users/fm.json index 5e566332..c5696118 100644 --- a/users/fm.json +++ b/users/fm.json @@ -1,3 +1,3 @@ { - "copyright": "Florian M\u00fcller" -} + "copyright": "Florian Müller" +} \ No newline at end of file diff --git a/users/foak.json b/users/foak.json index 1c8c144f..c289ff13 100644 --- a/users/foak.json +++ b/users/foak.json @@ -1,6 +1,6 @@ { - "copyright": "Foak Productions Limited", - "url": "http://thefoakhouse.com", - "email": "info@thefoakhouse.com", - "gravatar": true -} + "copyright": "Foak Productions Limited", + "url": "http://thefoakhouse.com", + "email": "info@thefoakhouse.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/foat.json b/users/foat.json index 27c26791..fdd9a5ce 100644 --- a/users/foat.json +++ b/users/foat.json @@ -1,6 +1,6 @@ { - "copyright": "Foat Akhmadeev", - "url": "https://github.com/Foat", - "email": "foat.akhmadeev@gmail.com", - "theme": "double-windsor" -} + "copyright": "Foat Akhmadeev", + "url": "https://github.com/Foat", + "email": "foat.akhmadeev@gmail.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/foobar.json b/users/foobar.json index 33c075f6..da280cce 100644 --- a/users/foobar.json +++ b/users/foobar.json @@ -1,3 +1,3 @@ { - "copyright": "Foo Bar" -} + "copyright": "Foo Bar" +} \ No newline at end of file diff --git a/users/ford.json b/users/ford.json index 56e8adee..ad048fe6 100644 --- a/users/ford.json +++ b/users/ford.json @@ -1,4 +1,4 @@ { - "copyright": "Ford Peprah", - "email": "ford.peprah@uwaterloo.ca" -} + "copyright": "Ford Peprah", + "email": "ford.peprah@uwaterloo.ca" +} \ No newline at end of file diff --git a/users/forresty.json b/users/forresty.json index b048bb97..3edab3b6 100644 --- a/users/forresty.json +++ b/users/forresty.json @@ -1,3 +1,3 @@ { - "copyright": "Forrest Ye" -} + "copyright": "Forrest Ye" +} \ No newline at end of file diff --git a/users/forsvikgroup.json b/users/forsvikgroup.json index c4015a2d..a3d04cc2 100644 --- a/users/forsvikgroup.json +++ b/users/forsvikgroup.json @@ -1,5 +1,5 @@ { - "copyright": "Christoffer Hallas", - "url": "http://www.forsvikgroup.com", - "email": "christoffer.hallas@forsvikgroup.com" -} + "copyright": "Christoffer Hallas", + "url": "http://www.forsvikgroup.com", + "email": "christoffer.hallas@forsvikgroup.com" +} \ No newline at end of file diff --git a/users/foss-haas.json b/users/foss-haas.json index b946f482..6b359d2d 100644 --- a/users/foss-haas.json +++ b/users/foss-haas.json @@ -1,6 +1,6 @@ { - "copyright": "Foss & Haas GmbH", - "url": "http://foss-haas.de", - "email": "mail@foss-haas.de", - "gravatar": true -} + "copyright": "Foss & Haas GmbH", + "url": "http://foss-haas.de", + "email": "mail@foss-haas.de", + "gravatar": true +} \ No newline at end of file diff --git a/users/fov.json b/users/fov.json index 9ce00f08..b0c24e67 100644 --- a/users/fov.json +++ b/users/fov.json @@ -1,4 +1,4 @@ { - "copyright": "Franklin Oliveira Da Veiga", - "email": "aionprofile@hotmail.com" -} + "copyright": "Franklin Oliveira Da Veiga", + "email": "aionprofile@hotmail.com" +} \ No newline at end of file diff --git a/users/fp.json b/users/fp.json index b6e15e60..585ddb30 100644 --- a/users/fp.json +++ b/users/fp.json @@ -1,3 +1,3 @@ { - "copyright": "Floyd Price" -} + "copyright": "Floyd Price" +} \ No newline at end of file diff --git a/users/fpcs.json b/users/fpcs.json index ba4e8f37..744a9f96 100644 --- a/users/fpcs.json +++ b/users/fpcs.json @@ -1,6 +1,6 @@ { - "copyright": "Flashpoint Computer Services, LLC", - "url": "http://www.flashpointcs.net", - "email": "info@flashpointcs.net", - "format": "html" -} + "copyright": "Flashpoint Computer Services, LLC", + "url": "http://www.flashpointcs.net", + "email": "info@flashpointcs.net", + "format": "html" +} \ No newline at end of file diff --git a/users/fr.json b/users/fr.json index 500da9c4..5f905348 100644 --- a/users/fr.json +++ b/users/fr.json @@ -1,3 +1,3 @@ { - "copyright": "Fran\u00e7ois Romain" -} + "copyright": "François Romain" +} \ No newline at end of file diff --git a/users/francisbesset.json b/users/francisbesset.json index d3e92021..8a796036 100644 --- a/users/francisbesset.json +++ b/users/francisbesset.json @@ -1,6 +1,6 @@ { - "copyright": "Francis Besset, http://francis-besset.com", - "url": "http://francis-besset.com", - "theme": "default", - "gravatar": true -} + "copyright": "Francis Besset, http://francis-besset.com", + "url": "http://francis-besset.com", + "theme": "default", + "gravatar": true +} \ No newline at end of file diff --git a/users/frebro.json b/users/frebro.json index 71437bc2..5e58273d 100644 --- a/users/frebro.json +++ b/users/frebro.json @@ -1,5 +1,5 @@ { - "copyright": "Fredrik Broman, http://frebro.com", - "url": "http://frebro.com", - "theme": "default" -} + "copyright": "Fredrik Broman, http://frebro.com", + "url": "http://frebro.com", + "theme": "default" +} \ No newline at end of file diff --git a/users/fredi.json b/users/fredi.json index 265500ca..a499ab38 100644 --- a/users/fredi.json +++ b/users/fredi.json @@ -1,3 +1,3 @@ { - "copyright": "Federico Leo Redi" -} + "copyright": "Federico Leo Redi" +} \ No newline at end of file diff --git a/users/fredrik.json b/users/fredrik.json index f422f51e..cc64b4f8 100644 --- a/users/fredrik.json +++ b/users/fredrik.json @@ -1,6 +1,6 @@ { - "copyright": "Fredrik M\u00f6llerstrand", - "url": "http://fredrikmollerstrand.se/", - "email": "fredrik@mollerstrand.se", - "format": "txt" -} + "copyright": "Fredrik Möllerstrand", + "url": "http://fredrikmollerstrand.se/", + "email": "fredrik@mollerstrand.se", + "format": "txt" +} \ No newline at end of file diff --git a/users/fredwu.json b/users/fredwu.json index b1f90c57..ae11a6b4 100644 --- a/users/fredwu.json +++ b/users/fredwu.json @@ -1,6 +1,6 @@ { - "copyright": "Fred Wu", - "url": "http://fredwu.me/", - "email": "ifredwu@gmail.com", - "format": "html" -} + "copyright": "Fred Wu", + "url": "http://fredwu.me/", + "email": "ifredwu@gmail.com", + "format": "html" +} \ No newline at end of file diff --git a/users/freewheel.json b/users/freewheel.json index 544f9916..4161cd5e 100644 --- a/users/freewheel.json +++ b/users/freewheel.json @@ -1,6 +1,6 @@ { - "copyright": "FreeWheel Inc.", - "url": "http://rollingcode.org", - "email": "sdu@freewheel.tv", - "format": "txt" -} + "copyright": "FreeWheel Inc.", + "url": "http://rollingcode.org", + "email": "sdu@freewheel.tv", + "format": "txt" +} \ No newline at end of file diff --git a/users/freewizard.json b/users/freewizard.json index 13aa54c0..256cdaa4 100644 --- a/users/freewizard.json +++ b/users/freewizard.json @@ -1,6 +1,6 @@ { - "copyright": "Du Song", - "url": "http://rollingcode.org", - "email": "freewizard@gmail.com", - "format": "txt" -} + "copyright": "Du Song", + "url": "http://rollingcode.org", + "email": "freewizard@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/fremy.json b/users/fremy.json index 58b0b780..5a20d44c 100644 --- a/users/fremy.json +++ b/users/fremy.json @@ -1,6 +1,6 @@ { - "copyright": "REMY Fran\u00c3\u00a7ois, http://fremycompany.com/", - "url": "http://fremycompany.com/", - "email": "francois.remy.dev@outlook.com", - "gravatar": true -} + "copyright": "REMY François, http://fremycompany.com/", + "url": "http://fremycompany.com/", + "email": "francois.remy.dev@outlook.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/frendon.json b/users/frendon.json index b4891e52..232308f1 100644 --- a/users/frendon.json +++ b/users/frendon.json @@ -1,3 +1,3 @@ { - "copyright": "Fernando J. Rend\u00f3n" -} + "copyright": "Fernando J. Rendón" +} \ No newline at end of file diff --git a/users/freshbox.json b/users/freshbox.json index b8617903..04207d33 100644 --- a/users/freshbox.json +++ b/users/freshbox.json @@ -1,6 +1,6 @@ { - "copyright": "freshbox", - "url": "http://freshbox.io", - "email": "info@freshbox.io", - "format": "html" -} + "copyright": "freshbox", + "url": "http://freshbox.io", + "email": "info@freshbox.io", + "format": "html" +} \ No newline at end of file diff --git a/users/freshmade.json b/users/freshmade.json index 822cef19..9ce06963 100644 --- a/users/freshmade.json +++ b/users/freshmade.json @@ -1,5 +1,5 @@ { - "copyright": "Jack Keller, http://freshma.de", - "url": "http://freshma.de", - "theme": "flesch" -} + "copyright": "Jack Keller, http://freshma.de", + "url": "http://freshma.de", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/frickreich.json b/users/frickreich.json index 6333738b..0c3acee6 100644 --- a/users/frickreich.json +++ b/users/frickreich.json @@ -1,3 +1,3 @@ { - "copyright": "F. Rick Reich" -} + "copyright": "F. Rick Reich" +} \ No newline at end of file diff --git a/users/friedcell.json b/users/friedcell.json index 0c61875a..8fe94560 100644 --- a/users/friedcell.json +++ b/users/friedcell.json @@ -1,5 +1,5 @@ { - "copyright": "Marko Mrdjenovic", - "url": "http://friedcell.si", - "email": "fry@friedcell.si" -} + "copyright": "Marko Mrdjenovic", + "url": "http://friedcell.si", + "email": "fry@friedcell.si" +} \ No newline at end of file diff --git a/users/fristonio.json b/users/fristonio.json index 54f72fa1..b10baf43 100644 --- a/users/fristonio.json +++ b/users/fristonio.json @@ -1,7 +1,7 @@ { - "copyright": "Deepesh Pathak http://fristonio.co", - "url": "http://fristonio.co", - "email": "me@fristonio.co", - "gravatar": true, - "theme": "dusk" -} + "copyright": "Deepesh Pathak http://fristonio.co", + "url": "http://fristonio.co", + "email": "me@fristonio.co", + "gravatar": true, + "theme": "dusk" +} \ No newline at end of file diff --git a/users/frozenskys.json b/users/frozenskys.json index 2840548e..af984784 100644 --- a/users/frozenskys.json +++ b/users/frozenskys.json @@ -1,7 +1,7 @@ { - "copyright": "Richard Cooper", - "url": "https://github.com/frozenskys", - "email": "richard@frozenskys.co.uk", - "gravatar": true, - "theme": "eula-modern" -} + "copyright": "Richard Cooper", + "url": "https://github.com/frozenskys", + "email": "richard@frozenskys.co.uk", + "gravatar": true, + "theme": "eula-modern" +} \ No newline at end of file diff --git a/users/frozzare.json b/users/frozzare.json index de151ac8..c0ed8c09 100644 --- a/users/frozzare.json +++ b/users/frozzare.json @@ -1,5 +1,5 @@ { - "copyright": "Fredrik Forsmo, http://forsmo.me", - "url": "http://forsmo.me", - "theme": "flesch" -} + "copyright": "Fredrik Forsmo, http://forsmo.me", + "url": "http://forsmo.me", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/frwrdnet.json b/users/frwrdnet.json index 45510761..094d92c3 100644 --- a/users/frwrdnet.json +++ b/users/frwrdnet.json @@ -1,7 +1,7 @@ { - "copyright": "Victor Zambrano, https://frwrd.net", - "url": "https://frwrd.net", - "email": "victor@frwrd.net", - "format": "html", - "theme": "plaintext" -} + "copyright": "Victor Zambrano, https://frwrd.net", + "url": "https://frwrd.net", + "email": "victor@frwrd.net", + "format": "html", + "theme": "plaintext" +} \ No newline at end of file diff --git a/users/fs.json b/users/fs.json index c20ba996..06cfef0e 100644 --- a/users/fs.json +++ b/users/fs.json @@ -1,6 +1,6 @@ { - "copyright": "Frederick Silva", - "url": "http://fredericksilva.github.io", - "email": "devfrederick@gmail.com", - "format": "txt" -} + "copyright": "Frederick Silva", + "url": "http://fredericksilva.github.io", + "email": "devfrederick@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/fuckthebitch.json b/users/fuckthebitch.json index 64134d25..fa7edaf8 100644 --- a/users/fuckthebitch.json +++ b/users/fuckthebitch.json @@ -1,5 +1,5 @@ { - "copyright": "FuckTheBitch", - "url": "http://fuckthebitch.com", - "theme": "double-windsor" -} + "copyright": "FuckTheBitch", + "url": "http://fuckthebitch.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/fujieda.json b/users/fujieda.json index 270cc441..4c09bfbd 100644 --- a/users/fujieda.json +++ b/users/fujieda.json @@ -1,3 +1,3 @@ { - "copyright": "Kazuhiro Fujieda " -} + "copyright": "Kazuhiro Fujieda " +} \ No newline at end of file diff --git a/users/fujimoto.json b/users/fujimoto.json index 187f99f7..31b2c166 100644 --- a/users/fujimoto.json +++ b/users/fujimoto.json @@ -1,6 +1,6 @@ { - "copyright": "Haruya Fujimoto", - "url": "http://qn33.github.io", - "format": "html", - "theme": "material-blue" -} + "copyright": "Haruya Fujimoto", + "url": "http://qn33.github.io", + "format": "html", + "theme": "material-blue" +} \ No newline at end of file diff --git a/users/fullaf.json b/users/fullaf.json index 8506e021..c3f2cdd2 100644 --- a/users/fullaf.json +++ b/users/fullaf.json @@ -1,3 +1,3 @@ { - "copyright": "Full AF" -} + "copyright": "Full AF" +} \ No newline at end of file diff --git a/users/functioncallback.json b/users/functioncallback.json index 99a7b95d..b5bf2b57 100644 --- a/users/functioncallback.json +++ b/users/functioncallback.json @@ -1,6 +1,6 @@ { - "copyright": "Wagner Camarao", - "url": "https://github.com/functioncallback", - "email": "functioncallback@gmail.com", - "format": "txt" -} + "copyright": "Wagner Camarao", + "url": "https://github.com/functioncallback", + "email": "functioncallback@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/fusco.json b/users/fusco.json index da0bcb5f..f592b5a4 100644 --- a/users/fusco.json +++ b/users/fusco.json @@ -1,6 +1,6 @@ { - "copyright": "Joseph Fusco", - "url": "http://josephfus.co", - "email": "hello@josephfus.co", - "format": "txt" -} + "copyright": "Joseph Fusco", + "url": "http://josephfus.co", + "email": "hello@josephfus.co", + "format": "txt" +} \ No newline at end of file diff --git a/users/futoase.json b/users/futoase.json index 32b6b369..5d7cb6fb 100644 --- a/users/futoase.json +++ b/users/futoase.json @@ -1,3 +1,3 @@ { - "copyright": "Keiji Matsuzaki" -} + "copyright": "Keiji Matsuzaki" +} \ No newline at end of file diff --git a/users/fwolf.json b/users/fwolf.json index 048f5025..d17d32fa 100644 --- a/users/fwolf.json +++ b/users/fwolf.json @@ -1,4 +1,4 @@ { - "copyright": "Fwolf", - "email": "fwolf.aide+MIT@gmail.com" -} + "copyright": "Fwolf", + "email": "fwolf.aide+MIT@gmail.com" +} \ No newline at end of file diff --git a/users/fyhuang.json b/users/fyhuang.json index fb1092c7..33b140e3 100644 --- a/users/fyhuang.json +++ b/users/fyhuang.json @@ -1,6 +1,6 @@ { - "copyright": "Yifeng Huang", - "url": "http://nongraphical.com", - "email": "me@nongraphical.com", - "theme": "double-windsor" -} + "copyright": "Yifeng Huang", + "url": "http://nongraphical.com", + "email": "me@nongraphical.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/g0nh1n.json b/users/g0nh1n.json index f85a7cbf..92f25414 100644 --- a/users/g0nh1n.json +++ b/users/g0nh1n.json @@ -1,8 +1,8 @@ { - "copyright": "Iv\u00e1n Gonzalo Hinojosa", - "url": "", - "email": "", - "format": "html", - "gravatar": true, - "theme": "material-teal" -} + "copyright": "Iván Gonzalo Hinojosa", + "url": "", + "email": "", + "format": "html", + "gravatar": true, + "theme": "material-teal" +} \ No newline at end of file diff --git a/users/g0v.json b/users/g0v.json index e322f69f..ab3c934e 100644 --- a/users/g0v.json +++ b/users/g0v.json @@ -1,4 +1,4 @@ { - "copyright": "g0v Contributors", - "url": "http://g0v.tw" -} + "copyright": "g0v Contributors", + "url": "http://g0v.tw" +} \ No newline at end of file diff --git a/users/gabev.json b/users/gabev.json index c0d21ca8..a3246e7b 100644 --- a/users/gabev.json +++ b/users/gabev.json @@ -1,5 +1,5 @@ { - "copyright": "Gabriel Vacaliuc", - "email": "gv8@rice.edu", - "theme": "material" -} + "copyright": "Gabriel Vacaliuc", + "email": "gv8@rice.edu", + "theme": "material" +} \ No newline at end of file diff --git a/users/gableroux.json b/users/gableroux.json index 1322d15c..4227a0ac 100644 --- a/users/gableroux.json +++ b/users/gableroux.json @@ -1,6 +1,6 @@ { - "copyright": "Gabriel Le Breton", - "url": "http://gableroux.com", - "email": "lebreton.gabriel@gmail.com", - "format": "html" -} + "copyright": "Gabriel Le Breton", + "url": "http://gableroux.com", + "email": "lebreton.gabriel@gmail.com", + "format": "html" +} \ No newline at end of file diff --git a/users/gabriel.json b/users/gabriel.json index 829f640c..ab4ebc33 100644 --- a/users/gabriel.json +++ b/users/gabriel.json @@ -1,5 +1,5 @@ { - "copyright": "Gabriel Hase", - "email": "gabriel.hase@gmail.com", - "format": "txt" -} + "copyright": "Gabriel Hase", + "email": "gabriel.hase@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/gabrielecanepa.json b/users/gabrielecanepa.json index 728e19da..beda5ada 100644 --- a/users/gabrielecanepa.json +++ b/users/gabrielecanepa.json @@ -1,5 +1,5 @@ { - "copyright": "Gabriele Canepa", - "url": "https://gabriele.canepa.io", - "email": "gabriele@canepa.io" -} + "copyright": "Gabriele Canepa", + "url": "https://gabriele.canepa.io", + "email": "gabriele@canepa.io" +} \ No newline at end of file diff --git a/users/gabrielgfa.json b/users/gabrielgfa.json index 9bb3c910..8f90286e 100644 --- a/users/gabrielgfa.json +++ b/users/gabrielgfa.json @@ -1,6 +1,6 @@ { - "copyright": "Gabriel Garcia", - "url": "http://gabrielgfa.com", - "email": "gabrielgfa@gmail.com", - "theme": "default" -} + "copyright": "Gabriel Garcia", + "url": "http://gabrielgfa.com", + "email": "gabrielgfa@gmail.com", + "theme": "default" +} \ No newline at end of file diff --git a/users/gabrielgodoy.json b/users/gabrielgodoy.json index 166fa6f6..8ba168e7 100644 --- a/users/gabrielgodoy.json +++ b/users/gabrielgodoy.json @@ -1,5 +1,5 @@ { - "copyright": "Gabriel Godoy", - "url": "http://www.gabrielgodoy.com", - "email": "hi@gabrielgodoy.com" -} + "copyright": "Gabriel Godoy", + "url": "http://www.gabrielgodoy.com", + "email": "hi@gabrielgodoy.com" +} \ No newline at end of file diff --git a/users/gabrielizaias.json b/users/gabrielizaias.json index 96ad07e1..a5b04c7e 100644 --- a/users/gabrielizaias.json +++ b/users/gabrielizaias.json @@ -1,7 +1,7 @@ { - "copyright": "Gabriel Izaias, https://izaias.co", - "url": "https://izaias.co", - "email": "gabriel.izaias@gmail.com", - "gravatar": true, - "theme": "material" -} + "copyright": "Gabriel Izaias, https://izaias.co", + "url": "https://izaias.co", + "email": "gabriel.izaias@gmail.com", + "gravatar": true, + "theme": "material" +} \ No newline at end of file diff --git a/users/gabrieljmj.json b/users/gabrieljmj.json index afcc9d21..46d94571 100644 --- a/users/gabrieljmj.json +++ b/users/gabrieljmj.json @@ -1,8 +1,8 @@ { - "copyright": "Gabriel Jacinto", - "url": "http://gabrieljmj.github.io", - "format": "txt", - "email": "gamjj74@hotmail.com", - "gravatar": true, - "theme": "default" -} + "copyright": "Gabriel Jacinto", + "url": "http://gabrieljmj.github.io", + "format": "txt", + "email": "gamjj74@hotmail.com", + "gravatar": true, + "theme": "default" +} \ No newline at end of file diff --git a/users/gabrielrcouto.json b/users/gabrielrcouto.json index 71f6b1e8..614cf42b 100644 --- a/users/gabrielrcouto.json +++ b/users/gabrielrcouto.json @@ -1,6 +1,6 @@ { - "copyright": "Gabriel Rodrigues Couto", - "url": "http://r3c.com.br", - "email": "gabriel@r3c.com.br", - "format": "txt" -} + "copyright": "Gabriel Rodrigues Couto", + "url": "http://r3c.com.br", + "email": "gabriel@r3c.com.br", + "format": "txt" +} \ No newline at end of file diff --git a/users/gabskoro.json b/users/gabskoro.json index e4c16e1d..9b914eac 100644 --- a/users/gabskoro.json +++ b/users/gabskoro.json @@ -1,6 +1,6 @@ { - "copyright": "Gabrijel \u00c5\u00a0koro", - "url": "http://gabrijelskoro.com", - "email": "gabrijel.skoro@gmail.com", - "gravatar": true -} + "copyright": "Gabrijel Å koro", + "url": "http://gabrijelskoro.com", + "email": "gabrijel.skoro@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/gae-tap.json b/users/gae-tap.json index 7141b263..007609ab 100644 --- a/users/gae-tap.json +++ b/users/gae-tap.json @@ -1,3 +1,3 @@ { - "copyright": "ENDOH takanao" -} + "copyright": "ENDOH takanao" +} \ No newline at end of file diff --git a/users/gamajo.json b/users/gamajo.json index 7432bd57..cf33efca 100644 --- a/users/gamajo.json +++ b/users/gamajo.json @@ -1,3 +1,3 @@ { - "copyright": "Gary Jones, Gamajo Tech" -} + "copyright": "Gary Jones, Gamajo Tech" +} \ No newline at end of file diff --git a/users/gammasoft.json b/users/gammasoft.json index f564dede..86fdd9cc 100644 --- a/users/gammasoft.json +++ b/users/gammasoft.json @@ -1,7 +1,7 @@ { - "copyright": "Gammasoft Desenvolvimento de Software Ltda (CNPJ: 19.950.366/0001-50)", - "url": "http://www.gammasoft.com.br", - "email": "contact@gammasoft.com.br", - "format": "html", - "gravatar": true -} + "copyright": "Gammasoft Desenvolvimento de Software Ltda (CNPJ: 19.950.366/0001-50)", + "url": "http://www.gammasoft.com.br", + "email": "contact@gammasoft.com.br", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/gao.json b/users/gao.json index 98865c41..4f0ccc75 100644 --- a/users/gao.json +++ b/users/gao.json @@ -1,4 +1,4 @@ { - "copyright": "gao", - "url": "https://github.com/gaogao-9" -} + "copyright": "gao", + "url": "https://github.com/gaogao-9" +} \ No newline at end of file diff --git a/users/gasolwu.json b/users/gasolwu.json index 3313ad96..69595137 100644 --- a/users/gasolwu.json +++ b/users/gasolwu.json @@ -1,5 +1,5 @@ { - "copyright": "Gasol Wu", - "email": "gasol.wu@gmail.com", - "format": "txt" -} + "copyright": "Gasol Wu", + "email": "gasol.wu@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/gauntlt.json b/users/gauntlt.json index f068e48f..b95660eb 100644 --- a/users/gauntlt.json +++ b/users/gauntlt.json @@ -1,4 +1,4 @@ { - "copyright": "James Wickett, Mani Tadayon, gauntlt.org", - "url": "https://github.com/thegauntlet/gauntlt" -} + "copyright": "James Wickett, Mani Tadayon, gauntlt.org", + "url": "https://github.com/thegauntlet/gauntlt" +} \ No newline at end of file diff --git a/users/gaurav.json b/users/gaurav.json index b02aab40..0abc86f4 100644 --- a/users/gaurav.json +++ b/users/gaurav.json @@ -1,6 +1,6 @@ { - "copyright": "Gaurav Singh", - "url": "http://sgaurav.in", - "email": "sgaurav.baghel@gmail.com", - "theme": "opensans" -} + "copyright": "Gaurav Singh", + "url": "http://sgaurav.in", + "email": "sgaurav.baghel@gmail.com", + "theme": "opensans" +} \ No newline at end of file diff --git a/users/gautam.json b/users/gautam.json index 1702fc84..d49b186a 100644 --- a/users/gautam.json +++ b/users/gautam.json @@ -1,5 +1,5 @@ { - "copyright": "Gautam Lodhiya", - "email": "glodhiya89@gmail.com", - "format": "txt" -} + "copyright": "Gautam Lodhiya", + "email": "glodhiya89@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/gavin.json b/users/gavin.json index 453c9b6f..71b1e05d 100644 --- a/users/gavin.json +++ b/users/gavin.json @@ -1,3 +1,3 @@ { - "copyright": "Gavin Huang" -} + "copyright": "Gavin Huang" +} \ No newline at end of file diff --git a/users/gavinhungry.json b/users/gavinhungry.json index 633ea4fe..b05fed54 100644 --- a/users/gavinhungry.json +++ b/users/gavinhungry.json @@ -1,5 +1,5 @@ { - "copyright": "Gavin Lloyd", - "url": "https://gavinhungry.io", - "email": "gavinhungry@gmail.com" -} + "copyright": "Gavin Lloyd", + "url": "https://gavinhungry.io", + "email": "gavinhungry@gmail.com" +} \ No newline at end of file diff --git a/users/gb.json b/users/gb.json index c025d5c4..11102f48 100644 --- a/users/gb.json +++ b/users/gb.json @@ -1,3 +1,3 @@ { - "copyright": "George Bashi, http://georgebashi.com" -} + "copyright": "George Bashi, http://georgebashi.com" +} \ No newline at end of file diff --git a/users/gbleux.json b/users/gbleux.json index f6b4a781..9822cb8a 100644 --- a/users/gbleux.json +++ b/users/gbleux.json @@ -1,4 +1,4 @@ { - "copyright": "Gordon Bleux", - "url": "https://github.com/gbleux/" -} + "copyright": "Gordon Bleux", + "url": "https://github.com/gbleux/" +} \ No newline at end of file diff --git a/users/gdqyn.json b/users/gdqyn.json index 56c487de..ba0b9382 100644 --- a/users/gdqyn.json +++ b/users/gdqyn.json @@ -1,6 +1,6 @@ { - "copyright": "gdqyn", - "url": "http://gdqyn.com", - "email": "gdqyn@mysite.com", - "format": "txt" -} + "copyright": "gdqyn", + "url": "http://gdqyn.com", + "email": "gdqyn@mysite.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/geeky.json b/users/geeky.json index c19cb778..8ee6eef3 100644 --- a/users/geeky.json +++ b/users/geeky.json @@ -1,3 +1,3 @@ { - "copyright": "Arne Krause" -} + "copyright": "Arne Krause" +} \ No newline at end of file diff --git a/users/genesislive.json b/users/genesislive.json index f48562d3..4054fe0a 100644 --- a/users/genesislive.json +++ b/users/genesislive.json @@ -1,8 +1,8 @@ { - "copyright": "genesislive", - "url": "https://github.com/genesislive", - "email": "genesislive@126.com", - "format": "html", - "gravatar": true, - "theme": "black-beauty" -} + "copyright": "genesislive", + "url": "https://github.com/genesislive", + "email": "genesislive@126.com", + "format": "html", + "gravatar": true, + "theme": "black-beauty" +} \ No newline at end of file diff --git a/users/georapbox.json b/users/georapbox.json index 80a17d39..200a599f 100644 --- a/users/georapbox.json +++ b/users/georapbox.json @@ -1,8 +1,8 @@ { - "copyright": "George Raptis", - "url": "https://georapbox.github.io", - "email": "georapbox@gmail.com", - "gravatar": true, - "theme": "dusk", - "format": "html" -} + "copyright": "George Raptis", + "url": "https://georapbox.github.io", + "email": "georapbox@gmail.com", + "gravatar": true, + "theme": "dusk", + "format": "html" +} \ No newline at end of file diff --git a/users/georgerogers42.json b/users/georgerogers42.json index e9b900c2..495114af 100644 --- a/users/georgerogers42.json +++ b/users/georgerogers42.json @@ -1,3 +1,3 @@ { - "copyright": "George Rogers" -} + "copyright": "George Rogers" +} \ No newline at end of file diff --git a/users/georgeyue.json b/users/georgeyue.json index da2c5d4a..881b8eff 100644 --- a/users/georgeyue.json +++ b/users/georgeyue.json @@ -1,5 +1,5 @@ { - "copyright": "George Yue", - "url": "https://github.com/georgeyue", - "format": "txt" -} + "copyright": "George Yue", + "url": "https://github.com/georgeyue", + "format": "txt" +} \ No newline at end of file diff --git a/users/geota.json b/users/geota.json index d8ef70d7..4042720e 100644 --- a/users/geota.json +++ b/users/geota.json @@ -1,3 +1,3 @@ { - "copyright": "Adrian Maceiras" -} + "copyright": "Adrian Maceiras" +} \ No newline at end of file diff --git a/users/geovation.json b/users/geovation.json index 19751e72..61e4aa2c 100644 --- a/users/geovation.json +++ b/users/geovation.json @@ -1,3 +1,3 @@ { - "copyright": "Geovation, https://geovation.uk/" -} + "copyright": "Geovation, https://geovation.uk/" +} \ No newline at end of file diff --git a/users/gep13.json b/users/gep13.json index 4e793685..53a5cb83 100644 --- a/users/gep13.json +++ b/users/gep13.json @@ -1,4 +1,4 @@ { - "copyright": "Gary Ewan Park", - "url": "http://www.gep13.co.uk" -} + "copyright": "Gary Ewan Park", + "url": "http://www.gep13.co.uk" +} \ No newline at end of file diff --git a/users/ger.json b/users/ger.json index 714b0384..cb07db71 100644 --- a/users/ger.json +++ b/users/ger.json @@ -1,3 +1,3 @@ { - "copyright": "Geraldi Sutanto" -} + "copyright": "Geraldi Sutanto" +} \ No newline at end of file diff --git a/users/gersonthiago.json b/users/gersonthiago.json index 49271d83..b31317b1 100644 --- a/users/gersonthiago.json +++ b/users/gersonthiago.json @@ -1,6 +1,6 @@ { - "copyright": "Gerson Thiago", - "url": "http://gersonthiago.com", - "email": "gersonthiago.lima@gmail.com", - "format": "txt" -} + "copyright": "Gerson Thiago", + "url": "http://gersonthiago.com", + "email": "gersonthiago.lima@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/geta6.json b/users/geta6.json index 7cf370a2..45a0bb12 100644 --- a/users/geta6.json +++ b/users/geta6.json @@ -1,4 +1,4 @@ { - "copyright": "Hirotaka Katakura", - "url": "https://github.com/geta6" -} + "copyright": "Hirotaka Katakura", + "url": "https://github.com/geta6" +} \ No newline at end of file diff --git a/users/getify.json b/users/getify.json index 2d686032..237f8f98 100644 --- a/users/getify.json +++ b/users/getify.json @@ -1,7 +1,7 @@ { - "copyright": "Kyle Simpson", - "url": "http://getify.me", - "email": "getify@gmail.com", - "gravatar": true, - "theme": "eula-modern" -} + "copyright": "Kyle Simpson", + "url": "http://getify.me", + "email": "getify@gmail.com", + "gravatar": true, + "theme": "eula-modern" +} \ No newline at end of file diff --git a/users/gfk.json b/users/gfk.json index 66c97c8c..73ae49d4 100644 --- a/users/gfk.json +++ b/users/gfk.json @@ -1,3 +1,3 @@ { - "copyright": "GfK" -} + "copyright": "GfK" +} \ No newline at end of file diff --git a/users/gggkiller.json b/users/gggkiller.json index c857148b..28d60543 100644 --- a/users/gggkiller.json +++ b/users/gggkiller.json @@ -1,8 +1,8 @@ { - "copyright": "GGG KILLER", - "email": "gggkiller2@gmail.com", - "format": "html", - "url": "http://gggkiller.com", - "gravatar": true, - "theme": "double-windsor" -} + "copyright": "GGG KILLER", + "email": "gggkiller2@gmail.com", + "format": "html", + "url": "http://gggkiller.com", + "gravatar": true, + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/ghedo.json b/users/ghedo.json index b5baf065..a5ea7ea7 100644 --- a/users/ghedo.json +++ b/users/ghedo.json @@ -1,3 +1,3 @@ { - "copyright": "Alessandro Ghedini" -} + "copyright": "Alessandro Ghedini" +} \ No newline at end of file diff --git a/users/gherlein.json b/users/gherlein.json index b5171979..4a201281 100644 --- a/users/gherlein.json +++ b/users/gherlein.json @@ -1,6 +1,6 @@ { - "copyright": "Greg Herlein", - "url": "https://www.linkedin.com/in/gherlein/", - "email": "gherlein@herlein.com", - "gravatar": true -} + "copyright": "Greg Herlein", + "url": "https://www.linkedin.com/in/gherlein/", + "email": "gherlein@herlein.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/ghozylab.json b/users/ghozylab.json index e26f37b1..b0cd2736 100644 --- a/users/ghozylab.json +++ b/users/ghozylab.json @@ -1,7 +1,7 @@ { - "copyright": "PT. GHOZY LAB LLC", - "url": "https://ghozylab.com", - "theme": "material-light-blue", - "email": "license@ghozylab.com", - "gravatar": true -} + "copyright": "PT. GHOZY LAB LLC", + "url": "https://ghozylab.com", + "theme": "material-light-blue", + "email": "license@ghozylab.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/giancarlovillena.json b/users/giancarlovillena.json index 81dc960b..75421ca4 100644 --- a/users/giancarlovillena.json +++ b/users/giancarlovillena.json @@ -1,5 +1,5 @@ { - "copyright": "Giancarlo Villena", - "url": "http://giancarlovillena.pe", - "email": "yo@giancarlovillena.pe" -} + "copyright": "Giancarlo Villena", + "url": "http://giancarlovillena.pe", + "email": "yo@giancarlovillena.pe" +} \ No newline at end of file diff --git a/users/gianu.json b/users/gianu.json index b0821c2e..6e4f3c04 100644 --- a/users/gianu.json +++ b/users/gianu.json @@ -1,8 +1,8 @@ { - "copyright": "Sergio Rafael Gianazza", - "url": "http://softwarepsychonaut.com", - "email": "sgianazza@gmail.com", - "format": "html", - "gravatar": true, - "theme": "default" -} + "copyright": "Sergio Rafael Gianazza", + "url": "http://softwarepsychonaut.com", + "email": "sgianazza@gmail.com", + "format": "html", + "gravatar": true, + "theme": "default" +} \ No newline at end of file diff --git a/users/gibsjose.json b/users/gibsjose.json index 67e2e749..72a66a49 100644 --- a/users/gibsjose.json +++ b/users/gibsjose.json @@ -1,8 +1,8 @@ { - "copyright": "Joe Gibson", - "url": "https://gibsjose.com", - "email": "joseph.gibson@nasa.gov", - "format": "html", - "gravatar": false, - "theme": "double-windsor" -} + "copyright": "Joe Gibson", + "url": "https://gibsjose.com", + "email": "joseph.gibson@nasa.gov", + "format": "html", + "gravatar": false, + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/gigony.json b/users/gigony.json index bf3410ad..65afd008 100644 --- a/users/gigony.json +++ b/users/gigony.json @@ -1,4 +1,4 @@ { - "copyright": "Gigon Bae, http://gigony.tistory.com", - "url": "http://gigony.tistory.com" -} + "copyright": "Gigon Bae, http://gigony.tistory.com", + "url": "http://gigony.tistory.com" +} \ No newline at end of file diff --git a/users/gilmoreorless.json b/users/gilmoreorless.json index fd89487b..e799ca0b 100644 --- a/users/gilmoreorless.json +++ b/users/gilmoreorless.json @@ -1,5 +1,5 @@ { - "copyright": "Gilmore Davidson", - "url": "http://shoehornwithteeth.com", - "theme": "double-windsor" -} + "copyright": "Gilmore Davidson", + "url": "http://shoehornwithteeth.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/gine.json b/users/gine.json index 29576afd..8d43a0f5 100644 --- a/users/gine.json +++ b/users/gine.json @@ -1,4 +1,4 @@ { - "copyright": "Chris Austin", - "email": "caustin.adwan@gmail.com" -} + "copyright": "Chris Austin", + "email": "caustin.adwan@gmail.com" +} \ No newline at end of file diff --git a/users/ginger.json b/users/ginger.json index 63115e91..2aac4503 100644 --- a/users/ginger.json +++ b/users/ginger.json @@ -1,3 +1,3 @@ { - "copyright": "Ginger Griffis" -} + "copyright": "Ginger Griffis" +} \ No newline at end of file diff --git a/users/girvo.json b/users/girvo.json index fdb426f9..5415b1de 100644 --- a/users/girvo.json +++ b/users/girvo.json @@ -1,3 +1,3 @@ { - "copyright": "Joshua Girvin" -} + "copyright": "Joshua Girvin" +} \ No newline at end of file diff --git a/users/girvo2.json b/users/girvo2.json index d3a7238e..3e599f0a 100644 --- a/users/girvo2.json +++ b/users/girvo2.json @@ -1,4 +1,4 @@ { - "copyright": "Joshua Girvin", - "format": "txt" -} + "copyright": "Joshua Girvin", + "format": "txt" +} \ No newline at end of file diff --git a/users/github.json b/users/github.json index 4b04831f..9aa6dea2 100644 --- a/users/github.json +++ b/users/github.json @@ -1,5 +1,5 @@ { - "copyright": "Github Inc", - "url": "https://github.com", - "theme": "double-windsor" -} + "copyright": "Github Inc", + "url": "https://github.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/gkatsev.json b/users/gkatsev.json index 86fbc1d8..bc4a399d 100644 --- a/users/gkatsev.json +++ b/users/gkatsev.json @@ -1,6 +1,6 @@ { - "copyright": "Gary Katsevman", - "url": "http://gkatsev.com", - "email": "me@gkatsev.com", - "format": "txt" -} + "copyright": "Gary Katsevman", + "url": "http://gkatsev.com", + "email": "me@gkatsev.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/gkralik.json b/users/gkralik.json index da058233..d13b762c 100644 --- a/users/gkralik.json +++ b/users/gkralik.json @@ -1,8 +1,8 @@ { - "copyright": "Gergely Kr\u00c3\u00a1lik", - "url": "https://kralik.io", - "email": "gergely@kralik.io", - "gravatar": false, - "theme": "solarized", - "format": "html" -} + "copyright": "Gergely Králik", + "url": "https://kralik.io", + "email": "gergely@kralik.io", + "gravatar": false, + "theme": "solarized", + "format": "html" +} \ No newline at end of file diff --git a/users/gld1982ltd.json b/users/gld1982ltd.json index fff2615b..8f20597f 100644 --- a/users/gld1982ltd.json +++ b/users/gld1982ltd.json @@ -1,8 +1,8 @@ { - "copyright": "Gary DeLaney", - "url": "http://chickenchimichan.ga", - "email": "gld1982ltd@gmail.com", - "format": "html", - "gravatar": true, - "theme": "eula-modern" -} + "copyright": "Gary DeLaney", + "url": "http://chickenchimichan.ga", + "email": "gld1982ltd@gmail.com", + "format": "html", + "gravatar": true, + "theme": "eula-modern" +} \ No newline at end of file diff --git a/users/glsee.json b/users/glsee.json index 05325094..da13fdd5 100644 --- a/users/glsee.json +++ b/users/glsee.json @@ -1,3 +1,3 @@ { - "copyright": "See Guo Lin" -} + "copyright": "See Guo Lin" +} \ No newline at end of file diff --git a/users/glynford.json b/users/glynford.json index 3c0e52c9..02f3d831 100644 --- a/users/glynford.json +++ b/users/glynford.json @@ -1,6 +1,6 @@ { - "copyright": "Glynford Padao", - "url": "http://g.padao.org", - "email": "glynford@padao.org", - "format": "txt" -} + "copyright": "Glynford Padao", + "url": "http://g.padao.org", + "email": "glynford@padao.org", + "format": "txt" +} \ No newline at end of file diff --git a/users/gmanricks.json b/users/gmanricks.json index 95deda8c..9b7562b9 100644 --- a/users/gmanricks.json +++ b/users/gmanricks.json @@ -1,5 +1,5 @@ { - "copyright": "Gabriel Manricks", - "url": "http://gabrielmanricks.com", - "email": "gmanricks@icloud.com" -} + "copyright": "Gabriel Manricks", + "url": "http://gabrielmanricks.com", + "email": "gmanricks@icloud.com" +} \ No newline at end of file diff --git a/users/gmph.json b/users/gmph.json index b0553730..b130ac9e 100644 --- a/users/gmph.json +++ b/users/gmph.json @@ -1,6 +1,6 @@ { - "copyright": "Graham Macphee", - "url": "http://grahammacphee.co.uk", - "email": "hi@grahammacphee.co.uk", - "format": "txt" -} + "copyright": "Graham Macphee", + "url": "http://grahammacphee.co.uk", + "email": "hi@grahammacphee.co.uk", + "format": "txt" +} \ No newline at end of file diff --git a/users/gogoout.json b/users/gogoout.json index 0196d7b7..46c16433 100644 --- a/users/gogoout.json +++ b/users/gogoout.json @@ -1,7 +1,7 @@ { - "copyright": "Gogoout", - "url": "https://gogoout.github.io/resumecard/", - "email": "gogoout@gmail.com", - "gravatar": true, - "theme": "8bits-monochrome" -} + "copyright": "Gogoout", + "url": "https://gogoout.github.io/resumecard/", + "email": "gogoout@gmail.com", + "gravatar": true, + "theme": "8bits-monochrome" +} \ No newline at end of file diff --git a/users/goji.json b/users/goji.json index ef39ea0b..1ec6de38 100644 --- a/users/goji.json +++ b/users/goji.json @@ -1,7 +1,7 @@ { - "copyright": "Ghozy Arif Fajri, @gojigeje", - "url": "http://goji.web.id", - "email": "gojigeje@gmail.com", - "theme": "black-beauty", - "gravatar": true -} + "copyright": "Ghozy Arif Fajri, @gojigeje", + "url": "http://goji.web.id", + "email": "gojigeje@gmail.com", + "theme": "black-beauty", + "gravatar": true +} \ No newline at end of file diff --git a/users/gojigeje.json b/users/gojigeje.json index ef39ea0b..1ec6de38 100644 --- a/users/gojigeje.json +++ b/users/gojigeje.json @@ -1,7 +1,7 @@ { - "copyright": "Ghozy Arif Fajri, @gojigeje", - "url": "http://goji.web.id", - "email": "gojigeje@gmail.com", - "theme": "black-beauty", - "gravatar": true -} + "copyright": "Ghozy Arif Fajri, @gojigeje", + "url": "http://goji.web.id", + "email": "gojigeje@gmail.com", + "theme": "black-beauty", + "gravatar": true +} \ No newline at end of file diff --git a/users/gokaygurcan.json b/users/gokaygurcan.json index 9585f538..79c9e41e 100644 --- a/users/gokaygurcan.json +++ b/users/gokaygurcan.json @@ -1,7 +1,7 @@ { - "copyright": "G\u00c3\u00b6kay G\u00c3\u00bcrcan", - "url": "https://www.gokaygurcan.com/", - "email": "info@gokaygurcan.com", - "format": "html", - "theme": "default" -} + "copyright": "Gökay Gürcan", + "url": "https://www.gokaygurcan.com/", + "email": "info@gokaygurcan.com", + "format": "html", + "theme": "default" +} \ No newline at end of file diff --git a/users/gokhangunay.json b/users/gokhangunay.json index f26ddbbb..2aa88601 100644 --- a/users/gokhangunay.json +++ b/users/gokhangunay.json @@ -1,6 +1,6 @@ { - "copyright": "Gökhan GÜNAY", - "url": "http://github.com/gokhangunay", - "theme": "ecijol", - "gravatar": true -} + "copyright": "Gökhan GÜNAY", + "url": "http://github.com/gokhangunay", + "theme": "ecijol", + "gravatar": true +} \ No newline at end of file diff --git a/users/gokmen.json b/users/gokmen.json index 11bb1973..2c17121f 100644 --- a/users/gokmen.json +++ b/users/gokmen.json @@ -1,6 +1,6 @@ { - "copyright": "G\u00f6kmen G\u00f6rgen", - "url": "http://gokmengorgen.net", - "email": "gkmngrgn@gmail.com", - "format": "txt" -} + "copyright": "Gökmen Görgen", + "url": "http://gokmengorgen.net", + "email": "gkmngrgn@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/goldsborough.json b/users/goldsborough.json index afde7fe1..a3e1ff98 100644 --- a/users/goldsborough.json +++ b/users/goldsborough.json @@ -1,5 +1,5 @@ { - "copyright": "Peter Goldsborough", - "email": "petergoldsborough@hotmail.com", - "gravatar": true -} + "copyright": "Peter Goldsborough", + "email": "petergoldsborough@hotmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/goodybag.json b/users/goodybag.json index 29b2055d..96b7f4fb 100644 --- a/users/goodybag.json +++ b/users/goodybag.json @@ -1,6 +1,6 @@ { - "copyright": "Goodybag, Inc.", - "url": "http://www.goodybag.com", - "email": "engineering@goodybag.com", - "format": "txt" -} + "copyright": "Goodybag, Inc.", + "url": "http://www.goodybag.com", + "email": "engineering@goodybag.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/googledrivewpmedia.json b/users/googledrivewpmedia.json index 97a4182a..876adce1 100644 --- a/users/googledrivewpmedia.json +++ b/users/googledrivewpmedia.json @@ -1,6 +1,6 @@ { - "copyright": "Moch Amir, http://mochamir.com", - "url": "https://wordpress.org/plugins/google-drive-wp-media/", - "email": "surat@mochamir.com", - "format": "html" -} + "copyright": "Moch Amir, http://mochamir.com", + "url": "https://wordpress.org/plugins/google-drive-wp-media/", + "email": "surat@mochamir.com", + "format": "html" +} \ No newline at end of file diff --git a/users/gordondiggs.json b/users/gordondiggs.json index 14b708db..4e66bf75 100644 --- a/users/gordondiggs.json +++ b/users/gordondiggs.json @@ -1,6 +1,6 @@ { - "copyright": "Gordon Diggs", - "url": "http://gordondiggs.com", - "email": "gordon@diggs.me", - "format": "txt" -} + "copyright": "Gordon Diggs", + "url": "http://gordondiggs.com", + "email": "gordon@diggs.me", + "format": "txt" +} \ No newline at end of file diff --git a/users/gossi.json b/users/gossi.json index 26cf4a8a..f5479b91 100644 --- a/users/gossi.json +++ b/users/gossi.json @@ -1,4 +1,4 @@ { - "copyright": "Thomas Gossmann, http://gos.si", - "url": "http://gos.si" -} + "copyright": "Thomas Gossmann, http://gos.si", + "url": "http://gos.si" +} \ No newline at end of file diff --git a/users/gphofficial.json b/users/gphofficial.json index 8bc150ea..7be18cd9 100644 --- a/users/gphofficial.json +++ b/users/gphofficial.json @@ -1,7 +1,7 @@ { - "copyright": "Goh Puay Hiang", - "url": "https://gphofficial.github.com/", - "email": "gphofficial+public@gmail.com", - "format": "html", - "gravatar": true -} + "copyright": "Goh Puay Hiang", + "url": "https://gphofficial.github.com/", + "email": "gphofficial+public@gmail.com", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/gpl.json b/users/gpl.json index a6eddc36..2bbb9ea8 100644 --- a/users/gpl.json +++ b/users/gpl.json @@ -1,4 +1,4 @@ { - "copyright": "GPL Project Developer Who Made Changes \n\nThis is an example of sublicensing an MIT licensed work under the\nterms of the GNU GPLv3+.\n\nThis file is free software: you may copy, redistribute and/or\nmodify it under the terms of the GNU General Public License version 3\nas published by the Free Software Foundation, or (at\nyour option) any later version.\n\nThis file is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nGeneral Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program. If not, see\n.\n\nThis file incorporates work covered by the following copyright\nand permission notice:\n\nCopyright \u00a9 2013 Original Contributor Name ", - "format": "txt" -} + "copyright": "GPL Project Developer Who Made Changes \n\nThis is an example of sublicensing an MIT licensed work under the\nterms of the GNU GPLv3+.\n\nThis file is free software: you may copy, redistribute and/or\nmodify it under the terms of the GNU General Public License version 3\nas published by the Free Software Foundation, or (at\nyour option) any later version.\n\nThis file is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nGeneral Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program. If not, see\n.\n\nThis file incorporates work covered by the following copyright\nand permission notice:\n\nCopyright © 2013 Original Contributor Name ", + "format": "txt" +} \ No newline at end of file diff --git a/users/gplv2.json b/users/gplv2.json index 0fbe59c0..c3193f6c 100644 --- a/users/gplv2.json +++ b/users/gplv2.json @@ -1,4 +1,4 @@ { - "copyright": "GPL Project Developer Who Made Changes \n\nThis is an example of sublicensing an MIT licensed work under the terms of\nthe GNU GPLv2+.\n\nThis file is free software: you may copy, redistribute and/or modify it \nunder the terms of the GNU General Public License as published by the \nFree Software Foundation, either version 2 of the License, or (at your \noption) any later version. \n\nThis file is distributed in the hope that it will be useful, but \nWITHOUT ANY WARRANTY; without even the implied warranty of \nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU \nGeneral Public License for more details. \n\nYou should have received a copy of the GNU General Public License \nalong with this program. If not, see . \n\nThis file incorporates work covered by the following copyright and \npermission notice:\n\nCopyright \u00a9 2013 Original Contributor Name ", - "format": "txt" -} + "copyright": "GPL Project Developer Who Made Changes \n\nThis is an example of sublicensing an MIT licensed work under the terms of\nthe GNU GPLv2+.\n\nThis file is free software: you may copy, redistribute and/or modify it \nunder the terms of the GNU General Public License as published by the \nFree Software Foundation, either version 2 of the License, or (at your \noption) any later version. \n\nThis file is distributed in the hope that it will be useful, but \nWITHOUT ANY WARRANTY; without even the implied warranty of \nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU \nGeneral Public License for more details. \n\nYou should have received a copy of the GNU General Public License \nalong with this program. If not, see . \n\nThis file incorporates work covered by the following copyright and \npermission notice:\n\nCopyright © 2013 Original Contributor Name ", + "format": "txt" +} \ No newline at end of file diff --git a/users/gplv3.json b/users/gplv3.json index 7be1d97a..28ea8e5e 100644 --- a/users/gplv3.json +++ b/users/gplv3.json @@ -1,4 +1,4 @@ { - "copyright": "GPL Project Developer Who Made Changes \n\nThis is an example of sublicensing an MIT licensed work under the terms of\nthe GNU GPLv3+.\n\nThis file is free software: you may copy, redistribute and/or modify it \nunder the terms of the GNU General Public License as published by the \nFree Software Foundation, either version 3 of the License, or (at your \noption) any later version. \n\nThis file is distributed in the hope that it will be useful, but \nWITHOUT ANY WARRANTY; without even the implied warranty of \nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU \nGeneral Public License for more details. \n\nYou should have received a copy of the GNU General Public License \nalong with this program. If not, see . \n\nThis file incorporates work covered by the following copyright and \npermission notice:\n\nCopyright \u00a9 2013 Original Contributor-Name ", - "format": "txt" -} + "copyright": "GPL Project Developer Who Made Changes \n\nThis is an example of sublicensing an MIT licensed work under the terms of\nthe GNU GPLv3+.\n\nThis file is free software: you may copy, redistribute and/or modify it \nunder the terms of the GNU General Public License as published by the \nFree Software Foundation, either version 3 of the License, or (at your \noption) any later version. \n\nThis file is distributed in the hope that it will be useful, but \nWITHOUT ANY WARRANTY; without even the implied warranty of \nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU \nGeneral Public License for more details. \n\nYou should have received a copy of the GNU General Public License \nalong with this program. If not, see . \n\nThis file incorporates work covered by the following copyright and \npermission notice:\n\nCopyright © 2013 Original Contributor-Name ", + "format": "txt" +} \ No newline at end of file diff --git a/users/graham.json b/users/graham.json index d3e8afb6..4b90a2cc 100644 --- a/users/graham.json +++ b/users/graham.json @@ -1,5 +1,5 @@ { - "copyright": "Graham Licence, http://blog.grahamlicence.co.uk", - "url": "http://blog.grahamlicence.co.uk", - "theme": "double-windsor" -} + "copyright": "Graham Licence, http://blog.grahamlicence.co.uk", + "url": "http://blog.grahamlicence.co.uk", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/grapestack.json b/users/grapestack.json index 73e1ec34..04e9ecbf 100644 --- a/users/grapestack.json +++ b/users/grapestack.json @@ -1,6 +1,6 @@ { - "copyright": "GRAPE Stack", - "url": "http://www.grapestack.com", - "email": "license@grapestack.com", - "format": "txt" -} + "copyright": "GRAPE Stack", + "url": "http://www.grapestack.com", + "email": "license@grapestack.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/grapevine.json b/users/grapevine.json index 4b76f4bb..c68605b2 100644 --- a/users/grapevine.json +++ b/users/grapevine.json @@ -1,6 +1,6 @@ { - "copyright": "Marc H. Weiner", - "url": "http://www.wizardlogic.com", - "email": "mhweiner234@gmail.com", - "format": "txt" -} + "copyright": "Marc H. Weiner", + "url": "http://www.wizardlogic.com", + "email": "mhweiner234@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/grawity.json b/users/grawity.json index 4a31537e..eb3c805d 100644 --- a/users/grawity.json +++ b/users/grawity.json @@ -1,6 +1,6 @@ { - "copyright": "Mantas Mikul\u00c4\u2014nas", - "email": "grawity@gmail.com", - "url": "http://nullroute.eu.org/~grawity/", - "format": "txt" -} + "copyright": "Mantas MikulÄ—nas", + "email": "grawity@gmail.com", + "url": "http://nullroute.eu.org/~grawity/", + "format": "txt" +} \ No newline at end of file diff --git a/users/gre.json b/users/gre.json index e0479f85..8d79b414 100644 --- a/users/gre.json +++ b/users/gre.json @@ -1,5 +1,5 @@ { - "copyright": "Ga\u00ebtan Renaudeau", - "url": "http://greweb.fr", - "email": "renaudeau.gaetan@gmail.com" -} + "copyright": "Gaëtan Renaudeau", + "url": "http://greweb.fr", + "email": "renaudeau.gaetan@gmail.com" +} \ No newline at end of file diff --git a/users/greatwizard.json b/users/greatwizard.json index f9efdd6e..96c925aa 100644 --- a/users/greatwizard.json +++ b/users/greatwizard.json @@ -1,8 +1,8 @@ { - "copyright": "Guillaume G\u00c3\u00a9rard, http://guillaume.gerard.pm", - "url": "http://guillaume.gerard.pm", - "email": "guillaume.gerard88@gmail.com", - "format": "html", - "gravatar": true, - "theme": "material-deep-orange" -} + "copyright": "Guillaume Gérard, http://guillaume.gerard.pm", + "url": "http://guillaume.gerard.pm", + "email": "guillaume.gerard88@gmail.com", + "format": "html", + "gravatar": true, + "theme": "material-deep-orange" +} \ No newline at end of file diff --git a/users/green.json b/users/green.json index 4e6fa8f0..8f2a14e5 100644 --- a/users/green.json +++ b/users/green.json @@ -1,3 +1,3 @@ { - "copyright": "Anthony Green" -} + "copyright": "Anthony Green" +} \ No newline at end of file diff --git a/users/greenify.json b/users/greenify.json index ba6a86cd..4871d829 100644 --- a/users/greenify.json +++ b/users/greenify.json @@ -1,8 +1,8 @@ { - "copyright": "greenify", - "url": "https://github.com/greenify", - "email": "greeenify@gmail.com", - "format": "html", - "gravatar": "true", - "theme": "magicmint" -} + "copyright": "greenify", + "url": "https://github.com/greenify", + "email": "greeenify@gmail.com", + "format": "html", + "gravatar": "true", + "theme": "magicmint" +} \ No newline at end of file diff --git a/users/gregarmer.json b/users/gregarmer.json index 16efc29f..ade86341 100644 --- a/users/gregarmer.json +++ b/users/gregarmer.json @@ -1,7 +1,7 @@ { - "copyright": "Gregory Armer", - "url": "https://sigterm.sh", - "email": "greg@sigterm.sh", - "gravatar": true, - "theme": "eula-modern" -} + "copyright": "Gregory Armer", + "url": "https://sigterm.sh", + "email": "greg@sigterm.sh", + "gravatar": true, + "theme": "eula-modern" +} \ No newline at end of file diff --git a/users/grekko.json b/users/grekko.json index 000ae630..91b6da87 100644 --- a/users/grekko.json +++ b/users/grekko.json @@ -1,8 +1,8 @@ { - "copyright": "Gregory Igelmund", - "url": "http://grekko.de", - "email": "me@grekko.de", - "format": "html", - "theme": "double-windsor", - "gravatar": true -} + "copyright": "Gregory Igelmund", + "url": "http://grekko.de", + "email": "me@grekko.de", + "format": "html", + "theme": "double-windsor", + "gravatar": true +} \ No newline at end of file diff --git a/users/greweb.json b/users/greweb.json index 70214bb5a..abae4763 100644 --- a/users/greweb.json +++ b/users/greweb.json @@ -1,6 +1,6 @@ { - "copyright": "Ga\u00ebtan Renaudeau", - "url": "http://greweb.fr", - "email": "renaudeau.gaetan@gmail.com", - "format": "txt" -} + "copyright": "Gaëtan Renaudeau", + "url": "http://greweb.fr", + "email": "renaudeau.gaetan@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/greyhoundforty.json b/users/greyhoundforty.json index 17295d22..2e8d3c5b 100644 --- a/users/greyhoundforty.json +++ b/users/greyhoundforty.json @@ -1,3 +1,3 @@ { - "copyright": "Ryan Tiffany" -} + "copyright": "Ryan Tiffany" +} \ No newline at end of file diff --git a/users/greystate.json b/users/greystate.json index d8abddab..c7ac5c5e 100644 --- a/users/greystate.json +++ b/users/greystate.json @@ -1,5 +1,5 @@ { - "copyright": "Chriztian Steinmeier, http://greystate.dk", - "url": "http://greystate.dk", - "email": "chriztian@steinmeier.dk" -} + "copyright": "Chriztian Steinmeier, http://greystate.dk", + "url": "http://greystate.dk", + "email": "chriztian@steinmeier.dk" +} \ No newline at end of file diff --git a/users/groenewege.json b/users/groenewege.json index 6d978614..f88f16f0 100644 --- a/users/groenewege.json +++ b/users/groenewege.json @@ -1,4 +1,4 @@ { - "copyright": "Gunther Groenewege, http://groenewege.com", - "url": "http://groenewege.com" -} + "copyright": "Gunther Groenewege, http://groenewege.com", + "url": "http://groenewege.com" +} \ No newline at end of file diff --git a/users/grvcoelho.json b/users/grvcoelho.json index 934efeea..52f229fd 100644 --- a/users/grvcoelho.json +++ b/users/grvcoelho.json @@ -1,4 +1,4 @@ { - "copyright": "Guilherme Rv Coelho", - "email": "guilhermervcoelho@gmail.com" -} + "copyright": "Guilherme Rv Coelho", + "email": "guilhermervcoelho@gmail.com" +} \ No newline at end of file diff --git a/users/gryftir.json b/users/gryftir.json index 8d17face..67377996 100644 --- a/users/gryftir.json +++ b/users/gryftir.json @@ -1,6 +1,6 @@ { - "copyright": "Lawrence Jacob Siebert", - "url": "https://github.com/gryftir/get_number", - "email": "gryftir@gmail.com", - "format": "txt" -} + "copyright": "Lawrence Jacob Siebert", + "url": "https://github.com/gryftir/get_number", + "email": "gryftir@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/gsimard.json b/users/gsimard.json index 0b45a6d1..3a4d88fa 100644 --- a/users/gsimard.json +++ b/users/gsimard.json @@ -1,3 +1,3 @@ { - "copyright": "Guillaume Simard" -} + "copyright": "Guillaume Simard" +} \ No newline at end of file diff --git a/users/gtierney.json b/users/gtierney.json index b38770c4..96d7d594 100644 --- a/users/gtierney.json +++ b/users/gtierney.json @@ -1,6 +1,6 @@ { - "copyright": "Gary Tierney", - "url": "https://protectyour.pw/", - "email": "gary.tierney@gmx.com", - "format": "txt" -} + "copyright": "Gary Tierney", + "url": "https://protectyour.pw/", + "email": "gary.tierney@gmx.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/gtomitsuka.json b/users/gtomitsuka.json index f57e329f..bfc73dc0 100644 --- a/users/gtomitsuka.json +++ b/users/gtomitsuka.json @@ -1,3 +1,3 @@ { - "copyright": "Gabriel Tomitsuka" -} + "copyright": "Gabriel Tomitsuka" +} \ No newline at end of file diff --git a/users/gtrrz-victor.json b/users/gtrrz-victor.json index 90c8b277..240d9280 100644 --- a/users/gtrrz-victor.json +++ b/users/gtrrz-victor.json @@ -1,8 +1,8 @@ { - "copyright": "V\u00edctor Guti\u00e9rrez", - "url": "www.gtrrzvictor.com", - "email": "dev@gtrrzvictor.com", - "format": "html", - "gravatar": true, - "theme": "material-light-blue" -} + "copyright": "Víctor Gutiérrez", + "url": "www.gtrrzvictor.com", + "email": "dev@gtrrzvictor.com", + "format": "html", + "gravatar": true, + "theme": "material-light-blue" +} \ No newline at end of file diff --git a/users/gugod.json b/users/gugod.json index 90d9aa14..b1426904 100644 --- a/users/gugod.json +++ b/users/gugod.json @@ -1,3 +1,3 @@ { - "copyright": "Kang-min Liu" -} + "copyright": "Kang-min Liu" +} \ No newline at end of file diff --git a/users/guicheffer.json b/users/guicheffer.json index c6a16e59..e5615c3c 100644 --- a/users/guicheffer.json +++ b/users/guicheffer.json @@ -1,7 +1,7 @@ { - "copyright": "Joao Guilherme", - "url": "http://guicheffer.me/", - "email": "hi@guicheffer.me", - "theme": "default", - "gravatar": true -} + "copyright": "Joao Guilherme", + "url": "http://guicheffer.me/", + "email": "hi@guicheffer.me", + "theme": "default", + "gravatar": true +} \ No newline at end of file diff --git a/users/guidokessels.json b/users/guidokessels.json index a18f5fa9..70a60777 100644 --- a/users/guidokessels.json +++ b/users/guidokessels.json @@ -1,4 +1,4 @@ { - "copyright": "Guido Kessels", - "email": "guidokessels@gmail.com" -} + "copyright": "Guido Kessels", + "email": "guidokessels@gmail.com" +} \ No newline at end of file diff --git a/users/guilhermemarconi.json b/users/guilhermemarconi.json index ea6b4db9..c6e2ef7d 100644 --- a/users/guilhermemarconi.json +++ b/users/guilhermemarconi.json @@ -1,7 +1,7 @@ { - "copyright": "Guilherme Marconi", - "url": "http://guilhermemarconi.me", - "email": "oi@guilhermemarconi.me", - "format": "txt", - "gravatar": "gwyer" -} + "copyright": "Guilherme Marconi", + "url": "http://guilhermemarconi.me", + "email": "oi@guilhermemarconi.me", + "format": "txt", + "gravatar": "gwyer" +} \ No newline at end of file diff --git a/users/guilhermeprates.json b/users/guilhermeprates.json index e6c2ef83..374dcad2 100644 --- a/users/guilhermeprates.json +++ b/users/guilhermeprates.json @@ -1,3 +1,3 @@ { - "copyright": "Guilherme Prates" -} + "copyright": "Guilherme Prates" +} \ No newline at end of file diff --git a/users/gunar.json b/users/gunar.json index cbeff9f9..f48b710f 100644 --- a/users/gunar.json +++ b/users/gunar.json @@ -1,7 +1,7 @@ { - "copyright": "Gunar C. Gessner, http://gunargessner.com", - "url": "http://gunargessner.com", - "email": "gunar@gunargessner.com", - "theme": "opensans", - "gravatar": true -} + "copyright": "Gunar C. Gessner, http://gunargessner.com", + "url": "http://gunargessner.com", + "email": "gunar@gunargessner.com", + "theme": "opensans", + "gravatar": true +} \ No newline at end of file diff --git a/users/gus.json b/users/gus.json index 1c70ff65..ba17f1d6 100644 --- a/users/gus.json +++ b/users/gus.json @@ -1,3 +1,3 @@ { - "copyright": "Angus Macdonald" -} + "copyright": "Angus Macdonald" +} \ No newline at end of file diff --git a/users/gustavohenke.json b/users/gustavohenke.json index d44840d7..449dc079 100644 --- a/users/gustavohenke.json +++ b/users/gustavohenke.json @@ -1,6 +1,6 @@ { - "copyright": "Gustavo Henke, https://github.com/gustavohenke", - "url": "https://github.com/gustavohenke", - "email": "gustavo@injoin.com.br", - "gravatar": true -} + "copyright": "Gustavo Henke, https://github.com/gustavohenke", + "url": "https://github.com/gustavohenke", + "email": "gustavo@injoin.com.br", + "gravatar": true +} \ No newline at end of file diff --git a/users/gvv.json b/users/gvv.json index 7a717b1b..e537aa43 100644 --- a/users/gvv.json +++ b/users/gvv.json @@ -1,4 +1,4 @@ { - "copyright": "Gary V. Vaughan", - "url": "http://gary.vaughan.pe" -} + "copyright": "Gary V. Vaughan", + "url": "http://gary.vaughan.pe" +} \ No newline at end of file diff --git a/users/gyoshev.json b/users/gyoshev.json index 71602065..1e5ce7b5 100644 --- a/users/gyoshev.json +++ b/users/gyoshev.json @@ -1,5 +1,5 @@ { - "copyright": "Alexander Gyoshev, http://gyoshev.net", - "url": "http://gyoshev.net", - "theme": "flesch" -} + "copyright": "Alexander Gyoshev, http://gyoshev.net", + "url": "http://gyoshev.net", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/h.json b/users/h.json index fde9ba4d..0aff5677 100644 --- a/users/h.json +++ b/users/h.json @@ -1,6 +1,6 @@ { - "copyright": "Harrison Gulliver", - "url": "http://hrrsn.net", - "email": "harrison@thenewthirty.co.nz", - "format": "html" -} + "copyright": "Harrison Gulliver", + "url": "http://hrrsn.net", + "email": "harrison@thenewthirty.co.nz", + "format": "html" +} \ No newline at end of file diff --git a/users/hadb.json b/users/hadb.json index 7cb8a4a2..d1389beb 100644 --- a/users/hadb.json +++ b/users/hadb.json @@ -1,8 +1,8 @@ { - "copyright": "HADB, Bean Deng \u00e9\u201a\u201c\u00e6\u2013\u0152", - "url": "http://blog.haoest.com", - "format": "html", - "email": "haiandengbin@126.com", - "gravatar": false, - "theme": "eula-modern" -} + "copyright": "HADB, Bean Deng é‚“æ–Œ", + "url": "http://blog.haoest.com", + "format": "html", + "email": "haiandengbin@126.com", + "gravatar": false, + "theme": "eula-modern" +} \ No newline at end of file diff --git a/users/hail2u.json b/users/hail2u.json index 9522d254..303fb3e4 100644 --- a/users/hail2u.json +++ b/users/hail2u.json @@ -1,5 +1,5 @@ { - "copyright": "Kyo Nagashima, http://hail2u.net/", - "url": "http://hail2u.net/", - "theme": "flesch" -} + "copyright": "Kyo Nagashima, http://hail2u.net/", + "url": "http://hail2u.net/", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/halid.json b/users/halid.json index c113bc69..ff7d7cc3 100644 --- a/users/halid.json +++ b/users/halid.json @@ -1,8 +1,8 @@ { - "copyright": "Halid Altuner", - "url": "http://halid.org", - "email": "halid@halid.org", - "format": "html", - "gravater": true, - "theme": "opensans" -} + "copyright": "Halid Altuner", + "url": "http://halid.org", + "email": "halid@halid.org", + "format": "html", + "gravater": true, + "theme": "opensans" +} \ No newline at end of file diff --git a/users/halil.json b/users/halil.json index fa224042..c0f13353 100644 --- a/users/halil.json +++ b/users/halil.json @@ -1,6 +1,6 @@ { - "copyright": "Halil \u00c4\u00b0brahim \u00c5\u017eAFAK", - "url": "https://github.com/halil", - "email": "hibrahimsafak@gmail.com", - "format": "txt" -} + "copyright": "Halil İbrahim ÅžAFAK", + "url": "https://github.com/halil", + "email": "hibrahimsafak@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/halit.json b/users/halit.json index c6890966..e25c71e6 100644 --- a/users/halit.json +++ b/users/halit.json @@ -1,6 +1,6 @@ { - "copyright": "Halit Alptekin", - "url": "http://www.halitalptekin.com", - "email": "info@halitalptekin.com", - "format": "txt" -} + "copyright": "Halit Alptekin", + "url": "http://www.halitalptekin.com", + "email": "info@halitalptekin.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/hallme.json b/users/hallme.json index 520290d4..09f8018d 100644 --- a/users/hallme.json +++ b/users/hallme.json @@ -1,6 +1,6 @@ { - "copyright": "Hall Internet Marketing", - "url": "http://www.hallme.com/", - "email": "it@hallme.com", - "gravatar": true -} + "copyright": "Hall Internet Marketing", + "url": "http://www.hallme.com/", + "email": "it@hallme.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/hamano.json b/users/hamano.json index 720f03d7..417993c7 100644 --- a/users/hamano.json +++ b/users/hamano.json @@ -1,3 +1,3 @@ { - "copyright": "HAMANO Tsukasa" -} + "copyright": "HAMANO Tsukasa" +} \ No newline at end of file diff --git a/users/hamidshavarean.json b/users/hamidshavarean.json index 9506e296..53e2593d 100644 --- a/users/hamidshavarean.json +++ b/users/hamidshavarean.json @@ -1,6 +1,6 @@ { - "copyright": "Hamid Shavarean", - "url": "http://www.hamidshavarean.com/", - "email": "hamid@hamidshavarean.com", - "format": "txt" -} + "copyright": "Hamid Shavarean", + "url": "http://www.hamidshavarean.com/", + "email": "hamid@hamidshavarean.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/hanksudo.json b/users/hanksudo.json index fd50005f..14eb0ce1 100644 --- a/users/hanksudo.json +++ b/users/hanksudo.json @@ -1,6 +1,6 @@ { - "copyright": "Hank Wang", - "email": "drapho@gmail.com", - "theme": "hilula", - "gravatar": true -} + "copyright": "Hank Wang", + "email": "drapho@gmail.com", + "theme": "hilula", + "gravatar": true +} \ No newline at end of file diff --git a/users/haoxiong.json b/users/haoxiong.json index 2517979f..8d0c8a9e 100644 --- a/users/haoxiong.json +++ b/users/haoxiong.json @@ -1,6 +1,6 @@ { - "copyright": "Hao Xiong", - "email": "xionghao818@hotmail.com", - "format": "html", - "theme": "plaintext" -} + "copyright": "Hao Xiong", + "email": "xionghao818@hotmail.com", + "format": "html", + "theme": "plaintext" +} \ No newline at end of file diff --git a/users/hardeep.json b/users/hardeep.json index 2c602572..a4c836bf 100644 --- a/users/hardeep.json +++ b/users/hardeep.json @@ -1,4 +1,4 @@ { - "copyright": "Hardeep Singh", - "email": "h@rdeep.ca" -} + "copyright": "Hardeep Singh", + "email": "h@rdeep.ca" +} \ No newline at end of file diff --git a/users/harold.json b/users/harold.json index 770223fe..35e697bc 100644 --- a/users/harold.json +++ b/users/harold.json @@ -1,6 +1,6 @@ { - "copyright": "Harold Hoo", - "url": "http://yaolong.me", - "email": "mail@yaolong.me", - "format": "txt" -} + "copyright": "Harold Hoo", + "url": "http://yaolong.me", + "email": "mail@yaolong.me", + "format": "txt" +} \ No newline at end of file diff --git a/users/harry.json b/users/harry.json index 884f370c..ca2fabc0 100644 --- a/users/harry.json +++ b/users/harry.json @@ -1,9 +1,9 @@ { - "copyright": "Harry Scheiner", - "url": "http://harryscheiner.com", - "email": "me@harryscheiner.com", - "format": "html", - "gravatar": true, - "version": "6d33a046", - "theme": "default" -} + "copyright": "Harry Scheiner", + "url": "http://harryscheiner.com", + "email": "me@harryscheiner.com", + "format": "html", + "gravatar": true, + "version": "6d33a046", + "theme": "default" +} \ No newline at end of file diff --git a/users/harryd.json b/users/harryd.json index 6bb81039..6bb5796a 100644 --- a/users/harryd.json +++ b/users/harryd.json @@ -1,7 +1,7 @@ { - "copyright": "Harry Denley", - "url": "http://harrydenley.com", - "email": "h.denley@yahoo.co.uk", - "gravatar": true, - "theme": "eula-modern" -} + "copyright": "Harry Denley", + "url": "http://harrydenley.com", + "email": "h.denley@yahoo.co.uk", + "gravatar": true, + "theme": "eula-modern" +} \ No newline at end of file diff --git a/users/harrydeluxe.json b/users/harrydeluxe.json index 4613adf7..ad1281a8 100644 --- a/users/harrydeluxe.json +++ b/users/harrydeluxe.json @@ -1,5 +1,5 @@ { - "copyright": "Harald Hanek, http://delacap.com", - "url": "http://delacap.com", - "theme": "flesch" -} + "copyright": "Harald Hanek, http://delacap.com", + "url": "http://delacap.com", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/harshjain.json b/users/harshjain.json index 3c754d88..9d3d2465 100644 --- a/users/harshjain.json +++ b/users/harshjain.json @@ -1,7 +1,7 @@ { - "copyright": "Harsh Jain, http://harsh.ml", - "url": "http://harshjain.ml", - "email": "harshjniitr@gmail.com", - "gravatar": true, - "theme": "black-beauty" -} + "copyright": "Harsh Jain, http://harsh.ml", + "url": "http://harshjain.ml", + "email": "harshjniitr@gmail.com", + "gravatar": true, + "theme": "black-beauty" +} \ No newline at end of file diff --git a/users/harshjv.json b/users/harshjv.json index 181e40ef..20a3e9e8 100644 --- a/users/harshjv.json +++ b/users/harshjv.json @@ -1,5 +1,5 @@ { - "copyright": "Harsh Vakharia", - "url": "https://harshjv.github.io", - "email": "harshjv@gmail.com" -} + "copyright": "Harsh Vakharia", + "url": "https://harshjv.github.io", + "email": "harshjv@gmail.com" +} \ No newline at end of file diff --git a/users/hashanp.json b/users/hashanp.json index 488562e5..c9b66dc6 100644 --- a/users/hashanp.json +++ b/users/hashanp.json @@ -1,6 +1,6 @@ { - "copyright": "Hashan Punchihewa, https://hashanp.github.io", - "url": "https://hashanp.divshot.io", - "email": "hashan.punchihewa@gmail.com", - "theme": "magic-mint" -} + "copyright": "Hashan Punchihewa, https://hashanp.github.io", + "url": "https://hashanp.divshot.io", + "email": "hashan.punchihewa@gmail.com", + "theme": "magic-mint" +} \ No newline at end of file diff --git a/users/hashnuke.json b/users/hashnuke.json index ff2d6dc0..b0746aae 100644 --- a/users/hashnuke.json +++ b/users/hashnuke.json @@ -1,3 +1,3 @@ { - "copyright": "Akash Manohar J" -} + "copyright": "Akash Manohar J" +} \ No newline at end of file diff --git a/users/hassankhan.json b/users/hassankhan.json index b2141ca5..0c47ca64 100644 --- a/users/hassankhan.json +++ b/users/hassankhan.json @@ -1,7 +1,7 @@ { - "copyright": "Hassan Khan, http://hassankhan.me", - "url": "http://hassankhan.me", - "email": "contact@hassankhan.me", - "gravatar": true, - "theme": "black-beauty" -} + "copyright": "Hassan Khan, http://hassankhan.me", + "url": "http://hassankhan.me", + "email": "contact@hassankhan.me", + "gravatar": true, + "theme": "black-beauty" +} \ No newline at end of file diff --git a/users/hassox.json b/users/hassox.json index 0845b780..e2e9265f 100644 --- a/users/hassox.json +++ b/users/hassox.json @@ -1,3 +1,3 @@ { - "copyright": "Daniel Neighman" -} + "copyright": "Daniel Neighman" +} \ No newline at end of file diff --git a/users/hatena.json b/users/hatena.json index 71dbd94d..881281ab 100644 --- a/users/hatena.json +++ b/users/hatena.json @@ -1,4 +1,4 @@ { - "copyright": "Hatena, Inc.", - "url": "http://www.hatena.ne.jp" -} + "copyright": "Hatena, Inc.", + "url": "http://www.hatena.ne.jp" +} \ No newline at end of file diff --git a/users/hatollint.json b/users/hatollint.json index f8fc94e1..e88d8d25 100644 --- a/users/hatollint.json +++ b/users/hatollint.json @@ -1,8 +1,8 @@ { - "copyright": "Hatollint, https://github.com/hatollint", - "url": "https://vk.com/keelvel", - "format": "txt", - "email": "hatollint@gmail.com", - "gravatar": true, - "theme": "default" -} + "copyright": "Hatollint, https://github.com/hatollint", + "url": "https://vk.com/keelvel", + "format": "txt", + "email": "hatollint@gmail.com", + "gravatar": true, + "theme": "default" +} \ No newline at end of file diff --git a/users/hbc.json b/users/hbc.json index c9dab6e1..0fbbd2b4 100644 --- a/users/hbc.json +++ b/users/hbc.json @@ -1,6 +1,6 @@ { - "copyright": "hbc", - "email": "me@hbc.rocks", - "format": "txt", - "gravatar": true -} + "copyright": "hbc", + "email": "me@hbc.rocks", + "format": "txt", + "gravatar": true +} \ No newline at end of file diff --git a/users/hd.json b/users/hd.json index 9d76828e..5c153938 100644 --- a/users/hd.json +++ b/users/hd.json @@ -1,6 +1,6 @@ { - "copyright": "Harry Denley", - "url": "http://harrydenley.com", - "email": "", - "format": "txt" -} + "copyright": "Harry Denley", + "url": "http://harrydenley.com", + "email": "", + "format": "txt" +} \ No newline at end of file diff --git a/users/he7d3r.json b/users/he7d3r.json index e8683c32..b94cc0fa 100644 --- a/users/he7d3r.json +++ b/users/he7d3r.json @@ -1,4 +1,4 @@ { - "copyright": "He7d3r", - "theme": "eula-modern" -} + "copyright": "He7d3r", + "theme": "eula-modern" +} \ No newline at end of file diff --git a/users/healthx.json b/users/healthx.json index 8b98703f..9b6c992b 100644 --- a/users/healthx.json +++ b/users/healthx.json @@ -1,3 +1,3 @@ { - "copyright": "Healthx, Inc" -} + "copyright": "Healthx, Inc" +} \ No newline at end of file diff --git a/users/hecticjeff.json b/users/hecticjeff.json index 1d2cbc04..972ae11b 100644 --- a/users/hecticjeff.json +++ b/users/hecticjeff.json @@ -1,3 +1,3 @@ { - "copyright": "Chris Mytton" -} + "copyright": "Chris Mytton" +} \ No newline at end of file diff --git a/users/hello.json b/users/hello.json index a7da30cc..e1dd10fa 100644 --- a/users/hello.json +++ b/users/hello.json @@ -1,6 +1,6 @@ { - "copyright": "James Pinto", - "url": "https://github.com/hello-gem/hello", - "email": "thejamespinto@gmail.com", - "theme": "opensans" -} + "copyright": "James Pinto", + "url": "https://github.com/hello-gem/hello", + "email": "thejamespinto@gmail.com", + "theme": "opensans" +} \ No newline at end of file diff --git a/users/hemersonvianna.json b/users/hemersonvianna.json index 86b3464f..932862a5 100644 --- a/users/hemersonvianna.json +++ b/users/hemersonvianna.json @@ -1,5 +1,5 @@ { - "copyright": "Hemerson Vianna", - "url": "http://hemersonvianna.io", - "email": "hemerson.lourenco@gmail.com" -} + "copyright": "Hemerson Vianna", + "url": "http://hemersonvianna.io", + "email": "hemerson.lourenco@gmail.com" +} \ No newline at end of file diff --git a/users/henrikbjorn.json b/users/henrikbjorn.json index 3dc17e01..b6fe11aa 100644 --- a/users/henrikbjorn.json +++ b/users/henrikbjorn.json @@ -1,6 +1,6 @@ { - "copyright": "Henrik Bj\u00c3\u00b8rnskov", - "email": "henrik@bjrnskov.dk", - "url": "http://henrik.bjrnskov.dk", - "format": "txt" -} + "copyright": "Henrik Bjørnskov", + "email": "henrik@bjrnskov.dk", + "url": "http://henrik.bjrnskov.dk", + "format": "txt" +} \ No newline at end of file diff --git a/users/henrikhodne.json b/users/henrikhodne.json index f35adbbd..1f768ac4 100644 --- a/users/henrikhodne.json +++ b/users/henrikhodne.json @@ -1,4 +1,4 @@ { - "copyright": "Henrik Hodne", - "email": "henrik@hodne.io" -} + "copyright": "Henrik Hodne", + "email": "henrik@hodne.io" +} \ No newline at end of file diff --git a/users/henriquemoody.json b/users/henriquemoody.json index b6ae1d59..c10385dd 100644 --- a/users/henriquemoody.json +++ b/users/henriquemoody.json @@ -1,5 +1,5 @@ { - "copyright": "Henrique Moody", - "url": "http://about.me/henriquemoody", - "email": "henriquemoody@gmail.com" -} + "copyright": "Henrique Moody", + "url": "http://about.me/henriquemoody", + "email": "henriquemoody@gmail.com" +} \ No newline at end of file diff --git a/users/henvic.json b/users/henvic.json index aa27b3df..a4071cd2 100644 --- a/users/henvic.json +++ b/users/henvic.json @@ -1,6 +1,6 @@ { - "copyright": "Henrique Vicente", - "url": "http://henvic.github.io/", - "email": "henriquevicente@gmail.com", - "gravatar": true -} + "copyright": "Henrique Vicente", + "url": "http://henvic.github.io/", + "email": "henriquevicente@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/heppler.json b/users/heppler.json index 54549b5c..7857fb25 100644 --- a/users/heppler.json +++ b/users/heppler.json @@ -1,6 +1,6 @@ { - "copyright": "Jason A. Heppler", - "url": "http://jasonheppler.org", - "email": "jason@jasonheppler.org", - "theme": "eula-modern" -} + "copyright": "Jason A. Heppler", + "url": "http://jasonheppler.org", + "email": "jason@jasonheppler.org", + "theme": "eula-modern" +} \ No newline at end of file diff --git a/users/herson.json b/users/herson.json index ecba1b21..8851dc91 100644 --- a/users/herson.json +++ b/users/herson.json @@ -1,6 +1,6 @@ { - "copyright": "Herson Salinas", - "url": "https://github.com/Hers", - "email": "hersonHN@gmail.com", - "theme": "afterdark" -} + "copyright": "Herson Salinas", + "url": "https://github.com/Hers", + "email": "hersonHN@gmail.com", + "theme": "afterdark" +} \ No newline at end of file diff --git a/users/heyday.json b/users/heyday.json index 46ca7067..9386ec96 100644 --- a/users/heyday.json +++ b/users/heyday.json @@ -1,5 +1,5 @@ { - "copyright": "Heyday Digital, http://heyday.co.nz", - "url": "http://heyday.co.nz", - "email": "dev@heyday.co.nz" -} + "copyright": "Heyday Digital, http://heyday.co.nz", + "url": "http://heyday.co.nz", + "email": "dev@heyday.co.nz" +} \ No newline at end of file diff --git a/users/hfm.json b/users/hfm.json index 3fa25706..04638ceb 100644 --- a/users/hfm.json +++ b/users/hfm.json @@ -1,3 +1,3 @@ { - "copyright": "OKUMURA Takahiro" -} + "copyright": "OKUMURA Takahiro" +} \ No newline at end of file diff --git a/users/hh.json b/users/hh.json index b05beec4..4f2f7d99 100644 --- a/users/hh.json +++ b/users/hh.json @@ -1,3 +1,3 @@ { - "copyright": "Chris McClimans" -} + "copyright": "Chris McClimans" +} \ No newline at end of file diff --git a/users/hika69.json b/users/hika69.json index 76062bab..86e2c099 100644 --- a/users/hika69.json +++ b/users/hika69.json @@ -1,4 +1,4 @@ { - "copyright": "hikarock", - "url": "http://blog.hika69.com" -} + "copyright": "hikarock", + "url": "http://blog.hika69.com" +} \ No newline at end of file diff --git a/users/hildor.json b/users/hildor.json index eb8f6220..e5d1916b 100644 --- a/users/hildor.json +++ b/users/hildor.json @@ -1,5 +1,5 @@ { - "copyright": "Hildor Junior.", - "url": "https://hildor.com.br", - "email": "contato@hildor.com.br" -} + "copyright": "Hildor Junior.", + "url": "https://hildor.com.br", + "email": "contato@hildor.com.br" +} \ No newline at end of file diff --git a/users/hinassan.json b/users/hinassan.json index c7b20f50..2d08fc8a 100644 --- a/users/hinassan.json +++ b/users/hinassan.json @@ -1,4 +1,4 @@ { - "copyright": "Yanagi Hinata", - "url": "http://hinata.in/" -} + "copyright": "Yanagi Hinata", + "url": "http://hinata.in/" +} \ No newline at end of file diff --git a/users/hippiehacker.json b/users/hippiehacker.json index b05beec4..4f2f7d99 100644 --- a/users/hippiehacker.json +++ b/users/hippiehacker.json @@ -1,3 +1,3 @@ { - "copyright": "Chris McClimans" -} + "copyright": "Chris McClimans" +} \ No newline at end of file diff --git a/users/hiremaga.json b/users/hiremaga.json index 89345d5f..d724f870 100644 --- a/users/hiremaga.json +++ b/users/hiremaga.json @@ -1,3 +1,3 @@ { - "copyright": "Abhijit Hiremagalur" -} + "copyright": "Abhijit Hiremagalur" +} \ No newline at end of file diff --git a/users/hirokiky.json b/users/hirokiky.json index 1ad62161..eecf38b6 100644 --- a/users/hirokiky.json +++ b/users/hirokiky.json @@ -1,6 +1,6 @@ { - "copyright": "Hiroki KIYOHARA", - "url": "http://hirokiky.org/", - "email": "hirokiky@gmail.com", - "format": "txt" -} + "copyright": "Hiroki KIYOHARA", + "url": "http://hirokiky.org/", + "email": "hirokiky@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/hitode909.json b/users/hitode909.json index 75cea9df..1988998a 100644 --- a/users/hitode909.json +++ b/users/hitode909.json @@ -1,3 +1,3 @@ { - "copyright": "hitode909" -} + "copyright": "hitode909" +} \ No newline at end of file diff --git a/users/hlfcoding.json b/users/hlfcoding.json index 18e3a5ba..9130e838 100644 --- a/users/hlfcoding.json +++ b/users/hlfcoding.json @@ -1,6 +1,6 @@ { - "copyright": "Peng Wang", - "url": "http://pengxwang.com", - "email": "peng@pengxwang.com", - "format": "txt" -} + "copyright": "Peng Wang", + "url": "http://pengxwang.com", + "email": "peng@pengxwang.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/hlomzik.json b/users/hlomzik.json index a08fda53..2c0927c9 100644 --- a/users/hlomzik.json +++ b/users/hlomzik.json @@ -1,6 +1,6 @@ { - "copyright": "Andrey Kholmanyuk", - "url": "https://github.com/hlomzik/", - "email": "hlomzik@gmail.com", - "format": "txt" -} + "copyright": "Andrey Kholmanyuk", + "url": "https://github.com/hlomzik/", + "email": "hlomzik@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/hmkz.json b/users/hmkz.json index 4b018003..0af64a9c 100644 --- a/users/hmkz.json +++ b/users/hmkz.json @@ -1,4 +1,4 @@ { - "copyright": "Kazunori Hamada", - "email": "hmkz@rapid-liquid.com" -} + "copyright": "Kazunori Hamada", + "email": "hmkz@rapid-liquid.com" +} \ No newline at end of file diff --git a/users/hobogrammer.json b/users/hobogrammer.json index 691ddc98..681fda2e 100644 --- a/users/hobogrammer.json +++ b/users/hobogrammer.json @@ -1,3 +1,3 @@ { - "copyright": "Andre Smith" -} + "copyright": "Andre Smith" +} \ No newline at end of file diff --git a/users/hokaccha.json b/users/hokaccha.json index 61321c71..ddc17e46 100644 --- a/users/hokaccha.json +++ b/users/hokaccha.json @@ -1,3 +1,3 @@ { - "copyright": "Kazuhito Hokamura" -} + "copyright": "Kazuhito Hokamura" +} \ No newline at end of file diff --git a/users/hokypoky.json b/users/hokypoky.json index 8dfdaae4..a22bbda5 100644 --- a/users/hokypoky.json +++ b/users/hokypoky.json @@ -1,4 +1,4 @@ { - "copyright": "Kotaro Imai", - "url": "http://hokypoky.info" -} + "copyright": "Kotaro Imai", + "url": "http://hokypoky.info" +} \ No newline at end of file diff --git a/users/honyovk.json b/users/honyovk.json index 3d4a8aff..225ca683 100644 --- a/users/honyovk.json +++ b/users/honyovk.json @@ -1,5 +1,5 @@ { - "copyright": "Matt Jordan", - "url": "https://github.com/mbjordan", - "theme": "orange" -} + "copyright": "Matt Jordan", + "url": "https://github.com/mbjordan", + "theme": "orange" +} \ No newline at end of file diff --git a/users/hoop33.json b/users/hoop33.json index 6c6301fd..9de1f301 100644 --- a/users/hoop33.json +++ b/users/hoop33.json @@ -1,8 +1,8 @@ { - "copyright": "Rob Warner", - "url": "http://grailbox.com", - "email": "rwarner@grailbox.com", - "format": "html", - "gravatar": true, - "theme": "opensans" -} + "copyright": "Rob Warner", + "url": "http://grailbox.com", + "email": "rwarner@grailbox.com", + "format": "html", + "gravatar": true, + "theme": "opensans" +} \ No newline at end of file diff --git a/users/hope.json b/users/hope.json index 16f0d6a7..ce4d7e6c 100644 --- a/users/hope.json +++ b/users/hope.json @@ -1,6 +1,6 @@ { - "copyright": "Sergey Sadovoi", - "url": "http://hope.ua", - "email": "sergey@hope.ua", - "gravatar": true -} + "copyright": "Sergey Sadovoi", + "url": "http://hope.ua", + "email": "sergey@hope.ua", + "gravatar": true +} \ No newline at end of file diff --git a/users/hor.json b/users/hor.json index 1ad4fc87..ffbaf592 100644 --- a/users/hor.json +++ b/users/hor.json @@ -1,6 +1,6 @@ { - "copyright": "HorX", - "url": "http://hanhor.com", - "email": "hanhor.wu@gmail.com", - "format": "txt" -} + "copyright": "HorX", + "url": "http://hanhor.com", + "email": "hanhor.wu@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/horacioibrahim.json b/users/horacioibrahim.json index 6bba5fb9..e01ad7f6 100644 --- a/users/horacioibrahim.json +++ b/users/horacioibrahim.json @@ -1,6 +1,6 @@ { - "copyright": "Horacio Ibrahim", - "url": "http://horacioibrahim.io", - "email": "horacioibrahim@gmail.com", - "format": "txt" -} + "copyright": "Horacio Ibrahim", + "url": "http://horacioibrahim.io", + "email": "horacioibrahim@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/horiuchi.json b/users/horiuchi.json index 4dddd428..76d0dbec 100644 --- a/users/horiuchi.json +++ b/users/horiuchi.json @@ -1,4 +1,4 @@ { - "copyright": "Hiroki Horiuchi", - "url": "https://github.com/horiuchi" -} + "copyright": "Hiroki Horiuchi", + "url": "https://github.com/horiuchi" +} \ No newline at end of file diff --git a/users/hotoo.json b/users/hotoo.json index bc51b89b..845473d4 100644 --- a/users/hotoo.json +++ b/users/hotoo.json @@ -1,6 +1,6 @@ { - "copyright": "\u95f2\u8018\u2122", - "url": "http://hotoo.me", - "email": "hotoo.cn@gmail.com", - "format": "txt" -} + "copyright": "闲耘™", + "url": "http://hotoo.me", + "email": "hotoo.cn@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/hotplate.json b/users/hotplate.json index a200e74b..5c152977 100644 --- a/users/hotplate.json +++ b/users/hotplate.json @@ -1,3 +1,3 @@ { - "copyright": "Hotplate Labs Ltd" -} + "copyright": "Hotplate Labs Ltd" +} \ No newline at end of file diff --git a/users/housetrip.json b/users/housetrip.json index edf5b84d..61d6b2aa 100644 --- a/users/housetrip.json +++ b/users/housetrip.json @@ -1,3 +1,3 @@ { - "copyright": "HouseTrip" -} + "copyright": "HouseTrip" +} \ No newline at end of file diff --git a/users/hpg.json b/users/hpg.json index a6110e0e..30460c7e 100644 --- a/users/hpg.json +++ b/users/hpg.json @@ -1,6 +1,6 @@ { - "copyright": "Harrison Gulliver", - "url": "http://hrrsn.net", - "email": "harrison@thenewthirty.co.nz", - "format": "txt" -} + "copyright": "Harrison Gulliver", + "url": "http://hrrsn.net", + "email": "harrison@thenewthirty.co.nz", + "format": "txt" +} \ No newline at end of file diff --git a/users/hr.json b/users/hr.json index c21aad74..325e210b 100644 --- a/users/hr.json +++ b/users/hr.json @@ -1,6 +1,6 @@ { - "copyright": "Hardik Ruparel", - "url": "http://www.hardikr.com", - "email": "me@hardikr.com", - "format": "txt" -} + "copyright": "Hardik Ruparel", + "url": "http://www.hardikr.com", + "email": "me@hardikr.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/hss.json b/users/hss.json index 0c708b6d..6a8f53c8 100644 --- a/users/hss.json +++ b/users/hss.json @@ -1,6 +1,6 @@ { - "copyright": "Evan Harmon", - "url": "http://harmonsoftwaresolutions.com", - "email": "admin@harmonsoftwaresolutions.com", - "format": "txt" -} + "copyright": "Evan Harmon", + "url": "http://harmonsoftwaresolutions.com", + "email": "admin@harmonsoftwaresolutions.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/hsyn.json b/users/hsyn.json index 5760e448..84a6c7d2 100644 --- a/users/hsyn.json +++ b/users/hsyn.json @@ -1,3 +1,3 @@ { - "copyright": "M. H\u00fcseyin \u00d6zt\u00fcrk" -} + "copyright": "M. Hüseyin Öztürk" +} \ No newline at end of file diff --git a/users/htdvisser.json b/users/htdvisser.json index fa8a7ead..8566d4f7 100644 --- a/users/htdvisser.json +++ b/users/htdvisser.json @@ -1,6 +1,6 @@ { - "copyright": "Hylke Visser", - "url": "http://hylkevisser.nl", - "email": "htdvisser@gmail.com", - "format": "txt" -} + "copyright": "Hylke Visser", + "url": "http://hylkevisser.nl", + "email": "htdvisser@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/htjson.json b/users/htjson.json index 35b0d94b..363a4e38 100644 --- a/users/htjson.json +++ b/users/htjson.json @@ -1,6 +1,6 @@ { - "copyright": "HTJSON", - "url": "http://github.com/felquis/HTJSON", - "email": "frgformenton@gmail.com", - "format": "txt" -} + "copyright": "HTJSON", + "url": "http://github.com/felquis/HTJSON", + "email": "frgformenton@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/hug.json b/users/hug.json index bbfdaab4..000ba12b 100644 --- a/users/hug.json +++ b/users/hug.json @@ -1,7 +1,7 @@ { - "copyright": "Daniel Hug, http://hugwebdesign.com", - "url": "http://hugwebdesign.com", - "email": "daniel@hugwebdesign.com", - "gravatar": true, - "theme": "double-windsor" -} + "copyright": "Daniel Hug, http://hugwebdesign.com", + "url": "http://hugwebdesign.com", + "email": "daniel@hugwebdesign.com", + "gravatar": true, + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/hugorper.json b/users/hugorper.json index 72bba65f..ad7639dc 100644 --- a/users/hugorper.json +++ b/users/hugorper.json @@ -1,5 +1,5 @@ { - "copyright": "Hugo Pereira, http://hugorper.com", - "url": "http://hugorper.com", - "email": "hugorper@gmail.com" -} + "copyright": "Hugo Pereira, http://hugorper.com", + "url": "http://hugorper.com", + "email": "hugorper@gmail.com" +} \ No newline at end of file diff --git a/users/husniadil.json b/users/husniadil.json index a8248d15..9cfedf64 100644 --- a/users/husniadil.json +++ b/users/husniadil.json @@ -1,7 +1,7 @@ { - "copyright": "Husni Adil Makmur", - "email": "husni.adil@gmail.com", - "url": "https://github.com/husniadil", - "format": "html", - "gravatar": true -} + "copyright": "Husni Adil Makmur", + "email": "husni.adil@gmail.com", + "url": "https://github.com/husniadil", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/hwthorn.json b/users/hwthorn.json index cb19bd45..de1f7bf5 100644 --- a/users/hwthorn.json +++ b/users/hwthorn.json @@ -1,5 +1,5 @@ { - "copyright": "Felix Pflaum", - "email": "hwthorn@outlook.com", - "format": "txt" -} + "copyright": "Felix Pflaum", + "email": "hwthorn@outlook.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/i.json b/users/i.json index e84ab233..51387a3e 100644 --- a/users/i.json +++ b/users/i.json @@ -1,8 +1,8 @@ { - "copyright": "Jing Su", - "url": "https://ku.io", - "email": "me@jing.su", - "format": "html", - "gravatar": true, - "theme": "material" -} + "copyright": "Jing Su", + "url": "https://ku.io", + "email": "me@jing.su", + "format": "html", + "gravatar": true, + "theme": "material" +} \ No newline at end of file diff --git a/users/iadvize.json b/users/iadvize.json index 5c26c215..96d6bf43 100644 --- a/users/iadvize.json +++ b/users/iadvize.json @@ -1,3 +1,3 @@ { - "copyright": "iAdvize" -} + "copyright": "iAdvize" +} \ No newline at end of file diff --git a/users/iagodahlem.json b/users/iagodahlem.json index ceb3ee1a..827f15a1 100644 --- a/users/iagodahlem.json +++ b/users/iagodahlem.json @@ -1,6 +1,6 @@ { - "copyright": "Iago Dahlem Lorensini", - "url": "http://iagodahlem.com", - "email": "iagodahlemlorensini@gmail.com", - "theme": "material-grey" -} + "copyright": "Iago Dahlem Lorensini", + "url": "http://iagodahlem.com", + "email": "iagodahlemlorensini@gmail.com", + "theme": "material-grey" +} \ No newline at end of file diff --git a/users/iamale.json b/users/iamale.json index 53612a28..a74354b7 100644 --- a/users/iamale.json +++ b/users/iamale.json @@ -1,5 +1,5 @@ { - "copyright": "Alexander Pushkov", - "url": "https://ale.rocks", - "email": "hi@ale.rocks" -} + "copyright": "Alexander Pushkov", + "url": "https://ale.rocks", + "email": "hi@ale.rocks" +} \ No newline at end of file diff --git a/users/iamgabeortiz.json b/users/iamgabeortiz.json index f251d00d..490ca3fe 100644 --- a/users/iamgabeortiz.json +++ b/users/iamgabeortiz.json @@ -1,6 +1,6 @@ { - "copyright": "Gabriel Ortiz, http://gabeortiz.com", - "url": "http://gabeortiz.com", - "email": "gabeortiz@icloud.com", - "format": "html" -} + "copyright": "Gabriel Ortiz, http://gabeortiz.com", + "url": "http://gabeortiz.com", + "email": "gabeortiz@icloud.com", + "format": "html" +} \ No newline at end of file diff --git a/users/ian.json b/users/ian.json index 3f6e4456..8c02b1ce 100644 --- a/users/ian.json +++ b/users/ian.json @@ -1,6 +1,6 @@ { - "copyright": "Ian Lai", - "url": "http://www.fyianlai.com", - "email": "ian@fyianlai.com", - "format": "txt" -} + "copyright": "Ian Lai", + "url": "http://www.fyianlai.com", + "email": "ian@fyianlai.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/ianaya89.json b/users/ianaya89.json index 5e0762e2..5cba0105 100644 --- a/users/ianaya89.json +++ b/users/ianaya89.json @@ -1,6 +1,6 @@ { - "copyright": "Ignacio Anaya", - "url": "http://keepe.rs", - "email": "ignacio.anaya89@gmail.com", - "format": "txt" -} + "copyright": "Ignacio Anaya", + "url": "http://keepe.rs", + "email": "ignacio.anaya89@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/ianfoo.json b/users/ianfoo.json index 834ff13b..5a72567e 100644 --- a/users/ianfoo.json +++ b/users/ianfoo.json @@ -1,3 +1,3 @@ { - "copyright": "Ian Molee" -} + "copyright": "Ian Molee" +} \ No newline at end of file diff --git a/users/ianhammondcooper.json b/users/ianhammondcooper.json index 388ac808..00ebfbcf 100644 --- a/users/ianhammondcooper.json +++ b/users/ianhammondcooper.json @@ -1,6 +1,6 @@ { - "copyright": "Ian Cooper", - "url": "http://ianhammondcooper.com", - "email": "ian_hammond_cooper@yahoo.co.uk", - "format": "txt" -} + "copyright": "Ian Cooper", + "url": "http://ianhammondcooper.com", + "email": "ian_hammond_cooper@yahoo.co.uk", + "format": "txt" +} \ No newline at end of file diff --git a/users/iantearle.json b/users/iantearle.json index d9c12d62..66acba04 100644 --- a/users/iantearle.json +++ b/users/iantearle.json @@ -1,5 +1,5 @@ { - "copyright": "Ian Tearle, http://iantearle.com", - "url": "http://iantearle.com", - "theme": "flesch" -} + "copyright": "Ian Tearle, http://iantearle.com", + "url": "http://iantearle.com", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/ianvaughan.json b/users/ianvaughan.json index 71242599..71a3921b 100644 --- a/users/ianvaughan.json +++ b/users/ianvaughan.json @@ -1,5 +1,5 @@ { - "copyright": "Ian Vaughan", - "url": "http://ianvaughan.co.uk", - "email": "mit@ianvaughan.co.uk" -} + "copyright": "Ian Vaughan", + "url": "http://ianvaughan.co.uk", + "email": "mit@ianvaughan.co.uk" +} \ No newline at end of file diff --git a/users/ianwang.json b/users/ianwang.json index 78d5e893..5c701eec 100644 --- a/users/ianwang.json +++ b/users/ianwang.json @@ -1,6 +1,6 @@ { - "copyright": "Ian Wang", - "url": "https://github.com/IanWang", - "email": "gogoenwon@gmail.com", - "format": "txt" -} + "copyright": "Ian Wang", + "url": "https://github.com/IanWang", + "email": "gogoenwon@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/ianwinter.json b/users/ianwinter.json index dd0495ad..a9191e3f 100644 --- a/users/ianwinter.json +++ b/users/ianwinter.json @@ -1,3 +1,3 @@ { - "copyright": "Ian Winter" -} + "copyright": "Ian Winter" +} \ No newline at end of file diff --git a/users/ic.json b/users/ic.json index 46c9c37a..fb0ceb96 100644 --- a/users/ic.json +++ b/users/ic.json @@ -1,5 +1,5 @@ { - "copyright": "IC Ignacio", - "format": "html", - "theme": "flesch" -} + "copyright": "IC Ignacio", + "format": "html", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/ichizok.json b/users/ichizok.json index d471428c..30b1dfea 100644 --- a/users/ichizok.json +++ b/users/ichizok.json @@ -1,5 +1,5 @@ { - "copyright": "Ozaki Kiichi", - "url": "https://github.com/ichizok", - "theme": "double-windsor" -} + "copyright": "Ozaki Kiichi", + "url": "https://github.com/ichizok", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/icq4ever.json b/users/icq4ever.json index 784507fc..e4edbec1 100644 --- a/users/icq4ever.json +++ b/users/icq4ever.json @@ -1,3 +1,3 @@ { - "copyright": "Yi donghoon, http://icq4ever.net/" -} + "copyright": "Yi donghoon, http://icq4ever.net/" +} \ No newline at end of file diff --git a/users/idkazuma.json b/users/idkazuma.json index c6717b8c..3f850e44 100644 --- a/users/idkazuma.json +++ b/users/idkazuma.json @@ -1,5 +1,5 @@ { - "copyright": "Kazuma Furuhashi", - "email": "idkazuma@gmail.com", - "theme": "double-windsor" -} + "copyright": "Kazuma Furuhashi", + "email": "idkazuma@gmail.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/idlua.json b/users/idlua.json index f945f2a4..cbdf3694 100644 --- a/users/idlua.json +++ b/users/idlua.json @@ -1,6 +1,6 @@ { - "copyright": "Luan Vicente", - "url": "https://idlua.me", - "email": "luanfrvicente@gmail.com", - "theme": "plaintext" -} + "copyright": "Luan Vicente", + "url": "https://idlua.me", + "email": "luanfrvicente@gmail.com", + "theme": "plaintext" +} \ No newline at end of file diff --git a/users/idomusha.json b/users/idomusha.json index 1b71dfdd..9008f2f2 100644 --- a/users/idomusha.json +++ b/users/idomusha.json @@ -1,6 +1,6 @@ { - "copyright": "idomusha, https://github.com/idomusha", - "url": "https://github.com/idomusha", - "email": "idomusha@gmail.com", - "gravatar": true -} + "copyright": "idomusha, https://github.com/idomusha", + "url": "https://github.com/idomusha", + "email": "idomusha@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/iet-ou.json b/users/iet-ou.json index 8497f8b7..0104496d 100644 --- a/users/iet-ou.json +++ b/users/iet-ou.json @@ -1,8 +1,8 @@ { - "copyright": "The Open University (Institute of Educational Technology)", - "url": "http://iet.open.ac.uk", - "email": "IET-Webmaster@open.ac.uk", - "gravatar": true, - "format": "html", - "theme": "opensans" -} + "copyright": "The Open University (Institute of Educational Technology)", + "url": "http://iet.open.ac.uk", + "email": "IET-Webmaster@open.ac.uk", + "gravatar": true, + "format": "html", + "theme": "opensans" +} \ No newline at end of file diff --git a/users/if.json b/users/if.json index 445169e0..2df913b7 100644 --- a/users/if.json +++ b/users/if.json @@ -1,5 +1,5 @@ { - "copyright": "invisible friend", - "url": "http://invisiblefriend.com", - "format": "txt" -} + "copyright": "invisible friend", + "url": "http://invisiblefriend.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/ifdattic.json b/users/ifdattic.json index 6a002677..4adac11f 100644 --- a/users/ifdattic.json +++ b/users/ifdattic.json @@ -1,4 +1,4 @@ { - "copyright": "Andrius Marcinkevicius (Andrew M.)", - "url": "http://ifdattic.com" -} + "copyright": "Andrius Marcinkevicius (Andrew M.)", + "url": "http://ifdattic.com" +} \ No newline at end of file diff --git a/users/igliu.json b/users/igliu.json index 3fee8a0f..e8866c44 100644 --- a/users/igliu.json +++ b/users/igliu.json @@ -1,3 +1,3 @@ { - "copyright": "Anthony Liu" -} + "copyright": "Anthony Liu" +} \ No newline at end of file diff --git a/users/igneous.json b/users/igneous.json index f12172d7..adc57ab1 100644 --- a/users/igneous.json +++ b/users/igneous.json @@ -1,3 +1,3 @@ { - "copyright": "Bucky Wolfe" -} + "copyright": "Bucky Wolfe" +} \ No newline at end of file diff --git a/users/ignitelabs.json b/users/ignitelabs.json index adb3a767..646dd491 100644 --- a/users/ignitelabs.json +++ b/users/ignitelabs.json @@ -1,6 +1,6 @@ { - "copyright": "Ignite Laboratories", - "url": "http://ignitelabs.net", - "email": "rpetz@ignitelabs.net", - "format": "txt" -} + "copyright": "Ignite Laboratories", + "url": "http://ignitelabs.net", + "email": "rpetz@ignitelabs.net", + "format": "txt" +} \ No newline at end of file diff --git a/users/igorcorradi.json b/users/igorcorradi.json index 571daa0f..95fa17aa 100644 --- a/users/igorcorradi.json +++ b/users/igorcorradi.json @@ -1,4 +1,4 @@ { - "copyright": "Igor Corradi", - "email": "igorcorradi.dev@gmail.com" -} + "copyright": "Igor Corradi", + "email": "igorcorradi.dev@gmail.com" +} \ No newline at end of file diff --git a/users/igorprado.json b/users/igorprado.json index 82d8966a..5d8256ef 100644 --- a/users/igorprado.json +++ b/users/igorprado.json @@ -1,3 +1,3 @@ { - "copyright": "Igor Prado" -} + "copyright": "Igor Prado" +} \ No newline at end of file diff --git a/users/iknew.json b/users/iknew.json index 051550e8..bcbd745d 100644 --- a/users/iknew.json +++ b/users/iknew.json @@ -1,5 +1,5 @@ { - "copyright": "iknew today", - "url": "http://iknew.today", - "email": "iknew.today@gmail.com" -} + "copyright": "iknew today", + "url": "http://iknew.today", + "email": "iknew.today@gmail.com" +} \ No newline at end of file diff --git a/users/ilee.json b/users/ilee.json index 6977847e..441eb891 100644 --- a/users/ilee.json +++ b/users/ilee.json @@ -1,6 +1,6 @@ { - "copyright": "Lee Crossley", - "url": "http://ilee.co.uk", - "email": "leee@hotmail.co.uk", - "format": "txt" -} + "copyright": "Lee Crossley", + "url": "http://ilee.co.uk", + "email": "leee@hotmail.co.uk", + "format": "txt" +} \ No newline at end of file diff --git a/users/imahmoodz.json b/users/imahmoodz.json index 3682665c..bd1da4cb 100644 --- a/users/imahmoodz.json +++ b/users/imahmoodz.json @@ -1,6 +1,6 @@ { - "copyright": "Mahmood Zamani, http://mahmoodzamani.ir", - "url": "http://mahmoodzamani.ir", - "email": "imahmoodzamani@gmail.com", - "gravatar": true -} + "copyright": "Mahmood Zamani, http://mahmoodzamani.ir", + "url": "http://mahmoodzamani.ir", + "email": "imahmoodzamani@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/imalliaros.json b/users/imalliaros.json index 1395726e..7645e518 100644 --- a/users/imalliaros.json +++ b/users/imalliaros.json @@ -1,6 +1,6 @@ { - "copyright": "Jacob Malliaros", - "url": "https://jmalliaros.wordpress.com/", - "email": "imalliar@gmail.com", - "gravatar": true -} + "copyright": "Jacob Malliaros", + "url": "https://jmalliaros.wordpress.com/", + "email": "imalliar@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/imjching.json b/users/imjching.json index 73a3a634..74b74a50 100644 --- a/users/imjching.json +++ b/users/imjching.json @@ -1,6 +1,6 @@ { - "copyright": "Jay C.", - "url": "http://www.imjching.com", - "email": "jay@imjching.com", - "format": "txt" -} + "copyright": "Jay C.", + "url": "http://www.imjching.com", + "email": "jay@imjching.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/immae.json b/users/immae.json index b7f5cc41..ccfd88f6 100644 --- a/users/immae.json +++ b/users/immae.json @@ -1,5 +1,5 @@ { - "copyright": "Isma\u00ebl Bouya", - "url": "http://www.normalesup.org/~bouya/", - "format": "txt" -} + "copyright": "Ismaël Bouya", + "url": "http://www.normalesup.org/~bouya/", + "format": "txt" +} \ No newline at end of file diff --git a/users/imryan.json b/users/imryan.json index c8b71aac..c0a5e188 100644 --- a/users/imryan.json +++ b/users/imryan.json @@ -1,3 +1,3 @@ { - "copyright": "Ryan Cohen" -} + "copyright": "Ryan Cohen" +} \ No newline at end of file diff --git a/users/incertia.json b/users/incertia.json index 33de29d1..b7c22e54 100644 --- a/users/incertia.json +++ b/users/incertia.json @@ -1,3 +1,3 @@ { - "copyright": "incertia" -} + "copyright": "incertia" +} \ No newline at end of file diff --git a/users/indutny.json b/users/indutny.json index 740859e0..510d0ff4 100644 --- a/users/indutny.json +++ b/users/indutny.json @@ -1,3 +1,3 @@ { - "copyright": "Fedor Indutny" -} + "copyright": "Fedor Indutny" +} \ No newline at end of file diff --git a/users/indy.json b/users/indy.json index c1495e74..b3615d2c 100644 --- a/users/indy.json +++ b/users/indy.json @@ -1,5 +1,5 @@ { - "copyright": "Inderjit Gill", - "url": "http://indy.io", - "email": "email@indy.io" -} + "copyright": "Inderjit Gill", + "url": "http://indy.io", + "email": "email@indy.io" +} \ No newline at end of file diff --git a/users/inetpeople.json b/users/inetpeople.json index 5352a25f..ec20892c 100644 --- a/users/inetpeople.json +++ b/users/inetpeople.json @@ -1,3 +1,3 @@ { - "copyright": "inetpeople" -} + "copyright": "inetpeople" +} \ No newline at end of file diff --git a/users/instaphp.json b/users/instaphp.json index b6328d7e..e9b6c279 100644 --- a/users/instaphp.json +++ b/users/instaphp.json @@ -1,6 +1,6 @@ { - "copyright": "Randy Sesser", - "url": "http://instaphp.com", - "email": "randy@instaphp.com", - "format": "html" -} + "copyright": "Randy Sesser", + "url": "http://instaphp.com", + "email": "randy@instaphp.com", + "format": "html" +} \ No newline at end of file diff --git a/users/intergrated.json b/users/intergrated.json index 96354c78..280a66d0 100644 --- a/users/intergrated.json +++ b/users/intergrated.json @@ -1,6 +1,6 @@ { - "copyright": "iNtergrated", - "url": "http://intergrated.net", - "format": "html", - "theme": "opensans" -} + "copyright": "iNtergrated", + "url": "http://intergrated.net", + "format": "html", + "theme": "opensans" +} \ No newline at end of file diff --git a/users/inviz.json b/users/inviz.json index e93b5eda..d04a9d0f 100644 --- a/users/inviz.json +++ b/users/inviz.json @@ -1,7 +1,7 @@ { - "copyright": "Arthur Khashaev", - "url": "http://khashaev.ru", - "email": "arthur@khashaev.ru", - "format": "html", - "gravatar": true -} + "copyright": "Arthur Khashaev", + "url": "http://khashaev.ru", + "email": "arthur@khashaev.ru", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/ionicabizau.json b/users/ionicabizau.json index 8c800fdc..97e1b26e 100644 --- a/users/ionicabizau.json +++ b/users/ionicabizau.json @@ -1,3 +1,3 @@ { - "copyright": "Ionic\u0103 Biz\u0103u" -} + "copyright": "Ionică Bizău" +} \ No newline at end of file diff --git a/users/ionut.json b/users/ionut.json index 1ac6b8ae..c874136b 100644 --- a/users/ionut.json +++ b/users/ionut.json @@ -1,3 +1,3 @@ { - "copyright": "Ionut Bajescu" -} + "copyright": "Ionut Bajescu" +} \ No newline at end of file diff --git a/users/irex.json b/users/irex.json index 68668577..bb6450b3 100644 --- a/users/irex.json +++ b/users/irex.json @@ -1,6 +1,6 @@ { - "copyright": "Indiana Real Estate Exchangors, Inc.", - "url": "http://irexinc.org", - "email": "memborsky@gmail.com", - "format": "txt" -} + "copyright": "Indiana Real Estate Exchangors, Inc.", + "url": "http://irexinc.org", + "email": "memborsky@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/is-uz.json b/users/is-uz.json index d634ea2a..3cdd3651 100644 --- a/users/is-uz.json +++ b/users/is-uz.json @@ -1,6 +1,6 @@ { - "copyright": "Leandro Matos", - "url": "http://is-uz.com", - "email": "leandro@is-uz.com", - "format": "txt" -} + "copyright": "Leandro Matos", + "url": "http://is-uz.com", + "email": "leandro@is-uz.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/isekaf.json b/users/isekaf.json index 17975487..b2d7c304 100644 --- a/users/isekaf.json +++ b/users/isekaf.json @@ -1,4 +1,4 @@ { - "copyright": "isekaf", - "url": "http://isekaf.github.com/" -} + "copyright": "isekaf", + "url": "http://isekaf.github.com/" +} \ No newline at end of file diff --git a/users/isekivacenz.json b/users/isekivacenz.json index 364f77fe..35ac996b 100644 --- a/users/isekivacenz.json +++ b/users/isekivacenz.json @@ -1,3 +1,3 @@ { - "copyright": "isekivacenz" -} + "copyright": "isekivacenz" +} \ No newline at end of file diff --git a/users/ishands.json b/users/ishands.json index 6d0b3f22..22152a1e 100644 --- a/users/ishands.json +++ b/users/ishands.json @@ -1,6 +1,6 @@ { - "copyright": "Ishan Das Sharma", - "url": "https://ishands.in", - "email": "hello@ishands.in", - "format": "txt" -} + "copyright": "Ishan Das Sharma", + "url": "https://ishands.in", + "email": "hello@ishands.in", + "format": "txt" +} \ No newline at end of file diff --git a/users/isle.json b/users/isle.json index 65c26fad..af8e8189 100644 --- a/users/isle.json +++ b/users/isle.json @@ -1,3 +1,3 @@ { - "copyright": "ISLE Consultants" -} + "copyright": "ISLE Consultants" +} \ No newline at end of file diff --git a/users/ismay.json b/users/ismay.json index 3d047688..c38702ab 100644 --- a/users/ismay.json +++ b/users/ismay.json @@ -1,3 +1,3 @@ { - "copyright": "Ismay Wolff" -} + "copyright": "Ismay Wolff" +} \ No newline at end of file diff --git a/users/isoden.json b/users/isoden.json index 3c9870c1..fc4f46d5 100644 --- a/users/isoden.json +++ b/users/isoden.json @@ -1,5 +1,5 @@ { - "copyright": "Yu Isoda, http://isoden.me", - "url": "http://isoden.me", - "theme": "opensans" -} + "copyright": "Yu Isoda, http://isoden.me", + "url": "http://isoden.me", + "theme": "opensans" +} \ No newline at end of file diff --git a/users/istanbulphp.json b/users/istanbulphp.json index 7603282d..6d6e1fef 100644 --- a/users/istanbulphp.json +++ b/users/istanbulphp.json @@ -1,6 +1,6 @@ { - "copyright": "Istanbul PHP UG", - "url": "http://istanbulphp.org", - "email": "mail@istanbulphp.org", - "format": "txt" -} + "copyright": "Istanbul PHP UG", + "url": "http://istanbulphp.org", + "email": "mail@istanbulphp.org", + "format": "txt" +} \ No newline at end of file diff --git a/users/it-ony.json b/users/it-ony.json index 4f0dc25f..0de542fc 100644 --- a/users/it-ony.json +++ b/users/it-ony.json @@ -1,6 +1,6 @@ { - "copyright": "Tony Findeisen", - "url": "http://tonyfindeisen.de", - "email": "license@tonyfindeisen.de", - "theme": "friendly" -} + "copyright": "Tony Findeisen", + "url": "http://tonyfindeisen.de", + "email": "license@tonyfindeisen.de", + "theme": "friendly" +} \ No newline at end of file diff --git a/users/itacirgabral.json b/users/itacirgabral.json index c5a12cc0..a2dab950 100644 --- a/users/itacirgabral.json +++ b/users/itacirgabral.json @@ -1,7 +1,7 @@ { - "copyright": "Itacir Gabral, http://gabral.net", - "url": "http://github.com/itacirgabral", - "email": "itacirgabral@gmail.com", - "format": "html", - "gravatar": true -} + "copyright": "Itacir Gabral, http://gabral.net", + "url": "http://github.com/itacirgabral", + "email": "itacirgabral@gmail.com", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/italoqueiroz.json b/users/italoqueiroz.json index d899825b..3141922e 100644 --- a/users/italoqueiroz.json +++ b/users/italoqueiroz.json @@ -1,7 +1,7 @@ { - "copyright": "\u00cdtalo Queiroz, http://italoqueiroz.github.io/", - "url": "http://italoqueiroz.github.io/", - "email": "italoqueiroz@gmail.com", - "theme": "afterdark", - "gravatar": true -} + "copyright": "Ítalo Queiroz, http://italoqueiroz.github.io/", + "url": "http://italoqueiroz.github.io/", + "email": "italoqueiroz@gmail.com", + "theme": "afterdark", + "gravatar": true +} \ No newline at end of file diff --git a/users/ithings4u.json b/users/ithings4u.json index 1ffc82bd..66e6a014 100644 --- a/users/ithings4u.json +++ b/users/ithings4u.json @@ -1,3 +1,3 @@ { - "copyright": "iThings4U GmbH" -} + "copyright": "iThings4U GmbH" +} \ No newline at end of file diff --git a/users/itscassa.json b/users/itscassa.json index 7dfe2bca..be12b2d8 100644 --- a/users/itscassa.json +++ b/users/itscassa.json @@ -1,3 +1,3 @@ { - "copyright": "Cas de Reuver" -} + "copyright": "Cas de Reuver" +} \ No newline at end of file diff --git a/users/ivangaravito.json b/users/ivangaravito.json index 37680f67..f048fbca 100644 --- a/users/ivangaravito.json +++ b/users/ivangaravito.json @@ -1,7 +1,7 @@ { - "copyright": "Ivan Garavito", - "url": "https://github.com/IvanGaravito/", - "email": "ivangaravito@gmail.com", - "theme": "default", - "gravatar": true -} + "copyright": "Ivan Garavito", + "url": "https://github.com/IvanGaravito/", + "email": "ivangaravito@gmail.com", + "theme": "default", + "gravatar": true +} \ No newline at end of file diff --git a/users/iwark.json b/users/iwark.json index b8209137..2dd3145e 100644 --- a/users/iwark.json +++ b/users/iwark.json @@ -1,3 +1,3 @@ { - "copyright": "Iwark" -} + "copyright": "Iwark" +} \ No newline at end of file diff --git a/users/izumin.json b/users/izumin.json index 09844d8d..67d8bc9b 100644 --- a/users/izumin.json +++ b/users/izumin.json @@ -1,5 +1,5 @@ { - "copyright": "Masayuki IZUMI", - "gravatar": true, - "theme": "opensans" -} + "copyright": "Masayuki IZUMI", + "gravatar": true, + "theme": "opensans" +} \ No newline at end of file diff --git a/users/j.json b/users/j.json index 2ab5cd6f..c4284ff8 100644 --- a/users/j.json +++ b/users/j.json @@ -1,5 +1,5 @@ { - "copyright": "Josue Rodriguez", - "email": "josue@josuerodriguez.com", - "url": "http://josuerodriguez.com" -} + "copyright": "Josue Rodriguez", + "email": "josue@josuerodriguez.com", + "url": "http://josuerodriguez.com" +} \ No newline at end of file diff --git a/users/ja.json b/users/ja.json index 0be5edee..eac22e2d 100644 --- a/users/ja.json +++ b/users/ja.json @@ -1,4 +1,4 @@ { - "copyright": "Jamie Akhtar", - "url": "http://jamieakhtar.com" -} + "copyright": "Jamie Akhtar", + "url": "http://jamieakhtar.com" +} \ No newline at end of file diff --git a/users/jaanek.json b/users/jaanek.json index 92ffdf64..d95932ed 100644 --- a/users/jaanek.json +++ b/users/jaanek.json @@ -1,6 +1,6 @@ { - "copyright": "Jaanek Oja", - "url": "http://oja.me", - "email": "jaanek@oja.me", - "format": "txt" -} + "copyright": "Jaanek Oja", + "url": "http://oja.me", + "email": "jaanek@oja.me", + "format": "txt" +} \ No newline at end of file diff --git a/users/jabbrwcky.json b/users/jabbrwcky.json index 33025c8e..6ba15631 100644 --- a/users/jabbrwcky.json +++ b/users/jabbrwcky.json @@ -1,6 +1,6 @@ { - "copyright": "Jens Hausherr", - "gravatar": true, - "email": "jabbrwcky@gmail.com", - "format": "txt" -} + "copyright": "Jens Hausherr", + "gravatar": true, + "email": "jabbrwcky@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/jackfischer.json b/users/jackfischer.json index 49bede50..e9c2acc0 100644 --- a/users/jackfischer.json +++ b/users/jackfischer.json @@ -1,3 +1,3 @@ { - "copyright": "Jack Fischer" -} + "copyright": "Jack Fischer" +} \ No newline at end of file diff --git a/users/jadn.json b/users/jadn.json index 30bb36c9..768dec4f 100644 --- a/users/jadn.json +++ b/users/jadn.json @@ -1,3 +1,3 @@ { - "copyright": "Aden Johannson" -} + "copyright": "Aden Johannson" +} \ No newline at end of file diff --git a/users/jaeckel.json b/users/jaeckel.json index 8a169b17..2352599d 100644 --- a/users/jaeckel.json +++ b/users/jaeckel.json @@ -1,5 +1,5 @@ { - "copyright": "Steffen Jaeckel", - "email": "j@eckel.me", - "format": "txt" -} + "copyright": "Steffen Jaeckel", + "email": "j@eckel.me", + "format": "txt" +} \ No newline at end of file diff --git a/users/jaequery.json b/users/jaequery.json index 5fa2701d..121554eb 100644 --- a/users/jaequery.json +++ b/users/jaequery.json @@ -1,4 +1,4 @@ { - "copyright": "Jae Lee, http://jaequery.com", - "url": "http://jaequery.com" -} + "copyright": "Jae Lee, http://jaequery.com", + "url": "http://jaequery.com" +} \ No newline at end of file diff --git a/users/jafnee.json b/users/jafnee.json index 1d7fac57..efce8f77 100644 --- a/users/jafnee.json +++ b/users/jafnee.json @@ -1,3 +1,3 @@ { - "copyright": "Jafnee Jesmee" -} + "copyright": "Jafnee Jesmee" +} \ No newline at end of file diff --git a/users/jagregory.json b/users/jagregory.json index 001c2f18..7e9adf9f 100644 --- a/users/jagregory.json +++ b/users/jagregory.json @@ -1,3 +1,3 @@ { - "copyright": "James Gregory" -} + "copyright": "James Gregory" +} \ No newline at end of file diff --git a/users/jaimeneves.json b/users/jaimeneves.json index 380a2194..7140776a 100644 --- a/users/jaimeneves.json +++ b/users/jaimeneves.json @@ -1,5 +1,5 @@ { - "copyright": "Jaime Neves", - "url": "https://jaimeneves.com.br", - "email": "jaimebarrosoneves@gmail.com" -} + "copyright": "Jaime Neves", + "url": "https://jaimeneves.com.br", + "email": "jaimebarrosoneves@gmail.com" +} \ No newline at end of file diff --git a/users/jais.json b/users/jais.json index 78f915ce..1a8112dc 100644 --- a/users/jais.json +++ b/users/jais.json @@ -1,3 +1,3 @@ { - "copyright": "Jais Cheema" -} + "copyright": "Jais Cheema" +} \ No newline at end of file diff --git a/users/jakebellacera.json b/users/jakebellacera.json index 29af3c2c..0eb82c5b 100644 --- a/users/jakebellacera.json +++ b/users/jakebellacera.json @@ -1,3 +1,3 @@ { - "copyright": "Jake Bellacera" -} + "copyright": "Jake Bellacera" +} \ No newline at end of file diff --git a/users/jakejohnson.json b/users/jakejohnson.json index d7ff34d3..8e5a741e 100644 --- a/users/jakejohnson.json +++ b/users/jakejohnson.json @@ -1,6 +1,6 @@ { - "copyright": "Jake Johnson", - "url": "http://xyclos.com", - "email": "jake@xyclos.com", - "format": "txt" -} + "copyright": "Jake Johnson", + "url": "http://xyclos.com", + "email": "jake@xyclos.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/jakemolnar.json b/users/jakemolnar.json index ecdc45be..62aadd9c 100644 --- a/users/jakemolnar.json +++ b/users/jakemolnar.json @@ -1,3 +1,3 @@ { - "copyright": "Jake Molnar" -} + "copyright": "Jake Molnar" +} \ No newline at end of file diff --git a/users/jakschu.json b/users/jakschu.json index 457d08fb..fc055be7 100644 --- a/users/jakschu.json +++ b/users/jakschu.json @@ -1,6 +1,6 @@ { - "copyright": "Jakob Schurdak", - "email": "i@jakschu.cf", - "gravatar": true, - "theme": "double-windsor" -} + "copyright": "Jakob Schurdak", + "email": "i@jakschu.cf", + "gravatar": true, + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/jalanb.json b/users/jalanb.json index 99bc5670..f55d7d17 100644 --- a/users/jalanb.json +++ b/users/jalanb.json @@ -1,6 +1,6 @@ { - "copyright": "J Alan Brogan", - "url": "http://www.al-got-rhythm.net", - "email": "licensing@al-got-rhythm.net", - "format": "txt" -} + "copyright": "J Alan Brogan", + "url": "http://www.al-got-rhythm.net", + "email": "licensing@al-got-rhythm.net", + "format": "txt" +} \ No newline at end of file diff --git a/users/james.json b/users/james.json index ac20ffda..39f63f1e 100644 --- a/users/james.json +++ b/users/james.json @@ -1,5 +1,5 @@ { - "copyright": "James Liu", - "url": "http://g.jamesliu.info", - "email": "james@jamesliu.info" -} + "copyright": "James Liu", + "url": "http://g.jamesliu.info", + "email": "james@jamesliu.info" +} \ No newline at end of file diff --git a/users/jameschen.json b/users/jameschen.json index 2288acde..9fd59299 100644 --- a/users/jameschen.json +++ b/users/jameschen.json @@ -1,6 +1,6 @@ { - "copyright": "James Chen", - "url": "http://ashchan.com", - "email": "ashchan@gmail.com", - "format": "txt" -} + "copyright": "James Chen", + "url": "http://ashchan.com", + "email": "ashchan@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/jamesclebio.json b/users/jamesclebio.json index 340db03c..d20d0f36 100644 --- a/users/jamesclebio.json +++ b/users/jamesclebio.json @@ -1,4 +1,4 @@ { - "copyright": "James Cl\u00e9bio", - "email": "jamesclebio@gmail.com" -} + "copyright": "James Clébio", + "email": "jamesclebio@gmail.com" +} \ No newline at end of file diff --git a/users/jameslawson.json b/users/jameslawson.json index 6103c2de..8734ea52 100644 --- a/users/jameslawson.json +++ b/users/jameslawson.json @@ -1,6 +1,6 @@ { - "copyright": "James Lawson", - "url": "https://github.com/jameslawson", - "email": "jameslawson@users.noreply.github.com", - "theme": "plaintext" -} + "copyright": "James Lawson", + "url": "https://github.com/jameslawson", + "email": "jameslawson@users.noreply.github.com", + "theme": "plaintext" +} \ No newline at end of file diff --git a/users/jameswyse.json b/users/jameswyse.json index d1d45745..52aa55fc 100644 --- a/users/jameswyse.json +++ b/users/jameswyse.json @@ -1,6 +1,6 @@ { - "copyright": "James Wyse, http://www.jameswyse.net", - "url": "http://www.jameswyse.net", - "email": "james@wyse.name", - "theme": "flesch" -} + "copyright": "James Wyse, http://www.jameswyse.net", + "url": "http://www.jameswyse.net", + "email": "james@wyse.name", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/jamieh.json b/users/jamieh.json index 9dfbe5cc..975ae128 100644 --- a/users/jamieh.json +++ b/users/jamieh.json @@ -1,6 +1,6 @@ { - "copyright": "Jamie Hankins", - "url": "http://jamiehankins.co.uk", - "email": "jamiehankin@gmail.com", - "format": "txt" -} + "copyright": "Jamie Hankins", + "url": "http://jamiehankins.co.uk", + "email": "jamiehankin@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/jamiemason.json b/users/jamiemason.json index a71fba81..02383c4e 100644 --- a/users/jamiemason.json +++ b/users/jamiemason.json @@ -1,4 +1,4 @@ { - "copyright": "Jamie Mason, @GotNoSugarBaby", - "url": "https://github.com/jamiemason" -} + "copyright": "Jamie Mason, @GotNoSugarBaby", + "url": "https://github.com/jamiemason" +} \ No newline at end of file diff --git a/users/jamiesonroberts.json b/users/jamiesonroberts.json index 39e3f0b2..394d8cb8 100644 --- a/users/jamiesonroberts.json +++ b/users/jamiesonroberts.json @@ -1,7 +1,7 @@ { - "copyright": "Jamieson Roberts", - "url": "http://jamiesonroberts.ca", - "email": "hello@jamiesonroberts.ca", - "gravatar": true, - "theme": "friendly" -} + "copyright": "Jamieson Roberts", + "url": "http://jamiesonroberts.ca", + "email": "hello@jamiesonroberts.ca", + "gravatar": true, + "theme": "friendly" +} \ No newline at end of file diff --git a/users/jan.json b/users/jan.json index 6d9a43d1..90a04d61 100644 --- a/users/jan.json +++ b/users/jan.json @@ -1,5 +1,5 @@ { - "copyright": "Jan Lelis ", - "url": "http://janlelis.com", - "theme": "friendly" -} + "copyright": "Jan Lelis ", + "url": "http://janlelis.com", + "theme": "friendly" +} \ No newline at end of file diff --git a/users/jancbeck.json b/users/jancbeck.json index 8fd1b3a1..f75ead47 100644 --- a/users/jancbeck.json +++ b/users/jancbeck.json @@ -1,6 +1,6 @@ { - "copyright": "Jan Beck", - "url": "http://jancbeck.com", - "email": "mail@jancbeck.com", - "format": "html" -} + "copyright": "Jan Beck", + "url": "http://jancbeck.com", + "email": "mail@jancbeck.com", + "format": "html" +} \ No newline at end of file diff --git a/users/janders223.json b/users/janders223.json index 35baa7df..c418bfac 100644 --- a/users/janders223.json +++ b/users/janders223.json @@ -1,5 +1,5 @@ { - "copyright": "Jim Anders", - "url": "http://janders223.com", - "email": "jim@janders223.com" -} + "copyright": "Jim Anders", + "url": "http://janders223.com", + "email": "jim@janders223.com" +} \ No newline at end of file diff --git a/users/jaredverdi.json b/users/jaredverdi.json index b24d7153..f3e23ae0 100644 --- a/users/jaredverdi.json +++ b/users/jaredverdi.json @@ -1,7 +1,7 @@ { - "copyright": "Jared Verdi", - "url": "http://jaredverdi.com", - "email": "jared@jaredverdi.com", - "format": "html", - "gravatar": true -} + "copyright": "Jared Verdi", + "url": "http://jaredverdi.com", + "email": "jared@jaredverdi.com", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/jas0ncn.json b/users/jas0ncn.json index f956e715..30588ffe 100644 --- a/users/jas0ncn.json +++ b/users/jas0ncn.json @@ -1,8 +1,8 @@ { - "copyright": "Jason Chen, https://github.com/jas0ncn", - "url": "http://ijason.cc", - "format": "txt", - "email": "jason@iszu.cn", - "gravatar": true, - "theme": "double-windsor" -} + "copyright": "Jason Chen, https://github.com/jas0ncn", + "url": "http://ijason.cc", + "format": "txt", + "email": "jason@iszu.cn", + "gravatar": true, + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/jasl.json b/users/jasl.json index 5d90f81e..113df756 100644 --- a/users/jasl.json +++ b/users/jasl.json @@ -1,4 +1,4 @@ { - "copyright": "Jun Jiang", - "email": "jasl9187@hotmail.com" -} + "copyright": "Jun Jiang", + "email": "jasl9187@hotmail.com" +} \ No newline at end of file diff --git a/users/jasondavis.json b/users/jasondavis.json index 5d6f3760..be74786d 100644 --- a/users/jasondavis.json +++ b/users/jasondavis.json @@ -1,6 +1,6 @@ { - "copyright": "Kenneth Jason Davis, http://www.codeDevelopr.com", - "url": "http://www.codedevelopr.com", - "email": "jason.davis.fl@gmail.com", - "theme": "flesch" -} + "copyright": "Kenneth Jason Davis, http://www.codeDevelopr.com", + "url": "http://www.codedevelopr.com", + "email": "jason.davis.fl@gmail.com", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/jasondemeuse.json b/users/jasondemeuse.json index 854c6bc6..3ada50ea 100644 --- a/users/jasondemeuse.json +++ b/users/jasondemeuse.json @@ -1,3 +1,3 @@ { - "copyright": "Jason Demeuse" -} + "copyright": "Jason Demeuse" +} \ No newline at end of file diff --git a/users/jasvir.json b/users/jasvir.json index 4c1f2315..c893e6da 100644 --- a/users/jasvir.json +++ b/users/jasvir.json @@ -1,3 +1,3 @@ { - "copyright": "Jasvir Singh Cheema" -} + "copyright": "Jasvir Singh Cheema" +} \ No newline at end of file diff --git a/users/jaswinder.json b/users/jaswinder.json index edd9ab87..9bfeea51 100644 --- a/users/jaswinder.json +++ b/users/jaswinder.json @@ -1,7 +1,7 @@ { - "copyright": "Jaswinder Singh, http://about.me/itsjaswinder", - "url": "http://about.me/itsjaswinder", - "email": "s.jaswinder03@gmail.com", - "gravatar": true, - "theme": "eula-modern" -} + "copyright": "Jaswinder Singh, http://about.me/itsjaswinder", + "url": "http://about.me/itsjaswinder", + "email": "s.jaswinder03@gmail.com", + "gravatar": true, + "theme": "eula-modern" +} \ No newline at end of file diff --git a/users/jautero.json b/users/jautero.json index b8e1e2e9..c08eaf85 100644 --- a/users/jautero.json +++ b/users/jautero.json @@ -1,5 +1,5 @@ { - "copyright": "Juha Autero", - "url": "http://jautero.net/", - "email": "jautero@iki.fi" -} + "copyright": "Juha Autero", + "url": "http://jautero.net/", + "email": "jautero@iki.fi" +} \ No newline at end of file diff --git a/users/jay.json b/users/jay.json index a5f298dd..c6c1b2f0 100644 --- a/users/jay.json +++ b/users/jay.json @@ -1,3 +1,3 @@ { - "copyright": "Jay Bosamiya" -} + "copyright": "Jay Bosamiya" +} \ No newline at end of file diff --git a/users/jaydson.json b/users/jaydson.json index ef0e086b..079b30ef 100644 --- a/users/jaydson.json +++ b/users/jaydson.json @@ -1,6 +1,6 @@ { - "copyright": "Jaydson Gomes", - "url": "http://jaydson.org", - "email": "jayalemao@gmail.com", - "format": "txt" -} + "copyright": "Jaydson Gomes", + "url": "http://jaydson.org", + "email": "jayalemao@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/jaylynch.json b/users/jaylynch.json index bb2dc319..0697ba53 100644 --- a/users/jaylynch.json +++ b/users/jaylynch.json @@ -1,5 +1,5 @@ { - "copyright": "Jay Lynch", - "url": "http://jaylyn.ch", - "theme": "default-dark" -} + "copyright": "Jay Lynch", + "url": "http://jaylyn.ch", + "theme": "default-dark" +} \ No newline at end of file diff --git a/users/jaymecd.json b/users/jaymecd.json index 82d3b413..7bd29b4e 100644 --- a/users/jaymecd.json +++ b/users/jaymecd.json @@ -1,6 +1,6 @@ { - "copyright": "Nikolai Zujev", - "email": "nikolai.zujev@gmail.com", - "theme": "dusk", - "gravatar": true -} + "copyright": "Nikolai Zujev", + "email": "nikolai.zujev@gmail.com", + "theme": "dusk", + "gravatar": true +} \ No newline at end of file diff --git a/users/jballard.json b/users/jballard.json index 3fcf5375..54a75a33 100644 --- a/users/jballard.json +++ b/users/jballard.json @@ -1,4 +1,4 @@ { - "copyright": "Jonathan Ballard", - "email": "jonathan.ballard@gmail.com" -} + "copyright": "Jonathan Ballard", + "email": "jonathan.ballard@gmail.com" +} \ No newline at end of file diff --git a/users/jbb.json b/users/jbb.json index 635bcfc9..a0a8453d 100644 --- a/users/jbb.json +++ b/users/jbb.json @@ -1,3 +1,3 @@ { - "copyright": "Joey Blake" -} + "copyright": "Joey Blake" +} \ No newline at end of file diff --git a/users/jbenet.json b/users/jbenet.json index cbdeecc0..bae13051 100644 --- a/users/jbenet.json +++ b/users/jbenet.json @@ -1,3 +1,3 @@ { - "copyright": "Juan Batiz-Benet" -} + "copyright": "Juan Batiz-Benet" +} \ No newline at end of file diff --git a/users/jbonnier.json b/users/jbonnier.json index 8c499e1c..1b62952c 100644 --- a/users/jbonnier.json +++ b/users/jbonnier.json @@ -1,8 +1,8 @@ { - "copyright": "Julien Bonnier, http://julienbonnier.com", - "url": "http://julienbonnier.com", - "format": "txt", - "email": "j.bonnier@gmail.com", - "gravatar": true, - "theme": "default" -} + "copyright": "Julien Bonnier, http://julienbonnier.com", + "url": "http://julienbonnier.com", + "format": "txt", + "email": "j.bonnier@gmail.com", + "gravatar": true, + "theme": "default" +} \ No newline at end of file diff --git a/users/jbradach.json b/users/jbradach.json index fafbac98..c4d259a2 100644 --- a/users/jbradach.json +++ b/users/jbradach.json @@ -1,8 +1,8 @@ { - "copyright": "James Bradach, https://jamesbradach.com", - "url": "https://jamesbradach.com", - "email": "heythere@jamesbradach.com", - "format": "html", - "gravatar": true, - "theme": "eula-modern" -} + "copyright": "James Bradach, https://jamesbradach.com", + "url": "https://jamesbradach.com", + "email": "heythere@jamesbradach.com", + "format": "html", + "gravatar": true, + "theme": "eula-modern" +} \ No newline at end of file diff --git a/users/jbrodriguez.json b/users/jbrodriguez.json index dbff5b78..4014eca6 100644 --- a/users/jbrodriguez.json +++ b/users/jbrodriguez.json @@ -1,5 +1,5 @@ { - "copyright": "Juan B. Rodriguez, http://www.apertoire.net", - "url": "http://www.apertoire.net", - "email": "jbrodriguez@apertoire.net" -} + "copyright": "Juan B. Rodriguez, http://www.apertoire.net", + "url": "http://www.apertoire.net", + "email": "jbrodriguez@apertoire.net" +} \ No newline at end of file diff --git a/users/jbrooksuk.json b/users/jbrooksuk.json index 6c5a5026..26d13353 100644 --- a/users/jbrooksuk.json +++ b/users/jbrooksuk.json @@ -1,7 +1,7 @@ { - "copyright": "James Brooks", - "url": "http://james-brooks.uk", - "email": "jbrooksuk@me.com", - "theme": "white cherry", - "gravatar": true -} + "copyright": "James Brooks", + "url": "http://james-brooks.uk", + "email": "jbrooksuk@me.com", + "theme": "white cherry", + "gravatar": true +} \ No newline at end of file diff --git a/users/jc.json b/users/jc.json index 69bbe546..7464b394 100644 --- a/users/jc.json +++ b/users/jc.json @@ -1,3 +1,3 @@ { - "copyright": "Jonathan Crooke" -} + "copyright": "Jonathan Crooke" +} \ No newline at end of file diff --git a/users/jcarouth.json b/users/jcarouth.json index 98cd6798..68655d74 100644 --- a/users/jcarouth.json +++ b/users/jcarouth.json @@ -1,5 +1,5 @@ { - "copyright": "Jeff Carouth http://carouth.com", - "url": "http://carouth.com", - "email": "jcarouth@gmail.com" -} + "copyright": "Jeff Carouth http://carouth.com", + "url": "http://carouth.com", + "email": "jcarouth@gmail.com" +} \ No newline at end of file diff --git a/users/jcart1666.json b/users/jcart1666.json index 8361818d..90f755ec 100644 --- a/users/jcart1666.json +++ b/users/jcart1666.json @@ -1,4 +1,4 @@ { - "copyright": "Jonathan Cartwright\nThank you", - "format": "txt" -} + "copyright": "Jonathan Cartwright\nThank you", + "format": "txt" +} \ No newline at end of file diff --git a/users/jcfausto.json b/users/jcfausto.json index ae0e2bc4..e703fde1 100644 --- a/users/jcfausto.json +++ b/users/jcfausto.json @@ -1,7 +1,7 @@ { - "copyright": "Julio Cesar Fausto", - "url": "http://jcfausto.com", - "email": "jcfausto@gmail.com", - "format": "html", - "theme": "default" -} + "copyright": "Julio Cesar Fausto", + "url": "http://jcfausto.com", + "email": "jcfausto@gmail.com", + "format": "html", + "theme": "default" +} \ No newline at end of file diff --git a/users/jcuri.json b/users/jcuri.json index 2536c033..0ab03ece 100644 --- a/users/jcuri.json +++ b/users/jcuri.json @@ -1,3 +1,3 @@ { - "copyright": "J-Curi" -} + "copyright": "J-Curi" +} \ No newline at end of file diff --git a/users/jczimm.json b/users/jczimm.json index aac6ba6d..d716d021 100644 --- a/users/jczimm.json +++ b/users/jczimm.json @@ -1,7 +1,7 @@ { - "copyright": "Jacob Zimmerman", - "url": "http://jczimm.com", - "email": "jczimm@jczimm.com", - "format": "html", - "gravatar": true -} + "copyright": "Jacob Zimmerman", + "url": "http://jczimm.com", + "email": "jczimm@jczimm.com", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/jd.json b/users/jd.json index f4f5e908..89059aa1 100644 --- a/users/jd.json +++ b/users/jd.json @@ -1,5 +1,5 @@ { - "copyright": "JD, http://jdesigns.altervista.org", - "url": "http://jdesigns.altervista.org", - "theme": "default" -} + "copyright": "JD, http://jdesigns.altervista.org", + "url": "http://jdesigns.altervista.org", + "theme": "default" +} \ No newline at end of file diff --git a/users/jdalton.json b/users/jdalton.json index 593689c8..79e5c005 100644 --- a/users/jdalton.json +++ b/users/jdalton.json @@ -1,5 +1,5 @@ { - "copyright": "John-David Dalton", - "url": "http://allyoucanleet.com/", - "theme": "double-windsor" -} + "copyright": "John-David Dalton", + "url": "http://allyoucanleet.com/", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/jdavis.json b/users/jdavis.json index 1c1c9c08..f8f4e459 100644 --- a/users/jdavis.json +++ b/users/jdavis.json @@ -1,6 +1,6 @@ { - "copyright": "Josh Davis", - "url": "http://joshldavis.com", - "email": "josh@joshldavis.com", - "format": "txt" -} + "copyright": "Josh Davis", + "url": "http://joshldavis.com", + "email": "josh@joshldavis.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/jden.json b/users/jden.json index addf2add..0487a46f 100644 --- a/users/jden.json +++ b/users/jden.json @@ -1,6 +1,6 @@ { - "copyright": "Jason Denizac", - "url": "http://jden.us", - "email": "jason@denizac.org", - "format": "txt" -} + "copyright": "Jason Denizac", + "url": "http://jden.us", + "email": "jason@denizac.org", + "format": "txt" +} \ No newline at end of file diff --git a/users/jdiamond.json b/users/jdiamond.json index 0482f79b..625fd9e1 100644 --- a/users/jdiamond.json +++ b/users/jdiamond.json @@ -1,3 +1,3 @@ { - "copyright": "Jason Diamond" -} + "copyright": "Jason Diamond" +} \ No newline at end of file diff --git a/users/jdrd.json b/users/jdrd.json index a420440b..00a42c90 100644 --- a/users/jdrd.json +++ b/users/jdrd.json @@ -1,6 +1,6 @@ { - "copyright": "Joel Ruhland", - "url": "http://joelruhland.net", - "email": "contact@joelruhland.net", - "format": "txt" -} + "copyright": "Joel Ruhland", + "url": "http://joelruhland.net", + "email": "contact@joelruhland.net", + "format": "txt" +} \ No newline at end of file diff --git a/users/jeanperez.json b/users/jeanperez.json index 3d223fe0..3c6b0646 100644 --- a/users/jeanperez.json +++ b/users/jeanperez.json @@ -1,6 +1,6 @@ { - "copyright": "Jean Prez", - "url": "http://jeanperez.com", - "email": "contacto@jeanperez.com", - "format": "txt" -} + "copyright": "Jean Prez", + "url": "http://jeanperez.com", + "email": "contacto@jeanperez.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/jeanpimentel.json b/users/jeanpimentel.json index a2697336..410be4df 100644 --- a/users/jeanpimentel.json +++ b/users/jeanpimentel.json @@ -1,6 +1,6 @@ { - "copyright": "Jean Pimentel", - "url": "http://www.jeanpimentel.com.br", - "email": "contato@jeanpimentel.com.br", - "format": "txt" -} + "copyright": "Jean Pimentel", + "url": "http://www.jeanpimentel.com.br", + "email": "contato@jeanpimentel.com.br", + "format": "txt" +} \ No newline at end of file diff --git a/users/jeff.json b/users/jeff.json index 78ef95a9..d936da7a 100644 --- a/users/jeff.json +++ b/users/jeff.json @@ -1,6 +1,6 @@ { - "copyright": "Jeffrey Godwyll", - "url": "http://jeffgodwyll.com", - "email": "jeffgodwyll+mit@gmail.com", - "gravatar": true -} + "copyright": "Jeffrey Godwyll", + "url": "http://jeffgodwyll.com", + "email": "jeffgodwyll+mit@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/jeffdecola.json b/users/jeffdecola.json index 614ee3d8..83c3d190 100644 --- a/users/jeffdecola.json +++ b/users/jeffdecola.json @@ -1,7 +1,7 @@ { - "copyright": "Jeffry A. DeCola", - "url": "https://github.com/JeffDeCola", - "format": "html", - "theme": "double-windsor", - "gravatar": true -} + "copyright": "Jeffry A. DeCola", + "url": "https://github.com/JeffDeCola", + "format": "html", + "theme": "double-windsor", + "gravatar": true +} \ No newline at end of file diff --git a/users/jeffmccoy.json b/users/jeffmccoy.json index fa90266f..b0a40f3d 100644 --- a/users/jeffmccoy.json +++ b/users/jeffmccoy.json @@ -1,6 +1,6 @@ { - "copyright": "Jeff McCoy", - "url": "http://jeffm.us", - "email": "me@jeffm.us", - "theme": "afterdark" -} + "copyright": "Jeff McCoy", + "url": "http://jeffm.us", + "email": "me@jeffm.us", + "theme": "afterdark" +} \ No newline at end of file diff --git a/users/jeffreymeng.json b/users/jeffreymeng.json index bb8e7138..c55991f8 100644 --- a/users/jeffreymeng.json +++ b/users/jeffreymeng.json @@ -1,8 +1,8 @@ { - "copyright": "Jeffrey Meng", - "url": "https://www.jeffkmeng.com", - "email": "jeffkmeng@gmail.com", - "format": "html", - "gravatar": true, - "theme": "dusk" -} + "copyright": "Jeffrey Meng", + "url": "https://www.jeffkmeng.com", + "email": "jeffkmeng@gmail.com", + "format": "html", + "gravatar": true, + "theme": "dusk" +} \ No newline at end of file diff --git a/users/jefsama.json b/users/jefsama.json index 10a6e675..321d6af4 100644 --- a/users/jefsama.json +++ b/users/jefsama.json @@ -1,8 +1,8 @@ { - "copyright": "Jeferson Mari", - "url": "https://github.com/JefMari", - "email": "slash.jeferson@gmail.com", - "format": "html", - "gravatar": true, - "theme": "material-cyan" -} + "copyright": "Jeferson Mari", + "url": "https://github.com/JefMari", + "email": "slash.jeferson@gmail.com", + "format": "html", + "gravatar": true, + "theme": "material-cyan" +} \ No newline at end of file diff --git a/users/jellekralt.json b/users/jellekralt.json index b4415d73..aa9908fc 100644 --- a/users/jellekralt.json +++ b/users/jellekralt.json @@ -1,6 +1,6 @@ { - "copyright": "Jelle Kralt, http://jellekralt.nl", - "url": "http://jellekralt.nl", - "theme": "flesch", - "gravatar": true -} + "copyright": "Jelle Kralt, http://jellekralt.nl", + "url": "http://jellekralt.nl", + "theme": "flesch", + "gravatar": true +} \ No newline at end of file diff --git a/users/jelmer.json b/users/jelmer.json index 37acf839..d2aef0d2 100644 --- a/users/jelmer.json +++ b/users/jelmer.json @@ -1,4 +1,4 @@ { - "copyright": "Jelmer de Maat, https://github.com/jelmerdemaat", - "url": "https://github.com/jelmerdemaat/" -} + "copyright": "Jelmer de Maat, https://github.com/jelmerdemaat", + "url": "https://github.com/jelmerdemaat/" +} \ No newline at end of file diff --git a/users/jemos.json b/users/jemos.json index c11cd05c..fe29466e 100644 --- a/users/jemos.json +++ b/users/jemos.json @@ -1,3 +1,3 @@ { - "copyright": "Jean-Fran\u00e7ois Mousinho" -} + "copyright": "Jean-François Mousinho" +} \ No newline at end of file diff --git a/users/jenish.json b/users/jenish.json index 451ce881..befe63f8 100644 --- a/users/jenish.json +++ b/users/jenish.json @@ -1,3 +1,3 @@ { - "copyright": "Rakholiya Jenish" -} + "copyright": "Rakholiya Jenish" +} \ No newline at end of file diff --git a/users/jeremy.json b/users/jeremy.json index ee64b75a..51c73548 100644 --- a/users/jeremy.json +++ b/users/jeremy.json @@ -1,6 +1,6 @@ { - "copyright": "Jeremy Gordon, http://www.jeremyrgordon.com", - "url": "http://www.jeremyrgordon.com", - "email": "onejgordon@gmail.com", - "gravatar": true -} + "copyright": "Jeremy Gordon, http://www.jeremyrgordon.com", + "url": "http://www.jeremyrgordon.com", + "email": "onejgordon@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/jeremykendall.json b/users/jeremykendall.json index 884d59f2..daffda76 100644 --- a/users/jeremykendall.json +++ b/users/jeremykendall.json @@ -1,5 +1,5 @@ { - "copyright": "Jeremy Kendall, http://about.me/jeremykendall", - "url": "http://about.me/jeremykendall", - "theme": "flesch" -} + "copyright": "Jeremy Kendall, http://about.me/jeremykendall", + "url": "http://about.me/jeremykendall", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/jericho.json b/users/jericho.json index 560d8b3a..0f610752 100644 --- a/users/jericho.json +++ b/users/jericho.json @@ -1,3 +1,3 @@ { - "copyright": "Jeremie Desautels" -} + "copyright": "Jeremie Desautels" +} \ No newline at end of file diff --git a/users/jermorin.json b/users/jermorin.json index 65e14355..986839d9 100644 --- a/users/jermorin.json +++ b/users/jermorin.json @@ -1,6 +1,6 @@ { - "copyright": "J\u00e9r\u00e9my Morin", - "url": "http://jermor.in", - "email": "hi@jermor.in", - "theme": "solarized" -} + "copyright": "Jérémy Morin", + "url": "http://jermor.in", + "email": "hi@jermor.in", + "theme": "solarized" +} \ No newline at end of file diff --git a/users/jeroenvisser.json b/users/jeroenvisser.json index 25d34688..6914009c 100644 --- a/users/jeroenvisser.json +++ b/users/jeroenvisser.json @@ -1,7 +1,7 @@ { - "copyright": "Jeroen Visser", - "url": "http://jrnv.nl/", - "email": "me@jrnv.nl", - "format": "html", - "gravatar": true -} + "copyright": "Jeroen Visser", + "url": "http://jrnv.nl/", + "email": "me@jrnv.nl", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/jeroenvisser101.json b/users/jeroenvisser101.json index e23a95f6..1402bfcf 100644 --- a/users/jeroenvisser101.json +++ b/users/jeroenvisser101.json @@ -1,7 +1,7 @@ { - "copyright": "Jeroen Visser", - "url": "http://jrnv.nl", - "email": "jeroenvisser101@gmail.com", - "format": "html", - "gravatar": true -} + "copyright": "Jeroen Visser", + "url": "http://jrnv.nl", + "email": "jeroenvisser101@gmail.com", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/jesseflorig.json b/users/jesseflorig.json index e5acabd2..e167642b 100644 --- a/users/jesseflorig.json +++ b/users/jesseflorig.json @@ -1,6 +1,6 @@ { - "copyright": "Jesse Florig", - "url": "http://jesseflorig.com", - "email": "contact@jesseflorig.com", - "format": "txt" -} + "copyright": "Jesse Florig", + "url": "http://jesseflorig.com", + "email": "contact@jesseflorig.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/jesusurrutia.json b/users/jesusurrutia.json index 65fbeca9..163277e8 100644 --- a/users/jesusurrutia.json +++ b/users/jesusurrutia.json @@ -1,8 +1,8 @@ { - "copyright": "Jesús Urrutia", - "url": "http://jesusurrutia.com", - "email": "jesus.urrutia@gmail.com", - "version": "html", - "gravatar": true, - "theme": "default" -} + "copyright": "Jesús Urrutia", + "url": "http://jesusurrutia.com", + "email": "jesus.urrutia@gmail.com", + "version": "html", + "gravatar": true, + "theme": "default" +} \ No newline at end of file diff --git a/users/jet.json b/users/jet.json index 592a62be..39c8176d 100644 --- a/users/jet.json +++ b/users/jet.json @@ -1,6 +1,6 @@ { - "copyright": "Jerrold R Thompson", - "url": "http://ironhorserails.com", - "email": "jet@ironhorserails.com", - "format": "txt" -} + "copyright": "Jerrold R Thompson", + "url": "http://ironhorserails.com", + "email": "jet@ironhorserails.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/jetienne.json b/users/jetienne.json index f0656e2c..db979720 100644 --- a/users/jetienne.json +++ b/users/jetienne.json @@ -1,4 +1,4 @@ { - "copyright": "Jerome Etienne, http://jetienne.com", - "url": "http://jetienne.com" -} + "copyright": "Jerome Etienne, http://jetienne.com", + "url": "http://jetienne.com" +} \ No newline at end of file diff --git a/users/jfgodoy.json b/users/jfgodoy.json index f0c4f8e9..ad040c53 100644 --- a/users/jfgodoy.json +++ b/users/jfgodoy.json @@ -1,5 +1,5 @@ { - "copyright": "Jorge Godoy", - "email": "godoy.jf@gmail.com", - "format": "txt" -} + "copyright": "Jorge Godoy", + "email": "godoy.jf@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/jfsiii.json b/users/jfsiii.json index 4e1e5302..3fa53893 100644 --- a/users/jfsiii.json +++ b/users/jfsiii.json @@ -1,4 +1,4 @@ { - "copyright": "John Schulz", - "theme": "flesch" -} + "copyright": "John Schulz", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/jgrossi.json b/users/jgrossi.json index 04986357..8ba585d6 100644 --- a/users/jgrossi.json +++ b/users/jgrossi.json @@ -1,5 +1,5 @@ { - "copyright": "Junior Grossi", - "url": "http://jgrossi.com", - "email": "juniorgro@gmail.com" -} + "copyright": "Junior Grossi", + "url": "http://jgrossi.com", + "email": "juniorgro@gmail.com" +} \ No newline at end of file diff --git a/users/jhink.json b/users/jhink.json index c9738f70..c1ad1382 100644 --- a/users/jhink.json +++ b/users/jhink.json @@ -1,6 +1,6 @@ { - "copyright": "Jhink Solutions", - "email": "we@jhink.com", - "format": "html", - "theme": "material-indigo" -} + "copyright": "Jhink Solutions", + "email": "we@jhink.com", + "format": "html", + "theme": "material-indigo" +} \ No newline at end of file diff --git a/users/ji.json b/users/ji.json index a21562d4..d7b03ca7 100644 --- a/users/ji.json +++ b/users/ji.json @@ -1,4 +1,4 @@ { - "copyright": "Jamie Isaacs, http://jamieisaacs.com", - "email": "pdt256@gmail.com" -} + "copyright": "Jamie Isaacs, http://jamieisaacs.com", + "email": "pdt256@gmail.com" +} \ No newline at end of file diff --git a/users/jibreil.json b/users/jibreil.json index 36b59375..dce09413 100644 --- a/users/jibreil.json +++ b/users/jibreil.json @@ -1,6 +1,6 @@ { - "copyright": "Jibreil Honeine, https://jibreil.xyz", - "url": "https://jibreil.xyz", - "email": "jibreilhoneine@gmail.com", - "theme": "material-red" -} + "copyright": "Jibreil Honeine, https://jibreil.xyz", + "url": "https://jibreil.xyz", + "email": "jibreilhoneine@gmail.com", + "theme": "material-red" +} \ No newline at end of file diff --git a/users/jimeh.json b/users/jimeh.json index 2c68c495..95df5940 100644 --- a/users/jimeh.json +++ b/users/jimeh.json @@ -1,5 +1,5 @@ { - "copyright": "Jim Myhrberg (jimeh).", - "url": "http://jimeh.me", - "format": "txt" -} + "copyright": "Jim Myhrberg (jimeh).", + "url": "http://jimeh.me", + "format": "txt" +} \ No newline at end of file diff --git a/users/jimjum.json b/users/jimjum.json index 34890704..e89fe8d2 100644 --- a/users/jimjum.json +++ b/users/jimjum.json @@ -1,3 +1,3 @@ { - "copyright": "HTML23, inc." -} + "copyright": "HTML23, inc." +} \ No newline at end of file diff --git a/users/jimmyking.json b/users/jimmyking.json index ff5ee6d1..51dbc78a 100644 --- a/users/jimmyking.json +++ b/users/jimmyking.json @@ -1,7 +1,7 @@ { - "copyright": "Jimmy King, http://jimmyking.me", - "url": "http://jimmyking.me", - "email": "hello@jimmyking.me", - "gravatar": true, - "theme": "double-windsor" -} + "copyright": "Jimmy King, http://jimmyking.me", + "url": "http://jimmyking.me", + "email": "hello@jimmyking.me", + "gravatar": true, + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/jin.json b/users/jin.json index cb2f71d3..418a0ac6 100644 --- a/users/jin.json +++ b/users/jin.json @@ -1,3 +1,3 @@ { - "copyright": "JIN YANG" -} + "copyright": "JIN YANG" +} \ No newline at end of file diff --git a/users/jinnovation.json b/users/jinnovation.json index 012b0308..76ef6d57 100644 --- a/users/jinnovation.json +++ b/users/jinnovation.json @@ -1,3 +1,3 @@ { - "copyright": "Jonathan Jin" -} + "copyright": "Jonathan Jin" +} \ No newline at end of file diff --git a/users/jitinl.json b/users/jitinl.json index 57660feb..11a26738 100644 --- a/users/jitinl.json +++ b/users/jitinl.json @@ -1,3 +1,3 @@ { - "copyright": "Jitin Luthra" -} + "copyright": "Jitin Luthra" +} \ No newline at end of file diff --git a/users/jizoo.json b/users/jizoo.json index 2d2e99ac..e6f23c5c 100644 --- a/users/jizoo.json +++ b/users/jizoo.json @@ -1,5 +1,5 @@ { - "copyright": "Jizoo", - "url": "http://jizoo.net", - "format": "txt" -} + "copyright": "Jizoo", + "url": "http://jizoo.net", + "format": "txt" +} \ No newline at end of file diff --git a/users/jj1bdx.json b/users/jj1bdx.json index 0a8d78cc..887f63f4 100644 --- a/users/jj1bdx.json +++ b/users/jj1bdx.json @@ -1,6 +1,6 @@ { - "copyright": "Kenji Rikitake", - "url": "http://www.k2r.org/kenji/", - "email": "kenji.rikitake@acm.org", - "format": "txt" -} + "copyright": "Kenji Rikitake", + "url": "http://www.k2r.org/kenji/", + "email": "kenji.rikitake@acm.org", + "format": "txt" +} \ No newline at end of file diff --git a/users/jkeyes.json b/users/jkeyes.json index 94bf724b..c6d674fa 100644 --- a/users/jkeyes.json +++ b/users/jkeyes.json @@ -1,5 +1,5 @@ { - "copyright": "John Keyes", - "url": "http://keyes.ie", - "email": "john@keyes.ie" -} + "copyright": "John Keyes", + "url": "http://keyes.ie", + "email": "john@keyes.ie" +} \ No newline at end of file diff --git a/users/jkimbo.json b/users/jkimbo.json index d18c7d44..819d5744 100644 --- a/users/jkimbo.json +++ b/users/jkimbo.json @@ -1,6 +1,6 @@ { - "copyright": "Jonathan Kim, http://jkimbo.com", - "url": "http://jkimbo.com", - "email": "hello@jkimbo.com", - "theme": "afterdark" -} + "copyright": "Jonathan Kim, http://jkimbo.com", + "url": "http://jkimbo.com", + "email": "hello@jkimbo.com", + "theme": "afterdark" +} \ No newline at end of file diff --git a/users/jmazz.json b/users/jmazz.json index c65daafa..6dcc9a7f 100644 --- a/users/jmazz.json +++ b/users/jmazz.json @@ -1,6 +1,6 @@ { - "copyright": "Julian Mazzitelli", - "url": "http://jmazz.me", - "email": "mazzitelli.julian@gmail.com", - "theme": "xtansia" -} + "copyright": "Julian Mazzitelli", + "url": "http://jmazz.me", + "email": "mazzitelli.julian@gmail.com", + "theme": "xtansia" +} \ No newline at end of file diff --git a/users/jmblog.json b/users/jmblog.json index 85c61034..c4f936e2 100644 --- a/users/jmblog.json +++ b/users/jmblog.json @@ -1,4 +1,4 @@ { - "copyright": "Yoshihide Jimbo", - "url": "https://github.com/jmblog/" -} + "copyright": "Yoshihide Jimbo", + "url": "https://github.com/jmblog/" +} \ No newline at end of file diff --git a/users/jmendeth.json b/users/jmendeth.json index 613595f2..720895cc 100644 --- a/users/jmendeth.json +++ b/users/jmendeth.json @@ -1,6 +1,6 @@ { - "copyright": "Xavier Mendez", - "url": "http://jmendeth.com", - "email": "jmendeth@gmail.com", - "format": "txt" -} + "copyright": "Xavier Mendez", + "url": "http://jmendeth.com", + "email": "jmendeth@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/jmeosbn.json b/users/jmeosbn.json index 1e7c180f..485ab9c8 100644 --- a/users/jmeosbn.json +++ b/users/jmeosbn.json @@ -1,4 +1,4 @@ { - "copyright": "Jamie Osborne", - "url": "http://jmeosbn.github.io" -} + "copyright": "Jamie Osborne", + "url": "http://jmeosbn.github.io" +} \ No newline at end of file diff --git a/users/jmhodges.json b/users/jmhodges.json index a2789aca..d4f04a38 100644 --- a/users/jmhodges.json +++ b/users/jmhodges.json @@ -1,6 +1,6 @@ { - "copyright": "Jeff Hodges", - "url": "http://www.somethingsimilar.com", - "email": "jeff@somethingsimilar.com", - "format": "txt" -} + "copyright": "Jeff Hodges", + "url": "http://www.somethingsimilar.com", + "email": "jeff@somethingsimilar.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/jmiller.json b/users/jmiller.json index d66b8790..4d1ce80d 100644 --- a/users/jmiller.json +++ b/users/jmiller.json @@ -1,4 +1,4 @@ { - "copyright": "Jesse Miller", - "email": "jmiller@jmiller.com" -} + "copyright": "Jesse Miller", + "email": "jmiller@jmiller.com" +} \ No newline at end of file diff --git a/users/jmm.json b/users/jmm.json index bdf33786..7e646fe8 100644 --- a/users/jmm.json +++ b/users/jmm.json @@ -1,3 +1,3 @@ { - "copyright": "john muhl" -} + "copyright": "john muhl" +} \ No newline at end of file diff --git a/users/jmparsons.json b/users/jmparsons.json index 2c43f466..a3d20765 100644 --- a/users/jmparsons.json +++ b/users/jmparsons.json @@ -1,3 +1,3 @@ { - "copyright": "Jonathan Parsons" -} + "copyright": "Jonathan Parsons" +} \ No newline at end of file diff --git a/users/jnf.json b/users/jnf.json index 7f6675a5..208e083f 100644 --- a/users/jnf.json +++ b/users/jnf.json @@ -1,3 +1,3 @@ { - "copyright": "Jeremy Flores" -} + "copyright": "Jeremy Flores" +} \ No newline at end of file diff --git a/users/jnj.json b/users/jnj.json index cfe5b772..17bbe22e 100644 --- a/users/jnj.json +++ b/users/jnj.json @@ -1,7 +1,7 @@ { - "copyright": "jake johns ", - "url": "http://jakejohns.net", - "email": "jake@jakejohns.net", - "gravatar": true, - "theme": "black-beauty" -} + "copyright": "jake johns ", + "url": "http://jakejohns.net", + "email": "jake@jakejohns.net", + "gravatar": true, + "theme": "black-beauty" +} \ No newline at end of file diff --git a/users/jnjosh.json b/users/jnjosh.json index 9dee0baa..5f9678e2 100644 --- a/users/jnjosh.json +++ b/users/jnjosh.json @@ -1,5 +1,5 @@ { - "copyright": "Josh Johnson", - "url": "http://jnjosh.com", - "email": "jnjosh@jnjosh.com" -} + "copyright": "Josh Johnson", + "url": "http://jnjosh.com", + "email": "jnjosh@jnjosh.com" +} \ No newline at end of file diff --git a/users/jnw.json b/users/jnw.json index dcd705cc..8e10c82a 100644 --- a/users/jnw.json +++ b/users/jnw.json @@ -1,6 +1,6 @@ { - "copyright": "JNW, http://jnw.io/", - "url": "http://jnw.io/", - "email": "william@jnw.io", - "gravatar": true -} + "copyright": "JNW, http://jnw.io/", + "url": "http://jnw.io/", + "email": "william@jnw.io", + "gravatar": true +} \ No newline at end of file diff --git a/users/joaos.json b/users/joaos.json index 317eb62e..49403651 100644 --- a/users/joaos.json +++ b/users/joaos.json @@ -1,8 +1,8 @@ { - "copyright": "Jo\u00c3\u00a3o Santana", - "url": "http://www.lonedevsoftware.xyz", - "email": "joaosantana@outlook.com", - "format": "html", - "gravatar": true, - "theme": "eula-modern" -} + "copyright": "João Santana", + "url": "http://www.lonedevsoftware.xyz", + "email": "joaosantana@outlook.com", + "format": "html", + "gravatar": true, + "theme": "eula-modern" +} \ No newline at end of file diff --git a/users/jobquest.json b/users/jobquest.json index 39e6891d..817183c3 100644 --- a/users/jobquest.json +++ b/users/jobquest.json @@ -1,7 +1,7 @@ { - "copyright": "JobQuest", - "url": "http://jobquest.heroku.com", - "email": "thisisjobquest@.com", - "format": "txt", - "theme": "white cherry" -} + "copyright": "JobQuest", + "url": "http://jobquest.heroku.com", + "email": "thisisjobquest@.com", + "format": "txt", + "theme": "white cherry" +} \ No newline at end of file diff --git a/users/jody.json b/users/jody.json index 6999e7ef..266de719 100644 --- a/users/jody.json +++ b/users/jody.json @@ -1,4 +1,4 @@ { - "copyright": "Jody Mickey", - "url": "http://jodymickey.com" -} + "copyright": "Jody Mickey", + "url": "http://jodymickey.com" +} \ No newline at end of file diff --git a/users/joe.json b/users/joe.json index ff032bb1..62abdc27 100644 --- a/users/joe.json +++ b/users/joe.json @@ -1,5 +1,5 @@ { - "copyright": "Joe Presbrey", - "url": "http://presbrey.mit.edu/", - "email": "joepresbrey@mit.edu" -} + "copyright": "Joe Presbrey", + "url": "http://presbrey.mit.edu/", + "email": "joepresbrey@mit.edu" +} \ No newline at end of file diff --git a/users/joelambert.json b/users/joelambert.json index 8fb14af1..645c81bb 100644 --- a/users/joelambert.json +++ b/users/joelambert.json @@ -1,3 +1,3 @@ { - "copyright": "Joe Lambert, http://joelambert.co.uk/" -} + "copyright": "Joe Lambert, http://joelambert.co.uk/" +} \ No newline at end of file diff --git a/users/joelbladt.json b/users/joelbladt.json index 4fc38aaa..b71b4c27 100644 --- a/users/joelbladt.json +++ b/users/joelbladt.json @@ -1,7 +1,7 @@ { - "copyright": "Joel Bladt, https://www.joelbladt.de", - "url": "https://www.joelbladt.de", - "email": "hello@joelbladt.de", - "gravatar": true, - "theme": "opensans" -} + "copyright": "Joel Bladt, https://www.joelbladt.de", + "url": "https://www.joelbladt.de", + "email": "hello@joelbladt.de", + "gravatar": true, + "theme": "opensans" +} \ No newline at end of file diff --git a/users/joelpurra.json b/users/joelpurra.json index 75e298aa..61f2fee4 100644 --- a/users/joelpurra.json +++ b/users/joelpurra.json @@ -1,6 +1,6 @@ { - "copyright": "Joel Purra", - "url": "http://joelpurra.com/", - "email": "code@joelpurra.com", - "gravatar": true -} + "copyright": "Joel Purra", + "url": "http://joelpurra.com/", + "email": "code@joelpurra.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/joelself.json b/users/joelself.json index 91a14d4b..1882380d 100644 --- a/users/joelself.json +++ b/users/joelself.json @@ -1,3 +1,3 @@ { - "copyright": "Joel Self" -} + "copyright": "Joel Self" +} \ No newline at end of file diff --git a/users/joelwalters.json b/users/joelwalters.json index 11ef4f0c..648f447d 100644 --- a/users/joelwalters.json +++ b/users/joelwalters.json @@ -1,3 +1,3 @@ { - "copyright": "Joel Walters" -} + "copyright": "Joel Walters" +} \ No newline at end of file diff --git a/users/joeyblake.json b/users/joeyblake.json index 42f30f5b..03113cb6 100644 --- a/users/joeyblake.json +++ b/users/joeyblake.json @@ -1,5 +1,5 @@ { - "copyright": "Joey Blake, http://codenimbus.com", - "url": "http://codenimbus.com", - "theme": "double-windsor" -} + "copyright": "Joey Blake, http://codenimbus.com", + "url": "http://codenimbus.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/joeyespo.json b/users/joeyespo.json index 62e14c82..11366dcf 100644 --- a/users/joeyespo.json +++ b/users/joeyespo.json @@ -1,6 +1,6 @@ { - "copyright": "Joe Esposito", - "url": "http://joeyespo.com", - "email": "joe@joeyespo.com", - "format": "html" -} + "copyright": "Joe Esposito", + "url": "http://joeyespo.com", + "email": "joe@joeyespo.com", + "format": "html" +} \ No newline at end of file diff --git a/users/jogy.json b/users/jogy.json index 110d119e..cd1ebcaf 100644 --- a/users/jogy.json +++ b/users/jogy.json @@ -1,4 +1,4 @@ { - "copyright": "Johann Gyger", - "url": "https://github.com/jogy/" -} + "copyright": "Johann Gyger", + "url": "https://github.com/jogy/" +} \ No newline at end of file diff --git a/users/johan.json b/users/johan.json index 26877d63..872b14b9 100644 --- a/users/johan.json +++ b/users/johan.json @@ -1,4 +1,4 @@ { - "copyright": "Johan Brook, http://johanbrook.com", - "url": "http://johanbrook.com" -} + "copyright": "Johan Brook, http://johanbrook.com", + "url": "http://johanbrook.com" +} \ No newline at end of file diff --git a/users/johanekhager.json b/users/johanekhager.json index ad3d4fc5..58b89624 100644 --- a/users/johanekhager.json +++ b/users/johanekhager.json @@ -1,6 +1,6 @@ { - "copyright": "Johan Ekhager", - "url": "http://johanekhager.com", - "format": "html", - "theme": "magic-mint" -} + "copyright": "Johan Ekhager", + "url": "http://johanekhager.com", + "format": "html", + "theme": "magic-mint" +} \ No newline at end of file diff --git a/users/johanhalse.json b/users/johanhalse.json index 26a8231b..8169feae 100644 --- a/users/johanhalse.json +++ b/users/johanhalse.json @@ -1,6 +1,6 @@ { - "copyright": "Johan Halse, https://twitter.com/hejsna", - "url": "http://www.varvet.se", - "email": "johan@varvet.se", - "gravatar": true -} + "copyright": "Johan Halse, https://twitter.com/hejsna", + "url": "http://www.varvet.se", + "email": "johan@varvet.se", + "gravatar": true +} \ No newline at end of file diff --git a/users/john.json b/users/john.json index 80882fae..6f50ee85 100644 --- a/users/john.json +++ b/users/john.json @@ -1,3 +1,3 @@ { - "copyright": "John Barton" -} + "copyright": "John Barton" +} \ No newline at end of file diff --git a/users/johnathanjenkins.json b/users/johnathanjenkins.json index 740eea35..0848825a 100644 --- a/users/johnathanjenkins.json +++ b/users/johnathanjenkins.json @@ -1,3 +1,3 @@ { - "copyright": "Johnathan Jenkins" -} + "copyright": "Johnathan Jenkins" +} \ No newline at end of file diff --git a/users/johndyer.json b/users/johndyer.json index 5efd6c8c..e350add4 100644 --- a/users/johndyer.json +++ b/users/johndyer.json @@ -1,3 +1,3 @@ { - "copyright": "John Dyer" -} + "copyright": "John Dyer" +} \ No newline at end of file diff --git a/users/johnjensen.json b/users/johnjensen.json index 8e52e0c9..ea0dd12f 100644 --- a/users/johnjensen.json +++ b/users/johnjensen.json @@ -1,3 +1,3 @@ { - "copyright": "John Jensen" -} + "copyright": "John Jensen" +} \ No newline at end of file diff --git a/users/johnmcc.json b/users/johnmcc.json index 58eee17f..c1a54469 100644 --- a/users/johnmcc.json +++ b/users/johnmcc.json @@ -1,3 +1,3 @@ { - "copyright": "John McCollum, http://johnmc.co/llum" -} + "copyright": "John McCollum, http://johnmc.co/llum" +} \ No newline at end of file diff --git a/users/johnmdonahue.json b/users/johnmdonahue.json index a28bfa1d..2838e4d9 100644 --- a/users/johnmdonahue.json +++ b/users/johnmdonahue.json @@ -1,4 +1,4 @@ { - "copyright": "John Donahue, http://johnmdonahue.com", - "url": "http://johnmdonahue.com" -} + "copyright": "John Donahue, http://johnmdonahue.com", + "url": "http://johnmdonahue.com" +} \ No newline at end of file diff --git a/users/johnny.json b/users/johnny.json index 737adcce..97c77c54 100644 --- a/users/johnny.json +++ b/users/johnny.json @@ -1,4 +1,4 @@ { - "copyright": "\u00e6\u2013\u2021\u00e5\u00bc\u00ba \u00e5\u00ae\u2039", - "theme": "double-windsor" -} + "copyright": "文强 宋", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/johnschult.json b/users/johnschult.json index 95a9a1ef..b3b2a800 100644 --- a/users/johnschult.json +++ b/users/johnschult.json @@ -1,6 +1,6 @@ { - "copyright": "John Schult, https://github.com/johnschult", - "email": "johnschult@icloud.com", - "gravatar": true, - "theme": "default" -} + "copyright": "John Schult, https://github.com/johnschult", + "email": "johnschult@icloud.com", + "gravatar": true, + "theme": "default" +} \ No newline at end of file diff --git a/users/johnsullivan.json b/users/johnsullivan.json index 36860700..849becc2 100644 --- a/users/johnsullivan.json +++ b/users/johnsullivan.json @@ -1,4 +1,4 @@ { - "copyright": "John Sullivan", - "email": "jsull003@ucr.edu" -} + "copyright": "John Sullivan", + "email": "jsull003@ucr.edu" +} \ No newline at end of file diff --git a/users/johntfoster.json b/users/johntfoster.json index 5f04c3c8..1d296fa6 100644 --- a/users/johntfoster.json +++ b/users/johntfoster.json @@ -1,6 +1,6 @@ { - "copyright": "John T. Foster", - "url": "http://johntfoster.github.io", - "email": "johntfosterjr@gmail.com", - "format": "txt" -} + "copyright": "John T. Foster", + "url": "http://johntfoster.github.io", + "email": "johntfosterjr@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/jokliu.json b/users/jokliu.json index f145adde..80c07939 100644 --- a/users/jokliu.json +++ b/users/jokliu.json @@ -1,4 +1,4 @@ { - "copyright": "Jokubas Liutkus", - "theme": "dusk" -} + "copyright": "Jokubas Liutkus", + "theme": "dusk" +} \ No newline at end of file diff --git a/users/jonas.json b/users/jonas.json index 0ba4ef11..46b61614 100644 --- a/users/jonas.json +++ b/users/jonas.json @@ -1,6 +1,6 @@ { - "copyright": "Jonas Skovmand", - "url": "http://xn--stf-qla.se", - "email": "jonas@satf.se", - "format": "txt" -} + "copyright": "Jonas Skovmand", + "url": "http://xn--stf-qla.se", + "email": "jonas@satf.se", + "format": "txt" +} \ No newline at end of file diff --git a/users/jonathanheaven.json b/users/jonathanheaven.json index 1165dc14..b8ea2971 100644 --- a/users/jonathanheaven.json +++ b/users/jonathanheaven.json @@ -1,6 +1,6 @@ { - "copyright": "Jonathan Heaven", - "url": "http://jonathanheaven.com", - "email": "jheaven@gmail.com", - "format": "txt" -} + "copyright": "Jonathan Heaven", + "url": "http://jonathanheaven.com", + "email": "jheaven@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/jonathanwiesel.json b/users/jonathanwiesel.json index 441dbef7..28744193 100644 --- a/users/jonathanwiesel.json +++ b/users/jonathanwiesel.json @@ -1,7 +1,7 @@ { - "copyright": "Jonathan Wiesel", - "url": "http://jonathanwiesel.com/", - "email": "jonathanwiesel@gmail.com", - "gravatar": true, - "theme": "black-beauty" -} + "copyright": "Jonathan Wiesel", + "url": "http://jonathanwiesel.com/", + "email": "jonathanwiesel@gmail.com", + "gravatar": true, + "theme": "black-beauty" +} \ No newline at end of file diff --git a/users/jongretar.json b/users/jongretar.json index 25ca65ce..73e98e50 100644 --- a/users/jongretar.json +++ b/users/jongretar.json @@ -1,6 +1,6 @@ { - "copyright": "J\u00f3n Gr\u00e9tar Borg\u00fe\u00f3rsson", - "url": "http://jongretar.com", - "email": "jongretar@jongretar.com", - "gravatar": true -} + "copyright": "Jón Grétar Borgþórsson", + "url": "http://jongretar.com", + "email": "jongretar@jongretar.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/jonmcpherson.json b/users/jonmcpherson.json index 54b5438e..d3948663 100644 --- a/users/jonmcpherson.json +++ b/users/jonmcpherson.json @@ -1,5 +1,5 @@ { - "copyright": "Jon McPherson", - "url": "http://jonmcpherson.com", - "email": "contact@jonmcpherson.com" -} + "copyright": "Jon McPherson", + "url": "http://jonmcpherson.com", + "email": "contact@jonmcpherson.com" +} \ No newline at end of file diff --git a/users/jonnung-grp.json b/users/jonnung-grp.json index d823994b..51342391 100644 --- a/users/jonnung-grp.json +++ b/users/jonnung-grp.json @@ -1,3 +1,3 @@ { - "copyright": "jonnung, http://jonnung-grp.appspot.com/" -} + "copyright": "jonnung, http://jonnung-grp.appspot.com/" +} \ No newline at end of file diff --git a/users/jonscottclark.json b/users/jonscottclark.json index e79968cf..6bc9cfa7 100644 --- a/users/jonscottclark.json +++ b/users/jonscottclark.json @@ -1,5 +1,5 @@ { - "copyright": "Jon Scott Clark, http://jclark.io", - "url": "http://jclark.io", - "email": "me@jclark.io" -} + "copyright": "Jon Scott Clark, http://jclark.io", + "url": "http://jclark.io", + "email": "me@jclark.io" +} \ No newline at end of file diff --git a/users/jonstites.json b/users/jonstites.json index fad04044..672fb18d 100644 --- a/users/jonstites.json +++ b/users/jonstites.json @@ -1,6 +1,6 @@ { - "copyright": "Jonathan Stites", - "email": "contact@jonstites.com", - "format": "html", - "theme": "eula-modern" -} + "copyright": "Jonathan Stites", + "email": "contact@jonstites.com", + "format": "html", + "theme": "eula-modern" +} \ No newline at end of file diff --git a/users/joom.json b/users/joom.json index 53da8c18..60de1eeb 100644 --- a/users/joom.json +++ b/users/joom.json @@ -1,6 +1,6 @@ { - "copyright": "Cumhur Korkut", - "url": "http://joom.im", - "email": "cumhurkorkut@gmail.com", - "format": "txt" -} + "copyright": "Cumhur Korkut", + "url": "http://joom.im", + "email": "cumhurkorkut@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/joostlawerman.json b/users/joostlawerman.json index 83697b7c..5d14df0f 100644 --- a/users/joostlawerman.json +++ b/users/joostlawerman.json @@ -1,7 +1,7 @@ { - "copyright": "Joost Lawerman", - "url": "https://joost.lawerman.me", - "email": "joost@lawerman.me", - "theme": "material-red", - "gravatar": false -} + "copyright": "Joost Lawerman", + "url": "https://joost.lawerman.me", + "email": "joost@lawerman.me", + "theme": "material-red", + "gravatar": false +} \ No newline at end of file diff --git a/users/jordimorillo.json b/users/jordimorillo.json index 9c5778fc..2e36888d 100644 --- a/users/jordimorillo.json +++ b/users/jordimorillo.json @@ -1,5 +1,5 @@ { - "copyright": "Jordi Morillo Sells, http://www.programador-web.com", - "url": "http://www.programador-web.com", - "email": "jordi.morillo@programador-web.com" -} + "copyright": "Jordi Morillo Sells, http://www.programador-web.com", + "url": "http://www.programador-web.com", + "email": "jordi.morillo@programador-web.com" +} \ No newline at end of file diff --git a/users/joren.json b/users/joren.json index 7f6aab4f..1fd76b31 100644 --- a/users/joren.json +++ b/users/joren.json @@ -1,5 +1,5 @@ { - "copyright": "Joren Van Hee, http://joren.co", - "url": "http://joren.co", - "theme": "plaintext" -} + "copyright": "Joren Van Hee, http://joren.co", + "url": "http://joren.co", + "theme": "plaintext" +} \ No newline at end of file diff --git a/users/jorge-matricali.json b/users/jorge-matricali.json index 1d15cd78..3a8e2901 100644 --- a/users/jorge-matricali.json +++ b/users/jorge-matricali.json @@ -1,8 +1,8 @@ { - "copyright": "Jorge Matricali", - "url": "https://github.com/matricali", - "email": "jorgematricali@gmail.com", - "format": "html", - "theme": "8bits-monochrome-amber", - "gravatar": true -} + "copyright": "Jorge Matricali", + "url": "https://github.com/matricali", + "email": "jorgematricali@gmail.com", + "format": "html", + "theme": "8bits-monochrome-amber", + "gravatar": true +} \ No newline at end of file diff --git a/users/jorge.json b/users/jorge.json index 7e09f00a..47ae1877 100644 --- a/users/jorge.json +++ b/users/jorge.json @@ -1,3 +1,3 @@ { - "copyright": "Jorge Gonzalez" -} + "copyright": "Jorge Gonzalez" +} \ No newline at end of file diff --git a/users/joseandro.json b/users/joseandro.json index d802b69a..2c172b1e 100644 --- a/users/joseandro.json +++ b/users/joseandro.json @@ -1,6 +1,6 @@ { - "copyright": "Joseandro Luiz", - "url": "https://github.com/joseandro", - "email": "joseandro.luiz@gmail.com", - "gravatar": true -} + "copyright": "Joseandro Luiz", + "url": "https://github.com/joseandro", + "email": "joseandro.luiz@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/josh.json b/users/josh.json index f2f81e91..ddca292d 100644 --- a/users/josh.json +++ b/users/josh.json @@ -1,5 +1,5 @@ { - "copyright": "Josh Perez, http://www.goatslacker.com", - "url": "http://www.goatslacker.com", - "theme": "flesch" -} + "copyright": "Josh Perez, http://www.goatslacker.com", + "url": "http://www.goatslacker.com", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/joshboehm.json b/users/joshboehm.json index 76351021..d69bb69a 100644 --- a/users/joshboehm.json +++ b/users/joshboehm.json @@ -1,3 +1,3 @@ { - "copyright": "Josh Boehm" -} + "copyright": "Josh Boehm" +} \ No newline at end of file diff --git a/users/joshbuhler.json b/users/joshbuhler.json index 00b8d236..9eae9fd1 100644 --- a/users/joshbuhler.json +++ b/users/joshbuhler.json @@ -1,3 +1,3 @@ { - "copyright": "Joshua Buhler" -} + "copyright": "Joshua Buhler" +} \ No newline at end of file diff --git a/users/joshje.json b/users/joshje.json index 133cddbc..acb9a5a0 100644 --- a/users/joshje.json +++ b/users/joshje.json @@ -1,3 +1,3 @@ { - "copyright": "Josh Emerson" -} + "copyright": "Josh Emerson" +} \ No newline at end of file diff --git a/users/joshua.json b/users/joshua.json index 562368e8..e7e92c2d 100644 --- a/users/joshua.json +++ b/users/joshua.json @@ -1,7 +1,7 @@ { - "copyright": "Joshua Kendall", - "email": "me@joshuakendall.com", - "format": "html", - "theme": "blackwood", - "url": "http://joshuakendall.com" -} + "copyright": "Joshua Kendall", + "email": "me@joshuakendall.com", + "format": "html", + "theme": "blackwood", + "url": "http://joshuakendall.com" +} \ No newline at end of file diff --git a/users/joshuacanfield.json b/users/joshuacanfield.json index 75b91697..12c333d6 100644 --- a/users/joshuacanfield.json +++ b/users/joshuacanfield.json @@ -1,6 +1,6 @@ { - "copyright": "Joshua Canfield, http://icodeclarity.com", - "url": "http://www.icodeclarity.com", - "email": "support@icodeclarity.com", - "theme": "plaintext" -} + "copyright": "Joshua Canfield, http://icodeclarity.com", + "url": "http://www.icodeclarity.com", + "email": "support@icodeclarity.com", + "theme": "plaintext" +} \ No newline at end of file diff --git a/users/joshuaptfan.json b/users/joshuaptfan.json index 200b3e65..517ac48e 100644 --- a/users/joshuaptfan.json +++ b/users/joshuaptfan.json @@ -1,6 +1,6 @@ { - "copyright": "Joshua Fan", - "url": "https://github.com/joshuaptfan", - "email": "joshuaptfan@gmail.com", - "theme": "material" -} + "copyright": "Joshua Fan", + "url": "https://github.com/joshuaptfan", + "email": "joshuaptfan@gmail.com", + "theme": "material" +} \ No newline at end of file diff --git a/users/joslyn.json b/users/joslyn.json index 65938b6f..28c089d1 100644 --- a/users/joslyn.json +++ b/users/joslyn.json @@ -1,3 +1,3 @@ { - "copyright": "Joslyn Rosbrook" -} + "copyright": "Joslyn Rosbrook" +} \ No newline at end of file diff --git a/users/josue.json b/users/josue.json index f5f225d0..a3197dd4 100644 --- a/users/josue.json +++ b/users/josue.json @@ -1,3 +1,3 @@ { - "copyright": "Josue Rodriguez" -} + "copyright": "Josue Rodriguez" +} \ No newline at end of file diff --git a/users/josuer.json b/users/josuer.json index 2ab5cd6f..c4284ff8 100644 --- a/users/josuer.json +++ b/users/josuer.json @@ -1,5 +1,5 @@ { - "copyright": "Josue Rodriguez", - "email": "josue@josuerodriguez.com", - "url": "http://josuerodriguez.com" -} + "copyright": "Josue Rodriguez", + "email": "josue@josuerodriguez.com", + "url": "http://josuerodriguez.com" +} \ No newline at end of file diff --git a/users/josuerodriguez.json b/users/josuerodriguez.json index 2ab5cd6f..c4284ff8 100644 --- a/users/josuerodriguez.json +++ b/users/josuerodriguez.json @@ -1,5 +1,5 @@ { - "copyright": "Josue Rodriguez", - "email": "josue@josuerodriguez.com", - "url": "http://josuerodriguez.com" -} + "copyright": "Josue Rodriguez", + "email": "josue@josuerodriguez.com", + "url": "http://josuerodriguez.com" +} \ No newline at end of file diff --git a/users/jotschi.json b/users/jotschi.json index 62de93b0..e27b1434 100644 --- a/users/jotschi.json +++ b/users/jotschi.json @@ -1,6 +1,6 @@ { - "copyright": "Johannes Sch\u00fcth", - "url": "http://jotschi.de", - "email": "code@jotschi.de", - "format": "txt" -} + "copyright": "Johannes Schüth", + "url": "http://jotschi.de", + "email": "code@jotschi.de", + "format": "txt" +} \ No newline at end of file diff --git a/users/joyce.json b/users/joyce.json index f4e14441..c164f54e 100644 --- a/users/joyce.json +++ b/users/joyce.json @@ -1,6 +1,6 @@ { - "copyright": "Joyce Chan", - "url": "http://joyceschan.posterous.com", - "email": "joyce.sz.chan@gmail.com", - "format": "txt" -} + "copyright": "Joyce Chan", + "url": "http://joyceschan.posterous.com", + "email": "joyce.sz.chan@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/joyceschan.json b/users/joyceschan.json index f79178e3..0414d92f 100644 --- a/users/joyceschan.json +++ b/users/joyceschan.json @@ -1,6 +1,6 @@ { - "copyright": "Joyce Chan", - "url": "http://joyceschan.posterous.com", - "email": "", - "format": "txt" -} + "copyright": "Joyce Chan", + "url": "http://joyceschan.posterous.com", + "email": "", + "format": "txt" +} \ No newline at end of file diff --git a/users/jp.json b/users/jp.json index 6dbf1c75..15e12184 100644 --- a/users/jp.json +++ b/users/jp.json @@ -1,3 +1,3 @@ { - "copyright": "JP Smith" -} + "copyright": "JP Smith" +} \ No newline at end of file diff --git a/users/jprice.json b/users/jprice.json index 5858b1be..3d5501b1 100644 --- a/users/jprice.json +++ b/users/jprice.json @@ -1,7 +1,7 @@ { - "copyright": "Josh Price, http://jprice.io", - "url": "http://jprice.io", - "email": "josh@jprice.io", - "gravatar": true, - "theme": "black-beauty" -} + "copyright": "Josh Price, http://jprice.io", + "url": "http://jprice.io", + "email": "josh@jprice.io", + "gravatar": true, + "theme": "black-beauty" +} \ No newline at end of file diff --git a/users/jpsirois.json b/users/jpsirois.json index d2845174..57f237ff 100644 --- a/users/jpsirois.json +++ b/users/jpsirois.json @@ -1,6 +1,6 @@ { - "copyright": "Jean-Philippe Sirois", - "url": "http://jpsirois.com", - "email": "email@jpsirois.com", - "format": "txt" -} + "copyright": "Jean-Philippe Sirois", + "url": "http://jpsirois.com", + "email": "email@jpsirois.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/jquery-client.json b/users/jquery-client.json index 6eecf9e7..5f885022 100644 --- a/users/jquery-client.json +++ b/users/jquery-client.json @@ -1,6 +1,6 @@ { - "copyright": "jquery-client maintainers and other contributors", - "url": "https://github.com/wikimedia/jquery-client", - "format": "html", - "theme": "double-windsor" -} + "copyright": "jquery-client maintainers and other contributors", + "url": "https://github.com/wikimedia/jquery-client", + "format": "html", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/jr.json b/users/jr.json index 438c881e..976233db 100644 --- a/users/jr.json +++ b/users/jr.json @@ -1,4 +1,4 @@ { - "copyright": "Johannes R\u00c3\u00b6ttger, http://johannes.roettger.us", - "url": "http://johannes.roettger.us" -} + "copyright": "Johannes Röttger, http://johannes.roettger.us", + "url": "http://johannes.roettger.us" +} \ No newline at end of file diff --git a/users/jrattanpal.json b/users/jrattanpal.json index 0b340af9..969a00c6 100644 --- a/users/jrattanpal.json +++ b/users/jrattanpal.json @@ -1,5 +1,5 @@ { - "copyright": "Jaswinder Singh Rattanpal", - "url": "http://www.rattanpal.com", - "email": "rattanpal@rattanpal.com" -} + "copyright": "Jaswinder Singh Rattanpal", + "url": "http://www.rattanpal.com", + "email": "rattanpal@rattanpal.com" +} \ No newline at end of file diff --git a/users/jre.json b/users/jre.json index 09cc75ad..581d688c 100644 --- a/users/jre.json +++ b/users/jre.json @@ -1,3 +1,3 @@ { - "copyright": "Julian Reyes Escrigas" -} + "copyright": "Julian Reyes Escrigas" +} \ No newline at end of file diff --git a/users/jrudenstam.json b/users/jrudenstam.json index c2d06636..444846aa 100644 --- a/users/jrudenstam.json +++ b/users/jrudenstam.json @@ -1,6 +1,6 @@ { - "copyright": "Jacob Rudenstam", - "url": "http://typisktmig.se", - "email": "jrudenstam@gmail.com", - "format": "txt" -} + "copyright": "Jacob Rudenstam", + "url": "http://typisktmig.se", + "email": "jrudenstam@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/jruhland.json b/users/jruhland.json index f619247c..09fcd913 100644 --- a/users/jruhland.json +++ b/users/jruhland.json @@ -1,7 +1,7 @@ { - "copyright": "Joel Ruhland", - "url": "http://joelruhland.net", - "email": "contact@joelruhland.net", - "format": "txt", - "theme": "open-sans" -} + "copyright": "Joel Ruhland", + "url": "http://joelruhland.net", + "email": "contact@joelruhland.net", + "format": "txt", + "theme": "open-sans" +} \ No newline at end of file diff --git a/users/jryans.json b/users/jryans.json index 24cfa24d..2a2e17c4 100644 --- a/users/jryans.json +++ b/users/jryans.json @@ -1,6 +1,6 @@ { - "copyright": "J. Ryan Stinnett", - "url": "https://github.com/jryans", - "email": "jryans@gmail.com", - "theme": "double-windsor" -} + "copyright": "J. Ryan Stinnett", + "url": "https://github.com/jryans", + "email": "jryans@gmail.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/js.json b/users/js.json index 93669106..735a2a03 100644 --- a/users/js.json +++ b/users/js.json @@ -1,7 +1,7 @@ { - "copyright": "Joshua Suggs", - "url": "http://joshsuggs.com", - "email": "joshsuggs@gmail.com", - "format": "html", - "theme": "flesch" -} + "copyright": "Joshua Suggs", + "url": "http://joshsuggs.com", + "email": "joshsuggs@gmail.com", + "format": "html", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/jsbin.json b/users/jsbin.json index 7d8c491b..f792c22a 100644 --- a/users/jsbin.json +++ b/users/jsbin.json @@ -1,4 +1,4 @@ { - "copyright": "JS Bin Ltd", - "url": "http://jsbin.com" -} + "copyright": "JS Bin Ltd", + "url": "http://jsbin.com" +} \ No newline at end of file diff --git a/users/jseppi.json b/users/jseppi.json index c9574ab6..85053a67 100644 --- a/users/jseppi.json +++ b/users/jseppi.json @@ -1,6 +1,6 @@ { - "copyright": "James Seppi", - "url": "http://coseppi.com", - "email": "james.seppi@gmail.com", - "format": "html" -} + "copyright": "James Seppi", + "url": "http://coseppi.com", + "email": "james.seppi@gmail.com", + "format": "html" +} \ No newline at end of file diff --git a/users/jsumners.json b/users/jsumners.json index ead0f670..65ca48f9 100644 --- a/users/jsumners.json +++ b/users/jsumners.json @@ -1,7 +1,7 @@ { - "copyright": "James Sumners", - "url": "http://jrfom.com", - "email": "james.sumners@gmail.com", - "gravatar": true, - "theme": "friendly" -} + "copyright": "James Sumners", + "url": "http://jrfom.com", + "email": "james.sumners@gmail.com", + "gravatar": true, + "theme": "friendly" +} \ No newline at end of file diff --git a/users/jtb.json b/users/jtb.json index 61540729..f3f9cb31 100644 --- a/users/jtb.json +++ b/users/jtb.json @@ -1,3 +1,3 @@ { - "copyright": "Justin Buchanan" -} + "copyright": "Justin Buchanan" +} \ No newline at end of file diff --git a/users/jtkendall.json b/users/jtkendall.json index bd030a6a..2a5702b4 100644 --- a/users/jtkendall.json +++ b/users/jtkendall.json @@ -1,7 +1,7 @@ { - "copyright": "Joshua Kendall (jtkendall)", - "email": "me@joshuakendall.com", - "format": "html", - "theme": "blackwood", - "url": "http://twitter.com/jtkendall" -} + "copyright": "Joshua Kendall (jtkendall)", + "email": "me@joshuakendall.com", + "format": "html", + "theme": "blackwood", + "url": "http://twitter.com/jtkendall" +} \ No newline at end of file diff --git a/users/jtr.json b/users/jtr.json index e20c0bbd..e1c26e54 100644 --- a/users/jtr.json +++ b/users/jtr.json @@ -1,3 +1,3 @@ { - "copyright": "Jeroen Trappers" -} + "copyright": "Jeroen Trappers" +} \ No newline at end of file diff --git a/users/jtwalters.json b/users/jtwalters.json index 6cc48ba7..5ab73d24 100644 --- a/users/jtwalters.json +++ b/users/jtwalters.json @@ -1,5 +1,5 @@ { - "copyright": "Joel Walters", - "url": "http://joelwalters.com", - "email": "jtwalters@gmail.com" -} + "copyright": "Joel Walters", + "url": "http://joelwalters.com", + "email": "jtwalters@gmail.com" +} \ No newline at end of file diff --git a/users/jtyost2.json b/users/jtyost2.json index d23fbc22..37de248f 100644 --- a/users/jtyost2.json +++ b/users/jtyost2.json @@ -1,6 +1,6 @@ { - "copyright": "Justin Yost", - "url": "https://www.yostivanic.com/", - "email": "justin.yost@yostivanich.com", - "format": "txt" -} + "copyright": "Justin Yost", + "url": "https://www.yostivanic.com/", + "email": "justin.yost@yostivanich.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/juanitofatas.json b/users/juanitofatas.json index 5ea727f5..16641840 100644 --- a/users/juanitofatas.json +++ b/users/juanitofatas.json @@ -1,6 +1,6 @@ { - "copyright": "Juanito Fatas", - "url": "http://lisp.es/", - "email": "katehuang0320@gmail.com", - "format": "html" -} + "copyright": "Juanito Fatas", + "url": "http://lisp.es/", + "email": "katehuang0320@gmail.com", + "format": "html" +} \ No newline at end of file diff --git a/users/julesj.json b/users/julesj.json index d8c88004..91cbbb10 100644 --- a/users/julesj.json +++ b/users/julesj.json @@ -1,6 +1,6 @@ { - "copyright": "Jules Janssen", - "url": "http://julesj.nl", - "email": "jules@julesj.nl", - "format": "html" -} + "copyright": "Jules Janssen", + "url": "http://julesj.nl", + "email": "jules@julesj.nl", + "format": "html" +} \ No newline at end of file diff --git a/users/julien-breux.json b/users/julien-breux.json index 71886a44..fd37701a 100644 --- a/users/julien-breux.json +++ b/users/julien-breux.json @@ -1,3 +1,3 @@ { - "copyright": "Julien Breux" -} + "copyright": "Julien Breux" +} \ No newline at end of file diff --git a/users/julienw.json b/users/julienw.json index 0cbab47d..1ee77ec9 100644 --- a/users/julienw.json +++ b/users/julienw.json @@ -1,5 +1,5 @@ { - "copyright": "Julien Wajsberg", - "url": "http://everlong.org/", - "theme": "flesch" -} + "copyright": "Julien Wajsberg", + "url": "http://everlong.org/", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/junookyo.json b/users/junookyo.json index e4c8eb96..4b6196ab 100644 --- a/users/junookyo.json +++ b/users/junookyo.json @@ -1,8 +1,8 @@ { - "copyright": "Tuan Ha", - "url": "https://junookyo.blogspot.com/", - "email": "junookyo@gmail.com", - "format": "html", - "gravatar": true, - "theme": "hmt-blue" -} + "copyright": "Tuan Ha", + "url": "https://junookyo.blogspot.com/", + "email": "junookyo@gmail.com", + "format": "html", + "gravatar": true, + "theme": "hmt-blue" +} \ No newline at end of file diff --git a/users/justin.json b/users/justin.json index fe67c3e1..de3f5c6d 100644 --- a/users/justin.json +++ b/users/justin.json @@ -1,4 +1,4 @@ { - "copyright": "Justin Sisley", - "url": "http://justinsisley.com" -} + "copyright": "Justin Sisley", + "url": "http://justinsisley.com" +} \ No newline at end of file diff --git a/users/justinian.json b/users/justinian.json index 5bbad092..f10ae31e 100644 --- a/users/justinian.json +++ b/users/justinian.json @@ -1,7 +1,7 @@ { - "copyright": "Justin C. Miller, http://devjustinian.com", - "email": "justin@devjustinian.com", - "url": "http://devjustinian.com", - "theme": "friendly", - "gravatar": true -} + "copyright": "Justin C. Miller, http://devjustinian.com", + "email": "justin@devjustinian.com", + "url": "http://devjustinian.com", + "theme": "friendly", + "gravatar": true +} \ No newline at end of file diff --git a/users/justinm.json b/users/justinm.json index 1a0fce59..b81c308e 100644 --- a/users/justinm.json +++ b/users/justinm.json @@ -1,5 +1,5 @@ { - "copyright": "Justin McManus", - "url": "http://jmcman.us", - "email": "jmcmanu@gmail.com" -} + "copyright": "Justin McManus", + "url": "http://jmcman.us", + "email": "jmcmanu@gmail.com" +} \ No newline at end of file diff --git a/users/justinrainbow.json b/users/justinrainbow.json index e856f292..d86463b6 100644 --- a/users/justinrainbow.json +++ b/users/justinrainbow.json @@ -1,4 +1,4 @@ { - "copyright": "Justin Rainbow", - "email": "justin.rainbow@gmail.com" -} + "copyright": "Justin Rainbow", + "email": "justin.rainbow@gmail.com" +} \ No newline at end of file diff --git a/users/justmarkup.json b/users/justmarkup.json index d456a2a4..d1cb2045 100644 --- a/users/justmarkup.json +++ b/users/justmarkup.json @@ -1,6 +1,6 @@ { - "copyright": "Michael Scharnagl", - "url": "http://justmarkup.com", - "email": "hallo@justmarkup.com", - "format": "txt" -} + "copyright": "Michael Scharnagl", + "url": "http://justmarkup.com", + "email": "hallo@justmarkup.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/justmoon.json b/users/justmoon.json index 2436a7c2..81ec469f 100644 --- a/users/justmoon.json +++ b/users/justmoon.json @@ -1,3 +1,3 @@ { - "copyright": "Stefan Thomas" -} + "copyright": "Stefan Thomas" +} \ No newline at end of file diff --git a/users/jwark.json b/users/jwark.json index 085bee14..aa1b69fd 100644 --- a/users/jwark.json +++ b/users/jwark.json @@ -1,3 +1,3 @@ { - "copyright": "Justin Wark" -} + "copyright": "Justin Wark" +} \ No newline at end of file diff --git a/users/jwathen.json b/users/jwathen.json index 9d8ccd4b..94982980 100644 --- a/users/jwathen.json +++ b/users/jwathen.json @@ -1,4 +1,4 @@ { - "copyright": "John Wathen", - "email": "john.s.wathen@gmail.com" -} + "copyright": "John Wathen", + "email": "john.s.wathen@gmail.com" +} \ No newline at end of file diff --git a/users/jwehrman.json b/users/jwehrman.json index 9fcc51ac..a8aac49e 100644 --- a/users/jwehrman.json +++ b/users/jwehrman.json @@ -1,3 +1,3 @@ { - "copyright": "Justin Wehrman" -} + "copyright": "Justin Wehrman" +} \ No newline at end of file diff --git a/users/jwngr.json b/users/jwngr.json index 8ae03474..954d471f 100644 --- a/users/jwngr.json +++ b/users/jwngr.json @@ -1,3 +1,3 @@ { - "copyright": "Jacob Wenger" -} + "copyright": "Jacob Wenger" +} \ No newline at end of file diff --git a/users/jxck.json b/users/jxck.json index 621631ca..dcbce441 100644 --- a/users/jxck.json +++ b/users/jxck.json @@ -1,5 +1,5 @@ { - "copyright": "Jxck", - "url": "https://jxck.io", - "email": "block.rxckin.beats@gmail.com" -} + "copyright": "Jxck", + "url": "https://jxck.io", + "email": "block.rxckin.beats@gmail.com" +} \ No newline at end of file diff --git a/users/jxson.json b/users/jxson.json index b3470b34..1680e0f9 100644 --- a/users/jxson.json +++ b/users/jxson.json @@ -1,3 +1,3 @@ { - "copyright": "Jason Campbell" -} + "copyright": "Jason Campbell" +} \ No newline at end of file diff --git a/users/jylhis.json b/users/jylhis.json index 3b081e47..acb4ada6 100644 --- a/users/jylhis.json +++ b/users/jylhis.json @@ -1,4 +1,4 @@ { - "copyright": "Markus Jylh\u00e4nkangas", - "email": "markus@jylhis.com" -} + "copyright": "Markus Jylhänkangas", + "email": "markus@jylhis.com" +} \ No newline at end of file diff --git a/users/k-yoshida.json b/users/k-yoshida.json index 0f1d399e..af144f5d 100644 --- a/users/k-yoshida.json +++ b/users/k-yoshida.json @@ -1,6 +1,6 @@ { - "copyright": "Kohei YOSHIDA", - "url": "http://yosida95.com", - "email": "kohei@yosida95.com", - "format": "txt" -} + "copyright": "Kohei YOSHIDA", + "url": "http://yosida95.com", + "email": "kohei@yosida95.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/k2wanko.json b/users/k2wanko.json index 701395fb..004e55fc 100644 --- a/users/k2wanko.json +++ b/users/k2wanko.json @@ -1,4 +1,4 @@ { - "copyright": "Kazuhiro Kubota", - "url": "https://github.com/k2wanko" -} + "copyright": "Kazuhiro Kubota", + "url": "https://github.com/k2wanko" +} \ No newline at end of file diff --git a/users/k33nice.json b/users/k33nice.json index c56b1e3e..e56ed7b7 100644 --- a/users/k33nice.json +++ b/users/k33nice.json @@ -1,6 +1,6 @@ { - "copyright": "Alexandr Krykovliuk", - "url": "http://k33nice.com", - "email": "k33nice@gmail.com", - "theme": "flesch" -} + "copyright": "Alexandr Krykovliuk", + "url": "http://k33nice.com", + "email": "k33nice@gmail.com", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/ka2n.json b/users/ka2n.json index 9bb5e386..7ada274d 100644 --- a/users/ka2n.json +++ b/users/ka2n.json @@ -1,3 +1,3 @@ { - "copyright": "Katsuma Ito" -} + "copyright": "Katsuma Ito" +} \ No newline at end of file diff --git a/users/kabuku-inc.json b/users/kabuku-inc.json index 5afd2ad0..b46db36a 100644 --- a/users/kabuku-inc.json +++ b/users/kabuku-inc.json @@ -1,5 +1,5 @@ { - "copyright": "kabuku Inc.", - "url": "http://www.kabuku.co.jp", - "email": "contact@kabuku.co.jp" -} + "copyright": "kabuku Inc.", + "url": "http://www.kabuku.co.jp", + "email": "contact@kabuku.co.jp" +} \ No newline at end of file diff --git a/users/kabuku.json b/users/kabuku.json index 0aa52583..a042b0ec 100644 --- a/users/kabuku.json +++ b/users/kabuku.json @@ -1,5 +1,5 @@ { - "copyright": "kabuku Inc.", - "url": "http://www.kabuku.com/en", - "email": "contact@kabuku.com" -} + "copyright": "kabuku Inc.", + "url": "http://www.kabuku.com/en", + "email": "contact@kabuku.com" +} \ No newline at end of file diff --git a/users/kafene.json b/users/kafene.json index 5222143f..6aaaec19 100644 --- a/users/kafene.json +++ b/users/kafene.json @@ -1,3 +1,3 @@ { - "copyright": "Kafene Software" -} + "copyright": "Kafene Software" +} \ No newline at end of file diff --git a/users/kagee.json b/users/kagee.json index 297a0b9d..9eff19cd 100644 --- a/users/kagee.json +++ b/users/kagee.json @@ -1,4 +1,4 @@ { - "copyright": "Anders Einar Hilden", - "email": "hildenae@gmail.com" -} + "copyright": "Anders Einar Hilden", + "email": "hildenae@gmail.com" +} \ No newline at end of file diff --git a/users/kai.json b/users/kai.json index c07d08f2..a73a84ae 100644 --- a/users/kai.json +++ b/users/kai.json @@ -1,6 +1,6 @@ { - "copyright": "Kai Wang", - "url": "http://openbioinformatics.org", - "email": "kai@openbioinformatics.org", - "format": "txt" -} + "copyright": "Kai Wang", + "url": "http://openbioinformatics.org", + "email": "kai@openbioinformatics.org", + "format": "txt" +} \ No newline at end of file diff --git a/users/kaichop.json b/users/kaichop.json index 935fb4f9..bb0ef9a2 100644 --- a/users/kaichop.json +++ b/users/kaichop.json @@ -1,3 +1,3 @@ { - "copyright": "Kai Wang" -} + "copyright": "Kai Wang" +} \ No newline at end of file diff --git a/users/kakehashi.json b/users/kakehashi.json index ea73408d..243ab77e 100644 --- a/users/kakehashi.json +++ b/users/kakehashi.json @@ -1,4 +1,4 @@ { - "copyright": "KAKEHASHI, Inc.", - "url": "http://kakehashi.life" -} + "copyright": "KAKEHASHI, Inc.", + "url": "http://kakehashi.life" +} \ No newline at end of file diff --git a/users/kale.json b/users/kale.json index 23230679..9e911037 100644 --- a/users/kale.json +++ b/users/kale.json @@ -1,4 +1,4 @@ { - "copyright": "Kale Davis", - "url": "http://kaledavis.com" -} + "copyright": "Kale Davis", + "url": "http://kaledavis.com" +} \ No newline at end of file diff --git a/users/kanade.json b/users/kanade.json index 7e3e9ab3..a08cfd20 100644 --- a/users/kanade.json +++ b/users/kanade.json @@ -1,3 +1,3 @@ { - "copyright": "Kanade" -} + "copyright": "Kanade" +} \ No newline at end of file diff --git a/users/kandoi.json b/users/kandoi.json index 946acb03..2c674055 100644 --- a/users/kandoi.json +++ b/users/kandoi.json @@ -1,6 +1,6 @@ { - "copyright": "Abhishek Kandoi", - "url": "http://abhikandoi.in", - "email": "abhikandoi2000@gmail.com", - "format": "txt" -} + "copyright": "Abhishek Kandoi", + "url": "http://abhikandoi.in", + "email": "abhikandoi2000@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/kaneel.json b/users/kaneel.json index f8226e3f..bb426f5b 100644 --- a/users/kaneel.json +++ b/users/kaneel.json @@ -1,5 +1,5 @@ { - "copyright": "Guillaume kaneel Richard, http://mynameiskaneel.com", - "url": "http://mynameiskaneel.com", - "email": "mynameiskaneel@gmail.com" -} + "copyright": "Guillaume kaneel Richard, http://mynameiskaneel.com", + "url": "http://mynameiskaneel.com", + "email": "mynameiskaneel@gmail.com" +} \ No newline at end of file diff --git a/users/kaneshin.json b/users/kaneshin.json index 7c6eb4c6..0f1a4da2 100644 --- a/users/kaneshin.json +++ b/users/kaneshin.json @@ -1,7 +1,7 @@ { - "copyright": "Shintaro Kaneko", - "url": "http://www.kaneshinth.com", - "email": "kaneshin0120@gmail.com", - "gravatar": true, - "theme": "flesch" -} + "copyright": "Shintaro Kaneko", + "url": "http://www.kaneshinth.com", + "email": "kaneshin0120@gmail.com", + "gravatar": true, + "theme": "flesch" +} \ No newline at end of file diff --git a/users/kaos.json b/users/kaos.json index 1902c9b2..be20e84d 100644 --- a/users/kaos.json +++ b/users/kaos.json @@ -1,5 +1,5 @@ { - "copyright": "Andreas Stenius", - "url": "http://blog.astekk.se", - "email": "git@astekk.se" -} + "copyright": "Andreas Stenius", + "url": "http://blog.astekk.se", + "email": "git@astekk.se" +} \ No newline at end of file diff --git a/users/karami.json b/users/karami.json index b1ce8774..a2352ce9 100644 --- a/users/karami.json +++ b/users/karami.json @@ -1,8 +1,8 @@ { - "copyright": "Hossein Karami", - "url": "http://hosseinkarami.com", - "email": "hi@hosseinkarami.com", - "format": "html", - "gravatar": true, - "theme": "material-indigo" -} + "copyright": "Hossein Karami", + "url": "http://hosseinkarami.com", + "email": "hi@hosseinkarami.com", + "format": "html", + "gravatar": true, + "theme": "material-indigo" +} \ No newline at end of file diff --git a/users/karbassi.json b/users/karbassi.json index 9b2d387c..0c90bf79 100644 --- a/users/karbassi.json +++ b/users/karbassi.json @@ -1,5 +1,5 @@ { - "copyright": "Ali Karbassi, http://karbassi.com", - "url": "http://karbassi.com", - "theme": "flesch" -} + "copyright": "Ali Karbassi, http://karbassi.com", + "url": "http://karbassi.com", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/karimsa.json b/users/karimsa.json index 62b72b15..8496d5f6 100644 --- a/users/karimsa.json +++ b/users/karimsa.json @@ -1,8 +1,8 @@ { - "copyright": "KarimSa Networks", - "url": "http://karimsa.net", - "email": "me@karimsa.net", - "format": "html", - "gravatar": true, - "theme": "eula-modern" -} + "copyright": "KarimSa Networks", + "url": "http://karimsa.net", + "email": "me@karimsa.net", + "format": "html", + "gravatar": true, + "theme": "eula-modern" +} \ No newline at end of file diff --git a/users/karl-sjogren.json b/users/karl-sjogren.json index 610edcc0..bd1322f1 100644 --- a/users/karl-sjogren.json +++ b/users/karl-sjogren.json @@ -1,6 +1,6 @@ { - "copyright": "Karl-Johan Sjogren", - "url": "http://github.com/karl-sjogren", - "email": "karl.sjogren@gmail.com", - "format": "html" -} + "copyright": "Karl-Johan Sjogren", + "url": "http://github.com/karl-sjogren", + "email": "karl.sjogren@gmail.com", + "format": "html" +} \ No newline at end of file diff --git a/users/karl.json b/users/karl.json index 8beda787..9b72b161 100644 --- a/users/karl.json +++ b/users/karl.json @@ -1,6 +1,6 @@ { - "copyright": "Karl-Johan Sj\u00f6gren", - "url": "http://www.shorthand.se/", - "email": "karl.sjogren@gmail.com", - "format": "txt" -} + "copyright": "Karl-Johan Sjögren", + "url": "http://www.shorthand.se/", + "email": "karl.sjogren@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/karlc.json b/users/karlc.json index 364c7e5d..83c49a02 100644 --- a/users/karlc.json +++ b/users/karlc.json @@ -1,5 +1,5 @@ { - "copyright": "Karl Coelho", - "url": "http://karlcoelho.com", - "format": "html" -} + "copyright": "Karl Coelho", + "url": "http://karlcoelho.com", + "format": "html" +} \ No newline at end of file diff --git a/users/karlcoelho.json b/users/karlcoelho.json index bc8e2a6c..4ce2c1e6 100644 --- a/users/karlcoelho.json +++ b/users/karlcoelho.json @@ -1,6 +1,6 @@ { - "copyright": "Karl Coelho", - "url": "http://karlcoelho.com", - "email": "karl.coelho@icloud.com", - "format": "txt" -} + "copyright": "Karl Coelho", + "url": "http://karlcoelho.com", + "email": "karl.coelho@icloud.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/karteek.json b/users/karteek.json index 061a3053..9fdf6fc4 100644 --- a/users/karteek.json +++ b/users/karteek.json @@ -1,6 +1,6 @@ { - "copyright": "Karteek Edamadaka", - "url": "http://karteek.net", - "email": "me@karteek.net", - "format": "txt" -} + "copyright": "Karteek Edamadaka", + "url": "http://karteek.net", + "email": "me@karteek.net", + "format": "txt" +} \ No newline at end of file diff --git a/users/karupanerura.json b/users/karupanerura.json index 1ec260a1..03d322fd 100644 --- a/users/karupanerura.json +++ b/users/karupanerura.json @@ -1,6 +1,6 @@ { - "copyright": "karupanerura", - "url": "http://karupas.org", - "email": "karupa@cpan.org", - "gravatar": true -} + "copyright": "karupanerura", + "url": "http://karupas.org", + "email": "karupa@cpan.org", + "gravatar": true +} \ No newline at end of file diff --git a/users/kataring.json b/users/kataring.json index c47b0938..96ced14e 100644 --- a/users/kataring.json +++ b/users/kataring.json @@ -1,3 +1,3 @@ { - "copyright": "Noriaki Katayama" -} + "copyright": "Noriaki Katayama" +} \ No newline at end of file diff --git a/users/katsuma.json b/users/katsuma.json index 095aa412..3f1b5851 100644 --- a/users/katsuma.json +++ b/users/katsuma.json @@ -1,3 +1,3 @@ { - "copyright": "Ryo Katsuma" -} + "copyright": "Ryo Katsuma" +} \ No newline at end of file diff --git a/users/katsyoshi.json b/users/katsyoshi.json index a918c103..28073039 100644 --- a/users/katsyoshi.json +++ b/users/katsyoshi.json @@ -1,3 +1,3 @@ { - "copyright": "MATSUMOTO, Katsuyoshi" -} + "copyright": "MATSUMOTO, Katsuyoshi" +} \ No newline at end of file diff --git a/users/kaukeb.json b/users/kaukeb.json index b3659f85..20f35f3a 100644 --- a/users/kaukeb.json +++ b/users/kaukeb.json @@ -1,4 +1,4 @@ { - "copyright": "Brian L Kauke", - "format": "txt" -} + "copyright": "Brian L Kauke", + "format": "txt" +} \ No newline at end of file diff --git a/users/kawakawaritsuki.json b/users/kawakawaritsuki.json index b11480f7..f49eeb42 100644 --- a/users/kawakawaritsuki.json +++ b/users/kawakawaritsuki.json @@ -1,7 +1,7 @@ { - "copyright": "Ritsuki Goto, http://www.mizucoffee.net/", - "url": "http://www.mizucoffee.net/", - "email": "develop@mizucoffee.net", - "theme": "material-indigo", - "gravatar": true -} + "copyright": "Ritsuki Goto, http://www.mizucoffee.net/", + "url": "http://www.mizucoffee.net/", + "email": "develop@mizucoffee.net", + "theme": "material-indigo", + "gravatar": true +} \ No newline at end of file diff --git a/users/kawanet.json b/users/kawanet.json index b50453b7..caf591c7 100644 --- a/users/kawanet.json +++ b/users/kawanet.json @@ -1,4 +1,4 @@ { - "copyright": "Yusuke Kawasaki", - "url": "https://github.com/kawanet" -} + "copyright": "Yusuke Kawasaki", + "url": "https://github.com/kawanet" +} \ No newline at end of file diff --git a/users/kawaz.json b/users/kawaz.json index b6147f24..98385110 100644 --- a/users/kawaz.json +++ b/users/kawaz.json @@ -1,6 +1,6 @@ { - "copyright": "Yoshiaki Kawazu, https://twitter.com/kawaz", - "url": "https://twitter.com/kawaz", - "email": "kawazzz@gmail.com", - "gravatar": true -} + "copyright": "Yoshiaki Kawazu, https://twitter.com/kawaz", + "url": "https://twitter.com/kawaz", + "email": "kawazzz@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/kaxla.json b/users/kaxla.json index daf35448..fb85b8ef 100644 --- a/users/kaxla.json +++ b/users/kaxla.json @@ -1,3 +1,3 @@ { - "copyright": "Kayla Morrison" -} + "copyright": "Kayla Morrison" +} \ No newline at end of file diff --git a/users/kayframework.json b/users/kayframework.json index 3fa31335..d5e7b200 100644 --- a/users/kayframework.json +++ b/users/kayframework.json @@ -1,6 +1,6 @@ { - "copyright": "Kay Framework", - "url": "http://kayframework.org/", - "email": "hello@kayframework.org", - "theme": "opensans" -} + "copyright": "Kay Framework", + "url": "http://kayframework.org/", + "email": "hello@kayframework.org", + "theme": "opensans" +} \ No newline at end of file diff --git a/users/kb.json b/users/kb.json index 7b212d3b..5d281152 100644 --- a/users/kb.json +++ b/users/kb.json @@ -1,7 +1,7 @@ { - "copyright": "Kjell Bublitz", - "url": "http://m3nt0r.github.io/", - "email": "m3nt0r.de@gmail.com", - "format": "html", - "theme": "double-windsor" -} + "copyright": "Kjell Bublitz", + "url": "http://m3nt0r.github.io/", + "email": "m3nt0r.de@gmail.com", + "format": "html", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/kbond.json b/users/kbond.json index fa22f7b6..dfb7f271 100644 --- a/users/kbond.json +++ b/users/kbond.json @@ -1,5 +1,5 @@ { - "copyright": "Kevin Bond", - "url": "http://zenstruck.com", - "format": "txt" -} + "copyright": "Kevin Bond", + "url": "http://zenstruck.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/kcak11.json b/users/kcak11.json index 32af3d93..f27f0f3d 100644 --- a/users/kcak11.json +++ b/users/kcak11.json @@ -1,7 +1,7 @@ { - "copyright": "K.C.Ashish Kumar, https://kcak11.com", - "url": "https://kcak11.com", - "email": "kcak11@gmail.com", - "theme": "material-blue", - "gravatar": true -} + "copyright": "K.C.Ashish Kumar, https://kcak11.com", + "url": "https://kcak11.com", + "email": "kcak11@gmail.com", + "theme": "material-blue", + "gravatar": true +} \ No newline at end of file diff --git a/users/kcj.json b/users/kcj.json index 5360fd26..d4df8d33 100644 --- a/users/kcj.json +++ b/users/kcj.json @@ -1,5 +1,5 @@ { - "copyright": "Kurt Jacobson", - "email": "kurtcjacobson@gmail.com", - "theme": "default" -} + "copyright": "Kurt Jacobson", + "email": "kurtcjacobson@gmail.com", + "theme": "default" +} \ No newline at end of file diff --git a/users/kclarke.json b/users/kclarke.json index e13b60a1..dd403ebb 100644 --- a/users/kclarke.json +++ b/users/kclarke.json @@ -1,5 +1,5 @@ { - "copyright": "Kenzie Clarke", - "email": "kenzie.clarke@tcu.edu", - "theme": "double-windsor" -} + "copyright": "Kenzie Clarke", + "email": "kenzie.clarke@tcu.edu", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/kdy.json b/users/kdy.json index 17ea6765..32766ae9 100644 --- a/users/kdy.json +++ b/users/kdy.json @@ -1,7 +1,7 @@ { - "copyright": "Andr\u00e9 Kody Fernandes", - "url": "https://kdy.ch", - "email": "im@kdy.ch", - "gravatar": true, - "theme": "black-beauty" -} + "copyright": "André Kody Fernandes", + "url": "https://kdy.ch", + "email": "im@kdy.ch", + "gravatar": true, + "theme": "black-beauty" +} \ No newline at end of file diff --git a/users/ke.json b/users/ke.json index b3b596b3..027b4074 100644 --- a/users/ke.json +++ b/users/ke.json @@ -1,7 +1,7 @@ { - "copyright": "Koch Essen Kommunikation + Design GmbH, http://koch-essen.de/", - "url": "http://koch-essen.de/", - "email": "online@koch-essen.de", - "format": "html", - "theme": "xtansia" -} + "copyright": "Koch Essen Kommunikation + Design GmbH, http://koch-essen.de/", + "url": "http://koch-essen.de/", + "email": "online@koch-essen.de", + "format": "html", + "theme": "xtansia" +} \ No newline at end of file diff --git a/users/keegoid.json b/users/keegoid.json index fac95ec4..25049044 100644 --- a/users/keegoid.json +++ b/users/keegoid.json @@ -1,7 +1,7 @@ { - "copyright": "Keegan Mullaney, http://keegoid.com", - "url": "http://keegoid.com", - "email": "keeganmullaney@gmail.com", - "gravatar": true, - "theme": "material-teal" -} + "copyright": "Keegan Mullaney, http://keegoid.com", + "url": "http://keegoid.com", + "email": "keeganmullaney@gmail.com", + "gravatar": true, + "theme": "material-teal" +} \ No newline at end of file diff --git a/users/keifukuda.json b/users/keifukuda.json index 70ec39cd..854cac67 100644 --- a/users/keifukuda.json +++ b/users/keifukuda.json @@ -1,4 +1,4 @@ { - "copyright": "Kei Fukuda", - "url": "https://github.com/keifukuda" -} + "copyright": "Kei Fukuda", + "url": "https://github.com/keifukuda" +} \ No newline at end of file diff --git a/users/keita.json b/users/keita.json index 3fab1f3d..01aa58aa 100644 --- a/users/keita.json +++ b/users/keita.json @@ -1,3 +1,3 @@ { - "copyright": "Keita Yamaguchi" -} + "copyright": "Keita Yamaguchi" +} \ No newline at end of file diff --git a/users/keithamus.json b/users/keithamus.json index 16039643..4fb07c4c 100644 --- a/users/keithamus.json +++ b/users/keithamus.json @@ -1,4 +1,4 @@ { - "copyright": "Keith Cirkel, http://keithcirkel.co.uk", - "url": "http://keithcirkel.co.uk" -} + "copyright": "Keith Cirkel, http://keithcirkel.co.uk", + "url": "http://keithcirkel.co.uk" +} \ No newline at end of file diff --git a/users/keithcirkel.json b/users/keithcirkel.json index 16039643..4fb07c4c 100644 --- a/users/keithcirkel.json +++ b/users/keithcirkel.json @@ -1,4 +1,4 @@ { - "copyright": "Keith Cirkel, http://keithcirkel.co.uk", - "url": "http://keithcirkel.co.uk" -} + "copyright": "Keith Cirkel, http://keithcirkel.co.uk", + "url": "http://keithcirkel.co.uk" +} \ No newline at end of file diff --git a/users/kenjiyamamoto.json b/users/kenjiyamamoto.json index 97b25ad0..fc563acb 100644 --- a/users/kenjiyamamoto.json +++ b/users/kenjiyamamoto.json @@ -1,6 +1,6 @@ { - "copyright": "Kenji Yamamoto", - "url": "http://kenjiyamamoto.com", - "email": "mail@kenjiyamamoto.com", - "format": "txt" -} + "copyright": "Kenji Yamamoto", + "url": "http://kenjiyamamoto.com", + "email": "mail@kenjiyamamoto.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/kenta.json b/users/kenta.json index 072edfd1..1d805e2f 100644 --- a/users/kenta.json +++ b/users/kenta.json @@ -1,6 +1,6 @@ { - "copyright": "Kenta Yoshikawa", - "url": "http://kenta.cc", - "format": "txt", - "gravatar": true -} + "copyright": "Kenta Yoshikawa", + "url": "http://kenta.cc", + "format": "txt", + "gravatar": true +} \ No newline at end of file diff --git a/users/kentaro.json b/users/kentaro.json index 88bc96b8..921bf318 100644 --- a/users/kentaro.json +++ b/users/kentaro.json @@ -1,5 +1,5 @@ { - "copyright": "Kentaro Kuribayashi", - "url": "http://kentarok.org/", - "email": "kentarok@gmail.com" -} + "copyright": "Kentaro Kuribayashi", + "url": "http://kentarok.org/", + "email": "kentarok@gmail.com" +} \ No newline at end of file diff --git a/users/kerem.json b/users/kerem.json index b8ecd048..e2c213c2 100644 --- a/users/kerem.json +++ b/users/kerem.json @@ -1,5 +1,5 @@ { - "copyright": "Kerem Bozdas, kerembozdas.com", - "url": "http://kerembozdas.com", - "theme": "double-windsor" -} + "copyright": "Kerem Bozdas, kerembozdas.com", + "url": "http://kerembozdas.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/ketchum.json b/users/ketchum.json index 0abcb305..563ab51f 100644 --- a/users/ketchum.json +++ b/users/ketchum.json @@ -1,3 +1,3 @@ { - "copyright": "Ash Ketchum" -} + "copyright": "Ash Ketchum" +} \ No newline at end of file diff --git a/users/kevin.json b/users/kevin.json index ca71072a..3d88129c 100644 --- a/users/kevin.json +++ b/users/kevin.json @@ -1,6 +1,6 @@ { - "copyright": "Kevin Richardson", - "url": "http://magically.us", - "email": "kevin@magically.us", - "format": "txt" -} + "copyright": "Kevin Richardson", + "url": "http://magically.us", + "email": "kevin@magically.us", + "format": "txt" +} \ No newline at end of file diff --git a/users/kevinaloys.json b/users/kevinaloys.json index 13b604ff..346b2395 100644 --- a/users/kevinaloys.json +++ b/users/kevinaloys.json @@ -1,7 +1,7 @@ { - "copyright": "Kevin Aloysius", - "url": "http://kevinaloysius.org", - "email": "kevinaloysius25@gmail.com", - "format": "txt", - "theme": "default" -} + "copyright": "Kevin Aloysius", + "url": "http://kevinaloysius.org", + "email": "kevinaloysius25@gmail.com", + "format": "txt", + "theme": "default" +} \ No newline at end of file diff --git a/users/kevinfling.json b/users/kevinfling.json index e57be1b6..a5ae66ee 100644 --- a/users/kevinfling.json +++ b/users/kevinfling.json @@ -1,3 +1,3 @@ { - "copyright": "Kevin Fling" -} + "copyright": "Kevin Fling" +} \ No newline at end of file diff --git a/users/kevinmmarlow.json b/users/kevinmmarlow.json index 29730ada..34e972df 100644 --- a/users/kevinmmarlow.json +++ b/users/kevinmmarlow.json @@ -1,3 +1,3 @@ { - "copyright": "Kevin Marlow" -} + "copyright": "Kevin Marlow" +} \ No newline at end of file diff --git a/users/key.json b/users/key.json index 535001f4..39f208c5 100644 --- a/users/key.json +++ b/users/key.json @@ -1,8 +1,8 @@ { - "copyright": "Mitsukuni Sato", - "url": "http://mitsukuni.org", - "email": "mitsukuni.sato@gmail.com", - "format": "html", - "gravatar": true, - "theme": "preview" -} + "copyright": "Mitsukuni Sato", + "url": "http://mitsukuni.org", + "email": "mitsukuni.sato@gmail.com", + "format": "html", + "gravatar": true, + "theme": "preview" +} \ No newline at end of file diff --git a/users/keyup.json b/users/keyup.json index 8cc9416c..fbd61f62 100644 --- a/users/keyup.json +++ b/users/keyup.json @@ -1,5 +1,5 @@ { - "copyright": "Keyup IT Services", - "url": "http://www.keyup.eu", - "theme": "default" -} + "copyright": "Keyup IT Services", + "url": "http://www.keyup.eu", + "theme": "default" +} \ No newline at end of file diff --git a/users/kezho.json b/users/kezho.json index 1c38974d..d8e18adc 100644 --- a/users/kezho.json +++ b/users/kezho.json @@ -1,4 +1,4 @@ { - "copyright": "Maxime Fran\u00e7ois", - "url": "http://www.kezho.com" -} + "copyright": "Maxime François", + "url": "http://www.kezho.com" +} \ No newline at end of file diff --git a/users/kgarg.json b/users/kgarg.json index d2e815bd..4ffd418a 100644 --- a/users/kgarg.json +++ b/users/kgarg.json @@ -1,6 +1,6 @@ { - "copyright": "Kunal Garg", - "url": "http://kunalgarg2100.github.io", - "email": "kunalgarg2100@gmail.com", - "gravatar": true -} + "copyright": "Kunal Garg", + "url": "http://kunalgarg2100.github.io", + "email": "kunalgarg2100@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/kgisl.json b/users/kgisl.json index 462465a5..e53daaec 100644 --- a/users/kgisl.json +++ b/users/kgisl.json @@ -1,5 +1,5 @@ { - "copyright": "Ashok Bakthavathsalam, http://kgisl.com", - "url": "http://kgisl.com", - "theme": "flesch" -} + "copyright": "Ashok Bakthavathsalam, http://kgisl.com", + "url": "http://kgisl.com", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/khanio.json b/users/khanio.json index 0cefbb6e..624f91b8 100644 --- a/users/khanio.json +++ b/users/khanio.json @@ -1,6 +1,6 @@ { - "copyright": "Zakiullah Khan Mohammed", - "url": "http://khanio.com", - "email": "mail@khanio.com", - "format": "txt" -} + "copyright": "Zakiullah Khan Mohammed", + "url": "http://khanio.com", + "email": "mail@khanio.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/khushraj.json b/users/khushraj.json index 3b5b81d2..eb10e7cb 100644 --- a/users/khushraj.json +++ b/users/khushraj.json @@ -1,5 +1,5 @@ { - "copyright": "Khushraj Rathod", - "email": "khushraj2005@gmail.com", - "theme": "material-pink" -} + "copyright": "Khushraj Rathod", + "email": "khushraj2005@gmail.com", + "theme": "material-pink" +} \ No newline at end of file diff --git a/users/khuxkm.json b/users/khuxkm.json index ed8bcfd4..b4425233 100644 --- a/users/khuxkm.json +++ b/users/khuxkm.json @@ -1,7 +1,7 @@ { - "copyright": "Robert 'khuxkm' Miles, https://khuxkm.tilde.team", - "url": "http://khuxkm.tilde.team", - "email": "khuxkm@tilde.team", - "theme": "8bits-monochrome", - "gravatar": true -} + "copyright": "Robert 'khuxkm' Miles, https://khuxkm.tilde.team", + "url": "http://khuxkm.tilde.team", + "email": "khuxkm@tilde.team", + "theme": "8bits-monochrome", + "gravatar": true +} \ No newline at end of file diff --git a/users/kieranties.json b/users/kieranties.json index a6e58bf8..1caaca99 100644 --- a/users/kieranties.json +++ b/users/kieranties.json @@ -1,7 +1,7 @@ { - "copyright": "Kieran Marron, http://Kieranties.com", - "url": "http://Kieranties.com", - "email": "Kieran@Kieranties.com", - "gravatar": true, - "theme": "black-beauty" -} + "copyright": "Kieran Marron, http://Kieranties.com", + "url": "http://Kieranties.com", + "email": "Kieran@Kieranties.com", + "gravatar": true, + "theme": "black-beauty" +} \ No newline at end of file diff --git a/users/kilian.json b/users/kilian.json index 423595d8..945fa3e7 100644 --- a/users/kilian.json +++ b/users/kilian.json @@ -1,6 +1,6 @@ { - "copyright": "Kilian Ciuffolo", - "url": "http://nailik.org", - "email": "me@nailik.org", - "format": "txt" -} + "copyright": "Kilian Ciuffolo", + "url": "http://nailik.org", + "email": "me@nailik.org", + "format": "txt" +} \ No newline at end of file diff --git a/users/kilokahn.json b/users/kilokahn.json index a8dc520e..e6724fc6 100644 --- a/users/kilokahn.json +++ b/users/kilokahn.json @@ -1,6 +1,6 @@ { - "copyright": "Mukarram Baig", - "url": "http://thekilokahn.blogspot.com", - "email": "mukarram[dot]baig[at]gmail.com", - "format": "txt" -} + "copyright": "Mukarram Baig", + "url": "http://thekilokahn.blogspot.com", + "email": "mukarram[dot]baig[at]gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/kimiamania.json b/users/kimiamania.json index 5d9d7100..cfae365c 100644 --- a/users/kimiamania.json +++ b/users/kimiamania.json @@ -1,7 +1,7 @@ { - "copyright": "Rezha Julio", - "url": "http://rezhajulio.web.id", - "email": "contact@rezhajulio.web.id", - "format": "html", - "theme": "afterdark" -} + "copyright": "Rezha Julio", + "url": "http://rezhajulio.web.id", + "email": "contact@rezhajulio.web.id", + "format": "html", + "theme": "afterdark" +} \ No newline at end of file diff --git a/users/kindy.json b/users/kindy.json index fabd5fc8..eec531e0 100644 --- a/users/kindy.json +++ b/users/kindy.json @@ -1,5 +1,5 @@ { - "copyright": "Kindy Lin", - "email": "kindy61@gmail.com", - "format": "txt" -} + "copyright": "Kindy Lin", + "email": "kindy61@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/kinetik.json b/users/kinetik.json index 5b3e9054..131c69b6 100644 --- a/users/kinetik.json +++ b/users/kinetik.json @@ -1,8 +1,8 @@ { - "copyright": "Kinetik, http://kinetik.la", - "url": "http://kinetik.la", - "theme": "8bits-monochrome", - "email": "dev@kinetik.la", - "gravatar": false, - "format": "html" -} + "copyright": "Kinetik, http://kinetik.la", + "url": "http://kinetik.la", + "theme": "8bits-monochrome", + "email": "dev@kinetik.la", + "gravatar": false, + "format": "html" +} \ No newline at end of file diff --git a/users/kishorm23.json b/users/kishorm23.json index 6640556b..bbee92dc 100644 --- a/users/kishorm23.json +++ b/users/kishorm23.json @@ -1,3 +1,3 @@ { - "copyright": "Kishor Mohite" -} + "copyright": "Kishor Mohite" +} \ No newline at end of file diff --git a/users/kit.json b/users/kit.json index 1090e593..aaba5917 100644 --- a/users/kit.json +++ b/users/kit.json @@ -1,5 +1,5 @@ { - "copyright": "Kit Cambridge", - "url": "http://kitcambridge.github.com", - "theme": "double-windsor" -} + "copyright": "Kit Cambridge", + "url": "http://kitcambridge.github.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/kitak.json b/users/kitak.json index 78330fa1..1ec44559 100644 --- a/users/kitak.json +++ b/users/kitak.json @@ -1,4 +1,4 @@ { - "copyright": "Keisuke KITA", - "url": "https://github.com/kitak" -} + "copyright": "Keisuke KITA", + "url": "https://github.com/kitak" +} \ No newline at end of file diff --git a/users/kiwigrid.json b/users/kiwigrid.json index 18c60541..426bf263 100644 --- a/users/kiwigrid.json +++ b/users/kiwigrid.json @@ -1,3 +1,3 @@ { - "copyright": "Kiwigrid GmbH" -} + "copyright": "Kiwigrid GmbH" +} \ No newline at end of file diff --git a/users/kjirou.json b/users/kjirou.json index d339f2d4..7d7f891e 100644 --- a/users/kjirou.json +++ b/users/kjirou.json @@ -1,4 +1,4 @@ { - "copyright": "Koujirou Ishii", - "url": "https://github.com/kjirou" -} + "copyright": "Koujirou Ishii", + "url": "https://github.com/kjirou" +} \ No newline at end of file diff --git a/users/kjohnston.json b/users/kjohnston.json index 14f6b4c1..4bf9d170 100644 --- a/users/kjohnston.json +++ b/users/kjohnston.json @@ -1,3 +1,3 @@ { - "copyright": "Kenny Johnston" -} + "copyright": "Kenny Johnston" +} \ No newline at end of file diff --git a/users/kkung.json b/users/kkung.json index 7fb1aec5..b53bdeba 100644 --- a/users/kkung.json +++ b/users/kkung.json @@ -1,6 +1,6 @@ { - "copyright": "Minyoung Jeong", - "url": "http://kkung.net", - "email": "kkungkkung@gmail.com", - "theme": "afterdark" -} + "copyright": "Minyoung Jeong", + "url": "http://kkung.net", + "email": "kkungkkung@gmail.com", + "theme": "afterdark" +} \ No newline at end of file diff --git a/users/kloptops.json b/users/kloptops.json index 291bb6b1..db2aba33 100644 --- a/users/kloptops.json +++ b/users/kloptops.json @@ -1,5 +1,5 @@ { - "copyright": "Jacob Smith", - "email": "kloptops@gmail.com", - "format": "txt" -} + "copyright": "Jacob Smith", + "email": "kloptops@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/kma.json b/users/kma.json index c9a5a0a5..7fef5085 100644 --- a/users/kma.json +++ b/users/kma.json @@ -1,5 +1,5 @@ { - "copyright": "KM Authorized LLC", - "url": "http://kmauthorized.com", - "email": "license@kmauthorized.com" -} + "copyright": "KM Authorized LLC", + "url": "http://kmauthorized.com", + "email": "license@kmauthorized.com" +} \ No newline at end of file diff --git a/users/kmix.json b/users/kmix.json index 26cf90f0..5e931408 100644 --- a/users/kmix.json +++ b/users/kmix.json @@ -1,4 +1,4 @@ { - "copyright": "Ken Mix", - "email": "ken@mix.co" -} + "copyright": "Ken Mix", + "email": "ken@mix.co" +} \ No newline at end of file diff --git a/users/kmonsoor.json b/users/kmonsoor.json index 84f152f4..165f94d0 100644 --- a/users/kmonsoor.json +++ b/users/kmonsoor.json @@ -1,7 +1,7 @@ { - "copyright": "Khaled Monsoor", - "url": "http://kmonsoor.com", - "email": "k@kmonsoor.com", - "format": "html", - "gravatar": true -} + "copyright": "Khaled Monsoor", + "url": "http://kmonsoor.com", + "email": "k@kmonsoor.com", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/knagano.json b/users/knagano.json index d7cd337c..6f357920 100644 --- a/users/knagano.json +++ b/users/knagano.json @@ -1,3 +1,3 @@ { - "copyright": "Keiichiro Nagano" -} + "copyright": "Keiichiro Nagano" +} \ No newline at end of file diff --git a/users/knakayama.json b/users/knakayama.json index 70ebf5ee..6d1b29c4 100644 --- a/users/knakayama.json +++ b/users/knakayama.json @@ -1,7 +1,7 @@ { - "copyright": "knakayama, https://github.com/knakayama", - "format": "txt", - "email": "knakayama@gmail.com", - "gravatar": true, - "theme": "default" -} + "copyright": "knakayama, https://github.com/knakayama", + "format": "txt", + "email": "knakayama@gmail.com", + "gravatar": true, + "theme": "default" +} \ No newline at end of file diff --git a/users/knimon-software.json b/users/knimon-software.json index 58ce6f7c..2e807f59 100644 --- a/users/knimon-software.json +++ b/users/knimon-software.json @@ -1,3 +1,3 @@ { - "copyright": "Knimon software" -} + "copyright": "Knimon software" +} \ No newline at end of file diff --git a/users/knockout-components.json b/users/knockout-components.json index 5b58982c..3b9690c8 100644 --- a/users/knockout-components.json +++ b/users/knockout-components.json @@ -1,5 +1,5 @@ { - "copyright": "Knockout Components, https://github.com/knockout-components", - "url": "https://github.com/knockout-components", - "theme": "double-windsor" -} + "copyright": "Knockout Components, https://github.com/knockout-components", + "url": "https://github.com/knockout-components", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/knutwalker.json b/users/knutwalker.json index 3f79111b..c95c23b6 100644 --- a/users/knutwalker.json +++ b/users/knutwalker.json @@ -1,6 +1,6 @@ { - "url": "http://knutwalker.de/", - "format": "text", - "copyright": "Paul Horn, http://knutwalker.de/", - "email": "knutwalker+mit@gmail.com" -} + "url": "http://knutwalker.de/", + "format": "text", + "copyright": "Paul Horn, http://knutwalker.de/", + "email": "knutwalker+mit@gmail.com" +} \ No newline at end of file diff --git a/users/koba789.json b/users/koba789.json index d4a81fc4..6304292d 100644 --- a/users/koba789.json +++ b/users/koba789.json @@ -1,4 +1,4 @@ { - "copyright": "Hidekazu Kobayashi", - "url": "http://koba789.com/" -} + "copyright": "Hidekazu Kobayashi", + "url": "http://koba789.com/" +} \ No newline at end of file diff --git a/users/koeberle.json b/users/koeberle.json index 8b26a067..0c31ee4d 100644 --- a/users/koeberle.json +++ b/users/koeberle.json @@ -1,3 +1,3 @@ { - "copyright": "Andreas K\u00f6berle" -} + "copyright": "Andreas Köberle" +} \ No newline at end of file diff --git a/users/kohenkatz.json b/users/kohenkatz.json index 47c8e7fe..87d7c6b3 100644 --- a/users/kohenkatz.json +++ b/users/kohenkatz.json @@ -1,7 +1,7 @@ { - "copyright": "Moshe M. Katz", - "url": "http://www.ymkatz.net", - "email": "moshe@ymkatz.net", - "gravatar": true, - "theme": "black-beauty" -} + "copyright": "Moshe M. Katz", + "url": "http://www.ymkatz.net", + "email": "moshe@ymkatz.net", + "gravatar": true, + "theme": "black-beauty" +} \ No newline at end of file diff --git a/users/kojiwakayama.json b/users/kojiwakayama.json index 451a3b03..8bd27957 100644 --- a/users/kojiwakayama.json +++ b/users/kojiwakayama.json @@ -1,6 +1,6 @@ { - "copyright": "Koji Wakayama", - "url": "http://kojiwakayama.com", - "email": "info@kojiwakayama.com", - "format": "txt" -} + "copyright": "Koji Wakayama", + "url": "http://kojiwakayama.com", + "email": "info@kojiwakayama.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/konsumer.json b/users/konsumer.json index 8fb25390..07b38116 100644 --- a/users/konsumer.json +++ b/users/konsumer.json @@ -1,6 +1,6 @@ { - "copyright": "David Konsumer, https://keybase.io/konsumer", - "url": "https://keybase.io/konsumer", - "gravatar": true, - "theme": "black-beauty" -} + "copyright": "David Konsumer, https://keybase.io/konsumer", + "url": "https://keybase.io/konsumer", + "gravatar": true, + "theme": "black-beauty" +} \ No newline at end of file diff --git a/users/kopplin.json b/users/kopplin.json index 8b9f2b81..2d232b7f 100644 --- a/users/kopplin.json +++ b/users/kopplin.json @@ -1,3 +1,3 @@ { - "copyright": "Sergio Kopplin" -} + "copyright": "Sergio Kopplin" +} \ No newline at end of file diff --git a/users/koshigoe.json b/users/koshigoe.json index 45519aa7..10f8c30a 100644 --- a/users/koshigoe.json +++ b/users/koshigoe.json @@ -1,3 +1,3 @@ { - "copyright": "koshigoe, https://github.com/koshigoe" -} + "copyright": "koshigoe, https://github.com/koshigoe" +} \ No newline at end of file diff --git a/users/kossnocorp.json b/users/kossnocorp.json index 94c351d7..c6db2453 100644 --- a/users/kossnocorp.json +++ b/users/kossnocorp.json @@ -1,3 +1,3 @@ { - "copyright": "Sasha Koss" -} + "copyright": "Sasha Koss" +} \ No newline at end of file diff --git a/users/kothawale.json b/users/kothawale.json index d055215c..5dea6c78 100644 --- a/users/kothawale.json +++ b/users/kothawale.json @@ -1,5 +1,5 @@ { - "copyright": "Akash Kothawale", - "url": "https://decached.com", - "email": "akash@decached.com" -} + "copyright": "Akash Kothawale", + "url": "https://decached.com", + "email": "akash@decached.com" +} \ No newline at end of file diff --git a/users/koustuvs.json b/users/koustuvs.json index 241d9025..52a4d1e4 100644 --- a/users/koustuvs.json +++ b/users/koustuvs.json @@ -1,5 +1,5 @@ { - "copyright": "Koustuv Sinha", - "url": "http://koustuvsinha.github.io", - "format": "txt" -} + "copyright": "Koustuv Sinha", + "url": "http://koustuvsinha.github.io", + "format": "txt" +} \ No newline at end of file diff --git a/users/kozakky.json b/users/kozakky.json index 287c1496..18858274 100644 --- a/users/kozakky.json +++ b/users/kozakky.json @@ -1,3 +1,3 @@ { - "copyright": "Sotaro Kozaki" -} + "copyright": "Sotaro Kozaki" +} \ No newline at end of file diff --git a/users/kpeatt.json b/users/kpeatt.json index 25108390..666511b5 100644 --- a/users/kpeatt.json +++ b/users/kpeatt.json @@ -1,7 +1,7 @@ { - "copyright": "Kyle Peatt", - "url": "http://kylepeatt.com", - "email": "kpeatt@gmail.com", - "format": "html", - "theme": "double-windsor" -} + "copyright": "Kyle Peatt", + "url": "http://kylepeatt.com", + "email": "kpeatt@gmail.com", + "format": "html", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/kraga.json b/users/kraga.json index 25425b60..3623c091 100644 --- a/users/kraga.json +++ b/users/kraga.json @@ -1,8 +1,8 @@ { - "copyright": "KRAGA spol. s r.o.", - "url": "https://kraga.sk", - "email": "software@kraga.sk", - "gravatar": false, - "theme": "hmt-blue", - "format": "html" -} + "copyright": "KRAGA spol. s r.o.", + "url": "https://kraga.sk", + "email": "software@kraga.sk", + "gravatar": false, + "theme": "hmt-blue", + "format": "html" +} \ No newline at end of file diff --git a/users/krinkle.json b/users/krinkle.json index 16939031..b858ef24 100644 --- a/users/krinkle.json +++ b/users/krinkle.json @@ -1,6 +1,6 @@ { - "copyright": "Timo Tijhof", - "url": "https://github.com/Krinkle", - "format": "html", - "theme": "material" -} + "copyright": "Timo Tijhof", + "url": "https://github.com/Krinkle", + "format": "html", + "theme": "material" +} \ No newline at end of file diff --git a/users/kris.json b/users/kris.json index c6f4dcf9..c57673ff 100644 --- a/users/kris.json +++ b/users/kris.json @@ -1,5 +1,5 @@ { - "copyright": "Kristopher Ives", - "url": "http://krisives.github.io/", - "email": "kristopher.ives@gmail.com" -} + "copyright": "Kristopher Ives", + "url": "http://krisives.github.io/", + "email": "kristopher.ives@gmail.com" +} \ No newline at end of file diff --git a/users/kristoffer.json b/users/kristoffer.json index 6a5a08c6..5ab7b668 100644 --- a/users/kristoffer.json +++ b/users/kristoffer.json @@ -1,3 +1,3 @@ { - "copyright": "Kristoffer Sachse" -} + "copyright": "Kristoffer Sachse" +} \ No newline at end of file diff --git a/users/kristopher.json b/users/kristopher.json index deae7bd5..216a7938 100644 --- a/users/kristopher.json +++ b/users/kristopher.json @@ -1,7 +1,7 @@ { - "copyright": "kristopher tate", - "location": "Kyoto, Japan", - "url": "http://kristopher.jp/", - "email": "kris.tate+licensing@gmail.com", - "format": "txt" -} + "copyright": "kristopher tate", + "location": "Kyoto, Japan", + "url": "http://kristopher.jp/", + "email": "kris.tate+licensing@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/kriwil.json b/users/kriwil.json index 80708d8e..9e6f16e9 100644 --- a/users/kriwil.json +++ b/users/kriwil.json @@ -1,3 +1,3 @@ { - "copyright": "Aldiantoro Nugroho" -} + "copyright": "Aldiantoro Nugroho" +} \ No newline at end of file diff --git a/users/kroisse.json b/users/kroisse.json index 8bd5dc9c..5e7535ef 100644 --- a/users/kroisse.json +++ b/users/kroisse.json @@ -1,5 +1,5 @@ { - "copyright": "Eunchong Yu", - "url": "http://krois.se/", - "email": "kroisse@gmail.com" -} + "copyright": "Eunchong Yu", + "url": "http://krois.se/", + "email": "kroisse@gmail.com" +} \ No newline at end of file diff --git a/users/krolow.json b/users/krolow.json index a645302a..d02fa138 100644 --- a/users/krolow.json +++ b/users/krolow.json @@ -1,6 +1,6 @@ { - "copyright": "Vin\u00edcius Krolow", - "url": "http://krolow.com.br", - "email": "krolow@gmail.com", - "gravatar": "true" -} + "copyright": "Vinícius Krolow", + "url": "http://krolow.com.br", + "email": "krolow@gmail.com", + "gravatar": "true" +} \ No newline at end of file diff --git a/users/krrrr38.json b/users/krrrr38.json index 934a8443..f4f55009 100644 --- a/users/krrrr38.json +++ b/users/krrrr38.json @@ -1,3 +1,3 @@ { - "copyright": "Ken KAIZU" -} + "copyright": "Ken KAIZU" +} \ No newline at end of file diff --git a/users/ksomemo.json b/users/ksomemo.json index c2f3cc9f..dd50d624 100644 --- a/users/ksomemo.json +++ b/users/ksomemo.json @@ -1,3 +1,3 @@ { - "copyright": "ksomemo" -} + "copyright": "ksomemo" +} \ No newline at end of file diff --git a/users/kswedberg.json b/users/kswedberg.json index c6ad4f79..3f6b6cce 100644 --- a/users/kswedberg.json +++ b/users/kswedberg.json @@ -1,5 +1,5 @@ { - "copyright": "Karl Swedberg", - "url": "http://karlswedberg.com", - "email": "kswedberg@gmail.com" -} + "copyright": "Karl Swedberg", + "url": "http://karlswedberg.com", + "email": "kswedberg@gmail.com" +} \ No newline at end of file diff --git a/users/kt3k.json b/users/kt3k.json index dd4802ae..14490b07 100644 --- a/users/kt3k.json +++ b/users/kt3k.json @@ -1,3 +1,3 @@ { - "copyright": "Yosiya Hinosawa ( @kt3k )" -} + "copyright": "Yosiya Hinosawa ( @kt3k )" +} \ No newline at end of file diff --git a/users/ktat.json b/users/ktat.json index 5bea929d..73c45928 100644 --- a/users/ktat.json +++ b/users/ktat.json @@ -1,6 +1,6 @@ { - "copyright": "Atsushi Kato, http://www.rwds.net/", - "url": "http://www.rwds.net/", - "email": "ktat.is@gmail.com", - "theme": "material-grey" -} + "copyright": "Atsushi Kato, http://www.rwds.net/", + "url": "http://www.rwds.net/", + "email": "ktat.is@gmail.com", + "theme": "material-grey" +} \ No newline at end of file diff --git a/users/ktravis.json b/users/ktravis.json index 60e5faff..c9480542 100644 --- a/users/ktravis.json +++ b/users/ktravis.json @@ -1,3 +1,3 @@ { - "copyright": "Kyle Travis" -} + "copyright": "Kyle Travis" +} \ No newline at end of file diff --git a/users/ktrysmt.json b/users/ktrysmt.json index b5e8a716..71fed268 100644 --- a/users/ktrysmt.json +++ b/users/ktrysmt.json @@ -1,7 +1,7 @@ { - "copyright": "Kotaro Yoshimatsu", - "url": "https://ktrysmt.github.io/", - "email": "kotaro.yoshimatsu@gmail.com", - "theme": "opensans", - "gravatar": true -} + "copyright": "Kotaro Yoshimatsu", + "url": "https://ktrysmt.github.io/", + "email": "kotaro.yoshimatsu@gmail.com", + "theme": "opensans", + "gravatar": true +} \ No newline at end of file diff --git a/users/kucoe.json b/users/kucoe.json index 3afe35bd..1652e030 100644 --- a/users/kucoe.json +++ b/users/kucoe.json @@ -1,5 +1,5 @@ { - "copyright": "Wolf Bas", - "url": "http://kucoe.net", - "email": "becevka@kucoe.net" -} + "copyright": "Wolf Bas", + "url": "http://kucoe.net", + "email": "becevka@kucoe.net" +} \ No newline at end of file diff --git a/users/kuenishi.json b/users/kuenishi.json index 4a8cfef4..e15d6f31 100644 --- a/users/kuenishi.json +++ b/users/kuenishi.json @@ -1,4 +1,4 @@ { - "copyright": "Kota UENISHI", - "url": "http://kuenishi.github.com" -} + "copyright": "Kota UENISHI", + "url": "http://kuenishi.github.com" +} \ No newline at end of file diff --git a/users/kujohnln.json b/users/kujohnln.json index bdb2bb42..bcddd3b5 100644 --- a/users/kujohnln.json +++ b/users/kujohnln.json @@ -1,8 +1,8 @@ { - "gravatar": true, - "copyright": "KUJOHNLN", - "theme": "material-pink", - "url": "https://ikuyman.pub", - "email": "kujohnln@gmail.com", - "format": "txt" -} + "gravatar": true, + "copyright": "KUJOHNLN", + "theme": "material-pink", + "url": "https://ikuyman.pub", + "email": "kujohnln@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/kumatch.json b/users/kumatch.json index fa41d6ad..8aa7be4d 100644 --- a/users/kumatch.json +++ b/users/kumatch.json @@ -1,4 +1,4 @@ { - "copyright": "Yosuke Kumakura", - "url": "https://github.com/kumatch" -} + "copyright": "Yosuke Kumakura", + "url": "https://github.com/kumatch" +} \ No newline at end of file diff --git a/users/kuni-uec-takada-lab.json b/users/kuni-uec-takada-lab.json index bbcde423..c176acba 100644 --- a/users/kuni-uec-takada-lab.json +++ b/users/kuni-uec-takada-lab.json @@ -1,5 +1,5 @@ { - "copyright": "Yuki Kokubun (2012 UEC Tokyo Japan, Takada.Lab)", - "email": "uec.takada.lab@hotmail.co.jp", - "url": "http://www.az.inf.uec.ac.jp/" -} + "copyright": "Yuki Kokubun (2012 UEC Tokyo Japan, Takada.Lab)", + "email": "uec.takada.lab@hotmail.co.jp", + "url": "http://www.az.inf.uec.ac.jp/" +} \ No newline at end of file diff --git a/users/kuniwak.json b/users/kuniwak.json index 7ebcaccb..217a91bf 100644 --- a/users/kuniwak.json +++ b/users/kuniwak.json @@ -1,3 +1,3 @@ { - "copyright": "Kuniwak" -} + "copyright": "Kuniwak" +} \ No newline at end of file diff --git a/users/kurmis.json b/users/kurmis.json index a8b4f476..ffc21922 100644 --- a/users/kurmis.json +++ b/users/kurmis.json @@ -1,6 +1,6 @@ { - "copyright": "Oliver Kurmis", - "url": "https://www.kurmis.com", - "email": "oliver@kurmis.com", - "format": "html" -} + "copyright": "Oliver Kurmis", + "url": "https://www.kurmis.com", + "email": "oliver@kurmis.com", + "format": "html" +} \ No newline at end of file diff --git a/users/kuronekomichael.json b/users/kuronekomichael.json index 3bc7608b..b4f41170 100644 --- a/users/kuronekomichael.json +++ b/users/kuronekomichael.json @@ -1,4 +1,4 @@ { - "copyright": "Kuroneko Michael", - "url": "https://github.com/kuronekomichael" -} + "copyright": "Kuroneko Michael", + "url": "https://github.com/kuronekomichael" +} \ No newline at end of file diff --git a/users/kvz.json b/users/kvz.json index 67c2295f..a70de513 100644 --- a/users/kvz.json +++ b/users/kvz.json @@ -1,3 +1,3 @@ { - "copyright": "Kevin van Zonneveld" -} + "copyright": "Kevin van Zonneveld" +} \ No newline at end of file diff --git a/users/kvz2.json b/users/kvz2.json index abbe9a00..6675569c 100644 --- a/users/kvz2.json +++ b/users/kvz2.json @@ -1,6 +1,6 @@ { - "copyright": "Kevin van Zonneveld", - "url": "http://kvz.io", - "email": "kevin@vanzonneveld.net", - "format": "txt" -} + "copyright": "Kevin van Zonneveld", + "url": "http://kvz.io", + "email": "kevin@vanzonneveld.net", + "format": "txt" +} \ No newline at end of file diff --git a/users/kyanny.json b/users/kyanny.json index 1f5375c2..8a62a9f6 100644 --- a/users/kyanny.json +++ b/users/kyanny.json @@ -1,3 +1,3 @@ { - "copyright": "Kensuke Nagae" -} + "copyright": "Kensuke Nagae" +} \ No newline at end of file diff --git a/users/kyle.json b/users/kyle.json index d63a7652..11f34845 100644 --- a/users/kyle.json +++ b/users/kyle.json @@ -1,6 +1,6 @@ { - "copyright": "Kyle Isom", - "url": "http://kyleisom.net", - "email": "kyle@kyleisom.net", - "format": "txt" -} + "copyright": "Kyle Isom", + "url": "http://kyleisom.net", + "email": "kyle@kyleisom.net", + "format": "txt" +} \ No newline at end of file diff --git a/users/kylebaker.json b/users/kylebaker.json index 27e999b9..27652605 100644 --- a/users/kylebaker.json +++ b/users/kylebaker.json @@ -1,5 +1,5 @@ { - "copyright": "Kyle Baker", - "email": "mr.sapientia@gmail.com", - "format": "txt" -} + "copyright": "Kyle Baker", + "email": "mr.sapientia@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/kylebshr.json b/users/kylebshr.json index 46a8a5da..cb1a4426 100644 --- a/users/kylebshr.json +++ b/users/kylebshr.json @@ -1,5 +1,5 @@ { - "copyright": "Kyle Bashour", - "url": "http://kylebashour.com", - "email": "kylebshr@me.com" -} + "copyright": "Kyle Bashour", + "url": "http://kylebashour.com", + "email": "kylebshr@me.com" +} \ No newline at end of file diff --git a/users/kylestev.json b/users/kylestev.json index b842f465..b5780ddf 100644 --- a/users/kylestev.json +++ b/users/kylestev.json @@ -1,6 +1,6 @@ { - "copyright": "Kyle Stevenson", - "url": "http://kylestev.io", - "email": "kyle@kylestevenson.me", - "format": "txt" -} + "copyright": "Kyle Stevenson", + "url": "http://kylestev.io", + "email": "kyle@kylestevenson.me", + "format": "txt" +} \ No newline at end of file diff --git a/users/kylewelsby.json b/users/kylewelsby.json index 65781a4e..42f8be41 100644 --- a/users/kylewelsby.json +++ b/users/kylewelsby.json @@ -1,7 +1,7 @@ { - "copyright": "Kyle Welsby, https://mekyle.com", - "email": "kyle@mekyle.com", - "gravatar": true, - "theme": "material-red", - "url": "https://mekyle.com" -} + "copyright": "Kyle Welsby, https://mekyle.com", + "email": "kyle@mekyle.com", + "gravatar": true, + "theme": "material-red", + "url": "https://mekyle.com" +} \ No newline at end of file diff --git a/users/kyrias.json b/users/kyrias.json index b6186d57..f0054251 100644 --- a/users/kyrias.json +++ b/users/kyrias.json @@ -1,5 +1,5 @@ { - "copyright": "Johannes L\u00f6thberg", - "url": "https://theos.kyriasis.com/~kyrias", - "email": "johannes@kyriasis.com" -} + "copyright": "Johannes Löthberg", + "url": "https://theos.kyriasis.com/~kyrias", + "email": "johannes@kyriasis.com" +} \ No newline at end of file diff --git a/users/kyungw00k.json b/users/kyungw00k.json index 57a90c7a..67c8f09a 100644 --- a/users/kyungw00k.json +++ b/users/kyungw00k.json @@ -1,8 +1,8 @@ { - "copyright": "Kyungwook Park", - "url": "https://kyungw00k.github.io", - "format": "html", - "email": "parksama@gmail.com", - "theme": "material-red", - "gravatar": true -} + "copyright": "Kyungwook Park", + "url": "https://kyungw00k.github.io", + "format": "html", + "email": "parksama@gmail.com", + "theme": "material-red", + "gravatar": true +} \ No newline at end of file diff --git a/users/l04m33.json b/users/l04m33.json index 26bc3023..ed3150e7 100644 --- a/users/l04m33.json +++ b/users/l04m33.json @@ -1,6 +1,6 @@ { - "copyright": "Kay Zheng", - "url": "http://blog.theerrorlog.com", - "email": "l04m33@gmail.com", - "gravatar": true -} + "copyright": "Kay Zheng", + "url": "http://blog.theerrorlog.com", + "email": "l04m33@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/laka.json b/users/laka.json index fa5968b8..0732e779 100644 --- a/users/laka.json +++ b/users/laka.json @@ -1,5 +1,5 @@ { - "copyright": "Alex Lakatos", - "url": "http://alexlakatos.com", - "email": "alex.lakatos.qa+mit@gmail.com" -} + "copyright": "Alex Lakatos", + "url": "http://alexlakatos.com", + "email": "alex.lakatos.qa+mit@gmail.com" +} \ No newline at end of file diff --git a/users/lalit.json b/users/lalit.json index 6e036b3b..1c0a8dc4 100644 --- a/users/lalit.json +++ b/users/lalit.json @@ -1,6 +1,6 @@ { - "copyright": "Goodybag, Inc.", - "url": "http://www.goodybag.com", - "email": "lalit@goodybag.com", - "format": "txt" -} + "copyright": "Goodybag, Inc.", + "url": "http://www.goodybag.com", + "email": "lalit@goodybag.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/laradic.json b/users/laradic.json index c7697c0b..59f51940 100644 --- a/users/laradic.json +++ b/users/laradic.json @@ -1,6 +1,6 @@ { - "copyright": "Robin Radic", - "url": "https://la.radic.nl", - "email": "robin@radic.nl", - "format": "html" -} + "copyright": "Robin Radic", + "url": "https://la.radic.nl", + "email": "robin@radic.nl", + "format": "html" +} \ No newline at end of file diff --git a/users/lareg.json b/users/lareg.json index 3a917e2d..cd2f1972 100644 --- a/users/lareg.json +++ b/users/lareg.json @@ -1,3 +1,3 @@ { - "copyright": "Lare Grodzicki" -} + "copyright": "Lare Grodzicki" +} \ No newline at end of file diff --git a/users/larrybotha.json b/users/larrybotha.json index a967fec4..3d09d313 100644 --- a/users/larrybotha.json +++ b/users/larrybotha.json @@ -1,5 +1,5 @@ { - "copyright": "Larry Botha, http://larrybotha.github.com/", - "url": "http://larrybotha.github.com/", - "theme": "double-windsor" -} + "copyright": "Larry Botha, http://larrybotha.github.com/", + "url": "http://larrybotha.github.com/", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/lars.json b/users/lars.json index f3e36c98..a8aa2127 100644 --- a/users/lars.json +++ b/users/lars.json @@ -1,6 +1,6 @@ { - "copyright": "Lars Steen", - "url": "http://lars.io", - "email": "larste@gmail.com", - "format": "txt" -} + "copyright": "Lars Steen", + "url": "http://lars.io", + "email": "larste@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/larste.json b/users/larste.json index 0260e9fb..fd3e6c29 100644 --- a/users/larste.json +++ b/users/larste.json @@ -1,3 +1,3 @@ { - "copyright": "Lars Steen " -} + "copyright": "Lars Steen " +} \ No newline at end of file diff --git a/users/lavoie-sl.json b/users/lavoie-sl.json index 195b08e0..b54eb37d 100644 --- a/users/lavoie-sl.json +++ b/users/lavoie-sl.json @@ -1,7 +1,7 @@ { - "copyright": "S\u00e9bastien Lavoie", - "url": "http://blog.lavoie.sl/", - "email": "mit@lavoie.sl", - "gravatar": true, - "theme": "double-windsor" -} + "copyright": "Sébastien Lavoie", + "url": "http://blog.lavoie.sl/", + "email": "mit@lavoie.sl", + "gravatar": true, + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/layer7tech.json b/users/layer7tech.json index fdb2ef0b..50b61fde 100644 --- a/users/layer7tech.json +++ b/users/layer7tech.json @@ -1,6 +1,6 @@ { - "copyright": "Layer 7 Technologies, Inc.", - "url": "http://layer7tech.com", - "email": "services@layer7tech.com", - "format": "txt" -} + "copyright": "Layer 7 Technologies, Inc.", + "url": "http://layer7tech.com", + "email": "services@layer7tech.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/lbesson.json b/users/lbesson.json index 6e91ef25..6cfc8163 100644 --- a/users/lbesson.json +++ b/users/lbesson.json @@ -1,7 +1,7 @@ { - "copyright": "Lilian Besson (Naereen), https://bitbucket.org/lbesson/", - "url": "https://bitbucket.org/lbesson/", - "email": "naereen at crans dot org", - "format": "html", - "gravatar": false -} + "copyright": "Lilian Besson (Naereen), https://bitbucket.org/lbesson/", + "url": "https://bitbucket.org/lbesson/", + "email": "naereen at crans dot org", + "format": "html", + "gravatar": false +} \ No newline at end of file diff --git a/users/lbuell.json b/users/lbuell.json index bebddd29..8f5a4dd6 100644 --- a/users/lbuell.json +++ b/users/lbuell.json @@ -1,6 +1,6 @@ { - "copyright": "Liam Buel", - "url": "http://www.liambuell.com", - "email": "liamcbuell@gmail.com", - "format": "txt" -} + "copyright": "Liam Buel", + "url": "http://www.liambuell.com", + "email": "liamcbuell@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/leandromatos.json b/users/leandromatos.json index d634ea2a..3cdd3651 100644 --- a/users/leandromatos.json +++ b/users/leandromatos.json @@ -1,6 +1,6 @@ { - "copyright": "Leandro Matos", - "url": "http://is-uz.com", - "email": "leandro@is-uz.com", - "format": "txt" -} + "copyright": "Leandro Matos", + "url": "http://is-uz.com", + "email": "leandro@is-uz.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/leanix.json b/users/leanix.json index 5444a15e..7689b442 100644 --- a/users/leanix.json +++ b/users/leanix.json @@ -1,6 +1,6 @@ { - "copyright": "LeanIX GmbH, https://leanix.net", - "url": "https://leanix.net", - "email": "support@leanix.net", - "format": "txt" -} + "copyright": "LeanIX GmbH, https://leanix.net", + "url": "https://leanix.net", + "email": "support@leanix.net", + "format": "txt" +} \ No newline at end of file diff --git a/users/ledsun.json b/users/ledsun.json index f68543da..52fcdd61 100644 --- a/users/ledsun.json +++ b/users/ledsun.json @@ -1,4 +1,4 @@ { - "copyright": "Shigeru Nakajima", - "url": "https://github.com/ledsun" -} + "copyright": "Shigeru Nakajima", + "url": "https://github.com/ledsun" +} \ No newline at end of file diff --git a/users/leeym.json b/users/leeym.json index f1edfbac..1d0d713b 100644 --- a/users/leeym.json +++ b/users/leeym.json @@ -1,3 +1,3 @@ { - "copyright": "Yen-Ming Lee" -} + "copyright": "Yen-Ming Lee" +} \ No newline at end of file diff --git a/users/leftlogic.json b/users/leftlogic.json index 19a9bf9a..e576d39b 100644 --- a/users/leftlogic.json +++ b/users/leftlogic.json @@ -1,4 +1,4 @@ { "copyright": "Left Logic Ltd, http://leftlogic.com", "url": "http://leftlogic.com" -} +} \ No newline at end of file diff --git a/users/legato.json b/users/legato.json index 77126175..5e29a7ae 100644 --- a/users/legato.json +++ b/users/legato.json @@ -1,5 +1,5 @@ { - "copyright": "Legato Network, http://legatonetwork.com", - "url": "http://legatonetwork.com", - "email": "hello@legatonetwork.com" -} + "copyright": "Legato Network, http://legatonetwork.com", + "url": "http://legatonetwork.com", + "email": "hello@legatonetwork.com" +} \ No newline at end of file diff --git a/users/legraphista.json b/users/legraphista.json index fca459e1..ef930354 100644 --- a/users/legraphista.json +++ b/users/legraphista.json @@ -1,8 +1,8 @@ { - "copyright": "Stefan-Gabriel Muscalu", - "url": "https://my.corneroftheinternet.rocks/", - "email": "stefan.gabriel.muscalu@gmail.com", - "format": "html", - "gravatar": true, - "theme": "black-beauty" -} + "copyright": "Stefan-Gabriel Muscalu", + "url": "https://my.corneroftheinternet.rocks/", + "email": "stefan.gabriel.muscalu@gmail.com", + "format": "html", + "gravatar": true, + "theme": "black-beauty" +} \ No newline at end of file diff --git a/users/lehmannro.json b/users/lehmannro.json index 4b4f7c8d..5385eb04 100644 --- a/users/lehmannro.json +++ b/users/lehmannro.json @@ -1,5 +1,5 @@ { - "copyright": "Robert Lehmann", - "url": "http://robertlehmann.de/", - "email": "mail@robertlehmann.de" -} + "copyright": "Robert Lehmann", + "url": "http://robertlehmann.de/", + "email": "mail@robertlehmann.de" +} \ No newline at end of file diff --git a/users/lemieux.json b/users/lemieux.json index a8539cec..b055184a 100644 --- a/users/lemieux.json +++ b/users/lemieux.json @@ -1,6 +1,6 @@ { - "copyright": "Marc-Antoine Lemieux, http://marcantoinelemieux.com", - "url": "http://marcantoinelemieux.com", - "email": "marc@marcantoinelemieux.com", - "theme": "afterdark" -} + "copyright": "Marc-Antoine Lemieux, http://marcantoinelemieux.com", + "url": "http://marcantoinelemieux.com", + "email": "marc@marcantoinelemieux.com", + "theme": "afterdark" +} \ No newline at end of file diff --git a/users/lemolsoft.json b/users/lemolsoft.json index edc9b11c..538e1f75 100644 --- a/users/lemolsoft.json +++ b/users/lemolsoft.json @@ -1,6 +1,6 @@ { - "copyright": "Leza Morais Lutonda (Lemol-C Software)", - "url": "http://lemolsoft.webs.com", - "email": "lemol-c@hotmail.com", - "theme": "double-windsor" -} + "copyright": "Leza Morais Lutonda (Lemol-C Software)", + "url": "http://lemolsoft.webs.com", + "email": "lemol-c@hotmail.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/lemurs.json b/users/lemurs.json index 79902ed8..423e50da 100644 --- a/users/lemurs.json +++ b/users/lemurs.json @@ -1,5 +1,5 @@ { - "copyright": "FRINKnet and the Expatriated Lemurs of Borneo", - "url": "http://frinknet.com", - "theme": "double-winsor" -} + "copyright": "FRINKnet and the Expatriated Lemurs of Borneo", + "url": "http://frinknet.com", + "theme": "double-winsor" +} \ No newline at end of file diff --git a/users/len.json b/users/len.json index e639f6b8..e7e186d3 100644 --- a/users/len.json +++ b/users/len.json @@ -1,4 +1,4 @@ { - "copyright": "Len", - "url": "http://len-ch.com" -} + "copyright": "Len", + "url": "http://len-ch.com" +} \ No newline at end of file diff --git a/users/lenet.json b/users/lenet.json index 3782ebe0..1a52b966 100644 --- a/users/lenet.json +++ b/users/lenet.json @@ -1,4 +1,4 @@ { - "copyright": "LENetworks", - "url": "http://len-ch.com" -} + "copyright": "LENetworks", + "url": "http://len-ch.com" +} \ No newline at end of file diff --git a/users/leniglo.json b/users/leniglo.json index 1ee1c3fe..a53368a1 100644 --- a/users/leniglo.json +++ b/users/leniglo.json @@ -1,8 +1,8 @@ { - "copyright": "Guillaume \"LeNiglo\" Lefrant", - "url": "http://lefrantguillaume.com?ref=mit", - "email": "lefrantguillaume@gmail.com", - "format": "html", - "gravatar": true, - "theme": "flesch" -} + "copyright": "Guillaume \"LeNiglo\" Lefrant", + "url": "http://lefrantguillaume.com?ref=mit", + "email": "lefrantguillaume@gmail.com", + "format": "html", + "gravatar": true, + "theme": "flesch" +} \ No newline at end of file diff --git a/users/lenilson.json b/users/lenilson.json index d3a50eb8..b95bc8b3 100644 --- a/users/lenilson.json +++ b/users/lenilson.json @@ -1,6 +1,6 @@ { - "copyright": "Lenilson Jose Dias", - "url": "http://nixusr.com", - "email": "lenilson@gmail.com", - "format": "txt" -} + "copyright": "Lenilson Jose Dias", + "url": "http://nixusr.com", + "email": "lenilson@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/leonardomerlin.json b/users/leonardomerlin.json index 22ed73d5..be521c57 100644 --- a/users/leonardomerlin.json +++ b/users/leonardomerlin.json @@ -1,5 +1,5 @@ { - "copyright": "Leonardo Merlin", - "url": "http://leonardomerlin.com.br", - "email": "hi@leonardomerlin.com.br" -} + "copyright": "Leonardo Merlin", + "url": "http://leonardomerlin.com.br", + "email": "hi@leonardomerlin.com.br" +} \ No newline at end of file diff --git a/users/leonardorifeli.json b/users/leonardorifeli.json index 81e562b0..66d84f67 100644 --- a/users/leonardorifeli.json +++ b/users/leonardorifeli.json @@ -1,5 +1,5 @@ { - "copyright": "Leonardo Rifeli", - "url": "http://leonardorifeli.com", - "email": "leonardorifeli@gmail.com" -} + "copyright": "Leonardo Rifeli", + "url": "http://leonardorifeli.com", + "email": "leonardorifeli@gmail.com" +} \ No newline at end of file diff --git a/users/leonardosoares.json b/users/leonardosoares.json index 7f15b49a..cd05c9c0 100644 --- a/users/leonardosoares.json +++ b/users/leonardosoares.json @@ -1,7 +1,7 @@ { - "copyright": "Leonardo Soares, http://www.leonardosoares.org", - "url": "http://www.leonardosoares.org", - "email": "ping@leonardosoares.org", - "gravatar": true, - "theme": "double-windsor" -} + "copyright": "Leonardo Soares, http://www.leonardosoares.org", + "url": "http://www.leonardosoares.org", + "email": "ping@leonardosoares.org", + "gravatar": true, + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/lepture.json b/users/lepture.json index 678d7132..c0dbc4c1 100644 --- a/users/lepture.json +++ b/users/lepture.json @@ -1,6 +1,6 @@ { - "copyright": "Hsiaoming Yang", - "url": "http://lepture.com", - "email": "me@lepture.com", - "format": "txt" -} + "copyright": "Hsiaoming Yang", + "url": "http://lepture.com", + "email": "me@lepture.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/lequioscreative.json b/users/lequioscreative.json index bd9c4043..32801524 100644 --- a/users/lequioscreative.json +++ b/users/lequioscreative.json @@ -1,3 +1,3 @@ { - "copyright": "Lequios Creative" -} + "copyright": "Lequios Creative" +} \ No newline at end of file diff --git a/users/levelup.json b/users/levelup.json index 7a3d100e..4f4fc887 100644 --- a/users/levelup.json +++ b/users/levelup.json @@ -1,3 +1,3 @@ { - "copyright": "Level Up (Scotland) Limited, http://www.thisislevelup.com" -} + "copyright": "Level Up (Scotland) Limited, http://www.thisislevelup.com" +} \ No newline at end of file diff --git a/users/lgalfaso.json b/users/lgalfaso.json index cc3199af..0d246a78 100644 --- a/users/lgalfaso.json +++ b/users/lgalfaso.json @@ -1,3 +1,3 @@ { - "copyright": "Lucas Galfas\u00f3" -} + "copyright": "Lucas Galfasó" +} \ No newline at end of file diff --git a/users/lgn21st.json b/users/lgn21st.json index 9b472242..91c6e2b9 100644 --- a/users/lgn21st.json +++ b/users/lgn21st.json @@ -1,5 +1,5 @@ { - "copyright": "Daniel Lv, http://lvguoning.com", - "url": "http://lvguoning.com", - "email": "lgn21st@gmail.com" -} + "copyright": "Daniel Lv, http://lvguoning.com", + "url": "http://lvguoning.com", + "email": "lgn21st@gmail.com" +} \ No newline at end of file diff --git a/users/lh.json b/users/lh.json index 9d2eed4e..a8784cd2 100644 --- a/users/lh.json +++ b/users/lh.json @@ -1,6 +1,6 @@ { - "copyright": "Louis L", - "url": "https://luuhuy.com/", - "email": "admin@luuhuy.com", - "format": "txt" -} + "copyright": "Louis L", + "url": "https://luuhuy.com/", + "email": "admin@luuhuy.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/lhl.json b/users/lhl.json index 06f2644c..836ad50c 100644 --- a/users/lhl.json +++ b/users/lhl.json @@ -1,3 +1,3 @@ { - "copyright": "Leonard Lin" -} + "copyright": "Leonard Lin" +} \ No newline at end of file diff --git a/users/li.json b/users/li.json index affa818c..dac52bbc 100644 --- a/users/li.json +++ b/users/li.json @@ -1,7 +1,7 @@ { - "copyright": "Runze Li", - "url": "https://lirunze.xyz", - "email": "me@lirunze.xyz", - "gravatar": true, - "theme": "material-lime" -} + "copyright": "Runze Li", + "url": "https://lirunze.xyz", + "email": "me@lirunze.xyz", + "gravatar": true, + "theme": "material-lime" +} \ No newline at end of file diff --git a/users/liam-kerr.json b/users/liam-kerr.json index f8023651..4d7f953f 100644 --- a/users/liam-kerr.json +++ b/users/liam-kerr.json @@ -1,3 +1,3 @@ { - "copyright": "Liam Kerr" -} + "copyright": "Liam Kerr" +} \ No newline at end of file diff --git a/users/lidonghua.json b/users/lidonghua.json index 586873bd..d55427a7 100644 --- a/users/lidonghua.json +++ b/users/lidonghua.json @@ -1,4 +1,4 @@ { - "copyright": "Donghua Li", - "url": "https://github.com/lidonghua" -} + "copyright": "Donghua Li", + "url": "https://github.com/lidonghua" +} \ No newline at end of file diff --git a/users/likerrr.json b/users/likerrr.json index 4aa872ff..c775ed2e 100644 --- a/users/likerrr.json +++ b/users/likerrr.json @@ -1,7 +1,7 @@ { - "copyright": "Alexey Lizurchik, http://likerrr.ru", - "url": "http://likerrr.ru", - "email": "al.lizurchik@gmail.com", - "gravatar": true, - "format": "html" -} + "copyright": "Alexey Lizurchik, http://likerrr.ru", + "url": "http://likerrr.ru", + "email": "al.lizurchik@gmail.com", + "gravatar": true, + "format": "html" +} \ No newline at end of file diff --git a/users/lindsayevans.json b/users/lindsayevans.json index d73070cd..cd47b888 100644 --- a/users/lindsayevans.json +++ b/users/lindsayevans.json @@ -1,4 +1,4 @@ { - "copyright": "Lindsay Evans ", - "url": "http://linz.id.au/" -} + "copyright": "Lindsay Evans ", + "url": "http://linz.id.au/" +} \ No newline at end of file diff --git a/users/lionel-m.json b/users/lionel-m.json index 73905ab7..1e59b601 100644 --- a/users/lionel-m.json +++ b/users/lionel-m.json @@ -1,4 +1,4 @@ { - "copyright": "Lionel Maccaud", - "theme": "double-windsor" -} + "copyright": "Lionel Maccaud", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/lira.json b/users/lira.json index c89efd87..44903ae1 100644 --- a/users/lira.json +++ b/users/lira.json @@ -1,7 +1,7 @@ { - "copyright": "Fernando Lira, http://fernandolira.com", - "url": "http://fernandolira.com", - "email": "oi@fernandolira.com", - "gravatar": true, - "theme": "material-green" -} + "copyright": "Fernando Lira, http://fernandolira.com", + "url": "http://fernandolira.com", + "email": "oi@fernandolira.com", + "gravatar": true, + "theme": "material-green" +} \ No newline at end of file diff --git a/users/lishiyu.json b/users/lishiyu.json index 365b187a..5f9c1233 100644 --- a/users/lishiyu.json +++ b/users/lishiyu.json @@ -1,4 +1,4 @@ { - "copyright": "lishiyu", - "url": "http://lishiyu.com" -} + "copyright": "lishiyu", + "url": "http://lishiyu.com" +} \ No newline at end of file diff --git a/users/litenjacob.json b/users/litenjacob.json index 0be9f57d..cf45fd56 100644 --- a/users/litenjacob.json +++ b/users/litenjacob.json @@ -1,3 +1,3 @@ { - "copyright": "Jacob Waller" -} + "copyright": "Jacob Waller" +} \ No newline at end of file diff --git a/users/liuderchi.json b/users/liuderchi.json index f4ccd446..d7520fbe 100644 --- a/users/liuderchi.json +++ b/users/liuderchi.json @@ -1,7 +1,7 @@ { - "copyright": "Te-Chi Liu", - "url": "https://github.com/liuderchi", - "email": "liuderchi@gmail.com", - "theme": "material-orange", - "gravatar": true -} + "copyright": "Te-Chi Liu", + "url": "https://github.com/liuderchi", + "email": "liuderchi@gmail.com", + "theme": "material-orange", + "gravatar": true +} \ No newline at end of file diff --git a/users/livebreathedigital.json b/users/livebreathedigital.json index 2f1b863f..77403056 100644 --- a/users/livebreathedigital.json +++ b/users/livebreathedigital.json @@ -1,6 +1,6 @@ { - "copyright": "Kevin Fling", - "url": "http://livebreathedigital.net", - "email": "k@livebreathedigital.net", - "format": "opensans" -} + "copyright": "Kevin Fling", + "url": "http://livebreathedigital.net", + "email": "k@livebreathedigital.net", + "format": "opensans" +} \ No newline at end of file diff --git a/users/liz.json b/users/liz.json index 8498b15e..cf8b4b1c 100644 --- a/users/liz.json +++ b/users/liz.json @@ -1,6 +1,6 @@ { - "copyright": "Serendipity", - "url": "https://lizzie.github.io/", - "email": "shengyan1985@gmail.com", - "format": "txt" -} + "copyright": "Serendipity", + "url": "https://lizzie.github.io/", + "email": "shengyan1985@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/lizzie.json b/users/lizzie.json index 8498b15e..cf8b4b1c 100644 --- a/users/lizzie.json +++ b/users/lizzie.json @@ -1,6 +1,6 @@ { - "copyright": "Serendipity", - "url": "https://lizzie.github.io/", - "email": "shengyan1985@gmail.com", - "format": "txt" -} + "copyright": "Serendipity", + "url": "https://lizzie.github.io/", + "email": "shengyan1985@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/ljos.json b/users/ljos.json index 09af9a65..62156dc8 100644 --- a/users/ljos.json +++ b/users/ljos.json @@ -1,6 +1,6 @@ { - "copyright": "Bjarte Johansen", - "theme": "double-windsor", - "url": "https://github.com/ljos", - "email": "Bjarte.Johansen@gmail.com" -} + "copyright": "Bjarte Johansen", + "theme": "double-windsor", + "url": "https://github.com/ljos", + "email": "Bjarte.Johansen@gmail.com" +} \ No newline at end of file diff --git a/users/llaraujo.json b/users/llaraujo.json index c1ac6968..2017de7f 100644 --- a/users/llaraujo.json +++ b/users/llaraujo.json @@ -1,5 +1,5 @@ { - "copyright": "Leonardo Lima Araujo", - "url": "http://llaraujo.com", - "email": "leonardo@llaraujo.com" -} + "copyright": "Leonardo Lima Araujo", + "url": "http://llaraujo.com", + "email": "leonardo@llaraujo.com" +} \ No newline at end of file diff --git a/users/llun.json b/users/llun.json index 116f1d70..6092973c 100644 --- a/users/llun.json +++ b/users/llun.json @@ -1,4 +1,4 @@ { - "copyright": "Maythee Anegboonlap", - "email": "null@llun.in.th" -} + "copyright": "Maythee Anegboonlap", + "email": "null@llun.in.th" +} \ No newline at end of file diff --git a/users/lmarburger.json b/users/lmarburger.json index f745a0a6..97961830 100644 --- a/users/lmarburger.json +++ b/users/lmarburger.json @@ -1,6 +1,6 @@ { - "copyright": "Larry Marburger Jr, http://developmentastic.com", - "url": "http://developmentastic.com", - "email": "larry@marburger.cc", - "theme": "double-windsor" -} + "copyright": "Larry Marburger Jr, http://developmentastic.com", + "url": "http://developmentastic.com", + "email": "larry@marburger.cc", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/lmullen.json b/users/lmullen.json index 347f5e32..7ff6139e 100644 --- a/users/lmullen.json +++ b/users/lmullen.json @@ -1,6 +1,6 @@ { - "copyright": "Lincoln A. Mullen", - "url": "http://lincolnmullen.com", - "email": "lincoln@lincolnmullen.com", - "format": "html" -} + "copyright": "Lincoln A. Mullen", + "url": "http://lincolnmullen.com", + "email": "lincoln@lincolnmullen.com", + "format": "html" +} \ No newline at end of file diff --git a/users/lng.json b/users/lng.json index 5929659e..592b4048 100644 --- a/users/lng.json +++ b/users/lng.json @@ -1,3 +1,3 @@ { - "copyright": "Lillian Ng" -} + "copyright": "Lillian Ng" +} \ No newline at end of file diff --git a/users/lnmunhoz.json b/users/lnmunhoz.json index 72ffb0eb..4206d597 100644 --- a/users/lnmunhoz.json +++ b/users/lnmunhoz.json @@ -1,5 +1,5 @@ { - "copyright": "Lucas N. Munhoz", - "email": "ln.munhoz@gmail.com", - "url": "lnmunhoz.github.io" -} + "copyright": "Lucas N. Munhoz", + "email": "ln.munhoz@gmail.com", + "url": "lnmunhoz.github.io" +} \ No newline at end of file diff --git a/users/lo.json b/users/lo.json index 585b5808..0c11ca83 100644 --- a/users/lo.json +++ b/users/lo.json @@ -1,3 +1,3 @@ { - "copyright": "Carlo Flores" -} + "copyright": "Carlo Flores" +} \ No newline at end of file diff --git a/users/localhost.json b/users/localhost.json index 314a12c6..c5713d8b 100644 --- a/users/localhost.json +++ b/users/localhost.json @@ -1,5 +1,5 @@ { - "//1": "Security holding user", - "//2": "This user is being locked to prevent complication with localhost.", - "locked": true -} + "//1": "Security holding user", + "//2": "This user is being locked to prevent complication with localhost.", + "locked": true +} \ No newline at end of file diff --git a/users/localpcguy.json b/users/localpcguy.json index 57e8de5c..40de463c 100644 --- a/users/localpcguy.json +++ b/users/localpcguy.json @@ -1,5 +1,5 @@ { - "copyright": "Mike Behnke, http://www.local-pc-guy.com", - "url": "http://www.local-pc-guy.com", - "theme": "flesch" -} + "copyright": "Mike Behnke, http://www.local-pc-guy.com", + "url": "http://www.local-pc-guy.com", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/lolcat.json b/users/lolcat.json index 7c7cafc8..63b5ea8b 100644 --- a/users/lolcat.json +++ b/users/lolcat.json @@ -1,3 +1,3 @@ { - "copyright": "Lolcat" -} + "copyright": "Lolcat" +} \ No newline at end of file diff --git a/users/longsl.json b/users/longsl.json index 181eb715..620b8ec9 100644 --- a/users/longsl.json +++ b/users/longsl.json @@ -1,6 +1,6 @@ { - "copyright": "Long ShiLin", - "url": "http://longshilin.com", - "email": "583297550@qq.com", - "gravatar": true -} + "copyright": "Long ShiLin", + "url": "http://longshilin.com", + "email": "583297550@qq.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/loopj.json b/users/loopj.json index 0f4e0208..c51b50f4 100644 --- a/users/loopj.json +++ b/users/loopj.json @@ -1,5 +1,5 @@ { - "copyright": "James Smith, http://loopj.com", - "url": "http://loopj.com", - "theme": "default" -} + "copyright": "James Smith, http://loopj.com", + "url": "http://loopj.com", + "theme": "default" +} \ No newline at end of file diff --git a/users/lorenz-lo-sauer.json b/users/lorenz-lo-sauer.json index d7bad24a..0eda7f41 100644 --- a/users/lorenz-lo-sauer.json +++ b/users/lorenz-lo-sauer.json @@ -1,8 +1,8 @@ { - "copyright": "Lorenz Lo Sauer, https://www.lsauer.com", - "url": "http://www.lsauer.com", - "format": "html", - "email": "lorenz.lo.sauer@gmail.com", - "gravatar": true, - "theme": "eula-modern" -} + "copyright": "Lorenz Lo Sauer, https://www.lsauer.com", + "url": "http://www.lsauer.com", + "format": "html", + "email": "lorenz.lo.sauer@gmail.com", + "gravatar": true, + "theme": "eula-modern" +} \ No newline at end of file diff --git a/users/louisremi.json b/users/louisremi.json index aed5e11f..fc20e294 100644 --- a/users/louisremi.json +++ b/users/louisremi.json @@ -1,4 +1,4 @@ { - "copyright": "Louis-R\u00e9mi Bab\u00e9", - "url": "http://twitter.com/louis_remi" -} + "copyright": "Louis-Rémi Babé", + "url": "http://twitter.com/louis_remi" +} \ No newline at end of file diff --git a/users/louist.json b/users/louist.json index 4c385181..83a93065 100644 --- a/users/louist.json +++ b/users/louist.json @@ -1,8 +1,8 @@ { - "copyright": "Louis T., https://lou.ist", - "url": "https://lou.ist", - "theme": "default-dark", - "email": "louist@lou.ist", - "gravatar": true, - "format": "html" -} + "copyright": "Louis T., https://lou.ist", + "url": "https://lou.ist", + "theme": "default-dark", + "email": "louist@lou.ist", + "gravatar": true, + "format": "html" +} \ No newline at end of file diff --git a/users/lp.json b/users/lp.json index 4816d7ee..07737cce 100644 --- a/users/lp.json +++ b/users/lp.json @@ -1,5 +1,5 @@ { - "copyright": "Luke Thomas Plaster", - "url": "http://lukep.org", - "email": "notatestuser@gmail.com" -} + "copyright": "Luke Thomas Plaster", + "url": "http://lukep.org", + "email": "notatestuser@gmail.com" +} \ No newline at end of file diff --git a/users/lpa.json b/users/lpa.json index 018b4ecb..e46423e7 100644 --- a/users/lpa.json +++ b/users/lpa.json @@ -1,5 +1,5 @@ { - "copyright": "Little Polar Apps, http://littlepolarapps.com", - "url": "http://littlepolarapps.com", - "theme": "flesch" -} + "copyright": "Little Polar Apps, http://littlepolarapps.com", + "url": "http://littlepolarapps.com", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/lpg.json b/users/lpg.json index 57e8de5c..40de463c 100644 --- a/users/lpg.json +++ b/users/lpg.json @@ -1,5 +1,5 @@ { - "copyright": "Mike Behnke, http://www.local-pc-guy.com", - "url": "http://www.local-pc-guy.com", - "theme": "flesch" -} + "copyright": "Mike Behnke, http://www.local-pc-guy.com", + "url": "http://www.local-pc-guy.com", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/lpghatguy.json b/users/lpghatguy.json index c8ecd35b..0555fcd8 100644 --- a/users/lpghatguy.json +++ b/users/lpghatguy.json @@ -1,6 +1,6 @@ { - "copyright": "Lucien Greathouse", - "url": "http://lpghatguy.com", - "email": "me@lpghatguy.com", - "format": "txt" -} + "copyright": "Lucien Greathouse", + "url": "http://lpghatguy.com", + "email": "me@lpghatguy.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/lqez.json b/users/lqez.json index a1a028d7..4e17ad22 100644 --- a/users/lqez.json +++ b/users/lqez.json @@ -1,3 +1,3 @@ { - "copyright": "Park Hyunwoo" -} + "copyright": "Park Hyunwoo" +} \ No newline at end of file diff --git a/users/lqian.json b/users/lqian.json index 8d8a008e..d4b5c4ff 100644 --- a/users/lqian.json +++ b/users/lqian.json @@ -1,6 +1,6 @@ { - "copyright": "Li Qian", - "url": "http://gushingach.tk", - "email": "pkuphenix@gmail.com", - "format": "txt" -} + "copyright": "Li Qian", + "url": "http://gushingach.tk", + "email": "pkuphenix@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/lrenhrda.json b/users/lrenhrda.json index c7ce54af..56f60703 100644 --- a/users/lrenhrda.json +++ b/users/lrenhrda.json @@ -1,3 +1,3 @@ { - "copyright": "Lauren Herda" -} + "copyright": "Lauren Herda" +} \ No newline at end of file diff --git a/users/lsauer.json b/users/lsauer.json index 3c5a1778..a4083e04 100644 --- a/users/lsauer.json +++ b/users/lsauer.json @@ -1,8 +1,8 @@ { - "copyright": "Lorenz Lo Sauer, https://www.lsauer.com", - "url": "http://www.lsauer.com", - "format": "html", - "email": "lorenz.lo.sauer@gmail.com", - "gravatar": false, - "theme": "eula-modern" -} + "copyright": "Lorenz Lo Sauer, https://www.lsauer.com", + "url": "http://www.lsauer.com", + "format": "html", + "email": "lorenz.lo.sauer@gmail.com", + "gravatar": false, + "theme": "eula-modern" +} \ No newline at end of file diff --git a/users/lsh.json b/users/lsh.json index f9fb10cd..c8e4a1f8 100644 --- a/users/lsh.json +++ b/users/lsh.json @@ -1,7 +1,7 @@ { - "copyright": "Leander Harding", - "url": "http://lsh.io", - "email": "lsh@lsh.io", - "format": "txt", - "gravatar": true -} + "copyright": "Leander Harding", + "url": "http://lsh.io", + "email": "lsh@lsh.io", + "format": "txt", + "gravatar": true +} \ No newline at end of file diff --git a/users/lsong.json b/users/lsong.json index 48c6c386..1b104687 100644 --- a/users/lsong.json +++ b/users/lsong.json @@ -1,5 +1,5 @@ { - "copyright": "Lsong", - "url": "https://lsong.org", - "email": "i@lsong.org" -} + "copyright": "Lsong", + "url": "https://lsong.org", + "email": "i@lsong.org" +} \ No newline at end of file diff --git a/users/ltej.json b/users/ltej.json index c2ce9645..012ec188 100644 --- a/users/ltej.json +++ b/users/ltej.json @@ -1,3 +1,3 @@ { - "copyright": "Leandra Tejedor" -} + "copyright": "Leandra Tejedor" +} \ No newline at end of file diff --git a/users/luanmuniz.json b/users/luanmuniz.json index 1045a297..6b4340c1 100644 --- a/users/luanmuniz.json +++ b/users/luanmuniz.json @@ -1,5 +1,5 @@ { - "copyright": "Luan Muniz", - "email": "luan@luanmuniz.com.br", - "url": "http://luanmuniz.com.br" -} + "copyright": "Luan Muniz", + "email": "luan@luanmuniz.com.br", + "url": "http://luanmuniz.com.br" +} \ No newline at end of file diff --git a/users/lucasgreen.json b/users/lucasgreen.json index 3fb92df2..f4a1affc 100644 --- a/users/lucasgreen.json +++ b/users/lucasgreen.json @@ -1,3 +1,3 @@ { - "copyright": "Lucas M Green" -} + "copyright": "Lucas M Green" +} \ No newline at end of file diff --git a/users/lucasmartins.json b/users/lucasmartins.json index 97c9b13c..bfd3d193 100644 --- a/users/lucasmartins.json +++ b/users/lucasmartins.json @@ -1,5 +1,5 @@ { - "copyright": "Lucas N Martins", - "url": "https://www.linkedin.com/in/martinslucas", - "theme": "double-windsor" -} + "copyright": "Lucas N Martins", + "url": "https://www.linkedin.com/in/martinslucas", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/luis.json b/users/luis.json index 4cc18885..0aa5aab9 100644 --- a/users/luis.json +++ b/users/luis.json @@ -1,3 +1,3 @@ { - "copyright": "Luis Nell" -} + "copyright": "Luis Nell" +} \ No newline at end of file diff --git a/users/luisdalmolin.json b/users/luisdalmolin.json index cd26523f..aa991415 100644 --- a/users/luisdalmolin.json +++ b/users/luisdalmolin.json @@ -1,3 +1,3 @@ { - "copyright": "Luis Dalmolin" -} + "copyright": "Luis Dalmolin" +} \ No newline at end of file diff --git a/users/luizbills.json b/users/luizbills.json index e91ea44e..fa568f23 100644 --- a/users/luizbills.json +++ b/users/luizbills.json @@ -1,6 +1,6 @@ { - "copyright": "Luiz \"Bills\"", - "url": "https://twitter.com/luizbills", - "email": "luizpbills@gmail.com", - "format": "html" -} + "copyright": "Luiz \"Bills\"", + "url": "https://twitter.com/luizbills", + "email": "luizpbills@gmail.com", + "format": "html" +} \ No newline at end of file diff --git a/users/luizpicolo.json b/users/luizpicolo.json index d9c23a69..f8e18faf 100644 --- a/users/luizpicolo.json +++ b/users/luizpicolo.json @@ -1,8 +1,8 @@ { - "copyright": "Luiz Picolo", - "url": "http://www.luizpicolo.com.br", - "format": "html", - "email": "luizpicolo@gmail.com", - "gravatar": false, - "theme": "rokkitt" -} + "copyright": "Luiz Picolo", + "url": "http://www.luizpicolo.com.br", + "format": "html", + "email": "luizpicolo@gmail.com", + "gravatar": false, + "theme": "rokkitt" +} \ No newline at end of file diff --git a/users/luke.json b/users/luke.json index 214ff8f3..df1e5937 100644 --- a/users/luke.json +++ b/users/luke.json @@ -1,6 +1,6 @@ { - "copyright": "Luke Holder", - "email": "lukemh@gmail.com", - "url": "https://lukeholder.net", - "theme": "plaintext" -} + "copyright": "Luke Holder", + "email": "lukemh@gmail.com", + "url": "https://lukeholder.net", + "theme": "plaintext" +} \ No newline at end of file diff --git a/users/lukeed.json b/users/lukeed.json index 0e1486df..a094667d 100644 --- a/users/lukeed.json +++ b/users/lukeed.json @@ -1,6 +1,6 @@ { - "copyright": "Luke Edwards", - "url": "http://lukeed.com", - "email": "luke@lukeed.com", - "format": "txt" -} + "copyright": "Luke Edwards", + "url": "http://lukeed.com", + "email": "luke@lukeed.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/lukew.json b/users/lukew.json index 7d2d0b25..9642cefa 100644 --- a/users/lukew.json +++ b/users/lukew.json @@ -1,6 +1,6 @@ { - "copyright": "Luke Whrit", - "url": "https://lukewhrit.xyz", - "email": "me@lukewhrit.xyz", - "gravatar": false -} + "copyright": "Luke Whrit", + "url": "https://lukewhrit.xyz", + "email": "me@lukewhrit.xyz", + "gravatar": false +} \ No newline at end of file diff --git a/users/lukmdo.json b/users/lukmdo.json index a44168a0..5ba3720c 100644 --- a/users/lukmdo.json +++ b/users/lukmdo.json @@ -1,6 +1,6 @@ { - "copyright": "Lukasz Dobrzanski", - "url": "http://www.lukmdo.com", - "email": "me@lukmdo.com", - "format": "txt" -} + "copyright": "Lukasz Dobrzanski", + "url": "http://www.lukmdo.com", + "email": "me@lukmdo.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/lulalachen.json b/users/lulalachen.json index 80395a08..d8a6b6d0 100644 --- a/users/lulalachen.json +++ b/users/lulalachen.json @@ -1,7 +1,7 @@ { - "copyright": "LulalaChen, lulalachen@gmail.com", - "url": "https://lulalachen.info", - "email": "lulalachen@gmail.com", - "gravatar": true, - "theme": "material-teal" -} + "copyright": "LulalaChen, lulalachen@gmail.com", + "url": "https://lulalachen.info", + "email": "lulalachen@gmail.com", + "gravatar": true, + "theme": "material-teal" +} \ No newline at end of file diff --git a/users/lussier.json b/users/lussier.json index 7ced1a56..2ef2dfb1 100644 --- a/users/lussier.json +++ b/users/lussier.json @@ -1,3 +1,3 @@ { - "copyright": "Gregory A. Lussier" -} + "copyright": "Gregory A. Lussier" +} \ No newline at end of file diff --git a/users/luwes.json b/users/luwes.json index eade99dc..7a39a501 100644 --- a/users/luwes.json +++ b/users/luwes.json @@ -1,4 +1,4 @@ { - "copyright": "Wesley Luyten, http://luwes.co", - "url": "http://luwes.co" -} + "copyright": "Wesley Luyten, http://luwes.co", + "url": "http://luwes.co" +} \ No newline at end of file diff --git a/users/lvillani.json b/users/lvillani.json index 7192a290..2fcf704f 100644 --- a/users/lvillani.json +++ b/users/lvillani.json @@ -1,3 +1,3 @@ { - "copyright": "Lorenzo Villani" -} + "copyright": "Lorenzo Villani" +} \ No newline at end of file diff --git a/users/lynn.json b/users/lynn.json index 20d3d463..c2840cdd 100644 --- a/users/lynn.json +++ b/users/lynn.json @@ -1,5 +1,5 @@ { - "copyright": "Lynn Lin", - "email": "lynn80827@hotmail.com", - "theme": "friendly" -} + "copyright": "Lynn Lin", + "email": "lynn80827@hotmail.com", + "theme": "friendly" +} \ No newline at end of file diff --git a/users/lynnwallenstein.json b/users/lynnwallenstein.json index 43cc54b5..c47250f9 100644 --- a/users/lynnwallenstein.json +++ b/users/lynnwallenstein.json @@ -1,3 +1,3 @@ { - "copyright": "Lynn Wallenstein" -} + "copyright": "Lynn Wallenstein" +} \ No newline at end of file diff --git a/users/m.json b/users/m.json index 5ec49449..8c9e8690 100644 --- a/users/m.json +++ b/users/m.json @@ -1,6 +1,6 @@ { - "copyright": "Martin Pitt", - "url": "http://martinpitt.co.uk", - "email": "martin.r.pitt+mit@gmail.com", - "format": "txt" -} + "copyright": "Martin Pitt", + "url": "http://martinpitt.co.uk", + "email": "martin.r.pitt+mit@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/m0s.json b/users/m0s.json index 56481d7e..77bfbd08 100644 --- a/users/m0s.json +++ b/users/m0s.json @@ -1,6 +1,6 @@ { - "copyright": "Sergey Balbeko, http://balbeko.com/", - "email": "sergey@balbeko.com", - "url": "http://balbeko.com/", - "theme": "double-windsor" -} + "copyright": "Sergey Balbeko, http://balbeko.com/", + "email": "sergey@balbeko.com", + "url": "http://balbeko.com/", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/m42e.json b/users/m42e.json index be2a1e0c..93de8756 100644 --- a/users/m42e.json +++ b/users/m42e.json @@ -1,5 +1,5 @@ { - "copyright": "Matthias Bilger", - "url": "https://bilger.info", - "email": "matthias@bilger.info" -} + "copyright": "Matthias Bilger", + "url": "https://bilger.info", + "email": "matthias@bilger.info" +} \ No newline at end of file diff --git a/users/m4i.json b/users/m4i.json index 97b1259b..861c13b4 100644 --- a/users/m4i.json +++ b/users/m4i.json @@ -1,4 +1,4 @@ { - "copyright": "Masaki Takeuchi, http://m4i.jp", - "url": "http://m4i.jp" -} + "copyright": "Masaki Takeuchi, http://m4i.jp", + "url": "http://m4i.jp" +} \ No newline at end of file diff --git a/users/ma.json b/users/ma.json index 0e988155..c473357a 100644 --- a/users/ma.json +++ b/users/ma.json @@ -1,3 +1,3 @@ { - "copyright": "Marcus Andr\u00e9" -} + "copyright": "Marcus André" +} \ No newline at end of file diff --git a/users/ma124.json b/users/ma124.json index 95028428..c17366cb 100644 --- a/users/ma124.json +++ b/users/ma124.json @@ -1,7 +1,7 @@ { - "copyright": "Ma_124", - "url": "https://gitlab.com/Ma_124", - "email": "ma_124@outlook.com", - "theme": "dusk", - "gravatar": true -} + "copyright": "Ma_124", + "url": "https://gitlab.com/Ma_124", + "email": "ma_124@outlook.com", + "theme": "dusk", + "gravatar": true +} \ No newline at end of file diff --git a/users/mach3.json b/users/mach3.json index 013deb92..b0fc2b7d 100644 --- a/users/mach3.json +++ b/users/mach3.json @@ -1,3 +1,3 @@ { - "copyright": "mach3" -} + "copyright": "mach3" +} \ No newline at end of file diff --git a/users/maciejczyzewski.json b/users/maciejczyzewski.json index 44a78a3a..f49d7a15 100644 --- a/users/maciejczyzewski.json +++ b/users/maciejczyzewski.json @@ -1,5 +1,5 @@ { - "copyright": "Maciej A. Czyzewski", - "email": "maciejanthonyczyzewski@gmail.com", - "format": "txt" -} + "copyright": "Maciej A. Czyzewski", + "email": "maciejanthonyczyzewski@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/macobo.json b/users/macobo.json index 89838f0d..c67dd0bb 100644 --- a/users/macobo.json +++ b/users/macobo.json @@ -1,4 +1,4 @@ { - "copyright": "Karl-Aksel Puulmann", - "email": "oxymaccy@gmail.com" -} + "copyright": "Karl-Aksel Puulmann", + "email": "oxymaccy@gmail.com" +} \ No newline at end of file diff --git a/users/mactkg.json b/users/mactkg.json index 2b7765f7..eaf1df1a 100644 --- a/users/mactkg.json +++ b/users/mactkg.json @@ -1,6 +1,6 @@ { - "copyright": "Kenta Hara, http://makerbox.net", - "url": "http://makerbox.net", - "email": "mactkg@gmail.com", - "format": "txt" -} + "copyright": "Kenta Hara, http://makerbox.net", + "url": "http://makerbox.net", + "email": "mactkg@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/maddes.json b/users/maddes.json index 7c2ff1cd..6d135869 100644 --- a/users/maddes.json +++ b/users/maddes.json @@ -1,6 +1,6 @@ { - "copyright": "Daniel Scholtus", - "url": "http://www.maddes.com.ar", - "email": "sdeonline@gmail.com", - "format": "txt" -} + "copyright": "Daniel Scholtus", + "url": "http://www.maddes.com.ar", + "email": "sdeonline@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/madethemes.json b/users/madethemes.json index 0455a8ef..ca2811d3 100644 --- a/users/madethemes.json +++ b/users/madethemes.json @@ -1,6 +1,6 @@ { - "copyright": "Made Themes", - "url": "http://www.madethemes.com", - "email": "support@madethemes.com", - "format": "html" -} + "copyright": "Made Themes", + "url": "http://www.madethemes.com", + "email": "support@madethemes.com", + "format": "html" +} \ No newline at end of file diff --git a/users/madness.json b/users/madness.json index 329b78ee..b0bc17a1 100644 --- a/users/madness.json +++ b/users/madness.json @@ -1,5 +1,5 @@ { - "copyright": "Mohammad Mirrajabi, http://mirrajabi.ir", - "url": "http://mirrajabi.ir", - "theme": "default" -} + "copyright": "Mohammad Mirrajabi, http://mirrajabi.ir", + "url": "http://mirrajabi.ir", + "theme": "default" +} \ No newline at end of file diff --git a/users/madrona-labs.json b/users/madrona-labs.json index f597d392..414d2340 100644 --- a/users/madrona-labs.json +++ b/users/madrona-labs.json @@ -1,3 +1,3 @@ { - "copyright": "Madrona Labs LLC" -} + "copyright": "Madrona Labs LLC" +} \ No newline at end of file diff --git a/users/magarcia-mail.json b/users/magarcia-mail.json index e6c6df57..dbcf7a51 100644 --- a/users/magarcia-mail.json +++ b/users/magarcia-mail.json @@ -1,3 +1,3 @@ { - "copyright": "Martin Garcia " -} + "copyright": "Martin Garcia " +} \ No newline at end of file diff --git a/users/magarcia.json b/users/magarcia.json index 848c45c1..5ad6ec0a 100644 --- a/users/magarcia.json +++ b/users/magarcia.json @@ -1,3 +1,3 @@ { - "copyright": "Martin Garcia" -} + "copyright": "Martin Garcia" +} \ No newline at end of file diff --git a/users/magicdawn.json b/users/magicdawn.json index ff7e18ee..5106ee27 100644 --- a/users/magicdawn.json +++ b/users/magicdawn.json @@ -1,7 +1,7 @@ { - "copyright": "Magicdawn", - "url": "http://magicdawn.ml", - "email": "magicdawn@qq.com", - "format": "html", - "gravatar": true -} + "copyright": "Magicdawn", + "url": "http://magicdawn.ml", + "email": "magicdawn@qq.com", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/magno.json b/users/magno.json index 84bad7af..23d76b22 100644 --- a/users/magno.json +++ b/users/magno.json @@ -1,6 +1,6 @@ { - "copyright": "Magno Bi\u00c3\u00a9t", - "url": "https://magnobiet.com/", - "email": "me@magnobiet.com", - "theme": "material" -} + "copyright": "Magno Biét", + "url": "https://magnobiet.com/", + "email": "me@magnobiet.com", + "theme": "material" +} \ No newline at end of file diff --git a/users/magnus.json b/users/magnus.json index a323d830..42890e48 100644 --- a/users/magnus.json +++ b/users/magnus.json @@ -1,3 +1,3 @@ { - "copyright": "Magnus Dahlstrand" -} + "copyright": "Magnus Dahlstrand" +} \ No newline at end of file diff --git a/users/mahdaen.json b/users/mahdaen.json index da447930..53ffcc11 100644 --- a/users/mahdaen.json +++ b/users/mahdaen.json @@ -1,6 +1,6 @@ { - "copyright": "Nanang Mahdaen El Agung", - "url": "http://mahdaen.name", - "email": "nanang@mahdaen.name", - "format": "txt" -} + "copyright": "Nanang Mahdaen El Agung", + "url": "http://mahdaen.name", + "email": "nanang@mahdaen.name", + "format": "txt" +} \ No newline at end of file diff --git a/users/majd.json b/users/majd.json index c077018b..46f3f0cf 100644 --- a/users/majd.json +++ b/users/majd.json @@ -1,6 +1,6 @@ { - "copyright": "Majd Alhaj", - "url": "http://facebook.com/majd.latif", - "email": "majdelhaj@gmail.com", - "gravatar": true -} + "copyright": "Majd Alhaj", + "url": "http://facebook.com/majd.latif", + "email": "majdelhaj@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/majodev.json b/users/majodev.json index dcfa956b..1b696f52 100644 --- a/users/majodev.json +++ b/users/majodev.json @@ -1,5 +1,5 @@ { - "copyright": "Mario Ranftl | majodev", - "url": "http://ranf.tl", - "theme": "double-windsor" -} + "copyright": "Mario Ranftl | majodev", + "url": "http://ranf.tl", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/makenowjust.json b/users/makenowjust.json index e80bb577..fb7aad83 100644 --- a/users/makenowjust.json +++ b/users/makenowjust.json @@ -1,7 +1,7 @@ { - "copyright": "TSUYUSATO Kitsune", - "email": "make.just.on@gmail.com", - "format": "html", - "gravatar": true, - "theme": "friendly" -} + "copyright": "TSUYUSATO Kitsune", + "email": "make.just.on@gmail.com", + "format": "html", + "gravatar": true, + "theme": "friendly" +} \ No newline at end of file diff --git a/users/makimoto.json b/users/makimoto.json index 384daf19..34dafc5a 100644 --- a/users/makimoto.json +++ b/users/makimoto.json @@ -1,3 +1,3 @@ { - "copyright": "Shimpei Makimoto" -} + "copyright": "Shimpei Makimoto" +} \ No newline at end of file diff --git a/users/malayaleecoder.json b/users/malayaleecoder.json index 9196e36a..34cba1a5 100644 --- a/users/malayaleecoder.json +++ b/users/malayaleecoder.json @@ -1,3 +1,3 @@ { - "copyright": "malayaleecoder" -} + "copyright": "malayaleecoder" +} \ No newline at end of file diff --git a/users/mallim.json b/users/mallim.json index 3a4ae828..b09dd3fc 100644 --- a/users/mallim.json +++ b/users/mallim.json @@ -1,7 +1,7 @@ { - "copyright": "Ian Lim, http://mallimxf3.blogspot.sg", - "url": "http://mallimxf3.blogspot.sg", - "email": "mallim.ink@gmail.com", - "format": "html", - "gravatar": true -} + "copyright": "Ian Lim, http://mallimxf3.blogspot.sg", + "url": "http://mallimxf3.blogspot.sg", + "email": "mallim.ink@gmail.com", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/mamund.json b/users/mamund.json index e8e55b25..45378693 100644 --- a/users/mamund.json +++ b/users/mamund.json @@ -1,6 +1,6 @@ { - "copyright": "amundsen.com, Inc.", - "url": "http://amundsen.com", - "email": "copyright@amundsen.com", - "format": "txt" -} + "copyright": "amundsen.com, Inc.", + "url": "http://amundsen.com", + "email": "copyright@amundsen.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/managenet.json b/users/managenet.json index 5198eeb0..29a22c53 100644 --- a/users/managenet.json +++ b/users/managenet.json @@ -1,5 +1,5 @@ { - "copyright": "Jacob Marshall, https://manage.net.nz", - "url": "https://manage.net.nz", - "email": "support@manage.net.nz" -} + "copyright": "Jacob Marshall, https://manage.net.nz", + "url": "https://manage.net.nz", + "email": "support@manage.net.nz" +} \ No newline at end of file diff --git a/users/mandre.json b/users/mandre.json index 0e988155..c473357a 100644 --- a/users/mandre.json +++ b/users/mandre.json @@ -1,3 +1,3 @@ { - "copyright": "Marcus Andr\u00e9" -} + "copyright": "Marcus André" +} \ No newline at end of file diff --git a/users/manish.json b/users/manish.json index 0942dd30..850f6b79 100644 --- a/users/manish.json +++ b/users/manish.json @@ -1,3 +1,3 @@ { - "copyright": "Manish Gill" -} + "copyright": "Manish Gill" +} \ No newline at end of file diff --git a/users/manparvesh.json b/users/manparvesh.json index 4735ea5e..fd95aae6 100644 --- a/users/manparvesh.json +++ b/users/manparvesh.json @@ -1,7 +1,7 @@ { - "copyright": "Man Parvesh Singh Randhawa", - "url": "http://manparvesh.com", - "email": "manparveshsinghrandhawa@gmail.com", - "theme": "material-teal", - "gravatar": true -} + "copyright": "Man Parvesh Singh Randhawa", + "url": "http://manparvesh.com", + "email": "manparveshsinghrandhawa@gmail.com", + "theme": "material-teal", + "gravatar": true +} \ No newline at end of file diff --git a/users/manual.json b/users/manual.json index ceb69c63..83527802 100644 --- a/users/manual.json +++ b/users/manual.json @@ -1,4 +1,4 @@ { - "copyright": "Manual design", - "url": "http://manualdesign.no" -} + "copyright": "Manual design", + "url": "http://manualdesign.no" +} \ No newline at end of file diff --git a/users/manuel.json b/users/manuel.json index bc671664..4fa053cd 100644 --- a/users/manuel.json +++ b/users/manuel.json @@ -1,6 +1,6 @@ { - "copyright": "Manuel van Rijn", - "url": "http://manuel.manuelles.nl", - "email": "manuel@manuelles.nl", - "format": "txt" -} + "copyright": "Manuel van Rijn", + "url": "http://manuel.manuelles.nl", + "email": "manuel@manuelles.nl", + "format": "txt" +} \ No newline at end of file diff --git a/users/manuglez.json b/users/manuglez.json index 10acf9d7..195bff8a 100644 --- a/users/manuglez.json +++ b/users/manuglez.json @@ -1,8 +1,8 @@ { - "copyright": "Manuel Glez", - "url": "https://mglopez.com", - "email": "mglopez@me.com", - "format": "html", - "theme": "material-light-blue", - "gravatar": true -} + "copyright": "Manuel Glez", + "url": "https://mglopez.com", + "email": "mglopez@me.com", + "format": "html", + "theme": "material-light-blue", + "gravatar": true +} \ No newline at end of file diff --git a/users/maoo.json b/users/maoo.json index 2cc08212..0501bb2f 100644 --- a/users/maoo.json +++ b/users/maoo.json @@ -1,6 +1,6 @@ { - "copyright": "Marco Orellana O.", - "url": "http://morellana.wordpress.com/", - "email": "morello.cl@outlook.com", - "format": "txt" -} + "copyright": "Marco Orellana O.", + "url": "http://morellana.wordpress.com/", + "email": "morello.cl@outlook.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/mapjam.json b/users/mapjam.json index 96e229d5..267e54ef 100644 --- a/users/mapjam.json +++ b/users/mapjam.json @@ -1,5 +1,5 @@ { - "copyright": "MapJam, Inc.", - "email": "hello@mapjam.com", - "url": "http://mapjam.com" -} + "copyright": "MapJam, Inc.", + "email": "hello@mapjam.com", + "url": "http://mapjam.com" +} \ No newline at end of file diff --git a/users/mapjam1.json b/users/mapjam1.json index 5ee32fe3..521239e7 100644 --- a/users/mapjam1.json +++ b/users/mapjam1.json @@ -1,4 +1,4 @@ { - "copyright": "MapJam, Inc.", - "email": "hello@mapjam.com" -} + "copyright": "MapJam, Inc.", + "email": "hello@mapjam.com" +} \ No newline at end of file diff --git a/users/mapjam2.json b/users/mapjam2.json index 96e229d5..267e54ef 100644 --- a/users/mapjam2.json +++ b/users/mapjam2.json @@ -1,5 +1,5 @@ { - "copyright": "MapJam, Inc.", - "email": "hello@mapjam.com", - "url": "http://mapjam.com" -} + "copyright": "MapJam, Inc.", + "email": "hello@mapjam.com", + "url": "http://mapjam.com" +} \ No newline at end of file diff --git a/users/maqina.json b/users/maqina.json index 71909b1e..acaa49e9 100644 --- a/users/maqina.json +++ b/users/maqina.json @@ -1,5 +1,5 @@ { - "copyright": "M\u00e1qina Internet", - "url": "http://maqinainternet.com.br", - "email": "contato@maqina.com.br" -} + "copyright": "Máqina Internet", + "url": "http://maqinainternet.com.br", + "email": "contato@maqina.com.br" +} \ No newline at end of file diff --git a/users/marc.json b/users/marc.json index ddc6e2c0..a8b8d55d 100644 --- a/users/marc.json +++ b/users/marc.json @@ -1,4 +1,4 @@ { - "copyright": "Marc Smith, http://marcsm.it/", - "url": "http://marcsm.it/" -} + "copyright": "Marc Smith, http://marcsm.it/", + "url": "http://marcsm.it/" +} \ No newline at end of file diff --git a/users/marcastel.json b/users/marcastel.json index b194a305..5835ef98 100644 --- a/users/marcastel.json +++ b/users/marcastel.json @@ -1,3 +1,3 @@ { - "copyright": "JM Marcastel (ISLE Consultants)" -} + "copyright": "JM Marcastel (ISLE Consultants)" +} \ No newline at end of file diff --git a/users/marceloboeira.json b/users/marceloboeira.json index e3bccb60..85a47458 100644 --- a/users/marceloboeira.json +++ b/users/marceloboeira.json @@ -1,6 +1,6 @@ { - "copyright": "Marcelo Boeira", - "url": "http://marceloboeira.com", - "email": "contact@marceloboeira.com", - "format": "txt" -} + "copyright": "Marcelo Boeira", + "url": "http://marceloboeira.com", + "email": "contact@marceloboeira.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/marcelobrito.json b/users/marcelobrito.json index bd0d28d4..add3c05d 100644 --- a/users/marcelobrito.json +++ b/users/marcelobrito.json @@ -1,5 +1,5 @@ { - "copyright": "Marcelo Brito", - "url": "http://marcelobritowd.com", - "email": "hey@marcelobritowd.com" -} + "copyright": "Marcelo Brito", + "url": "http://marcelobritowd.com", + "email": "hey@marcelobritowd.com" +} \ No newline at end of file diff --git a/users/marco-loche.json b/users/marco-loche.json index ba42d58d..662d3a76 100644 --- a/users/marco-loche.json +++ b/users/marco-loche.json @@ -1,6 +1,6 @@ { - "copyright": "Marco Loche", - "url": "http://marcoloche.com", - "email": "marco@marcoloche.com", - "format": "html" -} + "copyright": "Marco Loche", + "url": "http://marcoloche.com", + "email": "marco@marcoloche.com", + "format": "html" +} \ No newline at end of file diff --git a/users/marco.json b/users/marco.json index d125020b..95107358 100644 --- a/users/marco.json +++ b/users/marco.json @@ -1,4 +1,4 @@ { - "copyright": "Marco Krage, https://my-azur.de", - "url": "https://my-azur.de" -} + "copyright": "Marco Krage, https://my-azur.de", + "url": "https://my-azur.de" +} \ No newline at end of file diff --git a/users/marcoagner.json b/users/marcoagner.json index 8f3e6cd2..ba31ad1d 100644 --- a/users/marcoagner.json +++ b/users/marcoagner.json @@ -1,6 +1,6 @@ { - "copyright": "Marco Agner", - "url": "http://marcoagner.com.com", - "email": "marco.agner@live.com", - "format": "txt" -} + "copyright": "Marco Agner", + "url": "http://marcoagner.com.com", + "email": "marco.agner@live.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/marcocanc.json b/users/marcocanc.json index 28c52f49..216bc0a3 100644 --- a/users/marcocanc.json +++ b/users/marcocanc.json @@ -1,6 +1,6 @@ { - "copyright": "Marco Cancellieri", - "url": "https://clever-apps.com", - "email": "marco@clever-apps.com", - "format": "txt" -} + "copyright": "Marco Cancellieri", + "url": "https://clever-apps.com", + "email": "marco@clever-apps.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/marconi.json b/users/marconi.json index f8dee410..e140cb63 100644 --- a/users/marconi.json +++ b/users/marconi.json @@ -1,6 +1,6 @@ { - "copyright": "Marconi Moreto", - "url": "http://marconijr.com", - "email": "me@marconijr.com", - "theme": "double-windsor" -} + "copyright": "Marconi Moreto", + "url": "http://marconijr.com", + "email": "me@marconijr.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/marcqualie.json b/users/marcqualie.json index d7ce843e..5793a1ce 100644 --- a/users/marcqualie.json +++ b/users/marcqualie.json @@ -1,5 +1,5 @@ { - "copyright": "Marc Qualie, https://marcqualie.com", - "url": "https://marcqualie.com", - "theme": "flesch" -} + "copyright": "Marc Qualie, https://marcqualie.com", + "url": "https://marcqualie.com", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/marcroberts.json b/users/marcroberts.json index 5bb96cdf..7c64efcc 100644 --- a/users/marcroberts.json +++ b/users/marcroberts.json @@ -1,4 +1,4 @@ { - "copyright": "Marc Roberts, http://marcroberts.info", - "url": "http://marcroberts.info" -} + "copyright": "Marc Roberts, http://marcroberts.info", + "url": "http://marcroberts.info" +} \ No newline at end of file diff --git a/users/marcusw.json b/users/marcusw.json index 01fb6d2f..0e24e423 100644 --- a/users/marcusw.json +++ b/users/marcusw.json @@ -1,7 +1,7 @@ { - "copyright": "Marcus Wichelmann", - "url": "https://marcusw.de", - "email": "mail@marcusw.de", - "gravatar": true, - "theme": "double-windsor" -} + "copyright": "Marcus Wichelmann", + "url": "https://marcusw.de", + "email": "mail@marcusw.de", + "gravatar": true, + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/marebucks.json b/users/marebucks.json index ac589490..625a478d 100644 --- a/users/marebucks.json +++ b/users/marebucks.json @@ -1,6 +1,6 @@ { - "copyright": "Marebucks", - "url": "https://marebucks.com", - "email": "contact@marebucks.com", - "theme": "eula-modern" -} + "copyright": "Marebucks", + "url": "https://marebucks.com", + "email": "contact@marebucks.com", + "theme": "eula-modern" +} \ No newline at end of file diff --git a/users/marek-saji.json b/users/marek-saji.json index 88f61d2f..046d03c3 100644 --- a/users/marek-saji.json +++ b/users/marek-saji.json @@ -1,6 +1,6 @@ { - "copyright": "Marek Augustynowicz", - "email": "marek.aug@gmail.com", - "url": "https://github.com/marek-saji", - "theme": "double-windsor" -} + "copyright": "Marek Augustynowicz", + "email": "marek.aug@gmail.com", + "url": "https://github.com/marek-saji", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/marek.json b/users/marek.json index 33c050b1..ade02bb1 100644 --- a/users/marek.json +++ b/users/marek.json @@ -1,6 +1,6 @@ { - "copyright": "Marek Hrabe, http://marekhrabe.com/", - "url": "http://marekhrabe.com/", - "email": "marekhrabe@me.com", - "gravatar": true -} + "copyright": "Marek Hrabe, http://marekhrabe.com/", + "url": "http://marekhrabe.com/", + "email": "marekhrabe@me.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/marge.json b/users/marge.json index 9dbb0c66..31305ec9 100644 --- a/users/marge.json +++ b/users/marge.json @@ -1,6 +1,6 @@ { - "copyright": "Marge Rosen", - "url": "http://margerosen.com", - "email": "marge@margerosen.com", - "theme": "double-windsor" -} + "copyright": "Marge Rosen", + "url": "http://margerosen.com", + "email": "marge@margerosen.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/mario-chavez.json b/users/mario-chavez.json index e50c17aa..738e1463 100644 --- a/users/mario-chavez.json +++ b/users/mario-chavez.json @@ -1,3 +1,3 @@ { - "copyright": "Mario Alberto Ch\u00e1vez" -} + "copyright": "Mario Alberto Chávez" +} \ No newline at end of file diff --git a/users/mark.json b/users/mark.json index 834ceddf..39229967 100644 --- a/users/mark.json +++ b/users/mark.json @@ -1,6 +1,6 @@ { - "copyright": "Mark Rendle", - "url": "https://github.com/markrendle", - "email": "mark@markrendle.net", - "gravatar": true -} + "copyright": "Mark Rendle", + "url": "https://github.com/markrendle", + "email": "mark@markrendle.net", + "gravatar": true +} \ No newline at end of file diff --git a/users/markdalgleish.json b/users/markdalgleish.json index 4b336e2f..ab4b7efa 100644 --- a/users/markdalgleish.json +++ b/users/markdalgleish.json @@ -1,4 +1,4 @@ { - "copyright": "Mark Dalgleish", - "url": "http://markdalgleish.com" -} + "copyright": "Mark Dalgleish", + "url": "http://markdalgleish.com" +} \ No newline at end of file diff --git a/users/marksteve.json b/users/marksteve.json index 8c953ede..c8a803b5 100644 --- a/users/marksteve.json +++ b/users/marksteve.json @@ -1,4 +1,4 @@ { - "copyright": "Mark Steve Samson, http://marksteve.com", - "url": "https://marksteve.com" -} + "copyright": "Mark Steve Samson, http://marksteve.com", + "url": "https://marksteve.com" +} \ No newline at end of file diff --git a/users/marnulombard.json b/users/marnulombard.json index 7b0d5dd5..e1b6becd 100644 --- a/users/marnulombard.json +++ b/users/marnulombard.json @@ -1,6 +1,6 @@ { - "copyright": "Marnu Lombard", - "url": "http://marnulombard.com", - "email": "marnu@marnulombard.com", - "format": "html" -} + "copyright": "Marnu Lombard", + "url": "http://marnulombard.com", + "email": "marnu@marnulombard.com", + "format": "html" +} \ No newline at end of file diff --git a/users/marshall.json b/users/marshall.json index d6990dbf..1f954dc6 100644 --- a/users/marshall.json +++ b/users/marshall.json @@ -1,5 +1,5 @@ { - "copyright": "Marshall Culpepper", - "url": "http://arcaner.com", - "email": "marshall@culpepper.net" -} + "copyright": "Marshall Culpepper", + "url": "http://arcaner.com", + "email": "marshall@culpepper.net" +} \ No newline at end of file diff --git a/users/martinblech.json b/users/martinblech.json index 209e5376..1d351013 100644 --- a/users/martinblech.json +++ b/users/martinblech.json @@ -1,6 +1,6 @@ { - "copyright": "Martin Blech", - "url": "http://martinblech.com", - "email": "martinblech@gmail.com", - "format": "txt" -} + "copyright": "Martin Blech", + "url": "http://martinblech.com", + "email": "martinblech@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/marucc.json b/users/marucc.json index 583c51c8..3c963090 100644 --- a/users/marucc.json +++ b/users/marucc.json @@ -1,4 +1,4 @@ { - "copyright": "maru_cc", - "url": "https://github.com/marucc" -} + "copyright": "maru_cc", + "url": "https://github.com/marucc" +} \ No newline at end of file diff --git a/users/marvinede.json b/users/marvinede.json index d7c7944a..49c6c6f4 100644 --- a/users/marvinede.json +++ b/users/marvinede.json @@ -1,5 +1,5 @@ { - "copyright": "Marvin Ede", - "email": "marvinede@gmx.net", - "format": "txt" -} + "copyright": "Marvin Ede", + "email": "marvinede@gmx.net", + "format": "txt" +} \ No newline at end of file diff --git a/users/masch.json b/users/masch.json index c0b2b6de..fbcf9ecd 100644 --- a/users/masch.json +++ b/users/masch.json @@ -1,6 +1,6 @@ { - "copyright": "Mark Schmale", - "url": "http://masch.it", - "email": "masch@masch.it", - "theme": "double-windsor" -} + "copyright": "Mark Schmale", + "url": "http://masch.it", + "email": "masch@masch.it", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/mashihua.json b/users/mashihua.json index 536f8ccf..42a82425 100644 --- a/users/mashihua.json +++ b/users/mashihua.json @@ -1,5 +1,5 @@ { - "copyright": "Shihua Ma, http://f2eskills.com.com", - "url": "http://f2eskills.com", - "theme": "double-windsor" -} + "copyright": "Shihua Ma, http://f2eskills.com.com", + "url": "http://f2eskills.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/mast.json b/users/mast.json index c3d6a0ed..a1d8bbce 100644 --- a/users/mast.json +++ b/users/mast.json @@ -1,3 +1,3 @@ { - "copyright": "Mike McNeil" -} + "copyright": "Mike McNeil" +} \ No newline at end of file diff --git a/users/masutaka.json b/users/masutaka.json index b1bb3626..353904a3 100644 --- a/users/masutaka.json +++ b/users/masutaka.json @@ -1,5 +1,5 @@ { - "copyright": "Takashi Masuda", - "url": "http://masutaka.net", - "theme": "flesch" -} + "copyright": "Takashi Masuda", + "url": "http://masutaka.net", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/mateusortiz.json b/users/mateusortiz.json index 7b6f0e24..fe6030de 100644 --- a/users/mateusortiz.json +++ b/users/mateusortiz.json @@ -1,3 +1,3 @@ { - "copyright": "Mateus Ortiz" -} + "copyright": "Mateus Ortiz" +} \ No newline at end of file diff --git a/users/matheus.json b/users/matheus.json index 564b81f3..3ce34317 100644 --- a/users/matheus.json +++ b/users/matheus.json @@ -1,6 +1,6 @@ { - "copyright": "Matheus Fernandes", - "url": "https://github.com/matheuss", - "email": "me@mysite.com", - "format": "txt" -} + "copyright": "Matheus Fernandes", + "url": "https://github.com/matheuss", + "email": "me@mysite.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/mathias.json b/users/mathias.json index 87fa64db..5c1f4f7e 100644 --- a/users/mathias.json +++ b/users/mathias.json @@ -1,4 +1,4 @@ { - "copyright": "Mathias Bynens, http://mathiasbynens.be/", - "url": "http://mathiasbynens.be/" -} + "copyright": "Mathias Bynens, http://mathiasbynens.be/", + "url": "http://mathiasbynens.be/" +} \ No newline at end of file diff --git a/users/mathieu.json b/users/mathieu.json index 047a9a3e..e962c1cd 100644 --- a/users/mathieu.json +++ b/users/mathieu.json @@ -1,7 +1,7 @@ { - "copyright": "Mathieu Dutour", - "url": "http://mathieu.dutour.me", - "email": "mathieu@dutour.me", - "theme": "material-blue", - "gravatar": true -} + "copyright": "Mathieu Dutour", + "url": "http://mathieu.dutour.me", + "email": "mathieu@dutour.me", + "theme": "material-blue", + "gravatar": true +} \ No newline at end of file diff --git a/users/matin.json b/users/matin.json index 224e9a1a..061e0272 100644 --- a/users/matin.json +++ b/users/matin.json @@ -1,3 +1,3 @@ { - "copyright": "Fouad Matin" -} + "copyright": "Fouad Matin" +} \ No newline at end of file diff --git a/users/matsukaz.json b/users/matsukaz.json index fd958b59..b9b3bf63 100644 --- a/users/matsukaz.json +++ b/users/matsukaz.json @@ -1,3 +1,3 @@ { - "copyright": "Masakazu Matsushita" -} + "copyright": "Masakazu Matsushita" +} \ No newline at end of file diff --git a/users/matt-deacalion.json b/users/matt-deacalion.json index e72ace5a..3dfe733a 100644 --- a/users/matt-deacalion.json +++ b/users/matt-deacalion.json @@ -1,5 +1,5 @@ { - "copyright": "Matt Deacalion Stevens", - "url": "http://dirtymonkey.co.uk", - "email": "matt@dirtymonkey.co.uk" -} + "copyright": "Matt Deacalion Stevens", + "url": "http://dirtymonkey.co.uk", + "email": "matt@dirtymonkey.co.uk" +} \ No newline at end of file diff --git a/users/matt.json b/users/matt.json index ad86d56c..0acc3c36 100644 --- a/users/matt.json +++ b/users/matt.json @@ -1,4 +1,4 @@ { - "copyright": "Matthew Vaccaro", - "url": "http://matthewvaccaro.com" -} + "copyright": "Matthew Vaccaro", + "url": "http://matthewvaccaro.com" +} \ No newline at end of file diff --git a/users/mattaimonetti.json b/users/mattaimonetti.json index c9d50709..d3f475ab 100644 --- a/users/mattaimonetti.json +++ b/users/mattaimonetti.json @@ -1,6 +1,6 @@ { - "copyright": "Matt Aimonetti", - "url": "http://matt.aimonetti.net", - "email": "matt.aimonetti@gmail.com", - "format": "txt" -} + "copyright": "Matt Aimonetti", + "url": "http://matt.aimonetti.net", + "email": "matt.aimonetti@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/mattcg.json b/users/mattcg.json index f6b39688..d8b675d5 100644 --- a/users/mattcg.json +++ b/users/mattcg.json @@ -1,5 +1,5 @@ { - "copyright": "Matthew Caruana Galizia, http://m.cg", - "url": "http://m.cg", - "email": "m@m.cg" -} + "copyright": "Matthew Caruana Galizia, http://m.cg", + "url": "http://m.cg", + "email": "m@m.cg" +} \ No newline at end of file diff --git a/users/mattclements.json b/users/mattclements.json index 4b8ef1bf..0d4bab1c 100644 --- a/users/mattclements.json +++ b/users/mattclements.json @@ -1,5 +1,5 @@ { - "copyright": "Matt Clements", - "url": "http://www.mattclements.co.uk/", - "email": "matt@mattclements.co.uk" -} + "copyright": "Matt Clements", + "url": "http://www.mattclements.co.uk/", + "email": "matt@mattclements.co.uk" +} \ No newline at end of file diff --git a/users/mattetti.json b/users/mattetti.json index c9d50709..d3f475ab 100644 --- a/users/mattetti.json +++ b/users/mattetti.json @@ -1,6 +1,6 @@ { - "copyright": "Matt Aimonetti", - "url": "http://matt.aimonetti.net", - "email": "matt.aimonetti@gmail.com", - "format": "txt" -} + "copyright": "Matt Aimonetti", + "url": "http://matt.aimonetti.net", + "email": "matt.aimonetti@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/mattgauf.json b/users/mattgauf.json index 5602c8c1..72441f70 100644 --- a/users/mattgauf.json +++ b/users/mattgauf.json @@ -1,4 +1,4 @@ { - "copyright": "Matt Gauf", - "email": "mattgauf@gmail.com" -} + "copyright": "Matt Gauf", + "email": "mattgauf@gmail.com" +} \ No newline at end of file diff --git a/users/mattgoucher.json b/users/mattgoucher.json index 4ac59e71..8e0edba7 100644 --- a/users/mattgoucher.json +++ b/users/mattgoucher.json @@ -1,6 +1,6 @@ { - "copyright": "Matt Goucher", - "url": "http://mattgoucher.com", - "email": "info@mattgoucher.com", - "format": "txt" -} + "copyright": "Matt Goucher", + "url": "http://mattgoucher.com", + "email": "info@mattgoucher.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/mattgross.json b/users/mattgross.json index 3411632d..65fe2214 100644 --- a/users/mattgross.json +++ b/users/mattgross.json @@ -1,3 +1,3 @@ { - "copyright": "Matthew Gross, http://mattgross.net" -} + "copyright": "Matthew Gross, http://mattgross.net" +} \ No newline at end of file diff --git a/users/matth.json b/users/matth.json index b762be72..9d7e6c63 100644 --- a/users/matth.json +++ b/users/matth.json @@ -1,6 +1,6 @@ { - "copyright": "Matt Harrison", - "url": "http://matth.co", - "email": "matt@matth.co", - "gravatar": true -} + "copyright": "Matt Harrison", + "url": "http://matth.co", + "email": "matt@matth.co", + "gravatar": true +} \ No newline at end of file diff --git a/users/matthew-campbell.json b/users/matthew-campbell.json index 89f29d2a..f9f61fc6 100644 --- a/users/matthew-campbell.json +++ b/users/matthew-campbell.json @@ -1,4 +1,4 @@ { - "copyright": "Matthew Campbell", - "url": "http://www.matthewcampbell.org/" -} + "copyright": "Matthew Campbell", + "url": "http://www.matthewcampbell.org/" +} \ No newline at end of file diff --git a/users/matthew.json b/users/matthew.json index 47832e6c..8f35fd51 100644 --- a/users/matthew.json +++ b/users/matthew.json @@ -1,7 +1,7 @@ { - "copyright": "Matthew Bentley", - "url": "http://mtbentley.us", - "theme": "default", - "gravatar": false, - "email": "matthew.t.bentley@gmail.com" -} + "copyright": "Matthew Bentley", + "url": "http://mtbentley.us", + "theme": "default", + "gravatar": false, + "email": "matthew.t.bentley@gmail.com" +} \ No newline at end of file diff --git a/users/matthewdavies.json b/users/matthewdavies.json index b87a4f44..27ada478 100644 --- a/users/matthewdavies.json +++ b/users/matthewdavies.json @@ -1,7 +1,7 @@ { - "copyright": "Matthew Davies", - "url": "http://daviesgeek.github.io", - "theme": "double-windsor", - "email": "daviesgeek@icloud.com", - "gravatar": true -} + "copyright": "Matthew Davies", + "url": "http://daviesgeek.github.io", + "theme": "double-windsor", + "email": "daviesgeek@icloud.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/matthewmcvickar.json b/users/matthewmcvickar.json index 92145571..f81ea95c 100644 --- a/users/matthewmcvickar.json +++ b/users/matthewmcvickar.json @@ -1,6 +1,6 @@ { - "copyright": "Matthew McVickar", - "url": "http://matthewmcvickar.com", - "email": "matthew@matthewmcvickar.com", - "format": "txt" -} + "copyright": "Matthew McVickar", + "url": "http://matthewmcvickar.com", + "email": "matthew@matthewmcvickar.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/matthieuaussaguel.json b/users/matthieuaussaguel.json index d74a111b..b7e3ac71 100644 --- a/users/matthieuaussaguel.json +++ b/users/matthieuaussaguel.json @@ -1,5 +1,5 @@ { - "copyright": "Matthieu Aussaguel", - "url": "http://mynameismatthieu.com", - "email": "matthieu.aussaaguel@gmail.com" -} + "copyright": "Matthieu Aussaguel", + "url": "http://mynameismatthieu.com", + "email": "matthieu.aussaaguel@gmail.com" +} \ No newline at end of file diff --git a/users/mattn.json b/users/mattn.json index 6e099149..5c3e01da 100644 --- a/users/mattn.json +++ b/users/mattn.json @@ -1,6 +1,6 @@ { - "copyright": "Yasuhiro Matsumoto, http://mattn.kaoriya.net", - "email": "mattn.jp@gmail.com", - "url": "http://mattn.kaoriya.net", - "theme": "orange" -} + "copyright": "Yasuhiro Matsumoto, http://mattn.kaoriya.net", + "email": "mattn.jp@gmail.com", + "url": "http://mattn.kaoriya.net", + "theme": "orange" +} \ No newline at end of file diff --git a/users/mattstevens.json b/users/mattstevens.json index 53efff19..f59ac939 100644 --- a/users/mattstevens.json +++ b/users/mattstevens.json @@ -1,3 +1,3 @@ { - "copyright": "Matt Stevens" -} + "copyright": "Matt Stevens" +} \ No newline at end of file diff --git a/users/mavidser.json b/users/mavidser.json index b598b2b4..d5b06fd7 100644 --- a/users/mavidser.json +++ b/users/mavidser.json @@ -1,6 +1,6 @@ { - "copyright": "Siddhartha Verma", - "url": "http://sidverma.net", - "email": "sid@sidverma.net", - "theme": "double-windsor" -} + "copyright": "Siddhartha Verma", + "url": "http://sidverma.net", + "email": "sid@sidverma.net", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/max.json b/users/max.json index 6de0406d..3d55e1f9 100644 --- a/users/max.json +++ b/users/max.json @@ -1,3 +1,3 @@ { - "copyright": "Max Hauser" -} + "copyright": "Max Hauser" +} \ No newline at end of file diff --git a/users/maximz.json b/users/maximz.json index 1e071297..02fd1ac8 100644 --- a/users/maximz.json +++ b/users/maximz.json @@ -1,5 +1,5 @@ { - "copyright": "Maxim Zaslavsky, http://maximzaslavsky.com", - "url": "http://maximzaslavsky.com", - "email": "maxim@maximzaslavsky.com" -} + "copyright": "Maxim Zaslavsky, http://maximzaslavsky.com", + "url": "http://maximzaslavsky.com", + "email": "maxim@maximzaslavsky.com" +} \ No newline at end of file diff --git a/users/maxmanders.json b/users/maxmanders.json index 289bec50..05967f4d 100644 --- a/users/maxmanders.json +++ b/users/maxmanders.json @@ -1,3 +1,3 @@ { - "copyright": "Max Manders" -} + "copyright": "Max Manders" +} \ No newline at end of file diff --git a/users/maxroecker.json b/users/maxroecker.json index c02ea1c3..7f35df1e 100644 --- a/users/maxroecker.json +++ b/users/maxroecker.json @@ -1,5 +1,5 @@ { - "copyright": "Max Naegeler Roecker", - "url": "http://maxroecker.github.io/", - "theme": "material-pink" -} + "copyright": "Max Naegeler Roecker", + "url": "http://maxroecker.github.io/", + "theme": "material-pink" +} \ No newline at end of file diff --git a/users/maxwell.json b/users/maxwell.json index 2967d240..4b5e8f3a 100644 --- a/users/maxwell.json +++ b/users/maxwell.json @@ -1,3 +1,3 @@ { - "copyright": "Max Bernstein" -} + "copyright": "Max Bernstein" +} \ No newline at end of file diff --git a/users/maxx.json b/users/maxx.json index 94553093..2718a070 100644 --- a/users/maxx.json +++ b/users/maxx.json @@ -1,6 +1,6 @@ { - "copyright": "Remy Sharp", - "url": "http://remysharp.com", - "email": "me@mysite.com", - "format": "txt" -} + "copyright": "Remy Sharp", + "url": "http://remysharp.com", + "email": "me@mysite.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/mayankjha.json b/users/mayankjha.json index 02640a19..4c88a255 100644 --- a/users/mayankjha.json +++ b/users/mayankjha.json @@ -1,6 +1,6 @@ { - "copyright": "Mayank Jha, https://mayankjha.herokuapp.com", - "url": "https://mayankjha.herokuapp.com", - "email": "mayankjha7722@gmail.com", - "theme": "8bits-monochrome-blue-white" -} + "copyright": "Mayank Jha, https://mayankjha.herokuapp.com", + "url": "https://mayankjha.herokuapp.com", + "email": "mayankjha7722@gmail.com", + "theme": "8bits-monochrome-blue-white" +} \ No newline at end of file diff --git a/users/mb.json b/users/mb.json index 112f5b55..0518375e 100644 --- a/users/mb.json +++ b/users/mb.json @@ -1,3 +1,3 @@ { - "copyright": "Matthew Bischoff" -} + "copyright": "Matthew Bischoff" +} \ No newline at end of file diff --git a/users/mbasanta.json b/users/mbasanta.json index 9815c084..1cbffcb8 100644 --- a/users/mbasanta.json +++ b/users/mbasanta.json @@ -1,5 +1,5 @@ { - "copyright": "Matthew Basanta", - "url": "http://matthewbasanta.com", - "theme": "eula-modern" -} + "copyright": "Matthew Basanta", + "url": "http://matthewbasanta.com", + "theme": "eula-modern" +} \ No newline at end of file diff --git a/users/mbilbillee.json b/users/mbilbillee.json index 5604df91..4a655329 100644 --- a/users/mbilbillee.json +++ b/users/mbilbillee.json @@ -1,3 +1,3 @@ { - "copyright": "Matthieu Bilbille" -} + "copyright": "Matthieu Bilbille" +} \ No newline at end of file diff --git a/users/mbo.json b/users/mbo.json index ccf45c03..d4013054 100644 --- a/users/mbo.json +++ b/users/mbo.json @@ -1,3 +1,3 @@ { - "copyright": "Marko Bonaci" -} + "copyright": "Marko Bonaci" +} \ No newline at end of file diff --git a/users/mbs.json b/users/mbs.json index e3cb46a1..aa9404b7 100644 --- a/users/mbs.json +++ b/users/mbs.json @@ -1,3 +1,3 @@ { - "copyright": "Matthew Sperry" -} + "copyright": "Matthew Sperry" +} \ No newline at end of file diff --git a/users/mc2.json b/users/mc2.json index 17e526de..22cf4ac2 100644 --- a/users/mc2.json +++ b/users/mc2.json @@ -1,6 +1,6 @@ { - "copyright": "MC2", - "url": "http://mc2.com.tr", - "email": "contact@mc2.com.tr", - "gravatar": true -} + "copyright": "MC2", + "url": "http://mc2.com.tr", + "email": "contact@mc2.com.tr", + "gravatar": true +} \ No newline at end of file diff --git a/users/mckamey.json b/users/mckamey.json index e1b0cc31..d849d651 100644 --- a/users/mckamey.json +++ b/users/mckamey.json @@ -1,3 +1,3 @@ { - "copyright": "Stephen M. McKamey" -} + "copyright": "Stephen M. McKamey" +} \ No newline at end of file diff --git a/users/mckay.json b/users/mckay.json index 16761538..f8934139 100644 --- a/users/mckay.json +++ b/users/mckay.json @@ -1,5 +1,5 @@ { - "copyright": "McKay Software", - "url": "http://mckay.co.nz", - "theme": "double-windsor" -} + "copyright": "McKay Software", + "url": "http://mckay.co.nz", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/mckelvaney.json b/users/mckelvaney.json index ff1fc11a..3e597cd7 100644 --- a/users/mckelvaney.json +++ b/users/mckelvaney.json @@ -1,5 +1,5 @@ { - "copyright": "Michael McKelvaney", - "url": "http://mckelvaney.co.uk", - "format": "txt" -} + "copyright": "Michael McKelvaney", + "url": "http://mckelvaney.co.uk", + "format": "txt" +} \ No newline at end of file diff --git a/users/mckomo.json b/users/mckomo.json index bfd683d5..5d3d75a6 100644 --- a/users/mckomo.json +++ b/users/mckomo.json @@ -1,6 +1,6 @@ { - "copyright": "Maciej Komorowski", - "url": "http://komorowski.info", - "email": "mckomo@gmail.com", - "format": "txt" -} + "copyright": "Maciej Komorowski", + "url": "http://komorowski.info", + "email": "mckomo@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/mdag.json b/users/mdag.json index 27315a5e..24020df5 100644 --- a/users/mdag.json +++ b/users/mdag.json @@ -1,8 +1,8 @@ { - "copyright": "MDAG Consultancy, http://mdag.my", - "url": "http://mdag.my", - "email": "info+mitlicense@mdag.my", - "format": "html", - "theme": "double-windsor", - "version": "a526bf7ad1" -} + "copyright": "MDAG Consultancy, http://mdag.my", + "url": "http://mdag.my", + "email": "info+mitlicense@mdag.my", + "format": "html", + "theme": "double-windsor", + "version": "a526bf7ad1" +} \ No newline at end of file diff --git a/users/mdd.json b/users/mdd.json index 290025d5..1fb97cc9 100644 --- a/users/mdd.json +++ b/users/mdd.json @@ -1,3 +1,3 @@ { - "copyright": "Moreno Di Domenico" -} + "copyright": "Moreno Di Domenico" +} \ No newline at end of file diff --git a/users/mdhheydari.json b/users/mdhheydari.json index 08f82a2f..9c3b7ebc 100644 --- a/users/mdhheydari.json +++ b/users/mdhheydari.json @@ -1,7 +1,7 @@ { - "copyright": "Mohammad Heydari", - "url": "http://mohammadheydari.me", - "email": "mdh.heydari@gmail.com", - "theme": "friendly", - "gravatar": true -} + "copyright": "Mohammad Heydari", + "url": "http://mohammadheydari.me", + "email": "mdh.heydari@gmail.com", + "theme": "friendly", + "gravatar": true +} \ No newline at end of file diff --git a/users/mdibaiee.json b/users/mdibaiee.json index 1453a573..3d86b494 100644 --- a/users/mdibaiee.json +++ b/users/mdibaiee.json @@ -1,6 +1,6 @@ { - "copyright": "Mahdi Dibaiee, http://dibaiee.ir", - "url": "http://dibaiee.ir", - "email": "mdibaiee@aol.com", - "gravatar": true -} + "copyright": "Mahdi Dibaiee, http://dibaiee.ir", + "url": "http://dibaiee.ir", + "email": "mdibaiee@aol.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/mdt.json b/users/mdt.json index 42bb4bc9..0d6941be 100644 --- a/users/mdt.json +++ b/users/mdt.json @@ -1,7 +1,7 @@ { - "copyright": "Marco Del Tongo, http://marcodeltongo.com", - "url": "http://marcodeltongo.com", - "email": "oss@marcodeltongo.com", - "theme": "dusk", - "gravatar": true -} + "copyright": "Marco Del Tongo, http://marcodeltongo.com", + "url": "http://marcodeltongo.com", + "email": "oss@marcodeltongo.com", + "theme": "dusk", + "gravatar": true +} \ No newline at end of file diff --git a/users/meetparikh7.json b/users/meetparikh7.json index ad7067df..c515eb1b 100644 --- a/users/meetparikh7.json +++ b/users/meetparikh7.json @@ -1,5 +1,5 @@ { - "copyright": "Meet Parikh", - "url": "https://meetparikh7.github.io", - "email": "meetparikh7@gmail.com" -} + "copyright": "Meet Parikh", + "url": "https://meetparikh7.github.io", + "email": "meetparikh7@gmail.com" +} \ No newline at end of file diff --git a/users/meghprkh.json b/users/meghprkh.json index b3c1ff39..0126e686 100644 --- a/users/meghprkh.json +++ b/users/meghprkh.json @@ -1,5 +1,5 @@ { - "copyright": "Megh Parikh", - "url": "https://meghprkh.github.io", - "email": "meghprkh@gmail.com" -} + "copyright": "Megh Parikh", + "url": "https://meghprkh.github.io", + "email": "meghprkh@gmail.com" +} \ No newline at end of file diff --git a/users/memega.json b/users/memega.json index 22b501ef..80dc3058 100644 --- a/users/memega.json +++ b/users/memega.json @@ -1,3 +1,3 @@ { - "copyright": "Yuriy Panfyorov" -} + "copyright": "Yuriy Panfyorov" +} \ No newline at end of file diff --git a/users/memph1s.json b/users/memph1s.json index a7caf00f..2c50355a 100644 --- a/users/memph1s.json +++ b/users/memph1s.json @@ -1,6 +1,6 @@ { - "copyright": "Vadim Golub", - "url": "http://vadimgolub.com", - "email": "vdm.golub@gmail.com", - "format": "txt" -} + "copyright": "Vadim Golub", + "url": "http://vadimgolub.com", + "email": "vdm.golub@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/mestes.json b/users/mestes.json index 6a13f61a..04c98d58 100644 --- a/users/mestes.json +++ b/users/mestes.json @@ -1,7 +1,7 @@ { - "copyright": "Morgan Estes, http://morganestes.me", - "url": "http://morganestes.me", - "email": "me@morganestes.me", - "gravatar": true, - "theme": "opensans" -} + "copyright": "Morgan Estes, http://morganestes.me", + "url": "http://morganestes.me", + "email": "me@morganestes.me", + "gravatar": true, + "theme": "opensans" +} \ No newline at end of file diff --git a/users/mestrada.json b/users/mestrada.json index 39a7921b..87a804d1 100644 --- a/users/mestrada.json +++ b/users/mestrada.json @@ -1,6 +1,6 @@ { - "copyright": "Miguel Estrada", - "url": "https://miguelestrada.dev", - "email": "mae829@gmail.com", - "theme": "material-light-blue" -} + "copyright": "Miguel Estrada", + "url": "https://miguelestrada.dev", + "email": "mae829@gmail.com", + "theme": "material-light-blue" +} \ No newline at end of file diff --git a/users/mf.json b/users/mf.json index 3916852e..3e4f346a 100644 --- a/users/mf.json +++ b/users/mf.json @@ -1,8 +1,8 @@ { - "copyright": "Mihail Fedorov (Kolo)", - "url": "https://fedorov.net", - "email": "mit-license@fedorov.net", - "gravatar": true, - "format": "html", - "theme": "double-windsor" -} + "copyright": "Mihail Fedorov (Kolo)", + "url": "https://fedorov.net", + "email": "mit-license@fedorov.net", + "gravatar": true, + "format": "html", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/mfah.json b/users/mfah.json index 0e18822f..94b95c29 100644 --- a/users/mfah.json +++ b/users/mfah.json @@ -1,6 +1,6 @@ { - "copyright": "The Museum of Fine Arts, Houston", - "url": "https://www.mfah.org", - "email": "cpratt@mfah.org", - "theme": "material-blue" -} + "copyright": "The Museum of Fine Arts, Houston", + "url": "https://www.mfah.org", + "email": "cpratt@mfah.org", + "theme": "material-blue" +} \ No newline at end of file diff --git a/users/mfmer.json b/users/mfmer.json index e642f15a..eb4c2def 100644 --- a/users/mfmer.json +++ b/users/mfmer.json @@ -1,3 +1,3 @@ { - "copyright": "Mayo Foundation for Medical Education and Research" -} + "copyright": "Mayo Foundation for Medical Education and Research" +} \ No newline at end of file diff --git a/users/mgonto.json b/users/mgonto.json index 2954313e..12306d77 100644 --- a/users/mgonto.json +++ b/users/mgonto.json @@ -1,4 +1,4 @@ { - "copyright": "Martin Gontovnikas", - "url": "http://gon.to" -} + "copyright": "Martin Gontovnikas", + "url": "http://gon.to" +} \ No newline at end of file diff --git a/users/mhaidarh.json b/users/mhaidarh.json index 7ae46b91..018e6f5b 100644 --- a/users/mhaidarh.json +++ b/users/mhaidarh.json @@ -1,7 +1,7 @@ { - "copyright": "M Haidar Hanif, http://mhaidarhanif.com", - "url": "http://mhaidarhanif.com", - "email": "email@mhaidarhanif.com", - "theme": "material-cyan", - "gravatar": true -} + "copyright": "M Haidar Hanif, http://mhaidarhanif.com", + "url": "http://mhaidarhanif.com", + "email": "email@mhaidarhanif.com", + "theme": "material-cyan", + "gravatar": true +} \ No newline at end of file diff --git a/users/mheap.json b/users/mheap.json index 8b1197f2..f768b3c9 100644 --- a/users/mheap.json +++ b/users/mheap.json @@ -1,5 +1,5 @@ { - "copyright": "Michael Heap, http://michaelheap.com", - "url": "http://michaelheap.com", - "theme": "default" -} + "copyright": "Michael Heap, http://michaelheap.com", + "url": "http://michaelheap.com", + "theme": "default" +} \ No newline at end of file diff --git a/users/mhenry.json b/users/mhenry.json index ad249334..89c1be4a 100644 --- a/users/mhenry.json +++ b/users/mhenry.json @@ -1,5 +1,5 @@ { - "copyright": "Michael Henry", - "email": "mhenry@drexel.edu", - "theme": "double-windsor" -} + "copyright": "Michael Henry", + "email": "mhenry@drexel.edu", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/mhm5000.json b/users/mhm5000.json index 5a222e55..0191f210 100644 --- a/users/mhm5000.json +++ b/users/mhm5000.json @@ -1,8 +1,8 @@ { - "copyright": "Mohammad Hossein Mojtahedi", - "url": "https://mojtahedi.com/", - "email": "mhm5000@gmail.com", - "format": "html", - "gravatar": true, - "theme": "material-teal" -} + "copyright": "Mohammad Hossein Mojtahedi", + "url": "https://mojtahedi.com/", + "email": "mhm5000@gmail.com", + "format": "html", + "gravatar": true, + "theme": "material-teal" +} \ No newline at end of file diff --git a/users/mhweiner.json b/users/mhweiner.json index 4b76f4bb..c68605b2 100644 --- a/users/mhweiner.json +++ b/users/mhweiner.json @@ -1,6 +1,6 @@ { - "copyright": "Marc H. Weiner", - "url": "http://www.wizardlogic.com", - "email": "mhweiner234@gmail.com", - "format": "txt" -} + "copyright": "Marc H. Weiner", + "url": "http://www.wizardlogic.com", + "email": "mhweiner234@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/mi-roh.json b/users/mi-roh.json index a67c82af..56bf93d3 100644 --- a/users/mi-roh.json +++ b/users/mi-roh.json @@ -1,4 +1,4 @@ { - "copyright": "Micha Rohde", - "url": "http://mi-roh.de" -} + "copyright": "Micha Rohde", + "url": "http://mi-roh.de" +} \ No newline at end of file diff --git a/users/micaelbergeron.json b/users/micaelbergeron.json index cf6f8aae..18d0dd8c 100644 --- a/users/micaelbergeron.json +++ b/users/micaelbergeron.json @@ -1,3 +1,3 @@ { - "copyright": "Mica\u00ebl Bergeron" -} + "copyright": "Micaël Bergeron" +} \ No newline at end of file diff --git a/users/micalevisk.json b/users/micalevisk.json index eb56a9e2..09a89aac 100644 --- a/users/micalevisk.json +++ b/users/micalevisk.json @@ -1,8 +1,8 @@ { - "copyright": "Micael Levi L. C.", - "url": "https://micalevisk.github.io", - "email": "mllc@icomp.ufam.edu.br", - "gravatar": true, - "theme": "dusk", - "format": "html" -} + "copyright": "Micael Levi L. C.", + "url": "https://micalevisk.github.io", + "email": "mllc@icomp.ufam.edu.br", + "gravatar": true, + "theme": "dusk", + "format": "html" +} \ No newline at end of file diff --git a/users/michael.json b/users/michael.json index 177bdefd..2cb82fa1 100644 --- a/users/michael.json +++ b/users/michael.json @@ -1,3 +1,3 @@ { - "copyright": "Michael Siddi" -} + "copyright": "Michael Siddi" +} \ No newline at end of file diff --git a/users/michaeldanilov.json b/users/michaeldanilov.json index 0cb9005f..edad0ec9 100644 --- a/users/michaeldanilov.json +++ b/users/michaeldanilov.json @@ -1,6 +1,6 @@ { - "copyright": "Michael Danilov", - "url": "https://danilov.me", - "email": "michael@danilov.me", - "format": "txt" -} + "copyright": "Michael Danilov", + "url": "https://danilov.me", + "email": "michael@danilov.me", + "format": "txt" +} \ No newline at end of file diff --git a/users/michaelhsu.json b/users/michaelhsu.json index d2600ed7..521f537e 100644 --- a/users/michaelhsu.json +++ b/users/michaelhsu.json @@ -1,7 +1,7 @@ { - "copyright": "Michael Hsu, http://michaelhsu.tw", - "url": "http://michaelhsu.tw", - "email": "evenchange4@gmail.com", - "theme": "material-indigo", - "gravatar": true -} + "copyright": "Michael Hsu, http://michaelhsu.tw", + "url": "http://michaelhsu.tw", + "email": "evenchange4@gmail.com", + "theme": "material-indigo", + "gravatar": true +} \ No newline at end of file diff --git a/users/michaelhsutw.json b/users/michaelhsutw.json index 9a76f2a6..08e60e34 100644 --- a/users/michaelhsutw.json +++ b/users/michaelhsutw.json @@ -1,7 +1,7 @@ { - "copyright": "Michael Hsu, http://michaelhsu.tw", - "url": "http://michaelhsu.tw", - "email": "evenchange4@gmail.com", - "theme": "default", - "gravatar": true -} + "copyright": "Michael Hsu, http://michaelhsu.tw", + "url": "http://michaelhsu.tw", + "email": "evenchange4@gmail.com", + "theme": "default", + "gravatar": true +} \ No newline at end of file diff --git a/users/michaelobi.json b/users/michaelobi.json index 6bccea9a..2e4e88c3 100644 --- a/users/michaelobi.json +++ b/users/michaelobi.json @@ -1,3 +1,3 @@ { - "copyright": "Michael Obi" -} + "copyright": "Michael Obi" +} \ No newline at end of file diff --git a/users/michaelstanden.json b/users/michaelstanden.json index ffd77891..cf77c14b 100644 --- a/users/michaelstanden.json +++ b/users/michaelstanden.json @@ -1,7 +1,7 @@ { - "copyright": "Michael Standen, https://michael.standen.link", - "url": "https://michael.standen.link", - "email": "michael@standen.link", - "theme": "material-pink", - "gravatar": false -} + "copyright": "Michael Standen, https://michael.standen.link", + "url": "https://michael.standen.link", + "email": "michael@standen.link", + "theme": "material-pink", + "gravatar": false +} \ No newline at end of file diff --git a/users/michaeltaranto.json b/users/michaeltaranto.json index e4509601..ff593aae 100644 --- a/users/michaeltaranto.json +++ b/users/michaeltaranto.json @@ -1,5 +1,5 @@ { - "copyright": "Michael Taranto", - "url": "https://github.com/michaeltaranto", - "theme": "material-cyan" -} + "copyright": "Michael Taranto", + "url": "https://github.com/michaeltaranto", + "theme": "material-cyan" +} \ No newline at end of file diff --git a/users/micromvc.json b/users/micromvc.json index e21f5414..90d8e1a1 100644 --- a/users/micromvc.json +++ b/users/micromvc.json @@ -1,3 +1,3 @@ { - "copyright": "David Pennington" -} + "copyright": "David Pennington" +} \ No newline at end of file diff --git a/users/microsoft.json b/users/microsoft.json index 017d202d..4d63a116 100644 --- a/users/microsoft.json +++ b/users/microsoft.json @@ -1,4 +1,4 @@ { - "copyright": "Microsoft", - "url": "http://microsoft.com" -} + "copyright": "Microsoft", + "url": "http://microsoft.com" +} \ No newline at end of file diff --git a/users/micxer.json b/users/micxer.json index ea00ec42..1a98f34d 100644 --- a/users/micxer.json +++ b/users/micxer.json @@ -1,7 +1,7 @@ { - "copyright": "micxer, http://micxer.de/blog", - "url": "http://micxer.de/blog", - "email": "micxer@micxer.de", - "format": "html", - "theme": "material-light-blue" -} + "copyright": "micxer, http://micxer.de/blog", + "url": "http://micxer.de/blog", + "email": "micxer@micxer.de", + "format": "html", + "theme": "material-light-blue" +} \ No newline at end of file diff --git a/users/midupuis.json b/users/midupuis.json index 1e3415a0..9a329c1c 100644 --- a/users/midupuis.json +++ b/users/midupuis.json @@ -1,5 +1,5 @@ { - "copyright": "Michael Dupuis", - "email": "midupuis@zigabittech.com", - "format": "txt" -} + "copyright": "Michael Dupuis", + "email": "midupuis@zigabittech.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/mignev.json b/users/mignev.json index 09936b80..a55a9748 100644 --- a/users/mignev.json +++ b/users/mignev.json @@ -1,6 +1,6 @@ { - "copyright": "Marian Ignev", - "url": "http://m.ignev.net", - "email": "m.ignev@gmail.com", - "gravatar": true -} + "copyright": "Marian Ignev", + "url": "http://m.ignev.net", + "email": "m.ignev@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/miguelfrde.json b/users/miguelfrde.json index 91d1d9dd..af9820c2 100644 --- a/users/miguelfrde.json +++ b/users/miguelfrde.json @@ -1,6 +1,6 @@ { - "copyright": "Miguel Flores Ruiz de Eguino", - "url": "http://miguelfrde.com", - "email": "miguel.frde@gmail.com", - "format": "txt" -} + "copyright": "Miguel Flores Ruiz de Eguino", + "url": "http://miguelfrde.com", + "email": "miguel.frde@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/miguelmota.json b/users/miguelmota.json index 13166ced..e66cc7e9 100644 --- a/users/miguelmota.json +++ b/users/miguelmota.json @@ -1,6 +1,6 @@ { - "copyright": "Miguel Mota, https://miguelmota.com/", - "url": "https://miguelmota.com/", - "email": "hello@miguelmota.com", - "format": "txt" -} + "copyright": "Miguel Mota, https://miguelmota.com/", + "url": "https://miguelmota.com/", + "email": "hello@miguelmota.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/mikael.json b/users/mikael.json index 143e66be..0f93050e 100644 --- a/users/mikael.json +++ b/users/mikael.json @@ -1,3 +1,3 @@ { - "copyright": "Mikael Karon" -} + "copyright": "Mikael Karon" +} \ No newline at end of file diff --git a/users/mikaeljorhult.json b/users/mikaeljorhult.json index e6657195..c66ce03e 100644 --- a/users/mikaeljorhult.json +++ b/users/mikaeljorhult.json @@ -1,4 +1,4 @@ { - "copyright": "Mikael Jorhult, http://jorhult.se", - "url": "http://jorhult.se" -} + "copyright": "Mikael Jorhult, http://jorhult.se", + "url": "http://jorhult.se" +} \ No newline at end of file diff --git a/users/mike.json b/users/mike.json index 700b3736..fa03f181 100644 --- a/users/mike.json +++ b/users/mike.json @@ -1,3 +1,3 @@ { - "copyright": "Remy Sharp" -} + "copyright": "Remy Sharp" +} \ No newline at end of file diff --git a/users/mike2duo.json b/users/mike2duo.json index 177bdefd..2cb82fa1 100644 --- a/users/mike2duo.json +++ b/users/mike2duo.json @@ -1,3 +1,3 @@ { - "copyright": "Michael Siddi" -} + "copyright": "Michael Siddi" +} \ No newline at end of file diff --git a/users/mikeanthony.json b/users/mikeanthony.json index e6dbf739..efd02207 100644 --- a/users/mikeanthony.json +++ b/users/mikeanthony.json @@ -1,4 +1,4 @@ { - "copyright": "Mike Anthony", - "theme": "plaintext" -} + "copyright": "Mike Anthony", + "theme": "plaintext" +} \ No newline at end of file diff --git a/users/mikejolley.json b/users/mikejolley.json index 6966038d..1d68eb76 100644 --- a/users/mikejolley.json +++ b/users/mikejolley.json @@ -1,5 +1,5 @@ { - "copyright": "Mike Jolley", - "url": "https://github.com/mikejolley", - "theme": "double-windsor" -} + "copyright": "Mike Jolley", + "url": "https://github.com/mikejolley", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/mikejolly.json b/users/mikejolly.json index 9c9a3074..63c199ee 100644 --- a/users/mikejolly.json +++ b/users/mikejolly.json @@ -1,5 +1,5 @@ { - "copyright": "Mike Jolly", - "url": "https://github.com/mikejolly", - "theme": "double-windsor" -} + "copyright": "Mike Jolly", + "url": "https://github.com/mikejolly", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/mikelyons.json b/users/mikelyons.json index 84b9a4e2..3dd78d19 100644 --- a/users/mikelyons.json +++ b/users/mikelyons.json @@ -1,3 +1,3 @@ { - "copyright": "Mike Lyons" -} + "copyright": "Mike Lyons" +} \ No newline at end of file diff --git a/users/mikl.json b/users/mikl.json index a48adbe4..3b8adf12 100644 --- a/users/mikl.json +++ b/users/mikl.json @@ -1,4 +1,4 @@ { - "copyright": "Daniel Knell, http://danielknell.co.uk", - "url": "http://danielknell.co.uk" -} + "copyright": "Daniel Knell, http://danielknell.co.uk", + "url": "http://danielknell.co.uk" +} \ No newline at end of file diff --git a/users/mikuiro.json b/users/mikuiro.json index cb3c84d2..4e5fa284 100644 --- a/users/mikuiro.json +++ b/users/mikuiro.json @@ -1,5 +1,5 @@ { - "copyright": "Mikuiro", - "url": "https://mikuiro.com", - "theme": "material-pink" -} + "copyright": "Mikuiro", + "url": "https://mikuiro.com", + "theme": "material-pink" +} \ No newline at end of file diff --git a/users/milosgavrilovic.json b/users/milosgavrilovic.json index d4715a58..61d78853 100644 --- a/users/milosgavrilovic.json +++ b/users/milosgavrilovic.json @@ -1,6 +1,6 @@ { - "copyright": "Milo\u0161 Gavrilovi\u0107", - "url": "http://milos.gavrilovic.rs/", - "email": "milos@gavrilovic.rs", - "format": "txt" -} + "copyright": "Miloš Gavrilović", + "url": "http://milos.gavrilovic.rs/", + "email": "milos@gavrilovic.rs", + "format": "txt" +} \ No newline at end of file diff --git a/users/minhee.json b/users/minhee.json index 0c7d5a87..5e51a187 100644 --- a/users/minhee.json +++ b/users/minhee.json @@ -1,5 +1,5 @@ { - "copyright": "Hong Minhee, http://hongminhee.org/", - "url": "http://hongminhee.org/", - "email": "hongminhee@member.fsf.org" -} + "copyright": "Hong Minhee, http://hongminhee.org/", + "url": "http://hongminhee.org/", + "email": "hongminhee@member.fsf.org" +} \ No newline at end of file diff --git a/users/minidfx.json b/users/minidfx.json index bbaf552c..96482ddd 100644 --- a/users/minidfx.json +++ b/users/minidfx.json @@ -1,8 +1,8 @@ { - "copyright": "MiniDfx, https://github.com/minidfx", - "url": "http://blog.couloir42.ch", - "format": "txt", - "email": "minidfx@gmail.com", - "gravatar": true, - "theme": "default" -} + "copyright": "MiniDfx, https://github.com/minidfx", + "url": "http://blog.couloir42.ch", + "format": "txt", + "email": "minidfx@gmail.com", + "gravatar": true, + "theme": "default" +} \ No newline at end of file diff --git a/users/miro.json b/users/miro.json index f75f0c56..03811666 100644 --- a/users/miro.json +++ b/users/miro.json @@ -1,7 +1,7 @@ { - "copyright": "Miroslav Hibler, http://miro.hibler.me", - "url": "http://miro.hibler.me", - "email": "miro@hibler.me", - "theme": "flesch", - "gravatar": true -} + "copyright": "Miroslav Hibler, http://miro.hibler.me", + "url": "http://miro.hibler.me", + "email": "miro@hibler.me", + "theme": "flesch", + "gravatar": true +} \ No newline at end of file diff --git a/users/mirrajabi.json b/users/mirrajabi.json index 329b78ee..b0bc17a1 100644 --- a/users/mirrajabi.json +++ b/users/mirrajabi.json @@ -1,5 +1,5 @@ { - "copyright": "Mohammad Mirrajabi, http://mirrajabi.ir", - "url": "http://mirrajabi.ir", - "theme": "default" -} + "copyright": "Mohammad Mirrajabi, http://mirrajabi.ir", + "url": "http://mirrajabi.ir", + "theme": "default" +} \ No newline at end of file diff --git a/users/mislav.json b/users/mislav.json index bee7468f..009b02fb 100644 --- a/users/mislav.json +++ b/users/mislav.json @@ -1,3 +1,3 @@ { - "copyright": "Mislav Marohni\u0107" -} + "copyright": "Mislav Marohnić" +} \ No newline at end of file diff --git a/users/miszo.json b/users/miszo.json index 31787184..4e2dc700 100644 --- a/users/miszo.json +++ b/users/miszo.json @@ -1,4 +1,4 @@ { - "copyright": "Miszo Radomski", - "url": "https://github.com/miszo" -} + "copyright": "Miszo Radomski", + "url": "https://github.com/miszo" +} \ No newline at end of file diff --git a/users/mizzy.json b/users/mizzy.json index 9485e1f4..cdde2af2 100644 --- a/users/mizzy.json +++ b/users/mizzy.json @@ -1,3 +1,3 @@ { - "copyright": "Gosuke Miyashita, http://mizzy.org/" -} + "copyright": "Gosuke Miyashita, http://mizzy.org/" +} \ No newline at end of file diff --git a/users/mjf.json b/users/mjf.json index a975eb9b..b1c32df1 100644 --- a/users/mjf.json +++ b/users/mjf.json @@ -1,3 +1,3 @@ { - "copyright": "Matthew F" -} + "copyright": "Matthew F" +} \ No newline at end of file diff --git a/users/mk.json b/users/mk.json index c63870bf..620da86b 100644 --- a/users/mk.json +++ b/users/mk.json @@ -1,4 +1,4 @@ { - "copyright": "Max Kueng, http://maxkueng.com/", - "url": "http://maxkueng.com/" -} + "copyright": "Max Kueng, http://maxkueng.com/", + "url": "http://maxkueng.com/" +} \ No newline at end of file diff --git a/users/mk23.json b/users/mk23.json index de7c26d7..b900524f 100644 --- a/users/mk23.json +++ b/users/mk23.json @@ -1,5 +1,5 @@ { - "copyright": "Max Kalika", - "url": "https://github.com/mk23", - "email": "max.kalika+projects@gmail.com" -} + "copyright": "Max Kalika", + "url": "https://github.com/mk23", + "email": "max.kalika+projects@gmail.com" +} \ No newline at end of file diff --git a/users/mkhl.json b/users/mkhl.json index 3c1af771..5bef47d7 100644 --- a/users/mkhl.json +++ b/users/mkhl.json @@ -1,5 +1,5 @@ { - "copyright": "Martin K\u00c3\u00bchl", - "url": "https://purl.org/net/mkhl", - "theme": "plaintext" -} + "copyright": "Martin Kühl", + "url": "https://purl.org/net/mkhl", + "theme": "plaintext" +} \ No newline at end of file diff --git a/users/mlxy.json b/users/mlxy.json index dd34ae87..d6b35296 100644 --- a/users/mlxy.json +++ b/users/mlxy.json @@ -1,7 +1,7 @@ { - "copyright": "Habana Chihane, https://mlxy.github.io", - "url": "https://mlxy.github.io", - "format": "html", - "email": "chihane@yeah.net", - "theme": "opensans" -} + "copyright": "Habana Chihane, https://mlxy.github.io", + "url": "https://mlxy.github.io", + "format": "html", + "email": "chihane@yeah.net", + "theme": "opensans" +} \ No newline at end of file diff --git a/users/mm.json b/users/mm.json index 3429762e..975f7b05 100644 --- a/users/mm.json +++ b/users/mm.json @@ -1,3 +1,3 @@ { - "copyright": "Masanori Matsumoto" -} + "copyright": "Masanori Matsumoto" +} \ No newline at end of file diff --git a/users/mnicnc404.json b/users/mnicnc404.json index 4bdd76c0..a1715560 100644 --- a/users/mnicnc404.json +++ b/users/mnicnc404.json @@ -1,3 +1,3 @@ { - "copyright": "Ching-Ning Chen" -} + "copyright": "Ching-Ning Chen" +} \ No newline at end of file diff --git a/users/moacirosa.json b/users/moacirosa.json index ac0b22a8..772b893e 100644 --- a/users/moacirosa.json +++ b/users/moacirosa.json @@ -1,8 +1,8 @@ { - "copyright": "Moacir Rosa", - "url": "http://moacir.me", - "email": "paulomoacir.junior@gmail.com", - "format": "html", - "gravatar": true, - "theme": "double-windsor" -} + "copyright": "Moacir Rosa", + "url": "http://moacir.me", + "email": "paulomoacir.junior@gmail.com", + "format": "html", + "gravatar": true, + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/mohan.json b/users/mohan.json index 62e194c5..8dd3053b 100644 --- a/users/mohan.json +++ b/users/mohan.json @@ -1,3 +1,3 @@ { - "copyright": "Mohan G" -} + "copyright": "Mohan G" +} \ No newline at end of file diff --git a/users/mohayonao.json b/users/mohayonao.json index 0c417d45..9b3152bd 100644 --- a/users/mohayonao.json +++ b/users/mohayonao.json @@ -1,4 +1,4 @@ { - "copyright": "Nao Yonamine", - "url": "https://github.com/mohayonao" -} + "copyright": "Nao Yonamine", + "url": "https://github.com/mohayonao" +} \ No newline at end of file diff --git a/users/mohebifar.json b/users/mohebifar.json index 17f15cfb..f8a2fb93 100644 --- a/users/mohebifar.json +++ b/users/mohebifar.json @@ -1,7 +1,7 @@ { - "copyright": "Mohamad Mohebifar,http://mohebifar.ir", - "url": "http://mohebifar.ir", - "email": "netfars@gmail.com", - "gravatar": true, - "theme": "flesch" -} + "copyright": "Mohamad Mohebifar,http://mohebifar.ir", + "url": "http://mohebifar.ir", + "email": "netfars@gmail.com", + "gravatar": true, + "theme": "flesch" +} \ No newline at end of file diff --git a/users/mohnish.json b/users/mohnish.json index 5ae20337..b8418674 100644 --- a/users/mohnish.json +++ b/users/mohnish.json @@ -1,3 +1,3 @@ { - "copyright": "Mohnish Thallavajhula" -} + "copyright": "Mohnish Thallavajhula" +} \ No newline at end of file diff --git a/users/mohsend.json b/users/mohsend.json index c7ef525b..f7941982 100644 --- a/users/mohsend.json +++ b/users/mohsend.json @@ -1,6 +1,6 @@ { - "copyright": "Mohsen Dastjerdi Zade", - "url": "http://dstjrd.ir", - "email": "mail@dstjrd.ir", - "format": "txt" -} + "copyright": "Mohsen Dastjerdi Zade", + "url": "http://dstjrd.ir", + "email": "mail@dstjrd.ir", + "format": "txt" +} \ No newline at end of file diff --git a/users/mokemokechicken.json b/users/mokemokechicken.json index fef9deac..9bc25ff9 100644 --- a/users/mokemokechicken.json +++ b/users/mokemokechicken.json @@ -1,3 +1,3 @@ { - "copyright": "Ken Morishita" -} + "copyright": "Ken Morishita" +} \ No newline at end of file diff --git a/users/mollifier.json b/users/mollifier.json index 33843055..c1a0dd58 100644 --- a/users/mollifier.json +++ b/users/mollifier.json @@ -1,3 +1,3 @@ { - "copyright": "Hideaki Miyake" -} + "copyright": "Hideaki Miyake" +} \ No newline at end of file diff --git a/users/mongorito.json b/users/mongorito.json index 432498dd..fd05cc8a 100644 --- a/users/mongorito.json +++ b/users/mongorito.json @@ -1,6 +1,6 @@ { - "copyright": "Vadim Demedes", - "url": "http://mongorito.com", - "email": "vdemedes@gmail.com", - "format": "txt" -} + "copyright": "Vadim Demedes", + "url": "http://mongorito.com", + "email": "vdemedes@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/monkey.json b/users/monkey.json index 56bf961a..14663650 100644 --- a/users/monkey.json +++ b/users/monkey.json @@ -1,6 +1,6 @@ { - "copyright": "Lars Steen", - "url": "https://bitbucket.org/larste/monkey", - "email": "larste@gmail.com", - "format": "txt" -} + "copyright": "Lars Steen", + "url": "https://bitbucket.org/larste/monkey", + "email": "larste@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/monks.json b/users/monks.json index 449bafdb..c06e50ae 100644 --- a/users/monks.json +++ b/users/monks.json @@ -1,5 +1,5 @@ { - "copyright": "Andrew Monks", - "url": "http://monks.co", - "email": "a@monks.co" -} + "copyright": "Andrew Monks", + "url": "http://monks.co", + "email": "a@monks.co" +} \ No newline at end of file diff --git a/users/monmon.json b/users/monmon.json index 549088f0..2e598a50 100644 --- a/users/monmon.json +++ b/users/monmon.json @@ -1,4 +1,4 @@ { - "copyright": "monmon", - "url": "https://github.com/monmon" -} + "copyright": "monmon", + "url": "https://github.com/monmon" +} \ No newline at end of file diff --git a/users/moongift.json b/users/moongift.json index 2e84b46b..dfc891d3 100644 --- a/users/moongift.json +++ b/users/moongift.json @@ -1,4 +1,4 @@ { - "copyright": "Atsushi Nakatsugawa", - "url": "http://www.moongift.jp" -} + "copyright": "Atsushi Nakatsugawa", + "url": "http://www.moongift.jp" +} \ No newline at end of file diff --git a/users/moore.json b/users/moore.json index 68131435..cd34b132 100644 --- a/users/moore.json +++ b/users/moore.json @@ -1,3 +1,3 @@ { - "copyright": "Jared Moore" -} + "copyright": "Jared Moore" +} \ No newline at end of file diff --git a/users/mootoh.json b/users/mootoh.json index 2f4f65ee..66a9befc 100644 --- a/users/mootoh.json +++ b/users/mootoh.json @@ -1,3 +1,3 @@ { - "copyright": "Motohiro Takayama" -} + "copyright": "Motohiro Takayama" +} \ No newline at end of file diff --git a/users/moox.json b/users/moox.json index ac4e3e2a..6b838a69 100644 --- a/users/moox.json +++ b/users/moox.json @@ -1,3 +1,3 @@ { - "copyright": "Maxime Thirouin" -} + "copyright": "Maxime Thirouin" +} \ No newline at end of file diff --git a/users/mooyoul.json b/users/mooyoul.json index 6ee650b8..f87da76a 100644 --- a/users/mooyoul.json +++ b/users/mooyoul.json @@ -1,6 +1,6 @@ { - "copyright": "MooYeol Prescott Lee, http://debug.so", - "url": "http://debug.so", - "email": "mooyoul@gmail.com", - "gravatar": true -} + "copyright": "MooYeol Prescott Lee, http://debug.so", + "url": "http://debug.so", + "email": "mooyoul@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/moqada.json b/users/moqada.json index 26a4f970..cbbfdf4b 100644 --- a/users/moqada.json +++ b/users/moqada.json @@ -1,5 +1,5 @@ { - "copyright": "Masahiko Okada", - "url": "https://github.com/moqada", - "theme": "plaintext" -} + "copyright": "Masahiko Okada", + "url": "https://github.com/moqada", + "theme": "plaintext" +} \ No newline at end of file diff --git a/users/moroshko.json b/users/moroshko.json index c6860699..d779fbe0 100644 --- a/users/moroshko.json +++ b/users/moroshko.json @@ -1,3 +1,3 @@ { - "copyright": "Misha Moroshko" -} + "copyright": "Misha Moroshko" +} \ No newline at end of file diff --git a/users/mortdeus.json b/users/mortdeus.json index 45eb246b..97e7eb9f 100644 --- a/users/mortdeus.json +++ b/users/mortdeus.json @@ -1,7 +1,7 @@ { - "copyright": "mortdeus", - "url": "https://github.com/mortdeus", - "email": "mortdeus@gocos2d.org", - "format": "html", - "theme": "double-windsor" -} + "copyright": "mortdeus", + "url": "https://github.com/mortdeus", + "email": "mortdeus@gocos2d.org", + "format": "html", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/morteza.json b/users/morteza.json index 67c76bb1..1e1f707f 100644 --- a/users/morteza.json +++ b/users/morteza.json @@ -1,8 +1,8 @@ { - "copyright": "Morteza Ziaeemehr, http://mort3za.ir", - "url": "http://mort3za.ir", - "email": "m.ziaeemehr@gmail.com", - "gravatar": true, - "format": "html", - "theme": "double-windsor" -} + "copyright": "Morteza Ziaeemehr, http://mort3za.ir", + "url": "http://mort3za.ir", + "email": "m.ziaeemehr@gmail.com", + "gravatar": true, + "format": "html", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/mostly-magic.json b/users/mostly-magic.json index 6b6efd84..ab0c9caa 100644 --- a/users/mostly-magic.json +++ b/users/mostly-magic.json @@ -1,5 +1,5 @@ { - "copyright": "Mitchell Cowie, http://mostlymagic.ca", - "url": "http://mostlymagic.ca", - "theme": "afterdark" -} + "copyright": "Mitchell Cowie, http://mostlymagic.ca", + "url": "http://mostlymagic.ca", + "theme": "afterdark" +} \ No newline at end of file diff --git a/users/motemen.json b/users/motemen.json index 15ec4397..0a1b5969 100644 --- a/users/motemen.json +++ b/users/motemen.json @@ -1,3 +1,3 @@ { - "copyright": "motemen" -} + "copyright": "motemen" +} \ No newline at end of file diff --git a/users/motss.json b/users/motss.json index b8fe86c0..dcf6c5f3 100644 --- a/users/motss.json +++ b/users/motss.json @@ -1,5 +1,5 @@ { - "copyright": "Rong Sen Ng", - "format": "html", - "email": "wes.ngrongsen@gmail.com" -} + "copyright": "Rong Sen Ng", + "format": "html", + "email": "wes.ngrongsen@gmail.com" +} \ No newline at end of file diff --git a/users/moyashiki.json b/users/moyashiki.json index 6e116907..9680accc 100644 --- a/users/moyashiki.json +++ b/users/moyashiki.json @@ -1,3 +1,3 @@ { - "copyright": "Tomoya Yashiki, http://yayahayo.me" -} + "copyright": "Tomoya Yashiki, http://yayahayo.me" +} \ No newline at end of file diff --git a/users/mp.json b/users/mp.json index 53d54fca..b8f561c2 100644 --- a/users/mp.json +++ b/users/mp.json @@ -1,5 +1,5 @@ { - "copyright": "Marcos Paulo", - "email": "marcosisocram@gmail.com", - "gravatar": true -} + "copyright": "Marcos Paulo", + "email": "marcosisocram@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/mpd.json b/users/mpd.json index 8094d68f..f9d6ed6a 100644 --- a/users/mpd.json +++ b/users/mpd.json @@ -1,3 +1,3 @@ { - "copyright": "Michael Dippery" -} + "copyright": "Michael Dippery" +} \ No newline at end of file diff --git a/users/mpdreamz.json b/users/mpdreamz.json index 6f80661a..30bf9f8e 100644 --- a/users/mpdreamz.json +++ b/users/mpdreamz.json @@ -1,5 +1,5 @@ { - "copyright": "Martijn Laarman", - "url": "https://github.com/Mpdreamz", - "theme": "blackwood" -} + "copyright": "Martijn Laarman", + "url": "https://github.com/Mpdreamz", + "theme": "blackwood" +} \ No newline at end of file diff --git a/users/mpogoda.json b/users/mpogoda.json index a586ea16..855b39f9 100644 --- a/users/mpogoda.json +++ b/users/mpogoda.json @@ -1,3 +1,3 @@ { - "copyright": "Michael Pogoda" -} + "copyright": "Michael Pogoda" +} \ No newline at end of file diff --git a/users/mr-mostafa.json b/users/mr-mostafa.json index 35b13695..7dd9ff25 100644 --- a/users/mr-mostafa.json +++ b/users/mr-mostafa.json @@ -1,8 +1,8 @@ { - "copyright": "Mostafa Rahmati, http://mrmostafa.ir", - "url": "http://mrmostafa.ir", - "email": "me@mrmostafa.ir", - "format": "html", - "gravatar": true, - "theme": "dusk" -} + "copyright": "Mostafa Rahmati, http://mrmostafa.ir", + "url": "http://mrmostafa.ir", + "email": "me@mrmostafa.ir", + "format": "html", + "gravatar": true, + "theme": "dusk" +} \ No newline at end of file diff --git a/users/mressex.json b/users/mressex.json index c9dea5e4..8a5d5ee1 100644 --- a/users/mressex.json +++ b/users/mressex.json @@ -1,7 +1,7 @@ { - "copyright": "Kyle Essex, http://github.com/mressex", - "url": "http://github.com/mressex", - "email": "kylegavinessex@hotmail.com", - "theme": "default", - "gravatar": true -} + "copyright": "Kyle Essex, http://github.com/mressex", + "url": "http://github.com/mressex", + "email": "kylegavinessex@hotmail.com", + "theme": "default", + "gravatar": true +} \ No newline at end of file diff --git a/users/mrgnrdrck.json b/users/mrgnrdrck.json index daf5e940..483410eb 100644 --- a/users/mrgnrdrck.json +++ b/users/mrgnrdrck.json @@ -1,5 +1,5 @@ { - "copyright": "Morgan Roderick, http://roderick.dk/", - "url": "http://roderick.dk/", - "email": "morgan@roderick.dk" -} + "copyright": "Morgan Roderick, http://roderick.dk/", + "url": "http://roderick.dk/", + "email": "morgan@roderick.dk" +} \ No newline at end of file diff --git a/users/mrinaljain17.json b/users/mrinaljain17.json index cad128fe..86191db0 100644 --- a/users/mrinaljain17.json +++ b/users/mrinaljain17.json @@ -1,6 +1,6 @@ { - "copyright": "Mrinal Jain", - "url": "https://mrinaljain17.github.io", - "email": "mrinaljain007@gmail.com", - "gravatar": true -} + "copyright": "Mrinal Jain", + "url": "https://mrinaljain17.github.io", + "email": "mrinaljain007@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/mrkn.json b/users/mrkn.json index 41c05c8e..ea44893e 100644 --- a/users/mrkn.json +++ b/users/mrkn.json @@ -1,3 +1,3 @@ { - "copyright": "Kenta Murata" -} + "copyright": "Kenta Murata" +} \ No newline at end of file diff --git a/users/mrmarbles.json b/users/mrmarbles.json index d9cf90f7..656b7564 100644 --- a/users/mrmarbles.json +++ b/users/mrmarbles.json @@ -1,4 +1,4 @@ { - "copyright": "Brian Carr", - "email": "bcarr14@gmail.com" -} + "copyright": "Brian Carr", + "email": "bcarr14@gmail.com" +} \ No newline at end of file diff --git a/users/mrsiir.json b/users/mrsiir.json index 9e161c0f..2e27be38 100644 --- a/users/mrsiir.json +++ b/users/mrsiir.json @@ -1,3 +1,3 @@ { - "copyright": "MrSiir" -} + "copyright": "MrSiir" +} \ No newline at end of file diff --git a/users/mschaer.json b/users/mschaer.json index 5f45f81a..c2eec489 100644 --- a/users/mschaer.json +++ b/users/mschaer.json @@ -1,4 +1,4 @@ { - "copyright": "Marc Schaer", - "email": "marc.r.schaer@gmail.com" -} + "copyright": "Marc Schaer", + "email": "marc.r.schaer@gmail.com" +} \ No newline at end of file diff --git a/users/mseri.json b/users/mseri.json index fac4ec4e..d7ebc474 100644 --- a/users/mseri.json +++ b/users/mseri.json @@ -1,5 +1,5 @@ { - "copyright": "Marcello Seri", - "url": "http://mseri.me", - "email": "mseri@mseri.me" -} + "copyright": "Marcello Seri", + "url": "http://mseri.me", + "email": "mseri@mseri.me" +} \ No newline at end of file diff --git a/users/mshertzberg.json b/users/mshertzberg.json index 515df173..e5387d34 100644 --- a/users/mshertzberg.json +++ b/users/mshertzberg.json @@ -1,3 +1,3 @@ { - "copyright": "Michael Scott Hertzberg" -} + "copyright": "Michael Scott Hertzberg" +} \ No newline at end of file diff --git a/users/msmosso.json b/users/msmosso.json index 2d3467ce..4b41326e 100644 --- a/users/msmosso.json +++ b/users/msmosso.json @@ -1,5 +1,5 @@ { - "copyright": "Matheus M\u00c3\u00b3sso", - "url": "http://msmosso.com/", - "email": "msmosso@gmail.com" -} + "copyright": "Matheus Mósso", + "url": "http://msmosso.com/", + "email": "msmosso@gmail.com" +} \ No newline at end of file diff --git a/users/msmprojects.json b/users/msmprojects.json index 8248943e..d4211a31 100644 --- a/users/msmprojects.json +++ b/users/msmprojects.json @@ -1,6 +1,6 @@ { - "copyright": "MSM Projects, LLC", - "url": "http://msmprojects.com", - "email": "admin@msmprojects.com", - "format": "txt" -} + "copyright": "MSM Projects, LLC", + "url": "http://msmprojects.com", + "email": "admin@msmprojects.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/mstade.json b/users/mstade.json index 9a8d5593..1fb455e2 100644 --- a/users/mstade.json +++ b/users/mstade.json @@ -1,3 +1,3 @@ { - "copyright": "Marcus Stade" -} + "copyright": "Marcus Stade" +} \ No newline at end of file diff --git a/users/mstum.json b/users/mstum.json index c2efbb64..90f59e98 100644 --- a/users/mstum.json +++ b/users/mstum.json @@ -1,6 +1,6 @@ { - "copyright": "Michael Stum, http://www.Stum.de", - "url": "http://www.Stum.de", - "email": "opensource@stum.de", - "theme": "default" -} + "copyright": "Michael Stum, http://www.Stum.de", + "url": "http://www.Stum.de", + "email": "opensource@stum.de", + "theme": "default" +} \ No newline at end of file diff --git a/users/msudgh.json b/users/msudgh.json index 1e96b720..526975ee 100644 --- a/users/msudgh.json +++ b/users/msudgh.json @@ -1,7 +1,7 @@ { - "copyright": "Masoud Ghorbani", - "url": "http://msud.ir", - "email": "msud.ghorbani@gmail.com", - "format": "html", - "gravatar": true -} + "copyright": "Masoud Ghorbani", + "url": "http://msud.ir", + "email": "msud.ghorbani@gmail.com", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/mteckert.json b/users/mteckert.json index 35de1801..5a478ea5 100644 --- a/users/mteckert.json +++ b/users/mteckert.json @@ -1,3 +1,3 @@ { - "copyright": "Matthew Eckert" -} + "copyright": "Matthew Eckert" +} \ No newline at end of file diff --git a/users/mtsagias.json b/users/mtsagias.json index aba4d618..81866a17 100644 --- a/users/mtsagias.json +++ b/users/mtsagias.json @@ -1,6 +1,6 @@ { - "copyright": "Manolis Tsagias", - "url": "http://www.tsagias.com", - "email": "manolis@tsagias.com", - "gravatar": true -} + "copyright": "Manolis Tsagias", + "url": "http://www.tsagias.com", + "email": "manolis@tsagias.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/mtsmfm.json b/users/mtsmfm.json index edda9256..a7e2687b 100644 --- a/users/mtsmfm.json +++ b/users/mtsmfm.json @@ -1,6 +1,6 @@ { - "copyright": "Fumiaki MATSUSHIMA", - "url": "https://mtsmfm.github.io", - "email": "mtsmfm@gmail.com", - "format": "txt" -} + "copyright": "Fumiaki MATSUSHIMA", + "url": "https://mtsmfm.github.io", + "email": "mtsmfm@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/mturcotte.json b/users/mturcotte.json index c008a837..16e794dd 100644 --- a/users/mturcotte.json +++ b/users/mturcotte.json @@ -1,4 +1,4 @@ { - "copyright": "Mathieu Turcotte, http://mathieuturcotte.ca", - "url": "http://mathieuturcotte.ca" -} + "copyright": "Mathieu Turcotte, http://mathieuturcotte.ca", + "url": "http://mathieuturcotte.ca" +} \ No newline at end of file diff --git a/users/muet.json b/users/muet.json index bf8447dd..1d2c6e77 100644 --- a/users/muet.json +++ b/users/muet.json @@ -1,6 +1,6 @@ { - "copyright": "Markus Muetschard", - "url": "http://muet.com", - "email": "markus@muet.com", - "format": "txt" -} + "copyright": "Markus Muetschard", + "url": "http://muet.com", + "email": "markus@muet.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/mullen.json b/users/mullen.json index 5cac9efc..4e6c6ec9 100644 --- a/users/mullen.json +++ b/users/mullen.json @@ -1,6 +1,6 @@ { - "copyright": "Lincoln A. Mullen", - "url": "http://lincolnmullen.com", - "email": "lincoln@lincolnmullen.com", - "format": "txt" -} + "copyright": "Lincoln A. Mullen", + "url": "http://lincolnmullen.com", + "email": "lincoln@lincolnmullen.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/muratk.json b/users/muratk.json index f14c9641..d5bbe2ec 100644 --- a/users/muratk.json +++ b/users/muratk.json @@ -1,3 +1,3 @@ { - "copyright": "Murat Knecht" -} + "copyright": "Murat Knecht" +} \ No newline at end of file diff --git a/users/muriel.json b/users/muriel.json index f403bfd6..f463bcb9 100644 --- a/users/muriel.json +++ b/users/muriel.json @@ -1,3 +1,3 @@ { - "copyright": "Muriel Silveira Pereira" -} + "copyright": "Muriel Silveira Pereira" +} \ No newline at end of file diff --git a/users/murphy.json b/users/murphy.json index 56f02621..c0bfcc5f 100644 --- a/users/murphy.json +++ b/users/murphy.json @@ -1,5 +1,5 @@ { - "copyright": "Murphy, http://murphy.metafnord.org", - "url": "http://murphy.metafnord.org", - "email": "moerphy@googlemail.com" -} + "copyright": "Murphy, http://murphy.metafnord.org", + "url": "http://murphy.metafnord.org", + "email": "moerphy@googlemail.com" +} \ No newline at end of file diff --git a/users/musicgig.json b/users/musicgig.json index 0eccb967..05f08a85 100644 --- a/users/musicgig.json +++ b/users/musicgig.json @@ -1,5 +1,5 @@ { - "copyright": "Music Gig", - "url": "http://musicgig.herokuapp.com", - "email": "ikangiec@gmail.com" -} + "copyright": "Music Gig", + "url": "http://musicgig.herokuapp.com", + "email": "ikangiec@gmail.com" +} \ No newline at end of file diff --git a/users/mustafa.json b/users/mustafa.json index b425e182..56ed1f9c 100644 --- a/users/mustafa.json +++ b/users/mustafa.json @@ -1,5 +1,5 @@ { - "copyright": "Mustafa Kurtuldu, http://mustafa.im", - "url": "http://mustafa.im", - "theme": "default" -} + "copyright": "Mustafa Kurtuldu, http://mustafa.im", + "url": "http://mustafa.im", + "theme": "default" +} \ No newline at end of file diff --git a/users/mutedsolutions.json b/users/mutedsolutions.json index 93b7ae4e..6455a3a2 100644 --- a/users/mutedsolutions.json +++ b/users/mutedsolutions.json @@ -1,5 +1,5 @@ { - "copyright": "Muted Solutions, LLC", - "url": "http://mutedsolutions.com", - "email": "derick@mutedsolutions.com" -} + "copyright": "Muted Solutions, LLC", + "url": "http://mutedsolutions.com", + "email": "derick@mutedsolutions.com" +} \ No newline at end of file diff --git a/users/mutlicorp.json b/users/mutlicorp.json index 94553093..2718a070 100644 --- a/users/mutlicorp.json +++ b/users/mutlicorp.json @@ -1,6 +1,6 @@ { - "copyright": "Remy Sharp", - "url": "http://remysharp.com", - "email": "me@mysite.com", - "format": "txt" -} + "copyright": "Remy Sharp", + "url": "http://remysharp.com", + "email": "me@mysite.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/mutoso.json b/users/mutoso.json index 921254b2..3ed67d70 100644 --- a/users/mutoso.json +++ b/users/mutoso.json @@ -1,7 +1,7 @@ { - "copyright": "Alastair Stuart Feille", - "url": "http://muto.so", - "email": "alastair@muto.so", - "gravatar": true, - "theme": "black-beauty" -} + "copyright": "Alastair Stuart Feille", + "url": "http://muto.so", + "email": "alastair@muto.so", + "gravatar": true, + "theme": "black-beauty" +} \ No newline at end of file diff --git a/users/muyuu.json b/users/muyuu.json index 150ed99f..fdab5e6d 100644 --- a/users/muyuu.json +++ b/users/muyuu.json @@ -1,4 +1,4 @@ { - "copyright": "Muyuu Fujita", - "url": "https://github.com/muyuu" -} + "copyright": "Muyuu Fujita", + "url": "https://github.com/muyuu" +} \ No newline at end of file diff --git a/users/mvdnes.json b/users/mvdnes.json index 238d1b5f..dc9ebd47 100644 --- a/users/mvdnes.json +++ b/users/mvdnes.json @@ -1,3 +1,3 @@ { - "copyright": "Mathijs van de Nes" -} + "copyright": "Mathijs van de Nes" +} \ No newline at end of file diff --git a/users/mvr.json b/users/mvr.json index 3056bd3f..9a56c0dd 100644 --- a/users/mvr.json +++ b/users/mvr.json @@ -1,5 +1,5 @@ { - "copyright": "Mathias Rasmussen", - "email": "mathiasvr@gmail.com", - "theme": "material-light-blue" -} + "copyright": "Mathias Rasmussen", + "email": "mathiasvr@gmail.com", + "theme": "material-light-blue" +} \ No newline at end of file diff --git a/users/mw.json b/users/mw.json index 68ea33bb..770256e8 100644 --- a/users/mw.json +++ b/users/mw.json @@ -1,3 +1,3 @@ { - "copyright": "Matthew Westrik" -} + "copyright": "Matthew Westrik" +} \ No newline at end of file diff --git a/users/mway.json b/users/mway.json index f919fe2d..6a549d79 100644 --- a/users/mway.json +++ b/users/mway.json @@ -1,6 +1,6 @@ { - "copyright": "Matt Way", - "url": "http://mway.co/", - "email": "matt.way@gmail.com", - "format": "txt" -} + "copyright": "Matt Way", + "url": "http://mway.co/", + "email": "matt.way@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/mwm.json b/users/mwm.json index 4bf9e64a..f006a179 100644 --- a/users/mwm.json +++ b/users/mwm.json @@ -1,6 +1,6 @@ { - "copyright": "Matthew Meyer", - "url": "http://www.mwmeyer.com", - "email": "matthewwilliammeyer@gmail.com", - "format": "txt" -} + "copyright": "Matthew Meyer", + "url": "http://www.mwmeyer.com", + "email": "matthewwilliammeyer@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/mwmeyer.json b/users/mwmeyer.json index 85d43c95..9a8e28b5 100644 --- a/users/mwmeyer.json +++ b/users/mwmeyer.json @@ -1,5 +1,5 @@ { - "copyright": "Matthew Meyer", - "url": "http://www.mwmeyer.com", - "email": "matthewwilliammeyer@gmail.com" -} + "copyright": "Matthew Meyer", + "url": "http://www.mwmeyer.com", + "email": "matthewwilliammeyer@gmail.com" +} \ No newline at end of file diff --git a/users/mwmnj.json b/users/mwmnj.json index 85d43c95..9a8e28b5 100644 --- a/users/mwmnj.json +++ b/users/mwmnj.json @@ -1,5 +1,5 @@ { - "copyright": "Matthew Meyer", - "url": "http://www.mwmeyer.com", - "email": "matthewwilliammeyer@gmail.com" -} + "copyright": "Matthew Meyer", + "url": "http://www.mwmeyer.com", + "email": "matthewwilliammeyer@gmail.com" +} \ No newline at end of file diff --git a/users/myles.json b/users/myles.json index 09e8d260..77d6c957 100644 --- a/users/myles.json +++ b/users/myles.json @@ -1,6 +1,6 @@ { - "copyright": "Myles Braithwaite", - "url": "http://mylesbraithwaite.com", - "email": "me@mylesbraithwaite.com", - "format": "txt" -} + "copyright": "Myles Braithwaite", + "url": "http://mylesbraithwaite.com", + "email": "me@mylesbraithwaite.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/mynetx.json b/users/mynetx.json index d9bd6596..0007bc2a 100644 --- a/users/mynetx.json +++ b/users/mynetx.json @@ -1,5 +1,5 @@ { - "copyright": "J.M.", - "url": "http://mynetx.net/", - "email": "mynetx@users.sf.net" -} + "copyright": "J.M.", + "url": "http://mynetx.net/", + "email": "mynetx@users.sf.net" +} \ No newline at end of file diff --git a/users/mysticatea.json b/users/mysticatea.json index 9043cce5..94bd7eff 100644 --- a/users/mysticatea.json +++ b/users/mysticatea.json @@ -1,4 +1,4 @@ { - "copyright": "Toru Nagashima", - "url": "https://github.com/mysticatea" -} + "copyright": "Toru Nagashima", + "url": "https://github.com/mysticatea" +} \ No newline at end of file diff --git a/users/n.json b/users/n.json index bca9b9fc..cb18510f 100644 --- a/users/n.json +++ b/users/n.json @@ -1,4 +1,4 @@ { - "copyright": "Nex Zhu", - "url": "https://github.com/NexZhu" -} + "copyright": "Nex Zhu", + "url": "https://github.com/NexZhu" +} \ No newline at end of file diff --git a/users/n0nick.json b/users/n0nick.json index 77bc0adb..daae7d33 100644 --- a/users/n0nick.json +++ b/users/n0nick.json @@ -1,3 +1,3 @@ { - "copyright": "Sagie Maoz" -} + "copyright": "Sagie Maoz" +} \ No newline at end of file diff --git a/users/nacyot.json b/users/nacyot.json index 9d75f439..30a49781 100644 --- a/users/nacyot.json +++ b/users/nacyot.json @@ -1,6 +1,6 @@ { - "copyright": "Daekwon Kim", - "url": "http://naycot.com", - "email": "propellerheaven@gmail.com", - "format": "txt" -} + "copyright": "Daekwon Kim", + "url": "http://naycot.com", + "email": "propellerheaven@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/nadeemkhan.json b/users/nadeemkhan.json index 84218e76..a6a23177 100644 --- a/users/nadeemkhan.json +++ b/users/nadeemkhan.json @@ -1,6 +1,6 @@ { - "copyright": "Nadeem Khan", - "email": "nadeem7khan@gmail.com", - "theme": "double-windsor", - "gravatar": true -} + "copyright": "Nadeem Khan", + "email": "nadeem7khan@gmail.com", + "theme": "double-windsor", + "gravatar": true +} \ No newline at end of file diff --git a/users/nadi.json b/users/nadi.json index 77b2ff52..daea176a 100644 --- a/users/nadi.json +++ b/users/nadi.json @@ -1,6 +1,6 @@ { - "copyright": "Nadi Dikun", - "url": "http://nadikun.com", - "email": "dikunn@gmail.com", - "theme": "flesch" -} + "copyright": "Nadi Dikun", + "url": "http://nadikun.com", + "email": "dikunn@gmail.com", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/naereen.json b/users/naereen.json index 6e91ef25..6cfc8163 100644 --- a/users/naereen.json +++ b/users/naereen.json @@ -1,7 +1,7 @@ { - "copyright": "Lilian Besson (Naereen), https://bitbucket.org/lbesson/", - "url": "https://bitbucket.org/lbesson/", - "email": "naereen at crans dot org", - "format": "html", - "gravatar": false -} + "copyright": "Lilian Besson (Naereen), https://bitbucket.org/lbesson/", + "url": "https://bitbucket.org/lbesson/", + "email": "naereen at crans dot org", + "format": "html", + "gravatar": false +} \ No newline at end of file diff --git a/users/nak2k.json b/users/nak2k.json index 05c989b0..e276dc4c 100644 --- a/users/nak2k.json +++ b/users/nak2k.json @@ -1,4 +1,4 @@ { - "copyright": "Kengo Nakatsuka", - "url": "http://nak2k.jp/" -} + "copyright": "Kengo Nakatsuka", + "url": "http://nak2k.jp/" +} \ No newline at end of file diff --git a/users/nanahositento.json b/users/nanahositento.json index 55c68ecf..4560e00d 100644 --- a/users/nanahositento.json +++ b/users/nanahositento.json @@ -1,5 +1,5 @@ { - "copyright": "nanahositento", - "url": "http://nanahositento.github.com/", - "theme": "flesch" -} + "copyright": "nanahositento", + "url": "http://nanahositento.github.com/", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/nanha.json b/users/nanha.json index 8760575d..902343a0 100644 --- a/users/nanha.json +++ b/users/nanha.json @@ -1,4 +1,4 @@ { - "copyright": "nanha park", - "url": "http://nanha.com" -} + "copyright": "nanha park", + "url": "http://nanha.com" +} \ No newline at end of file diff --git a/users/nanotaboada.json b/users/nanotaboada.json index 72c6433a..31b1c6a1 100644 --- a/users/nanotaboada.json +++ b/users/nanotaboada.json @@ -1,5 +1,5 @@ { - "copyright": "Nano Taboada, http://nanotaboada.com.ar", - "url": "http://nanotaboada.com.ar", - "theme": "flesch" -} + "copyright": "Nano Taboada, http://nanotaboada.com.ar", + "url": "http://nanotaboada.com.ar", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/naota.json b/users/naota.json index 6a51002b..507e8773 100644 --- a/users/naota.json +++ b/users/naota.json @@ -1,3 +1,3 @@ { - "copyright": "Naohiro Aota" -} + "copyright": "Naohiro Aota" +} \ No newline at end of file diff --git a/users/nat.json b/users/nat.json index 39b113e7..b2fc4871 100644 --- a/users/nat.json +++ b/users/nat.json @@ -1,3 +1,3 @@ { - "copyright": "Nat Zimmermann" -} + "copyright": "Nat Zimmermann" +} \ No newline at end of file diff --git a/users/nate.json b/users/nate.json index bc366a5d..ee17446f 100644 --- a/users/nate.json +++ b/users/nate.json @@ -1,4 +1,4 @@ { - "copyright": "Nathan Rugg", - "theme": "double-windsor" -} + "copyright": "Nathan Rugg", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/natevw.json b/users/natevw.json index e13fbc0a..66fc3821 100644 --- a/users/natevw.json +++ b/users/natevw.json @@ -1,4 +1,4 @@ { - "copyright": "Nathan Vander Wilt", - "url": "http://exts.ch" -} + "copyright": "Nathan Vander Wilt", + "url": "http://exts.ch" +} \ No newline at end of file diff --git a/users/nathan.json b/users/nathan.json index 664e2b25..16791c8d 100644 --- a/users/nathan.json +++ b/users/nathan.json @@ -1,5 +1,5 @@ { - "copyright": "Nathan Herald", - "url": "http://nathanherald.com", - "email": "me@nathanherald.com" -} + "copyright": "Nathan Herald", + "url": "http://nathanherald.com", + "email": "me@nathanherald.com" +} \ No newline at end of file diff --git a/users/nathan7.json b/users/nathan7.json index 3c208fce..bb8da14f 100644 --- a/users/nathan7.json +++ b/users/nathan7.json @@ -1,3 +1,3 @@ { - "copyright": "Nathan Zadoks" -} + "copyright": "Nathan Zadoks" +} \ No newline at end of file diff --git a/users/nathanallen.json b/users/nathanallen.json index 83cb23b1..1355528e 100644 --- a/users/nathanallen.json +++ b/users/nathanallen.json @@ -1,5 +1,5 @@ { - "copyright": "Nathan Allen, http://nathan.codes/", - "url": "http://nathan.codes/", - "theme": "plaintext" -} + "copyright": "Nathan Allen, http://nathan.codes/", + "url": "http://nathan.codes/", + "theme": "plaintext" +} \ No newline at end of file diff --git a/users/natzim.json b/users/natzim.json index 39b113e7..b2fc4871 100644 --- a/users/natzim.json +++ b/users/natzim.json @@ -1,3 +1,3 @@ { - "copyright": "Nat Zimmermann" -} + "copyright": "Nat Zimmermann" +} \ No newline at end of file diff --git a/users/naufraghi.json b/users/naufraghi.json index 4e7d42e9..2c00386e 100644 --- a/users/naufraghi.json +++ b/users/naufraghi.json @@ -1,3 +1,3 @@ { - "copyright": "Matteo Bertini" -} + "copyright": "Matteo Bertini" +} \ No newline at end of file diff --git a/users/navarr.json b/users/navarr.json index f6f5e550..61920a10 100644 --- a/users/navarr.json +++ b/users/navarr.json @@ -1,4 +1,4 @@ { - "copyright": "Navarr Barnier", - "url": "http://navarr.me" -} + "copyright": "Navarr Barnier", + "url": "http://navarr.me" +} \ No newline at end of file diff --git a/users/nblackburn.json b/users/nblackburn.json index 19c012e1..b1e2a899 100644 --- a/users/nblackburn.json +++ b/users/nblackburn.json @@ -1,8 +1,8 @@ { - "copyright": "Nathaniel Blackburn", - "url": "http://nblackburn.co.uk", - "email": "support@nblackburn.co.uk", - "format": "txt", - "theme": "plaintext", - "gravatar": true -} + "copyright": "Nathaniel Blackburn", + "url": "http://nblackburn.co.uk", + "email": "support@nblackburn.co.uk", + "format": "txt", + "theme": "plaintext", + "gravatar": true +} \ No newline at end of file diff --git a/users/ncb000gt.json b/users/ncb000gt.json index 4b971883..5400427a 100644 --- a/users/ncb000gt.json +++ b/users/ncb000gt.json @@ -1,5 +1,5 @@ { - "copyright": "Nicholas Campbell", - "email": "nicholas.j.campbell@gmail.com", - "theme": "flesch" -} + "copyright": "Nicholas Campbell", + "email": "nicholas.j.campbell@gmail.com", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/nctg.json b/users/nctg.json index 6184c189..eceb1c18 100644 --- a/users/nctg.json +++ b/users/nctg.json @@ -1,4 +1,4 @@ { - "copyright": "North Coast Technology Group", - "url": "http://nctechgroup.com/" -} + "copyright": "North Coast Technology Group", + "url": "http://nctechgroup.com/" +} \ No newline at end of file diff --git a/users/ndw.json b/users/ndw.json index afba8e83..0cc8f159 100644 --- a/users/ndw.json +++ b/users/ndw.json @@ -1,5 +1,5 @@ { - "copyright": "Norman Walsh, http://nwalsh.com/", - "url": "http://nwalsh.com/", - "theme": "flesch" -} + "copyright": "Norman Walsh, http://nwalsh.com/", + "url": "http://nwalsh.com/", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/nectktar.json b/users/nectktar.json index 50f38b7e..63268814 100644 --- a/users/nectktar.json +++ b/users/nectktar.json @@ -1,4 +1,4 @@ { - "copyright": "Nectktar", - "format": "txt" -} + "copyright": "Nectktar", + "format": "txt" +} \ No newline at end of file diff --git a/users/neil.json b/users/neil.json index 9c560859..5a615f42 100644 --- a/users/neil.json +++ b/users/neil.json @@ -1,3 +1,3 @@ { - "copyright": "Neil Cowburn" -} + "copyright": "Neil Cowburn" +} \ No newline at end of file diff --git a/users/nemo.json b/users/nemo.json index bc4c834b..d6a5bcb5 100644 --- a/users/nemo.json +++ b/users/nemo.json @@ -1,7 +1,7 @@ { - "copyright": "Abhay Rana", - "email": "me@captnemo.in", - "url": "https://captnemo.in/", - "gravatar": "true", - "theme": "double-windsor" -} + "copyright": "Abhay Rana", + "email": "me@captnemo.in", + "url": "https://captnemo.in/", + "gravatar": "true", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/neo.json b/users/neo.json index cb8c164d..eddb3be8 100644 --- a/users/neo.json +++ b/users/neo.json @@ -1,6 +1,6 @@ { - "copyright": "Neo Melonas", - "url": "http://neomelonas.com", - "email": "neo@neomelonas.com", - "format": "txt" -} + "copyright": "Neo Melonas", + "url": "http://neomelonas.com", + "email": "neo@neomelonas.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/neodevelop.json b/users/neodevelop.json index 13f96777..a204b7dc 100644 --- a/users/neodevelop.json +++ b/users/neodevelop.json @@ -1,7 +1,7 @@ { - "copyright": "Neodevelop", - "url": "http://neodevelop.org", - "email": "rashwell@gmail.com", - "format": "html", - "theme": "solarized" -} + "copyright": "Neodevelop", + "url": "http://neodevelop.org", + "email": "rashwell@gmail.com", + "format": "html", + "theme": "solarized" +} \ No newline at end of file diff --git a/users/neos21.json b/users/neos21.json index 47977b46..29449892 100644 --- a/users/neos21.json +++ b/users/neos21.json @@ -1,7 +1,7 @@ { - "copyright": "Neo (@Neos21)", - "url": "http://neo.s21.xrea.com/", - "email": "neos21@gmail.com", - "gravatar": true, - "theme": "cherry" -} + "copyright": "Neo (@Neos21)", + "url": "http://neo.s21.xrea.com/", + "email": "neos21@gmail.com", + "gravatar": true, + "theme": "cherry" +} \ No newline at end of file diff --git a/users/nerdfiles.json b/users/nerdfiles.json index df69a6c6..36433147 100644 --- a/users/nerdfiles.json +++ b/users/nerdfiles.json @@ -1,3 +1,3 @@ { - "copyright": "nerdfiles" -} + "copyright": "nerdfiles" +} \ No newline at end of file diff --git a/users/nerdsec.json b/users/nerdsec.json index 17c32473..a6a0a73a 100644 --- a/users/nerdsec.json +++ b/users/nerdsec.json @@ -1,6 +1,6 @@ { - "copyright": "NerdSec, LLC", - "url": "http://nerdsec.org", - "email": "license@nerdsec.org", - "format": "txt" -} + "copyright": "NerdSec, LLC", + "url": "http://nerdsec.org", + "email": "license@nerdsec.org", + "format": "txt" +} \ No newline at end of file diff --git a/users/nergal.json b/users/nergal.json index 0d7a0f91..7d265dd8 100644 --- a/users/nergal.json +++ b/users/nergal.json @@ -1,6 +1,6 @@ { - "copyright": "Artem Polyukhovich ", - "url": "http://2mio.com", - "email": "me@2mio.com", - "format": "txt" -} + "copyright": "Artem Polyukhovich ", + "url": "http://2mio.com", + "email": "me@2mio.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/nethru.json b/users/nethru.json index b24f9785..250737de 100644 --- a/users/nethru.json +++ b/users/nethru.json @@ -1,6 +1,6 @@ { - "copyright": "Nethru Limited", - "url": "http://nethru.com", - "email": "info@nethru.com", - "theme": "friendly" -} + "copyright": "Nethru Limited", + "url": "http://nethru.com", + "email": "info@nethru.com", + "theme": "friendly" +} \ No newline at end of file diff --git a/users/neutroncreations.json b/users/neutroncreations.json index 3353e501..3dd14fef 100644 --- a/users/neutroncreations.json +++ b/users/neutroncreations.json @@ -1,4 +1,4 @@ { - "copyright": "Neutron Creations, http://neutroncreations.com", - "url": "http://neutroncreations.com" -} + "copyright": "Neutron Creations, http://neutroncreations.com", + "url": "http://neutroncreations.com" +} \ No newline at end of file diff --git a/users/nevir.json b/users/nevir.json index 022e9c85..cb723886 100644 --- a/users/nevir.json +++ b/users/nevir.json @@ -1,3 +1,3 @@ { - "copyright": "Ian MacLeod" -} + "copyright": "Ian MacLeod" +} \ No newline at end of file diff --git a/users/newleaders.json b/users/newleaders.json index 8fa26c9a..0b6c5f47 100644 --- a/users/newleaders.json +++ b/users/newleaders.json @@ -1,7 +1,7 @@ { - "copyright": "New Leaders", - "url": "http://newleaders.com", - "email": "opensource@newleaders.com", - "format": "html", - "theme": "double-windsor" -} + "copyright": "New Leaders", + "url": "http://newleaders.com", + "email": "opensource@newleaders.com", + "format": "html", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/nex.json b/users/nex.json index bca9b9fc..cb18510f 100644 --- a/users/nex.json +++ b/users/nex.json @@ -1,4 +1,4 @@ { - "copyright": "Nex Zhu", - "url": "https://github.com/NexZhu" -} + "copyright": "Nex Zhu", + "url": "https://github.com/NexZhu" +} \ No newline at end of file diff --git a/users/nexzhu.json b/users/nexzhu.json index bca9b9fc..cb18510f 100644 --- a/users/nexzhu.json +++ b/users/nexzhu.json @@ -1,4 +1,4 @@ { - "copyright": "Nex Zhu", - "url": "https://github.com/NexZhu" -} + "copyright": "Nex Zhu", + "url": "https://github.com/NexZhu" +} \ No newline at end of file diff --git a/users/nfreear.json b/users/nfreear.json index 963d1f93..ac4b85bb 100644 --- a/users/nfreear.json +++ b/users/nfreear.json @@ -1,5 +1,5 @@ { - "copyright": "Nick Freear", - "url": "http://freear.org.uk", - "theme": "flesch" -} + "copyright": "Nick Freear", + "url": "http://freear.org.uk", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/ngenerio.json b/users/ngenerio.json index 014a126c..44d970d8 100644 --- a/users/ngenerio.json +++ b/users/ngenerio.json @@ -1,5 +1,5 @@ { - "copyright": "Eugene Asiedu", - "email": "ngene84@gmail.com", - "format": "txt" -} + "copyright": "Eugene Asiedu", + "email": "ngene84@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/ngoldman.json b/users/ngoldman.json index f1245ec0..2dec13bf 100644 --- a/users/ngoldman.json +++ b/users/ngoldman.json @@ -1,3 +1,3 @@ { - "copyright": "Nathaniel Goldman" -} + "copyright": "Nathaniel Goldman" +} \ No newline at end of file diff --git a/users/ngtk.json b/users/ngtk.json index 5509b6c8..26382e82 100644 --- a/users/ngtk.json +++ b/users/ngtk.json @@ -1,3 +1,3 @@ { - "copyright": "Kent Nagata" -} + "copyright": "Kent Nagata" +} \ No newline at end of file diff --git a/users/ngyuki.json b/users/ngyuki.json index 449f0cb8..74860a35 100644 --- a/users/ngyuki.json +++ b/users/ngyuki.json @@ -1,4 +1,4 @@ { - "copyright": "Toshiyuki Goto", - "url": "https://github.com/ngyuki" -} + "copyright": "Toshiyuki Goto", + "url": "https://github.com/ngyuki" +} \ No newline at end of file diff --git a/users/nhan.json b/users/nhan.json index 5d499656..f560207b 100644 --- a/users/nhan.json +++ b/users/nhan.json @@ -1,7 +1,7 @@ { - "copyright": "Nhan Doan, http://nhan.me", - "url": "http://nhan.me", - "format": "html", - "gravatar": false, - "theme": "default" -} + "copyright": "Nhan Doan, http://nhan.me", + "url": "http://nhan.me", + "format": "html", + "gravatar": false, + "theme": "default" +} \ No newline at end of file diff --git a/users/nhanderu.json b/users/nhanderu.json index dfb06daf..6fb5ab27 100644 --- a/users/nhanderu.json +++ b/users/nhanderu.json @@ -1,5 +1,5 @@ { - "copyright": "Rafael Escobar", - "url": "http://nhanderu.com", - "email": "rafael.bze@gmail.com" -} + "copyright": "Rafael Escobar", + "url": "http://nhanderu.com", + "email": "rafael.bze@gmail.com" +} \ No newline at end of file diff --git a/users/nhayato.json b/users/nhayato.json index 62332d04..fbdf6524 100644 --- a/users/nhayato.json +++ b/users/nhayato.json @@ -1,3 +1,3 @@ { - "copyright": "Hayato Nishimura" -} + "copyright": "Hayato Nishimura" +} \ No newline at end of file diff --git a/users/nhoizey.json b/users/nhoizey.json index dc6892d2..9685e4bb 100644 --- a/users/nhoizey.json +++ b/users/nhoizey.json @@ -1,4 +1,4 @@ { - "copyright": "Nicolas Hoizey", - "url": "http://gasteroprod.com/" -} + "copyright": "Nicolas Hoizey", + "url": "http://gasteroprod.com/" +} \ No newline at end of file diff --git a/users/nichom.json b/users/nichom.json index 67976e00..0f122dc7 100644 --- a/users/nichom.json +++ b/users/nichom.json @@ -1,6 +1,6 @@ { - "copyright": "Nick Martinelli, http://nickmartinelli.com", - "url": "http://nickmartinelli.com", - "email": "nicho.m@gmail.com", - "theme": "plaintext" -} + "copyright": "Nick Martinelli, http://nickmartinelli.com", + "url": "http://nickmartinelli.com", + "email": "nicho.m@gmail.com", + "theme": "plaintext" +} \ No newline at end of file diff --git a/users/nickmanos.json b/users/nickmanos.json index 7b907cb0..1955393f 100644 --- a/users/nickmanos.json +++ b/users/nickmanos.json @@ -1,4 +1,4 @@ { - "copyright": "Nick Manos", - "email": "manos.nick@gmail.com" -} + "copyright": "Nick Manos", + "email": "manos.nick@gmail.com" +} \ No newline at end of file diff --git a/users/nicksp.json b/users/nicksp.json index a982b6ef..60277f6a 100644 --- a/users/nicksp.json +++ b/users/nicksp.json @@ -1,7 +1,7 @@ { - "copyright": "Nick S. Plekhanov", - "email": "nickatgit@yandex.com", - "format": "html", - "theme": "material-indigo", - "gravatar": true -} + "copyright": "Nick S. Plekhanov", + "email": "nickatgit@yandex.com", + "format": "html", + "theme": "material-indigo", + "gravatar": true +} \ No newline at end of file diff --git a/users/nico.json b/users/nico.json index b1765bd6..b4798326 100644 --- a/users/nico.json +++ b/users/nico.json @@ -1,4 +1,4 @@ { - "copyright": "Nicolas Chaulet", - "email": "nicolas.chaulet@gmail.com" -} + "copyright": "Nicolas Chaulet", + "email": "nicolas.chaulet@gmail.com" +} \ No newline at end of file diff --git a/users/niftylettuce.json b/users/niftylettuce.json index e5ab4609..38d76dc1 100644 --- a/users/niftylettuce.json +++ b/users/niftylettuce.json @@ -1,6 +1,6 @@ { - "copyright": "Nick Baugh", - "url": "http://niftylettuce.com", - "email": "niftylettuce@gmail.com", - "format": "txt" -} + "copyright": "Nick Baugh", + "url": "http://niftylettuce.com", + "email": "niftylettuce@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/nightw.json b/users/nightw.json index 023c19ee..5ffb53b3 100644 --- a/users/nightw.json +++ b/users/nightw.json @@ -1,5 +1,5 @@ { - "copyright": "Pal David Gergely", - "email": "nightw17@gmail.com", - "format": "txt" -} + "copyright": "Pal David Gergely", + "email": "nightw17@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/nik.json b/users/nik.json index 5edaf4b6..2171269c 100644 --- a/users/nik.json +++ b/users/nik.json @@ -1,3 +1,3 @@ { - "copyright": "Nikolas Weger" -} + "copyright": "Nikolas Weger" +} \ No newline at end of file diff --git a/users/nikbobo.json b/users/nikbobo.json index c3800f76..33c17487 100644 --- a/users/nikbobo.json +++ b/users/nikbobo.json @@ -1,6 +1,6 @@ { - "copyright": "Nikbobo, http://www.nikbobo.net", - "url": "http://www.nikbobo.net", - "email": "nikbobos@gmail.com", - "theme": "default" -} + "copyright": "Nikbobo, http://www.nikbobo.net", + "url": "http://www.nikbobo.net", + "email": "nikbobos@gmail.com", + "theme": "default" +} \ No newline at end of file diff --git a/users/nikhilgohil11.json b/users/nikhilgohil11.json index 19fb34cd..f6ab3426 100644 --- a/users/nikhilgohil11.json +++ b/users/nikhilgohil11.json @@ -1,3 +1,3 @@ { - "copyright": "Nikhil Gohil" -} + "copyright": "Nikhil Gohil" +} \ No newline at end of file diff --git a/users/nikolay.json b/users/nikolay.json index f9b949d7..4ff3c225 100644 --- a/users/nikolay.json +++ b/users/nikolay.json @@ -1,8 +1,8 @@ { - "copyright": "Nikolay Kolev", - "url": "https://nikolay.com", - "email": "me@nikolay.com", - "gravatar": true, - "format": "html", - "theme": "default" -} + "copyright": "Nikolay Kolev", + "url": "https://nikolay.com", + "email": "me@nikolay.com", + "gravatar": true, + "format": "html", + "theme": "default" +} \ No newline at end of file diff --git a/users/nil.json b/users/nil.json index 66e277c1..2da161f1 100644 --- a/users/nil.json +++ b/users/nil.json @@ -1,6 +1,6 @@ { - "copyright": "Nil K\u00e9sede", - "url": "http://ksde.pw", - "email": "nil@ksde.pw", - "format": "txt" -} + "copyright": "Nil Késede", + "url": "http://ksde.pw", + "email": "nil@ksde.pw", + "format": "txt" +} \ No newline at end of file diff --git a/users/nilesh.json b/users/nilesh.json index da5a5aef..64ee902a 100644 --- a/users/nilesh.json +++ b/users/nilesh.json @@ -1,6 +1,6 @@ { - "copyright": "Nilesh Londhe", - "url": "http://nilesh.londhe.com", - "email": "nilesh@londhe.com", - "format": "txt" -} + "copyright": "Nilesh Londhe", + "url": "http://nilesh.londhe.com", + "email": "nilesh@londhe.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/nilkesede.json b/users/nilkesede.json index 66e277c1..2da161f1 100644 --- a/users/nilkesede.json +++ b/users/nilkesede.json @@ -1,6 +1,6 @@ { - "copyright": "Nil K\u00e9sede", - "url": "http://ksde.pw", - "email": "nil@ksde.pw", - "format": "txt" -} + "copyright": "Nil Késede", + "url": "http://ksde.pw", + "email": "nil@ksde.pw", + "format": "txt" +} \ No newline at end of file diff --git a/users/nilswloka.json b/users/nilswloka.json index bca492f3..61cfb152 100644 --- a/users/nilswloka.json +++ b/users/nilswloka.json @@ -1,3 +1,3 @@ { - "copyright": "Nils Wloka" -} + "copyright": "Nils Wloka" +} \ No newline at end of file diff --git a/users/niltoncms.json b/users/niltoncms.json index e2ee0bcb..79ebca19 100644 --- a/users/niltoncms.json +++ b/users/niltoncms.json @@ -1,7 +1,7 @@ { - "copyright": "Nilton, @niltoncms", - "url": "http://niltoncms.flavors.me/", - "email": "niltoncms@gmail.com", - "gravatar": false, - "theme": "opensans" -} + "copyright": "Nilton, @niltoncms", + "url": "http://niltoncms.flavors.me/", + "email": "niltoncms@gmail.com", + "gravatar": false, + "theme": "opensans" +} \ No newline at end of file diff --git a/users/nima.json b/users/nima.json index ddc9ac7d..634c59ae 100644 --- a/users/nima.json +++ b/users/nima.json @@ -1,7 +1,7 @@ { - "copyright": "Nima Amini, http://nima.pro", - "url": "http://nima.pro/", - "format": "html", - "gravatar": false, - "theme": "plaintext" -} + "copyright": "Nima Amini, http://nima.pro", + "url": "http://nima.pro/", + "format": "html", + "gravatar": false, + "theme": "plaintext" +} \ No newline at end of file diff --git a/users/nimbu.json b/users/nimbu.json index d91666d3..0d4bca07 100644 --- a/users/nimbu.json +++ b/users/nimbu.json @@ -1,6 +1,6 @@ { - "copyright": "Nimbu", - "url": "http://www.nimbu.io", - "email": "opensource@nimbu.io", - "theme": "flesch" -} + "copyright": "Nimbu", + "url": "http://www.nimbu.io", + "email": "opensource@nimbu.io", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/nisargrthakkar.json b/users/nisargrthakkar.json index d348496c..060a3238 100644 --- a/users/nisargrthakkar.json +++ b/users/nisargrthakkar.json @@ -1,7 +1,7 @@ { - "copyright": "Nisarg R Thakkar", - "email": "nisargthakkar113@gmail.com", - "format": "html", - "theme": "material-indigo", - "gravatar": true -} + "copyright": "Nisarg R Thakkar", + "email": "nisargthakkar113@gmail.com", + "format": "html", + "theme": "material-indigo", + "gravatar": true +} \ No newline at end of file diff --git a/users/nishanths.json b/users/nishanths.json index 96c37b4d..cd630894 100644 --- a/users/nishanths.json +++ b/users/nishanths.json @@ -1,3 +1,3 @@ { - "copyright": "Nishanth Shanmugham" -} + "copyright": "Nishanth Shanmugham" +} \ No newline at end of file diff --git a/users/nitori.json b/users/nitori.json index 37f08ea9..0af157d5 100644 --- a/users/nitori.json +++ b/users/nitori.json @@ -1,3 +1,3 @@ { - "copyright": "Nitori Kawashiro" -} + "copyright": "Nitori Kawashiro" +} \ No newline at end of file diff --git a/users/nitriques.json b/users/nitriques.json index d94888d6..646d6677 100644 --- a/users/nitriques.json +++ b/users/nitriques.json @@ -1,6 +1,6 @@ { - "copyright": "Nicolas Brassard, http://nicolasbrassard.com", - "url": "http://nicolasbrassard.com", - "theme": "flesch", - "gravatar": true -} + "copyright": "Nicolas Brassard, http://nicolasbrassard.com", + "url": "http://nicolasbrassard.com", + "theme": "flesch", + "gravatar": true +} \ No newline at end of file diff --git a/users/njordon.json b/users/njordon.json index d368d260..86f6b3db 100644 --- a/users/njordon.json +++ b/users/njordon.json @@ -1,6 +1,6 @@ { - "copyright": "Nicholas Jordon", - "url": "https://github.com/ProjectCleverWeb", - "email": "projectcleverweb@gmail.com", - "theme": "material-blue" -} + "copyright": "Nicholas Jordon", + "url": "https://github.com/ProjectCleverWeb", + "email": "projectcleverweb@gmail.com", + "theme": "material-blue" +} \ No newline at end of file diff --git a/users/nk.json b/users/nk.json index 2850b22f..902bcb69 100644 --- a/users/nk.json +++ b/users/nk.json @@ -1,6 +1,6 @@ { - "copyright": "Nadeem Khan", - "url": "https://about.me/nadeeemkhan7", - "email": "nadeem7khan@gmail.com", - "format": "txt" -} + "copyright": "Nadeem Khan", + "url": "https://about.me/nadeeemkhan7", + "email": "nadeem7khan@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/nks.json b/users/nks.json index 88e7517b..b99e9535 100644 --- a/users/nks.json +++ b/users/nks.json @@ -1,6 +1,6 @@ { - "copyright": "Nikhil Soni", - "url": "https://twitter.com/krsoninikhil", - "email": "krsoninikhil@gmail.com", - "gravatar": true -} + "copyright": "Nikhil Soni", + "url": "https://twitter.com/krsoninikhil", + "email": "krsoninikhil@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/nlr.json b/users/nlr.json index 7fbff02a..0963218d 100644 --- a/users/nlr.json +++ b/users/nlr.json @@ -1,8 +1,8 @@ { - "copyright": "Lanicia, MKody, https://newlunarrepublic.fr", - "url": "https://newlunarrepublic.fr", - "email": "royalguard@newlunarrepublic.fr", - "format": "html", - "theme": "xtansia", - "gravatar": false -} + "copyright": "Lanicia, MKody, https://newlunarrepublic.fr", + "url": "https://newlunarrepublic.fr", + "email": "royalguard@newlunarrepublic.fr", + "format": "html", + "theme": "xtansia", + "gravatar": false +} \ No newline at end of file diff --git a/users/nm.json b/users/nm.json index 7b1cd12e..785f7ac1 100644 --- a/users/nm.json +++ b/users/nm.json @@ -1,3 +1,3 @@ { - "copyright": "NixonMcInnes" -} + "copyright": "NixonMcInnes" +} \ No newline at end of file diff --git a/users/nmanos.json b/users/nmanos.json index 37d28e17..40331688 100644 --- a/users/nmanos.json +++ b/users/nmanos.json @@ -1,5 +1,5 @@ { - "copyright": "Nick Manos", - "email": "manos.nick@gmail.com", - "format": "txt" -} + "copyright": "Nick Manos", + "email": "manos.nick@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/nnexus.json b/users/nnexus.json index d4097a60..556c8def 100644 --- a/users/nnexus.json +++ b/users/nnexus.json @@ -1,3 +1,3 @@ { - "copyright": "Aaron Krowne and James Gardner and Deyan Ginev" -} + "copyright": "Aaron Krowne and James Gardner and Deyan Ginev" +} \ No newline at end of file diff --git a/users/nntoan.json b/users/nntoan.json index 163ec80b..d25b4446 100644 --- a/users/nntoan.json +++ b/users/nntoan.json @@ -1,6 +1,6 @@ { - "copyright": "Toan Nguyen", - "url": "https://nntoan.com", - "email": "me@nntoan.com", - "gravatar": true -} + "copyright": "Toan Nguyen", + "url": "https://nntoan.com", + "email": "me@nntoan.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/no.json b/users/no.json index 799dbf3f..ee398209 100644 --- a/users/no.json +++ b/users/no.json @@ -1,6 +1,6 @@ { - "copyright": "pingrat", - "url": "https://github.com/pingrat", - "email": "pingrat@gmail.com", - "format": "txt" -} + "copyright": "pingrat", + "url": "https://github.com/pingrat", + "email": "pingrat@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/nodaguti.json b/users/nodaguti.json index 0ea0be2d..262abfaa 100644 --- a/users/nodaguti.json +++ b/users/nodaguti.json @@ -1,4 +1,4 @@ { - "copyright": "nodaguti", - "url": "https://github.com/nodaguti" -} + "copyright": "nodaguti", + "url": "https://github.com/nodaguti" +} \ No newline at end of file diff --git a/users/nodejsbrasil.json b/users/nodejsbrasil.json index 0ef4c0af..0c380350 100644 --- a/users/nodejsbrasil.json +++ b/users/nodejsbrasil.json @@ -1,6 +1,6 @@ { - "copyright": "NodeJS Brasil", - "url": "https://github.com/NodeJS-Brasil", - "email": "jnascimento@gmail.com", - "theme": "double-windsor" -} + "copyright": "NodeJS Brasil", + "url": "https://github.com/NodeJS-Brasil", + "email": "jnascimento@gmail.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/noeldavies.json b/users/noeldavies.json index 8ed93e76..912b75aa 100644 --- a/users/noeldavies.json +++ b/users/noeldavies.json @@ -1,3 +1,3 @@ { - "copyright": "Daniel Noel-Davies" -} + "copyright": "Daniel Noel-Davies" +} \ No newline at end of file diff --git a/users/nojb.json b/users/nojb.json index 904a0b6c..f0d54dde 100644 --- a/users/nojb.json +++ b/users/nojb.json @@ -1,3 +1,3 @@ { - "copyright": "Nicol\u00e1s Ojeda B\u00e4r" -} + "copyright": "Nicolás Ojeda Bär" +} \ No newline at end of file diff --git a/users/nooblad.json b/users/nooblad.json index dcf2ac53..7d24c14b 100644 --- a/users/nooblad.json +++ b/users/nooblad.json @@ -1,3 +1,3 @@ { - "copyright": "Ludovic Lafole" -} + "copyright": "Ludovic Lafole" +} \ No newline at end of file diff --git a/users/noodlehaus.json b/users/noodlehaus.json index 8e1df1fa..670cb72e 100644 --- a/users/noodlehaus.json +++ b/users/noodlehaus.json @@ -1,5 +1,5 @@ { - "copyright": "Jesus A. Domingo", - "url": "http://jesusdomingo.com", - "email": "jesus.domingo@gmail.com" -} + "copyright": "Jesus A. Domingo", + "url": "http://jesusdomingo.com", + "email": "jesus.domingo@gmail.com" +} \ No newline at end of file diff --git a/users/norcross.json b/users/norcross.json index 099f5bc6..b55c7f24 100644 --- a/users/norcross.json +++ b/users/norcross.json @@ -1,6 +1,6 @@ { - "copyright": "Andrew Norcross", - "url": "http://andrewnorcross.com", - "email": "andrew@andrewnorcross.com", - "format": "txt" -} + "copyright": "Andrew Norcross", + "url": "http://andrewnorcross.com", + "email": "andrew@andrewnorcross.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/noriaki.json b/users/noriaki.json index a1268921..547728a2 100644 --- a/users/noriaki.json +++ b/users/noriaki.json @@ -1,7 +1,7 @@ { - "copyright": "Noriaki Uchiyama", - "url": "https://github.com/noriaki", - "theme": "material-indigo", - "email": "uchiyama.noriaki@gmail.com", - "gravatar": true -} + "copyright": "Noriaki Uchiyama", + "url": "https://github.com/noriaki", + "theme": "material-indigo", + "email": "uchiyama.noriaki@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/noromanba.json b/users/noromanba.json index 44f735d4..cac460ba 100644 --- a/users/noromanba.json +++ b/users/noromanba.json @@ -1,5 +1,5 @@ { - "copyright": "noromanba", - "url": "http://d.hatena.ne.jp/noromanba/", - "theme": "afterdark" -} + "copyright": "noromanba", + "url": "http://d.hatena.ne.jp/noromanba/", + "theme": "afterdark" +} \ No newline at end of file diff --git a/users/norris.json b/users/norris.json index c7afd008..dcaefd00 100644 --- a/users/norris.json +++ b/users/norris.json @@ -1,5 +1,5 @@ { - "copyright": "Nauris Pukis", - "url": "http://justnorris.com", - "email": "im@justnorris.com" -} + "copyright": "Nauris Pukis", + "url": "http://justnorris.com", + "email": "im@justnorris.com" +} \ No newline at end of file diff --git a/users/noty.json b/users/noty.json index 2c4fd0b7..5e66547b 100644 --- a/users/noty.json +++ b/users/noty.json @@ -1,3 +1,3 @@ { - "copyright": "Nedim Arabac\u0131" -} + "copyright": "Nedim Arabacı" +} \ No newline at end of file diff --git a/users/novalagung.json b/users/novalagung.json index d60b9cfa..54d2e8c3 100644 --- a/users/novalagung.json +++ b/users/novalagung.json @@ -1,7 +1,7 @@ { - "copyright": "Noval Agung Prayogo", - "url": "http://novalagung.com", - "email": "caknopal@gmail.com", - "theme": "double-windsor", - "gravatar": true -} + "copyright": "Noval Agung Prayogo", + "url": "http://novalagung.com", + "email": "caknopal@gmail.com", + "theme": "double-windsor", + "gravatar": true +} \ No newline at end of file diff --git a/users/nqngo.json b/users/nqngo.json index bc6c558c..8534ecd1 100644 --- a/users/nqngo.json +++ b/users/nqngo.json @@ -1,5 +1,5 @@ { - "copyright": "Nhat Q. Ngo", - "email": "phuquoc2001@gmail.com", - "gravatar": true -} + "copyright": "Nhat Q. Ngo", + "email": "phuquoc2001@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/nrakochy.json b/users/nrakochy.json index ecb4a2bb..fbd490e6 100644 --- a/users/nrakochy.json +++ b/users/nrakochy.json @@ -1,5 +1,5 @@ { - "copyright": "Nick Rakochy", - "url": "nickrakochy.com", - "theme": "friendly" -} + "copyright": "Nick Rakochy", + "url": "nickrakochy.com", + "theme": "friendly" +} \ No newline at end of file diff --git a/users/nrm.json b/users/nrm.json index bab5f481..8235ffc3 100644 --- a/users/nrm.json +++ b/users/nrm.json @@ -1,4 +1,4 @@ { - "copyright": "noromanba", - "url": "http://d.hatena.ne.jp/noromanba/" -} + "copyright": "noromanba", + "url": "http://d.hatena.ne.jp/noromanba/" +} \ No newline at end of file diff --git a/users/ns.json b/users/ns.json index 8a425280..380e3330 100644 --- a/users/ns.json +++ b/users/ns.json @@ -1,6 +1,6 @@ { - "copyright": "Naksion W", - "url": "https://naksion.com", - "email": "naksions@gmail.com", - "format": "html" -} + "copyright": "Naksion W", + "url": "https://naksion.com", + "email": "naksions@gmail.com", + "format": "html" +} \ No newline at end of file diff --git a/users/nsisodiya.json b/users/nsisodiya.json index bb141f5f..4c9c2627 100644 --- a/users/nsisodiya.json +++ b/users/nsisodiya.json @@ -1,6 +1,6 @@ { - "copyright": "Narendra Sisodiya", - "url": "http://narendrasisodiya.com", - "email": "narendra@narendrasisodiya.com", - "format": "txt" -} + "copyright": "Narendra Sisodiya", + "url": "http://narendrasisodiya.com", + "email": "narendra@narendrasisodiya.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/null.json b/users/null.json index 8ede7a74..315e297e 100644 --- a/users/null.json +++ b/users/null.json @@ -1,5 +1,5 @@ { - "//1": "Security holding user", - "//2": "This user is being locked to allow for no copyright information.", - "locked": true -} + "//1": "Security holding user", + "//2": "This user is being locked to allow for no copyright information.", + "locked": true +} \ No newline at end of file diff --git a/users/numediaweb.json b/users/numediaweb.json index f16db6a0..10f97b8d 100644 --- a/users/numediaweb.json +++ b/users/numediaweb.json @@ -1,6 +1,6 @@ { - "copyright": "Abdessamad Idrissi", - "url": "http://numediaweb.com", - "email": "abdel@numediaweb.com", - "format": "txt" -} + "copyright": "Abdessamad Idrissi", + "url": "http://numediaweb.com", + "email": "abdel@numediaweb.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/nuri.json b/users/nuri.json index fcffd080..d866dd20 100644 --- a/users/nuri.json +++ b/users/nuri.json @@ -1,3 +1,3 @@ { - "copyright": "Nuri Hodges" -} + "copyright": "Nuri Hodges" +} \ No newline at end of file diff --git a/users/nv.json b/users/nv.json index 21ea7572..9dcc8807 100644 --- a/users/nv.json +++ b/users/nv.json @@ -1,6 +1,6 @@ { - "copyright": "Nicolae Vartolomei", - "url": "http://nvartolomei.com", - "email": "me@nvartolomei.com", - "format": "txt" -} + "copyright": "Nicolae Vartolomei", + "url": "http://nvartolomei.com", + "email": "me@nvartolomei.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/nvcnvn.json b/users/nvcnvn.json index dc1fd425..f841dbc7 100644 --- a/users/nvcnvn.json +++ b/users/nvcnvn.json @@ -1,3 +1,3 @@ { - "copyright": "Nguy\u1ec5n V\u0103n Cao Nguy\u00ean" -} + "copyright": "Nguyễn Văn Cao Nguyên" +} \ No newline at end of file diff --git a/users/nyarla.json b/users/nyarla.json index 907a7acb..21c79938 100644 --- a/users/nyarla.json +++ b/users/nyarla.json @@ -1,7 +1,7 @@ { - "copyright": "Naoki OKAMURA (Nyarla)", - "url": "http://nyarla.net/", - "email": "nyarla@thotep.net", - "gravatar": true, - "theme": "flesch" -} + "copyright": "Naoki OKAMURA (Nyarla)", + "url": "http://nyarla.net/", + "email": "nyarla@thotep.net", + "gravatar": true, + "theme": "flesch" +} \ No newline at end of file diff --git a/users/o.json b/users/o.json index 74d63999..d78ac9d2 100644 --- a/users/o.json +++ b/users/o.json @@ -1,6 +1,6 @@ { - "copyright": "Osman Ungur", - "url": "http://ungur.org", - "email": "osmanungur@gmail.com", - "format": "txt" -} + "copyright": "Osman Ungur", + "url": "http://ungur.org", + "email": "osmanungur@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/oaeide.json b/users/oaeide.json index 6a539cee..dcbab8c4 100644 --- a/users/oaeide.json +++ b/users/oaeide.json @@ -1,3 +1,3 @@ { - "copyright": "\u00d8yvind Andreas Eide" -} + "copyright": "Øyvind Andreas Eide" +} \ No newline at end of file diff --git a/users/obihann.json b/users/obihann.json index 4d45a546..7b67b178 100644 --- a/users/obihann.json +++ b/users/obihann.json @@ -1,5 +1,5 @@ { - "copyright": "Jeffrey Hann", - "url": "http://jeffreyhann.ca", - "email": "jeffhann@gmail.com" -} + "copyright": "Jeffrey Hann", + "url": "http://jeffreyhann.ca", + "email": "jeffhann@gmail.com" +} \ No newline at end of file diff --git a/users/object505.json b/users/object505.json index 95e35718..730e4e02 100644 --- a/users/object505.json +++ b/users/object505.json @@ -1,5 +1,5 @@ { - "copyright": "Bojan Petkovski, https://github.com/object505", - "url": "http://object505.com", - "email": "pbeluent@gmail.com" -} + "copyright": "Bojan Petkovski, https://github.com/object505", + "url": "http://object505.com", + "email": "pbeluent@gmail.com" +} \ No newline at end of file diff --git a/users/oc.json b/users/oc.json index 0bab85c0..57c049f4 100644 --- a/users/oc.json +++ b/users/oc.json @@ -1,5 +1,5 @@ { - "copyright": "\u9ea6\u5f53\u82d7\u513f, ONECMF.COM", - "url": "http://www.onecmf.com", - "format": "html" -} + "copyright": "麦当苗儿, ONECMF.COM", + "url": "http://www.onecmf.com", + "format": "html" +} \ No newline at end of file diff --git a/users/octavioturra.json b/users/octavioturra.json index ef8ed6f4..a4ec66d5 100644 --- a/users/octavioturra.json +++ b/users/octavioturra.json @@ -1,6 +1,6 @@ { - "copyright": "Octavio Turra, http://fraguto.com.br", - "url": "http://fraguto.com.br", - "email": "octo@fraguto.com.br", - "theme": "friendly" -} + "copyright": "Octavio Turra, http://fraguto.com.br", + "url": "http://fraguto.com.br", + "email": "octo@fraguto.com.br", + "theme": "friendly" +} \ No newline at end of file diff --git a/users/odsod.json b/users/odsod.json index 54d76efd..2d59e5be 100644 --- a/users/odsod.json +++ b/users/odsod.json @@ -1,3 +1,3 @@ { - "copyright": "Oscar S\u00f6derlund" -} + "copyright": "Oscar Söderlund" +} \ No newline at end of file diff --git a/users/ofer-shaham.json b/users/ofer-shaham.json index 50b7ea2e..7f3a8452 100644 --- a/users/ofer-shaham.json +++ b/users/ofer-shaham.json @@ -1,6 +1,6 @@ { - "copyright": "Ofer Shaham", - "url": "http://brownman.github.io", - "email": "ofer.shaham@gmail.com", - "format": "txt" -} + "copyright": "Ofer Shaham", + "url": "http://brownman.github.io", + "email": "ofer.shaham@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/ofer.json b/users/ofer.json index 3c04eef2..70fa95ad 100644 --- a/users/ofer.json +++ b/users/ofer.json @@ -1,3 +1,3 @@ { - "copyright": "Ofer Shaham" -} + "copyright": "Ofer Shaham" +} \ No newline at end of file diff --git a/users/oguching.json b/users/oguching.json index 07e9a6e9..34706038 100644 --- a/users/oguching.json +++ b/users/oguching.json @@ -1,5 +1,5 @@ { - "copyright": "Oguchi Nzekwe, http://oguching.com", - "url": "http://oguching.com", - "theme": "opensans" -} + "copyright": "Oguchi Nzekwe, http://oguching.com", + "url": "http://oguching.com", + "theme": "opensans" +} \ No newline at end of file diff --git a/users/ohtomi.json b/users/ohtomi.json index 5d0bcc5c..399ee8b4 100644 --- a/users/ohtomi.json +++ b/users/ohtomi.json @@ -1,4 +1,4 @@ { - "copyright": "Kenichi Ohtomi", - "url": "https://github.com/ohtomi" -} + "copyright": "Kenichi Ohtomi", + "url": "https://github.com/ohtomi" +} \ No newline at end of file diff --git a/users/oidong1.json b/users/oidong1.json index 4414cd8b..2c0d4299 100644 --- a/users/oidong1.json +++ b/users/oidong1.json @@ -1,3 +1,3 @@ { - "copyright": "oidong" -} + "copyright": "oidong" +} \ No newline at end of file diff --git a/users/ojoaofernandes.json b/users/ojoaofernandes.json index 93caa69c..154dd2b2 100644 --- a/users/ojoaofernandes.json +++ b/users/ojoaofernandes.json @@ -1,3 +1,3 @@ { - "copyright": "Jo\u00e3o Pedro Fernandes" -} + "copyright": "João Pedro Fernandes" +} \ No newline at end of file diff --git a/users/ok.json b/users/ok.json index 3bfadfb3..a01dfd4c 100644 --- a/users/ok.json +++ b/users/ok.json @@ -1,4 +1,4 @@ { - "copyright": "Olli Kankare", - "email": "olli@salaliitto.com" -} + "copyright": "Olli Kankare", + "email": "olli@salaliitto.com" +} \ No newline at end of file diff --git a/users/okeyaki.json b/users/okeyaki.json index ee97396a..719da255 100644 --- a/users/okeyaki.json +++ b/users/okeyaki.json @@ -1,3 +1,3 @@ { - "copyright": "Okeyaki" -} + "copyright": "Okeyaki" +} \ No newline at end of file diff --git a/users/ol.json b/users/ol.json index 25334095..e7ef100a 100644 --- a/users/ol.json +++ b/users/ol.json @@ -1,6 +1,6 @@ { - "copyright": "Oliver Lumby", - "url": "http://oliverlumby.com", - "email": "me@oliverlumby.com", - "format": "txt" -} + "copyright": "Oliver Lumby", + "url": "http://oliverlumby.com", + "email": "me@oliverlumby.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/olalonde.json b/users/olalonde.json index c9784dc2..ca6d11b2 100644 --- a/users/olalonde.json +++ b/users/olalonde.json @@ -1,5 +1,5 @@ { - "copyright": "Olivier Lalonde", - "url": "http://www.syskall.com", - "email": "olalonde@gmail.com" -} + "copyright": "Olivier Lalonde", + "url": "http://www.syskall.com", + "email": "olalonde@gmail.com" +} \ No newline at end of file diff --git a/users/olav.json b/users/olav.json index fb17d5aa..20722c0e 100644 --- a/users/olav.json +++ b/users/olav.json @@ -1,6 +1,6 @@ { - "copyright": "Olav Schettler", - "url": "http://olav.net", - "email": "mit-license@schettler.net", - "format": "txt" -} + "copyright": "Olav Schettler", + "url": "http://olav.net", + "email": "mit-license@schettler.net", + "format": "txt" +} \ No newline at end of file diff --git a/users/olgabot.json b/users/olgabot.json index ddf3be9b..2a396ea6 100644 --- a/users/olgabot.json +++ b/users/olgabot.json @@ -1,3 +1,3 @@ { - "copyright": "Olga Botvinnik" -} + "copyright": "Olga Botvinnik" +} \ No newline at end of file diff --git a/users/oliciv.json b/users/oliciv.json index 1304647d..f1bf4e04 100644 --- a/users/oliciv.json +++ b/users/oliciv.json @@ -1,5 +1,5 @@ { - "copyright": "Oli Allen", - "url": "http://www.oliallen.com", - "email": "oli@oliallen.com" -} + "copyright": "Oli Allen", + "url": "http://www.oliallen.com", + "email": "oli@oliallen.com" +} \ No newline at end of file diff --git a/users/olivere.json b/users/olivere.json index 9b3cdfad..239b511a 100644 --- a/users/olivere.json +++ b/users/olivere.json @@ -1,3 +1,3 @@ { - "copyright": "Oliver Eilhard" -} + "copyright": "Oliver Eilhard" +} \ No newline at end of file diff --git a/users/olivernn.json b/users/olivernn.json index 61cf44d3..cf6815f5 100644 --- a/users/olivernn.json +++ b/users/olivernn.json @@ -1,3 +1,3 @@ { - "copyright": "Oliver Nightingale" -} + "copyright": "Oliver Nightingale" +} \ No newline at end of file diff --git a/users/olivier.json b/users/olivier.json index 63ae617e..274648d3 100644 --- a/users/olivier.json +++ b/users/olivier.json @@ -1,6 +1,6 @@ { - "copyright": "Olivier Lacan", - "url": "http://olivierlacan.com", - "email": "hi@olivierlacan.com", - "format": "txt" -} + "copyright": "Olivier Lacan", + "url": "http://olivierlacan.com", + "email": "hi@olivierlacan.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/ollej.json b/users/ollej.json index 6f2a2de5..8b213319 100644 --- a/users/ollej.json +++ b/users/ollej.json @@ -1,7 +1,7 @@ { - "copyright": "Olle Johansson", - "url": "http://www.jxdevelopment.com", - "email": "Olle@Johansson.com", - "format": "html", - "theme": "double-windsor" -} + "copyright": "Olle Johansson", + "url": "http://www.jxdevelopment.com", + "email": "Olle@Johansson.com", + "format": "html", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/olly.json b/users/olly.json index e893db04..11650130 100644 --- a/users/olly.json +++ b/users/olly.json @@ -1,3 +1,3 @@ { - "copyright": "Oliver Legg" -} + "copyright": "Oliver Legg" +} \ No newline at end of file diff --git a/users/olmokramer.json b/users/olmokramer.json index 8e1ef1b8..2a619c9d 100644 --- a/users/olmokramer.json +++ b/users/olmokramer.json @@ -1,3 +1,3 @@ { - "copyright": "Olmo Kramer" -} + "copyright": "Olmo Kramer" +} \ No newline at end of file diff --git a/users/omarithawi.json b/users/omarithawi.json index ec24bef3..44835dfa 100644 --- a/users/omarithawi.json +++ b/users/omarithawi.json @@ -1,3 +1,3 @@ { - "copyright": "Omar Al-Ithawi" -} + "copyright": "Omar Al-Ithawi" +} \ No newline at end of file diff --git a/users/omg.json b/users/omg.json index 37e7d902..0eea856d 100644 --- a/users/omg.json +++ b/users/omg.json @@ -1,8 +1,8 @@ { - "copyright": "Omid Gharib, https://github.com/omidgharib", - "url": "http://omidgharib.ir", - "format": "txt", - "email": "omidgharib@yahoo.com", - "gravatar": true, - "theme": "default" -} + "copyright": "Omid Gharib, https://github.com/omidgharib", + "url": "http://omidgharib.ir", + "format": "txt", + "email": "omidgharib@yahoo.com", + "gravatar": true, + "theme": "default" +} \ No newline at end of file diff --git a/users/omi.json b/users/omi.json index 574fe678..125aeeb8 100644 --- a/users/omi.json +++ b/users/omi.json @@ -1,6 +1,6 @@ { - "copyright": "OMI A/S", - "url": "http://omi.dk", - "email": "support@omi.dk", - "format": "txt" -} + "copyright": "OMI A/S", + "url": "http://omi.dk", + "email": "support@omi.dk", + "format": "txt" +} \ No newline at end of file diff --git a/users/omidgharib.json b/users/omidgharib.json index 37e7d902..0eea856d 100644 --- a/users/omidgharib.json +++ b/users/omidgharib.json @@ -1,8 +1,8 @@ { - "copyright": "Omid Gharib, https://github.com/omidgharib", - "url": "http://omidgharib.ir", - "format": "txt", - "email": "omidgharib@yahoo.com", - "gravatar": true, - "theme": "default" -} + "copyright": "Omid Gharib, https://github.com/omidgharib", + "url": "http://omidgharib.ir", + "format": "txt", + "email": "omidgharib@yahoo.com", + "gravatar": true, + "theme": "default" +} \ No newline at end of file diff --git a/users/omtinez.json b/users/omtinez.json index 3e54264e..ad8de9b5 100644 --- a/users/omtinez.json +++ b/users/omtinez.json @@ -1,3 +1,3 @@ { - "copyright": "Oscar Martinez" -} + "copyright": "Oscar Martinez" +} \ No newline at end of file diff --git a/users/onarray.json b/users/onarray.json index 09956cf3..564c8d60 100644 --- a/users/onarray.json +++ b/users/onarray.json @@ -1,4 +1,4 @@ { - "copyright": "onarray", - "url": "http://www.onarray.com" -} + "copyright": "onarray", + "url": "http://www.onarray.com" +} \ No newline at end of file diff --git a/users/onecmf.json b/users/onecmf.json index e3175148..86cd7bce 100644 --- a/users/onecmf.json +++ b/users/onecmf.json @@ -1,6 +1,6 @@ { - "copyright": "\u9ea6\u5f53\u82d7\u513f\uff0cONECMF.COM", - "url": "http://www.onecmf.com", - "email": "zuojiazi@vip.qq.com", - "format": "html" -} + "copyright": "麦当苗儿,ONECMF.COM", + "url": "http://www.onecmf.com", + "email": "zuojiazi@vip.qq.com", + "format": "html" +} \ No newline at end of file diff --git a/users/onedge.json b/users/onedge.json index a1e2e8fd..5e80ad20 100644 --- a/users/onedge.json +++ b/users/onedge.json @@ -1,3 +1,3 @@ { - "copyright": "On Edge" -} + "copyright": "On Edge" +} \ No newline at end of file diff --git a/users/onenorth.json b/users/onenorth.json index 9fa34000..1db509b5 100644 --- a/users/onenorth.json +++ b/users/onenorth.json @@ -1,5 +1,5 @@ { - "copyright": "One North Interactive", - "url": "http://onenorth.com", - "email": "support@onenorth.com" -} + "copyright": "One North Interactive", + "url": "http://onenorth.com", + "email": "support@onenorth.com" +} \ No newline at end of file diff --git a/users/oojs.json b/users/oojs.json index 49b2cc8f..72b90bd8 100644 --- a/users/oojs.json +++ b/users/oojs.json @@ -1,6 +1,6 @@ { - "copyright": "OOjs Team and other contributors", - "url": "https://github.com/wikimedia/oojs", - "format": "html", - "theme": "double-windsor" -} + "copyright": "OOjs Team and other contributors", + "url": "https://github.com/wikimedia/oojs", + "format": "html", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/openjtalkgolang.json b/users/openjtalkgolang.json index 30568cdb..3e9e2864 100644 --- a/users/openjtalkgolang.json +++ b/users/openjtalkgolang.json @@ -1,5 +1,5 @@ { - "copyright": "Pedro Moraes ", - "url": "http://omoraes.com.br", - "format": "txt" -} + "copyright": "Pedro Moraes ", + "url": "http://omoraes.com.br", + "format": "txt" +} \ No newline at end of file diff --git a/users/oppara.json b/users/oppara.json index e395e0db..dbad81b8 100644 --- a/users/oppara.json +++ b/users/oppara.json @@ -1,5 +1,5 @@ { - "copyright": "Nobuo OOHARA, http://www.oppara.tv/", - "url": "http://www.oppara.tv/", - "theme": "afterdark" -} + "copyright": "Nobuo OOHARA, http://www.oppara.tv/", + "url": "http://www.oppara.tv/", + "theme": "afterdark" +} \ No newline at end of file diff --git a/users/opsworks-ruby.json b/users/opsworks-ruby.json index 12a38bd2..af9b64f3 100644 --- a/users/opsworks-ruby.json +++ b/users/opsworks-ruby.json @@ -1,4 +1,4 @@ { - "copyright": "Igor Rzegocki", - "url": "https://rzegocki.pl/" -} + "copyright": "Igor Rzegocki", + "url": "https://rzegocki.pl/" +} \ No newline at end of file diff --git a/users/orgachem.json b/users/orgachem.json index 4ca349de..6ffef548 100644 --- a/users/orgachem.json +++ b/users/orgachem.json @@ -1,4 +1,4 @@ { - "copyright": "OrgaChem", - "url": "https://github.com/OrgaChem" -} + "copyright": "OrgaChem", + "url": "https://github.com/OrgaChem" +} \ No newline at end of file diff --git a/users/origami-tower.json b/users/origami-tower.json index eb5263d7..8b2510df 100644 --- a/users/origami-tower.json +++ b/users/origami-tower.json @@ -1,7 +1,7 @@ { - "copyright": "Origami Tower, http://www.origamitower.com", - "url": "http://www.origamitower.com", - "email": "contact@origamitower.com", - "gravatar": true, - "theme": "open-sans" -} + "copyright": "Origami Tower, http://www.origamitower.com", + "url": "http://www.origamitower.com", + "email": "contact@origamitower.com", + "gravatar": true, + "theme": "open-sans" +} \ No newline at end of file diff --git a/users/origamitower.json b/users/origamitower.json index 9b017996..5f84ff14 100644 --- a/users/origamitower.json +++ b/users/origamitower.json @@ -1,7 +1,7 @@ { - "copyright": "Origami Tower, http://www.origamitower.com", - "url": "http://www.origamitower.com", - "email": "contact@origamitower.com", - "gravatar": true, - "theme": "opensans" -} + "copyright": "Origami Tower, http://www.origamitower.com", + "url": "http://www.origamitower.com", + "email": "contact@origamitower.com", + "gravatar": true, + "theme": "opensans" +} \ No newline at end of file diff --git a/users/originalmachine.json b/users/originalmachine.json index accf66a4..9c4993c1 100644 --- a/users/originalmachine.json +++ b/users/originalmachine.json @@ -1,6 +1,6 @@ { - "copyright": "Nicholas Young/Original Machine, LLC", - "email": "dev@originalmachine.com", - "url": "http://originalmachine.com/software", - "format": "txt" -} + "copyright": "Nicholas Young/Original Machine, LLC", + "email": "dev@originalmachine.com", + "url": "http://originalmachine.com/software", + "format": "txt" +} \ No newline at end of file diff --git a/users/orlin.json b/users/orlin.json index 7d407182..50b1a186 100644 --- a/users/orlin.json +++ b/users/orlin.json @@ -1,8 +1,8 @@ { - "copyright": "Orlin M Bozhinov, http://domonad.com", - "url": "http://www.domonad.com", - "email": "orlin@domonad.com", - "format": "html", - "gravatar": false, - "theme": "default" -} + "copyright": "Orlin M Bozhinov, http://domonad.com", + "url": "http://www.domonad.com", + "email": "orlin@domonad.com", + "format": "html", + "gravatar": false, + "theme": "default" +} \ No newline at end of file diff --git a/users/orzfly.json b/users/orzfly.json index 1faf90ce..635c21a9 100644 --- a/users/orzfly.json +++ b/users/orzfly.json @@ -1,7 +1,7 @@ { - "copyright": "Yeechan Lu a.k.a. orzFly", - "url": "http://orzfly/licenses/mit", - "email": "mit@orzfly.com", - "format": "default", - "gravatar": true -} + "copyright": "Yeechan Lu a.k.a. orzFly", + "url": "http://orzfly/licenses/mit", + "email": "mit@orzfly.com", + "format": "default", + "gravatar": true +} \ No newline at end of file diff --git a/users/os0x.json b/users/os0x.json index 59a9450f..27ffa360 100644 --- a/users/os0x.json +++ b/users/os0x.json @@ -1,5 +1,5 @@ { - "copyright": "Shogo Ohta, http://ss-o.net/", - "url": "http://ss-o.net/", - "theme": "flesch" -} + "copyright": "Shogo Ohta, http://ss-o.net/", + "url": "http://ss-o.net/", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/oshida.json b/users/oshida.json index 213fbd63..cd63dc0c 100644 --- a/users/oshida.json +++ b/users/oshida.json @@ -1,4 +1,4 @@ { - "copyright": "Takeharu Oshida", - "url": "https://github.com/georgeOsdDev" -} + "copyright": "Takeharu Oshida", + "url": "https://github.com/georgeOsdDev" +} \ No newline at end of file diff --git a/users/oswaldoacauan.json b/users/oswaldoacauan.json index d887640c..5d807914 100644 --- a/users/oswaldoacauan.json +++ b/users/oswaldoacauan.json @@ -1,5 +1,5 @@ { - "copyright": "Oswaldo Acauan", - "url": "http://oswaldoacauan.com", - "email": "hello@oswaldoacauan.com" -} + "copyright": "Oswaldo Acauan", + "url": "http://oswaldoacauan.com", + "email": "hello@oswaldoacauan.com" +} \ No newline at end of file diff --git a/users/othree.json b/users/othree.json index b71ec025..ea95fdb5 100644 --- a/users/othree.json +++ b/users/othree.json @@ -1,5 +1,5 @@ { - "copyright": "Kao, Wei-Ko", - "url": "http://blog.othree.net/", - "theme": "white cherry" -} + "copyright": "Kao, Wei-Ko", + "url": "http://blog.othree.net/", + "theme": "white cherry" +} \ No newline at end of file diff --git a/users/outline.json b/users/outline.json index 3ed94a98..36270b6d 100644 --- a/users/outline.json +++ b/users/outline.json @@ -1,4 +1,4 @@ { - "copyright": "outline \u00e2\u20ac\u201c we web. (http://outlinewebdesign.com)", - "url": "http://outlinewebdesign.com" -} + "copyright": "outline – we web. (http://outlinewebdesign.com)", + "url": "http://outlinewebdesign.com" +} \ No newline at end of file diff --git a/users/outsider.json b/users/outsider.json index 854f9787..e6f1785a 100644 --- a/users/outsider.json +++ b/users/outsider.json @@ -1,6 +1,6 @@ { - "copyright": "Outsider(JeongHoon Byun), http://blog.outsider.ne.kr/", - "url": "http://blog.outsider.ne.kr", - "theme": "afterdark", - "email": "outsideris@gmail.com" -} + "copyright": "Outsider(JeongHoon Byun), http://blog.outsider.ne.kr/", + "url": "http://blog.outsider.ne.kr", + "theme": "afterdark", + "email": "outsideris@gmail.com" +} \ No newline at end of file diff --git a/users/owebboy.json b/users/owebboy.json index 8508caa7..ad07b572 100644 --- a/users/owebboy.json +++ b/users/owebboy.json @@ -1,3 +1,3 @@ { - "copyright": "Oliver Pope" -} + "copyright": "Oliver Pope" +} \ No newline at end of file diff --git a/users/owm.json b/users/owm.json index 3680b397..fa19d6d4 100644 --- a/users/owm.json +++ b/users/owm.json @@ -1,6 +1,6 @@ { - "copyright": "Owen McGrath", - "url": "http://owm111.github.io", - "email": "owenmcgrath111@outlook.com", - "format": "html" -} + "copyright": "Owen McGrath", + "url": "http://owm111.github.io", + "email": "owenmcgrath111@outlook.com", + "format": "html" +} \ No newline at end of file diff --git a/users/oxguy3.json b/users/oxguy3.json index 1664540d..fb04739d 100644 --- a/users/oxguy3.json +++ b/users/oxguy3.json @@ -1,6 +1,6 @@ { - "copyright": "Hayden Schiff", - "url": "http://schiff.io", - "email": "haydenschiff@gmail.com", - "theme": "friendly" -} + "copyright": "Hayden Schiff", + "url": "http://schiff.io", + "email": "haydenschiff@gmail.com", + "theme": "friendly" +} \ No newline at end of file diff --git a/users/oxy.json b/users/oxy.json index f12975ff..299e41a6 100644 --- a/users/oxy.json +++ b/users/oxy.json @@ -1,4 +1,4 @@ { - "copyright": "Oskar Sch\u00f6ldstr\u00f6m, http://www.oxy.fi", - "url": "http://www.oxy.fi" -} + "copyright": "Oskar Schöldström, http://www.oxy.fi", + "url": "http://www.oxy.fi" +} \ No newline at end of file diff --git a/users/ozh.json b/users/ozh.json index 00118734..19afb12a 100644 --- a/users/ozh.json +++ b/users/ozh.json @@ -1,6 +1,6 @@ { - "copyright": "Ozh, http://ozh.org/", - "url": "http://ozh.org/", - "email": "ozh at ozh dot org", - "format": "html" -} + "copyright": "Ozh, http://ozh.org/", + "url": "http://ozh.org/", + "email": "ozh at ozh dot org", + "format": "html" +} \ No newline at end of file diff --git a/users/ozzyr.json b/users/ozzyr.json index 6ff8855d..40dc6742 100644 --- a/users/ozzyr.json +++ b/users/ozzyr.json @@ -1,6 +1,6 @@ { - "copyright": "Ozzy Rodriguez", - "url": "https://ozzyrodriguez.com", - "email": "ozzy@ozzyrodriguez.com", - "gravatar": true -} + "copyright": "Ozzy Rodriguez", + "url": "https://ozzyrodriguez.com", + "email": "ozzy@ozzyrodriguez.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/pablodv.json b/users/pablodv.json index e53f4e02..5f4dea44 100644 --- a/users/pablodv.json +++ b/users/pablodv.json @@ -1,3 +1,3 @@ { - "copyright": "Pablo del Vecchio" -} + "copyright": "Pablo del Vecchio" +} \ No newline at end of file diff --git a/users/pablojim.json b/users/pablojim.json index 1cadf353..fd25c981 100644 --- a/users/pablojim.json +++ b/users/pablojim.json @@ -1,3 +1,3 @@ { - "copyright": "Barry Fitzgerald" -} + "copyright": "Barry Fitzgerald" +} \ No newline at end of file diff --git a/users/pacbard.json b/users/pacbard.json index 10e39699..df42cbb2 100644 --- a/users/pacbard.json +++ b/users/pacbard.json @@ -1,4 +1,4 @@ { - "copyright": "Emanuele Bardelli", - "email": "bardellie@gmail.com" -} + "copyright": "Emanuele Bardelli", + "email": "bardellie@gmail.com" +} \ No newline at end of file diff --git a/users/padde.json b/users/padde.json index 3c42f12a..1409204a 100644 --- a/users/padde.json +++ b/users/padde.json @@ -1,3 +1,3 @@ { - "copyright": "Patrick Oscity" -} + "copyright": "Patrick Oscity" +} \ No newline at end of file diff --git a/users/pagoda.json b/users/pagoda.json index 95656bed..003819d8 100644 --- a/users/pagoda.json +++ b/users/pagoda.json @@ -1,3 +1,3 @@ { - "copyright": "Pagodabox INC" -} + "copyright": "Pagodabox INC" +} \ No newline at end of file diff --git a/users/pagodabox.json b/users/pagodabox.json index c09fde4a..37750496 100644 --- a/users/pagodabox.json +++ b/users/pagodabox.json @@ -1,6 +1,6 @@ { - "copyright": "Pagodabox.com", - "url": "https://pagodabox.com", - "email": "hullo@pagodabox.com", - "format": "txt" -} + "copyright": "Pagodabox.com", + "url": "https://pagodabox.com", + "email": "hullo@pagodabox.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/pahnin.json b/users/pahnin.json index 05de2ed1..e6ace7fc 100644 --- a/users/pahnin.json +++ b/users/pahnin.json @@ -1,6 +1,6 @@ { - "copyright": "Phanindra Srungavarapu", - "url": "http://phanindras.com", - "email": "pahninsd@gmail.com", - "format": "txt" -} + "copyright": "Phanindra Srungavarapu", + "url": "http://phanindras.com", + "email": "pahninsd@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/palleas.json b/users/palleas.json index 0b81767f..80e81c98 100644 --- a/users/palleas.json +++ b/users/palleas.json @@ -1,6 +1,6 @@ { - "copyright": "Romain 'Palleas' Pouclet, http://romain-pouclet.com", - "url": "http://romain-pouclet.com", - "email": "romain.pouclet@gmail.com", - "gravatar": true -} + "copyright": "Romain 'Palleas' Pouclet, http://romain-pouclet.com", + "url": "http://romain-pouclet.com", + "email": "romain.pouclet@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/panjiesw.json b/users/panjiesw.json index 627d0fdf..ebd17402 100644 --- a/users/panjiesw.json +++ b/users/panjiesw.json @@ -1,6 +1,6 @@ { - "copyright": "Panjie Setiawan Wicaksono", - "url": "https://panjiesw.life", - "email": "panjie@panjiesw.com", - "gravatar": true -} + "copyright": "Panjie Setiawan Wicaksono", + "url": "https://panjiesw.life", + "email": "panjie@panjiesw.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/pankaj.json b/users/pankaj.json index ce1275fb..b1c9cac8 100644 --- a/users/pankaj.json +++ b/users/pankaj.json @@ -1,6 +1,6 @@ { - "copyright": "Pankaj Kumar", - "url": "http://panks.me", - "email": "me@panks.me", - "format": "txt" -} + "copyright": "Pankaj Kumar", + "url": "http://panks.me", + "email": "me@panks.me", + "format": "txt" +} \ No newline at end of file diff --git a/users/parker.json b/users/parker.json index 88672c5d..2ad57965 100644 --- a/users/parker.json +++ b/users/parker.json @@ -1,6 +1,6 @@ { - "copyright": "Parker Moore", - "url": "http://parkermoore.de", - "email": "desk@parkermoore.de", - "format": "txt" -} + "copyright": "Parker Moore", + "url": "http://parkermoore.de", + "email": "desk@parkermoore.de", + "format": "txt" +} \ No newline at end of file diff --git a/users/parkere.json b/users/parkere.json index 7fcbd868..90022170 100644 --- a/users/parkere.json +++ b/users/parkere.json @@ -1,3 +1,3 @@ { - "copyright": "Parker Evans" -} + "copyright": "Parker Evans" +} \ No newline at end of file diff --git a/users/parryc.json b/users/parryc.json index 1a0f40ef..5c5ba5e4 100644 --- a/users/parryc.json +++ b/users/parryc.json @@ -1,6 +1,6 @@ { - "copyright": "Parry Cadwallader", - "url": "http://parryc.com", - "email": "parrycadwallader@gmail.com", - "format": "txt" -} + "copyright": "Parry Cadwallader", + "url": "http://parryc.com", + "email": "parrycadwallader@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/partkyle.json b/users/partkyle.json index 4183c4db..9448cfd4 100644 --- a/users/partkyle.json +++ b/users/partkyle.json @@ -1,3 +1,3 @@ { - "copyright": "Kyle Partridge" -} + "copyright": "Kyle Partridge" +} \ No newline at end of file diff --git a/users/passcod.json b/users/passcod.json index 8ac34a65..ceba1bb3 100644 --- a/users/passcod.json +++ b/users/passcod.json @@ -1,4 +1,4 @@ { - "copyright": "F\u00c3\u00a9lix Saparelli", - "url": "http://passcod.net" -} + "copyright": "Félix Saparelli", + "url": "http://passcod.net" +} \ No newline at end of file diff --git a/users/passelin.json b/users/passelin.json index 0f4c71f6..97c14f82 100644 --- a/users/passelin.json +++ b/users/passelin.json @@ -1,4 +1,4 @@ { - "copyright": "Pierre Asselin", - "url": "http://pierre.asselin.info" -} + "copyright": "Pierre Asselin", + "url": "http://pierre.asselin.info" +} \ No newline at end of file diff --git a/users/patrick.json b/users/patrick.json index b29ae08d..3a2aab93 100644 --- a/users/patrick.json +++ b/users/patrick.json @@ -1,3 +1,3 @@ { - "copyright": "Patrick Hamann" -} + "copyright": "Patrick Hamann" +} \ No newline at end of file diff --git a/users/patricmutwiri.json b/users/patricmutwiri.json index d287d756..4b6f9368 100644 --- a/users/patricmutwiri.json +++ b/users/patricmutwiri.json @@ -1,7 +1,7 @@ { - "copyright": "Patrick Mutwiri, http://patric.xyz", - "url": "http://patric.xyz", - "email": "dev@patric.xyz", - "theme": "material-pink", - "gravatar": true -} + "copyright": "Patrick Mutwiri, http://patric.xyz", + "url": "http://patric.xyz", + "email": "dev@patric.xyz", + "theme": "material-pink", + "gravatar": true +} \ No newline at end of file diff --git a/users/paul-vollmer.json b/users/paul-vollmer.json index 3d533184..a71747d6 100644 --- a/users/paul-vollmer.json +++ b/users/paul-vollmer.json @@ -1,7 +1,7 @@ { - "copyright": "paul vollmer, https://github.com/paulvollmer", - "url": "https://github.com/paulvollmer", - "format": "html", - "gravatar": false, - "theme": "plaintext" -} + "copyright": "paul vollmer, https://github.com/paulvollmer", + "url": "https://github.com/paulvollmer", + "format": "html", + "gravatar": false, + "theme": "plaintext" +} \ No newline at end of file diff --git a/users/paul.json b/users/paul.json index 1cb400f9..a83e78d0 100644 --- a/users/paul.json +++ b/users/paul.json @@ -1,4 +1,4 @@ { - "copyright": "Paul Miller (http://paulmillr.com/)", - "format": "txt" -} + "copyright": "Paul Miller (http://paulmillr.com/)", + "format": "txt" +} \ No newline at end of file diff --git a/users/paulcuth.json b/users/paulcuth.json index 6e06e8c5..abe279cc 100644 --- a/users/paulcuth.json +++ b/users/paulcuth.json @@ -1,4 +1,4 @@ { - "copyright": "Paul Cuthbertson, http://paulcuth.me.uk", - "url": "http://paulcuth.me.uk" -} + "copyright": "Paul Cuthbertson, http://paulcuth.me.uk", + "url": "http://paulcuth.me.uk" +} \ No newline at end of file diff --git a/users/paulf.json b/users/paulf.json index 91ec72c6..f1e7de1d 100644 --- a/users/paulf.json +++ b/users/paulf.json @@ -1,6 +1,6 @@ { - "copyright": "Paul Freeband", - "url": "https://github.com/paulfreeband", - "email": "paulfreeband@gmail.com", - "format": "html" -} + "copyright": "Paul Freeband", + "url": "https://github.com/paulfreeband", + "email": "paulfreeband@gmail.com", + "format": "html" +} \ No newline at end of file diff --git a/users/paulmillr.json b/users/paulmillr.json index 1cb400f9..a83e78d0 100644 --- a/users/paulmillr.json +++ b/users/paulmillr.json @@ -1,4 +1,4 @@ { - "copyright": "Paul Miller (http://paulmillr.com/)", - "format": "txt" -} + "copyright": "Paul Miller (http://paulmillr.com/)", + "format": "txt" +} \ No newline at end of file diff --git a/users/paulmoore.json b/users/paulmoore.json index d5ac7f78..0cb283b1 100644 --- a/users/paulmoore.json +++ b/users/paulmoore.json @@ -1,6 +1,6 @@ { - "copyright": "Paul Moore", - "url": "http://paul-moore.ca", - "email": "paul.andrewharrison.moore@gmail.com", - "format": "txt" -} + "copyright": "Paul Moore", + "url": "http://paul-moore.ca", + "email": "paul.andrewharrison.moore@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/paulredmond.json b/users/paulredmond.json index c57b9da7..61e23cea 100644 --- a/users/paulredmond.json +++ b/users/paulredmond.json @@ -1,3 +1,3 @@ { - "copyright": "Paul Redmond" -} + "copyright": "Paul Redmond" +} \ No newline at end of file diff --git a/users/paulrobertlloyd.json b/users/paulrobertlloyd.json index 08b925c5..98ba7f0d 100644 --- a/users/paulrobertlloyd.json +++ b/users/paulrobertlloyd.json @@ -1,4 +1,4 @@ { - "copyright": "Paul Robert Lloyd", - "url": "http://paulrobertlloyd.com" -} + "copyright": "Paul Robert Lloyd", + "url": "http://paulrobertlloyd.com" +} \ No newline at end of file diff --git a/users/payliu.json b/users/payliu.json index 99c2c7bf..68fbf51c 100644 --- a/users/payliu.json +++ b/users/payliu.json @@ -1,7 +1,7 @@ { - "copyright": "Pay Liu", - "email": "payliu@gmail.com", - "format": "html", - "gravatar": true, - "theme": "double-windsor" -} + "copyright": "Pay Liu", + "email": "payliu@gmail.com", + "format": "html", + "gravatar": true, + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/pb.json b/users/pb.json index a311df4c..8189f0c4 100644 --- a/users/pb.json +++ b/users/pb.json @@ -1,7 +1,7 @@ { - "copyright": "Patrick Burtchaell", - "email": "pburtchaell@me.com", - "url": "http://pburtchaell.com/", - "format": "html", - "gravatar": "true" -} + "copyright": "Patrick Burtchaell", + "email": "pburtchaell@me.com", + "url": "http://pburtchaell.com/", + "format": "html", + "gravatar": "true" +} \ No newline at end of file diff --git a/users/pci.json b/users/pci.json index 21741888..69157b49 100644 --- a/users/pci.json +++ b/users/pci.json @@ -1,3 +1,3 @@ { - "copyright": "Philip Ingrey" -} + "copyright": "Philip Ingrey" +} \ No newline at end of file diff --git a/users/pcole.json b/users/pcole.json index 44304dfb..2e3e61da 100644 --- a/users/pcole.json +++ b/users/pcole.json @@ -1,6 +1,6 @@ { - "copyright": "Philip Cole", - "url": "http://pcole.me", - "email": "philip@pcole.me", - "format": "txt" -} + "copyright": "Philip Cole", + "url": "http://pcole.me", + "email": "philip@pcole.me", + "format": "txt" +} \ No newline at end of file diff --git a/users/pdfrod.json b/users/pdfrod.json index f50f665f..01fb5fe4 100644 --- a/users/pdfrod.json +++ b/users/pdfrod.json @@ -1,3 +1,3 @@ { - "copyright": "Pedro Rodrigues" -} + "copyright": "Pedro Rodrigues" +} \ No newline at end of file diff --git a/users/pdostal.json b/users/pdostal.json index 45faf6cd..50dc98ae 100644 --- a/users/pdostal.json +++ b/users/pdostal.json @@ -1,8 +1,8 @@ { - "copyright": "Pavel Dost\u00c3\u00a1l, http://pdostal.cz", - "url": "http://pdostal.cz", - "email": "pdostal@pdostal.cz", - "format": "html", - "theme": "default", - "gravatar": true -} + "copyright": "Pavel Dostál, http://pdostal.cz", + "url": "http://pdostal.cz", + "email": "pdostal@pdostal.cz", + "format": "html", + "theme": "default", + "gravatar": true +} \ No newline at end of file diff --git a/users/peatio.json b/users/peatio.json index 68569556..7183d086 100644 --- a/users/peatio.json +++ b/users/peatio.json @@ -1,5 +1,5 @@ { - "copyright": "Peatio Opensource, http://peat.io", - "url": "http://peat.io", - "email": "community@peatio.com" -} + "copyright": "Peatio Opensource, http://peat.io", + "url": "http://peat.io", + "email": "community@peatio.com" +} \ No newline at end of file diff --git a/users/peccu.json b/users/peccu.json index ac1b07b2..fa8e55c5 100644 --- a/users/peccu.json +++ b/users/peccu.json @@ -1,4 +1,4 @@ { - "copyright": "peccu", - "url": "https://github.com/peccu" -} + "copyright": "peccu", + "url": "https://github.com/peccu" +} \ No newline at end of file diff --git a/users/pedrolamas.json b/users/pedrolamas.json index c54cc306..f20e0c48 100644 --- a/users/pedrolamas.json +++ b/users/pedrolamas.json @@ -1,5 +1,5 @@ { - "copyright": "Pedro Lamas", - "url": "https://www.pedrolamas.com", - "format": "txt" -} + "copyright": "Pedro Lamas", + "url": "https://www.pedrolamas.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/pelletier.json b/users/pelletier.json index f8591524..d7c8f5ba 100644 --- a/users/pelletier.json +++ b/users/pelletier.json @@ -1,3 +1,3 @@ { - "copyright": "Thomas Pelletier" -} + "copyright": "Thomas Pelletier" +} \ No newline at end of file diff --git a/users/pemrouz.json b/users/pemrouz.json index 7eaf9771..4998b48f 100644 --- a/users/pemrouz.json +++ b/users/pemrouz.json @@ -1,3 +1,3 @@ { - "copyright": "Pedram Emrouznejad" -} + "copyright": "Pedram Emrouznejad" +} \ No newline at end of file diff --git a/users/penguin4games.json b/users/penguin4games.json index 1371b18a..6686760b 100644 --- a/users/penguin4games.json +++ b/users/penguin4games.json @@ -1,6 +1,6 @@ { - "copyright": "Penguin4Games, http://Penguin4Games.github.io", - "url": "http://Penguin4Games.github.io", - "format": "html", - "gravatar": true -} + "copyright": "Penguin4Games, http://Penguin4Games.github.io", + "url": "http://Penguin4Games.github.io", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/per.json b/users/per.json index 74ae2d79..0e945687 100644 --- a/users/per.json +++ b/users/per.json @@ -1,5 +1,5 @@ { - "copyright": "Per Roveg\u00e5rd, http://rovegard.com", - "url": "http://rovegard.com", - "theme": "afterdark" -} + "copyright": "Per Rovegård, http://rovegard.com", + "url": "http://rovegard.com", + "theme": "afterdark" +} \ No newline at end of file diff --git a/users/petamoriken.json b/users/petamoriken.json index 27c32231..2246fcb9 100644 --- a/users/petamoriken.json +++ b/users/petamoriken.json @@ -1,4 +1,4 @@ { - "copyright": "Kenta Moriuchi", - "url": "http://moriken.kimamass.com" -} + "copyright": "Kenta Moriuchi", + "url": "http://moriken.kimamass.com" +} \ No newline at end of file diff --git a/users/pete.json b/users/pete.json index 9a7aea30..7bbb50fb 100644 --- a/users/pete.json +++ b/users/pete.json @@ -1,8 +1,8 @@ { - "copyright": "Pete Mitchell", - "url": "http://petemmitchell.com", - "email": "petemmitchell@gmail.com", - "format": "html", - "gravatar": true, - "theme": "black-beauty" -} + "copyright": "Pete Mitchell", + "url": "http://petemmitchell.com", + "email": "petemmitchell@gmail.com", + "format": "html", + "gravatar": true, + "theme": "black-beauty" +} \ No newline at end of file diff --git a/users/peter.json b/users/peter.json index 4f068dff..ff40c60c 100644 --- a/users/peter.json +++ b/users/peter.json @@ -1,6 +1,6 @@ { - "copyright": "Peter Huerlimann, http://peter.zone", - "url": "http://peter.zone", - "email": "peter@phnet.li", - "format": "txt" -} + "copyright": "Peter Huerlimann, http://peter.zone", + "url": "http://peter.zone", + "email": "peter@phnet.li", + "format": "txt" +} \ No newline at end of file diff --git a/users/peterc.json b/users/peterc.json index 6d5aad59..c1506bd7 100644 --- a/users/peterc.json +++ b/users/peterc.json @@ -1,4 +1,4 @@ { - "copyright": "Peter Cooper", - "url": "http://peterc.org/" -} + "copyright": "Peter Cooper", + "url": "http://peterc.org/" +} \ No newline at end of file diff --git a/users/petite.json b/users/petite.json index f50c020c..652981e0 100644 --- a/users/petite.json +++ b/users/petite.json @@ -1,3 +1,3 @@ { - "copyright": "Victoria Petite" -} + "copyright": "Victoria Petite" +} \ No newline at end of file diff --git a/users/petitviolet.json b/users/petitviolet.json index 31fd9d7b..20997215 100644 --- a/users/petitviolet.json +++ b/users/petitviolet.json @@ -1,7 +1,7 @@ { - "copyright": "Hiroki Komurasaki", - "gravatar": true, - "email": "mail@petitviolet", - "url": "https://www.petitviolet.net", - "theme": "material-deep-purple" -} + "copyright": "Hiroki Komurasaki", + "gravatar": true, + "email": "mail@petitviolet", + "url": "https://www.petitviolet.net", + "theme": "material-deep-purple" +} \ No newline at end of file diff --git a/users/pf.json b/users/pf.json index 3d0fb244..1befe00f 100644 --- a/users/pf.json +++ b/users/pf.json @@ -1,7 +1,7 @@ { - "copyright": "Pony France, https://ponyfrance.net/", - "url": "https://ponyfrance.net/", - "email": "contact@ponyfrance.net", - "format": "html", - "theme": "willpower" -} + "copyright": "Pony France, https://ponyfrance.net/", + "url": "https://ponyfrance.net/", + "email": "contact@ponyfrance.net", + "format": "html", + "theme": "willpower" +} \ No newline at end of file diff --git a/users/pfiled.json b/users/pfiled.json index 8a61d88b..66895270 100644 --- a/users/pfiled.json +++ b/users/pfiled.json @@ -1,3 +1,3 @@ { - "copyright": "Daniel Pfile" -} + "copyright": "Daniel Pfile" +} \ No newline at end of file diff --git a/users/pg.json b/users/pg.json index 91a2e34c..4125afaa 100644 --- a/users/pg.json +++ b/users/pg.json @@ -1,4 +1,4 @@ { - "copyright": "Paul Geraghty", - "theme": "double-windsor" -} + "copyright": "Paul Geraghty", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/pgrenaud.json b/users/pgrenaud.json index 9d0772d9..bb5dc9e0 100644 --- a/users/pgrenaud.json +++ b/users/pgrenaud.json @@ -1,5 +1,5 @@ { - "copyright": "Patrick Gagnon-Renaud", - "url": "http://pgrenaud.com/", - "email": "coding@pgrenaud.com" -} + "copyright": "Patrick Gagnon-Renaud", + "url": "http://pgrenaud.com/", + "email": "coding@pgrenaud.com" +} \ No newline at end of file diff --git a/users/phakin.json b/users/phakin.json index c895d1da..6a0723d1 100644 --- a/users/phakin.json +++ b/users/phakin.json @@ -1,5 +1,5 @@ { - "copyright": "Phakin Cheangkrachange", - "email": "phakin.che@gmail.com", - "format": "txt" -} + "copyright": "Phakin Cheangkrachange", + "email": "phakin.che@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/phanimahesh.json b/users/phanimahesh.json index be934860..acec2664 100644 --- a/users/phanimahesh.json +++ b/users/phanimahesh.json @@ -1,6 +1,6 @@ { - "copyright": "J Phani Mahesh", - "email": "phanimahesh@gmail.com", - "gravatar": true, - "theme": "opensans" -} + "copyright": "J Phani Mahesh", + "email": "phanimahesh@gmail.com", + "gravatar": true, + "theme": "opensans" +} \ No newline at end of file diff --git a/users/phaserstudio.json b/users/phaserstudio.json index cadbf65c..5f77457b 100644 --- a/users/phaserstudio.json +++ b/users/phaserstudio.json @@ -1,6 +1,6 @@ { - "copyright": "Phaser Studio", - "url": "https://github.com/phaserstudio", - "email": "contact.phaser.studio@gmail.com", - "format": "html" -} + "copyright": "Phaser Studio", + "url": "https://github.com/phaserstudio", + "email": "contact.phaser.studio@gmail.com", + "format": "html" +} \ No newline at end of file diff --git a/users/phawk.json b/users/phawk.json index e82da222..fd647d13 100644 --- a/users/phawk.json +++ b/users/phawk.json @@ -1,5 +1,5 @@ { - "copyright": "Peter Hawkins", - "url": "https://phawk.co.uk", - "format": "html" -} + "copyright": "Peter Hawkins", + "url": "https://phawk.co.uk", + "format": "html" +} \ No newline at end of file diff --git a/users/phgarcia.json b/users/phgarcia.json index aa8ece55..fa2e83af 100644 --- a/users/phgarcia.json +++ b/users/phgarcia.json @@ -1,6 +1,6 @@ { - "copyright": "Pedro Garcia, http://phgarcia.com", - "email": "garcia.pedro.hr@gmail.com", - "gravatar": true, - "theme": "default" -} + "copyright": "Pedro Garcia, http://phgarcia.com", + "email": "garcia.pedro.hr@gmail.com", + "gravatar": true, + "theme": "default" +} \ No newline at end of file diff --git a/users/phiber.json b/users/phiber.json index e7fb92f8..7b9b13f0 100644 --- a/users/phiber.json +++ b/users/phiber.json @@ -1,7 +1,7 @@ { - "copyright": "phiber", - "url": "http://phiber.coda-dz.com", - "email": "ghoucine@gmail.com", - "format": "html", - "theme": "opensans" -} + "copyright": "phiber", + "url": "http://phiber.coda-dz.com", + "email": "ghoucine@gmail.com", + "format": "html", + "theme": "opensans" +} \ No newline at end of file diff --git a/users/phibermit.json b/users/phibermit.json index 57a9817f..4eddbb7c 100644 --- a/users/phibermit.json +++ b/users/phibermit.json @@ -1,3 +1,3 @@ { - "copyright": "Housseyn Guettaf, http://coda-dz.com" -} + "copyright": "Housseyn Guettaf, http://coda-dz.com" +} \ No newline at end of file diff --git a/users/philippbosch.json b/users/philippbosch.json index 928078cb..4704fdee 100644 --- a/users/philippbosch.json +++ b/users/philippbosch.json @@ -1,4 +1,4 @@ { - "copyright": "Philipp Bosch, http://pb.io/", - "url": "http://pb.io/" -} + "copyright": "Philipp Bosch, http://pb.io/", + "url": "http://pb.io/" +} \ No newline at end of file diff --git a/users/philippwiddra.json b/users/philippwiddra.json index c746ecc0..b8bf452a 100644 --- a/users/philippwiddra.json +++ b/users/philippwiddra.json @@ -1,5 +1,5 @@ { - "copyright": "Philipp Widdra", - "theme": "double-windsor", - "email": "philipp.widdra@gmail.com" -} + "copyright": "Philipp Widdra", + "theme": "double-windsor", + "email": "philipp.widdra@gmail.com" +} \ No newline at end of file diff --git a/users/philtr.json b/users/philtr.json index 8e56abc8..613c12e4 100644 --- a/users/philtr.json +++ b/users/philtr.json @@ -1,5 +1,5 @@ { - "copyright": "Phillip Ridlen", - "url": "http://phillipridlen.com", - "email": "p@rdln.net" -} + "copyright": "Phillip Ridlen", + "url": "http://phillipridlen.com", + "email": "p@rdln.net" +} \ No newline at end of file diff --git a/users/philworthington.json b/users/philworthington.json index c98bf7b1..2097dd44 100644 --- a/users/philworthington.json +++ b/users/philworthington.json @@ -1,6 +1,6 @@ { - "copyright": "Phil Worthington", - "url": "https://github.com/philworthington", - "email": "phil.worthington22@gmail.com", - "theme": "double-windsor" -} + "copyright": "Phil Worthington", + "url": "https://github.com/philworthington", + "email": "phil.worthington22@gmail.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/phlipper.json b/users/phlipper.json index 6c19b2a6..59a726da 100644 --- a/users/phlipper.json +++ b/users/phlipper.json @@ -1,7 +1,7 @@ { - "copyright": "Phil Cohen", - "url": "http://phlippers.net", - "format": "txt", - "email": "github@phlippers.net", - "theme": "double-windsor" -} + "copyright": "Phil Cohen", + "url": "http://phlippers.net", + "format": "txt", + "email": "github@phlippers.net", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/phlux.json b/users/phlux.json index 807dba96..eae2c6a7 100644 --- a/users/phlux.json +++ b/users/phlux.json @@ -1,7 +1,7 @@ { - "copyright": "Andrew McPherson", - "url": "http://ehgoodenough.com", - "email": "ehgoodenough@gmail.com", - "gravatar": true, - "theme": "friendly" -} + "copyright": "Andrew McPherson", + "url": "http://ehgoodenough.com", + "email": "ehgoodenough@gmail.com", + "gravatar": true, + "theme": "friendly" +} \ No newline at end of file diff --git a/users/phm.json b/users/phm.json index 988495ca..c6295c28 100644 --- a/users/phm.json +++ b/users/phm.json @@ -1,6 +1,6 @@ { - "copyright": "P. H. Madore", - "url": "http://phm.link", - "email": "moonpunter@gmail.com", - "format": "txt" -} + "copyright": "P. H. Madore", + "url": "http://phm.link", + "email": "moonpunter@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/phucnm.json b/users/phucnm.json index 6a225384..d8d3d905 100644 --- a/users/phucnm.json +++ b/users/phucnm.json @@ -1,3 +1,3 @@ { - "copyright": "Phuc Nguyen" -} + "copyright": "Phuc Nguyen" +} \ No newline at end of file diff --git a/users/phuu.json b/users/phuu.json index 9d651cf2..1d3e78f0 100644 --- a/users/phuu.json +++ b/users/phuu.json @@ -1,6 +1,6 @@ { - "copyright": "Tom Ashworth", - "url": "http://phuu.net", - "email": "tom@phuu.net", - "gravatar": true -} + "copyright": "Tom Ashworth", + "url": "http://phuu.net", + "email": "tom@phuu.net", + "gravatar": true +} \ No newline at end of file diff --git a/users/pid.json b/users/pid.json index 2c613c69..0e510ab8 100644 --- a/users/pid.json +++ b/users/pid.json @@ -1,7 +1,7 @@ { - "copyright": "Sascha Droste, https://github.com/pid", - "url": "https://github.com/pid", - "email": "sascha.droste@gmail.com", - "gravatar": true, - "theme": "black beauty" -} + "copyright": "Sascha Droste, https://github.com/pid", + "url": "https://github.com/pid", + "email": "sascha.droste@gmail.com", + "gravatar": true, + "theme": "black beauty" +} \ No newline at end of file diff --git a/users/piecioshka.json b/users/piecioshka.json index c08ade3f..00243580 100644 --- a/users/piecioshka.json +++ b/users/piecioshka.json @@ -1,3 +1,3 @@ { - "copyright": "Piotr Kowalski" -} + "copyright": "Piotr Kowalski" +} \ No newline at end of file diff --git a/users/pierre.json b/users/pierre.json index 05208f51..d558c606 100644 --- a/users/pierre.json +++ b/users/pierre.json @@ -1,4 +1,4 @@ { - "copyright": "Pierre Bertet, http://pierrebertet.net", - "url": "http://pierrebertet.net" -} + "copyright": "Pierre Bertet, http://pierrebertet.net", + "url": "http://pierrebertet.net" +} \ No newline at end of file diff --git a/users/pietervanderwerff.json b/users/pietervanderwerff.json index 7495a538..96bd4086 100644 --- a/users/pietervanderwerff.json +++ b/users/pietervanderwerff.json @@ -1,4 +1,4 @@ { - "copyright": "Pieter Vanderwerff", - "url": "http://pieter.io/" -} + "copyright": "Pieter Vanderwerff", + "url": "http://pieter.io/" +} \ No newline at end of file diff --git a/users/pigmon.json b/users/pigmon.json index c83dc36b..c7c06364 100644 --- a/users/pigmon.json +++ b/users/pigmon.json @@ -1,3 +1,3 @@ { - "copyright": "Seungbeom Lee" -} + "copyright": "Seungbeom Lee" +} \ No newline at end of file diff --git a/users/pikesley.json b/users/pikesley.json index daf59317..ab1c29d0 100644 --- a/users/pikesley.json +++ b/users/pikesley.json @@ -1,6 +1,6 @@ { - "copyright": "Sam Pikesley", - "url": "http://pikesley.org", - "email": "sam@cruft.co", - "gravatar": true -} + "copyright": "Sam Pikesley", + "url": "http://pikesley.org", + "email": "sam@cruft.co", + "gravatar": true +} \ No newline at end of file diff --git a/users/piksel.json b/users/piksel.json index 341448fb..06943a02 100644 --- a/users/piksel.json +++ b/users/piksel.json @@ -1,7 +1,7 @@ { - "copyright": "Nils M\u00c3\u00a5s\u00c3\u00a9n, piksel bitworks", - "url": "http://piksel.se", - "email": "nils@piksel.se", - "gravatar": true, - "theme": "default" -} + "copyright": "Nils MÃ¥sén, piksel bitworks", + "url": "http://piksel.se", + "email": "nils@piksel.se", + "gravatar": true, + "theme": "default" +} \ No newline at end of file diff --git a/users/pine.json b/users/pine.json index b3f9ba3f..9b6bb9a8 100644 --- a/users/pine.json +++ b/users/pine.json @@ -1,4 +1,4 @@ { - "copyright": "Pine Mizune", - "url": "https://github.com/pine613" -} + "copyright": "Pine Mizune", + "url": "https://github.com/pine613" +} \ No newline at end of file diff --git a/users/pinjasaur.json b/users/pinjasaur.json index 3481bc02..028434ec 100644 --- a/users/pinjasaur.json +++ b/users/pinjasaur.json @@ -1,8 +1,8 @@ { - "copyright": "Paul Esch-Laurent", - "url": "https://paulisaweso.me", - "email": "p@uly.io", - "theme": "material-deep-purple", - "gravatar": true, - "format": "html" -} + "copyright": "Paul Esch-Laurent", + "url": "https://paulisaweso.me", + "email": "p@uly.io", + "theme": "material-deep-purple", + "gravatar": true, + "format": "html" +} \ No newline at end of file diff --git a/users/pipwerks.json b/users/pipwerks.json index 612629eb..6c52c880 100644 --- a/users/pipwerks.json +++ b/users/pipwerks.json @@ -1,3 +1,3 @@ { - "copyright": "Philip Hutchison" -} + "copyright": "Philip Hutchison" +} \ No newline at end of file diff --git a/users/pirosikick.json b/users/pirosikick.json index 4703da2e..e2d18a6d 100644 --- a/users/pirosikick.json +++ b/users/pirosikick.json @@ -1,4 +1,4 @@ { - "copyright": "Hiroyuki Anai", - "url": "https://github.com/pirosikick" -} + "copyright": "Hiroyuki Anai", + "url": "https://github.com/pirosikick" +} \ No newline at end of file diff --git a/users/pitomba.json b/users/pitomba.json index 89129014..4bd07d6a 100644 --- a/users/pitomba.json +++ b/users/pitomba.json @@ -1,5 +1,5 @@ { - "copyright": "Pitomba Team", - "url": "http://pitomba.org/", - "format": "html" -} + "copyright": "Pitomba Team", + "url": "http://pitomba.org/", + "format": "html" +} \ No newline at end of file diff --git a/users/piyush.json b/users/piyush.json index 103b2dc3..680f9a0e 100644 --- a/users/piyush.json +++ b/users/piyush.json @@ -1,7 +1,7 @@ { - "copyright": "Piyush Sonar, http://piyush-sonar.tk", - "url": "http://piyush-soanr.tk", - "email": "sonar0324@gmail.com", - "gravatar": true, - "theme": "material" -} + "copyright": "Piyush Sonar, http://piyush-sonar.tk", + "url": "http://piyush-soanr.tk", + "email": "sonar0324@gmail.com", + "gravatar": true, + "theme": "material" +} \ No newline at end of file diff --git a/users/piyushvarshney.json b/users/piyushvarshney.json index 753e3ac2..97d33ee9 100644 --- a/users/piyushvarshney.json +++ b/users/piyushvarshney.json @@ -1,6 +1,6 @@ { - "copyright": "Piyush Varshney, http://piyushvarshney.cf", - "url": "http://piyushvarshney.cf", - "email": "piyushvarshney@outlook.com", - "gravatar": true -} + "copyright": "Piyush Varshney, http://piyushvarshney.cf", + "url": "http://piyushvarshney.cf", + "email": "piyushvarshney@outlook.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/pjbgf.json b/users/pjbgf.json index 8852255b..a50661e1 100644 --- a/users/pjbgf.json +++ b/users/pjbgf.json @@ -1,5 +1,5 @@ { - "copyright": "Paulo Gomes", - "url": "http://pjbgf.xyz", - "email": "paulo.gomes.uk@gmail.com" -} + "copyright": "Paulo Gomes", + "url": "http://pjbgf.xyz", + "email": "paulo.gomes.uk@gmail.com" +} \ No newline at end of file diff --git a/users/pjhampton.json b/users/pjhampton.json index 9ec6a70e..0a90eea1 100644 --- a/users/pjhampton.json +++ b/users/pjhampton.json @@ -1,3 +1,3 @@ { - "copyright": "Pj Hampton" -} + "copyright": "Pj Hampton" +} \ No newline at end of file diff --git a/users/plasticpanda.json b/users/plasticpanda.json index 1e5ded6c..47669bd9 100644 --- a/users/plasticpanda.json +++ b/users/plasticpanda.json @@ -1,3 +1,3 @@ { - "copyright": "Plastic Panda" -} + "copyright": "Plastic Panda" +} \ No newline at end of file diff --git a/users/pluma.json b/users/pluma.json index 479a9962..de4cbfa3 100644 --- a/users/pluma.json +++ b/users/pluma.json @@ -1,4 +1,4 @@ { - "copyright": "Alan Plum", - "email": "me@pluma.io" -} + "copyright": "Alan Plum", + "email": "me@pluma.io" +} \ No newline at end of file diff --git a/users/pluschnikow.json b/users/pluschnikow.json index 1f60928b..6c4d6d1e 100644 --- a/users/pluschnikow.json +++ b/users/pluschnikow.json @@ -1,5 +1,5 @@ { - "copyright": "Konstantin Pluschnikow", - "url": "http://pluschnikow.de", - "format": "txt" -} + "copyright": "Konstantin Pluschnikow", + "url": "http://pluschnikow.de", + "format": "txt" +} \ No newline at end of file diff --git a/users/pm.json b/users/pm.json index 1cb400f9..a83e78d0 100644 --- a/users/pm.json +++ b/users/pm.json @@ -1,4 +1,4 @@ { - "copyright": "Paul Miller (http://paulmillr.com/)", - "format": "txt" -} + "copyright": "Paul Miller (http://paulmillr.com/)", + "format": "txt" +} \ No newline at end of file diff --git a/users/pm5.json b/users/pm5.json index 825bde71..f8cb9f36 100644 --- a/users/pm5.json +++ b/users/pm5.json @@ -1,3 +1,3 @@ { - "copyright": "Pomin Wu" -} + "copyright": "Pomin Wu" +} \ No newline at end of file diff --git a/users/pmac.json b/users/pmac.json index af5d9a9c..3879bd2c 100644 --- a/users/pmac.json +++ b/users/pmac.json @@ -1,5 +1,5 @@ { - "copyright": "Paul McLanahan", - "url": "http://pmac.io", - "email": "paul@mclanahan.net" -} + "copyright": "Paul McLanahan", + "url": "http://pmac.io", + "email": "paul@mclanahan.net" +} \ No newline at end of file diff --git a/users/pmk.json b/users/pmk.json index 39a57aa2..dc7a0092 100644 --- a/users/pmk.json +++ b/users/pmk.json @@ -1,5 +1,5 @@ { - "copyright": "PMKlaassen (PMK), http://pmklaassen.com", - "url": "http://pmklaassen.com", - "email": "license@pmklaassen.com" -} + "copyright": "PMKlaassen (PMK), http://pmklaassen.com", + "url": "http://pmklaassen.com", + "email": "license@pmklaassen.com" +} \ No newline at end of file diff --git a/users/pmowrer.json b/users/pmowrer.json index 7c8f26dd..e34a1214 100644 --- a/users/pmowrer.json +++ b/users/pmowrer.json @@ -1,4 +1,4 @@ { - "copyright": "Patrick Mowrer", - "url": "https://github.com/pmowrer" -} + "copyright": "Patrick Mowrer", + "url": "https://github.com/pmowrer" +} \ No newline at end of file diff --git a/users/pmuellr.json b/users/pmuellr.json index 0407d5a0..83f2d513 100644 --- a/users/pmuellr.json +++ b/users/pmuellr.json @@ -1,4 +1,4 @@ { - "copyright": "Patrick Mueller, http://muellerware.org", - "url": "http://muellerware.org" -} + "copyright": "Patrick Mueller, http://muellerware.org", + "url": "http://muellerware.org" +} \ No newline at end of file diff --git a/users/poapfel.json b/users/poapfel.json index 0325ae18..11756357 100644 --- a/users/poapfel.json +++ b/users/poapfel.json @@ -1,3 +1,3 @@ { - "copyright": "Poapfel" -} + "copyright": "Poapfel" +} \ No newline at end of file diff --git a/users/polem.json b/users/polem.json index ff18b264..8552e1cf 100644 --- a/users/polem.json +++ b/users/polem.json @@ -1,3 +1,3 @@ { - "copyright": "Paul-Emile MINY" -} + "copyright": "Paul-Emile MINY" +} \ No newline at end of file diff --git a/users/polossk.json b/users/polossk.json index d0447d2c..3f44590e 100644 --- a/users/polossk.json +++ b/users/polossk.json @@ -1,6 +1,6 @@ { - "copyright": "Shangkun Shen, http://polossk.com", - "url": "http://polossk.com", - "email": "polossk_dev@126.com", - "theme": "white cherry" -} + "copyright": "Shangkun Shen, http://polossk.com", + "url": "http://polossk.com", + "email": "polossk_dev@126.com", + "theme": "white cherry" +} \ No newline at end of file diff --git a/users/ponko2.json b/users/ponko2.json index 908e1ca5..8cc393f8 100644 --- a/users/ponko2.json +++ b/users/ponko2.json @@ -1,4 +1,4 @@ { - "copyright": "Takahito Nakano", - "url": "https://github.com/ponko2/" -} + "copyright": "Takahito Nakano", + "url": "https://github.com/ponko2/" +} \ No newline at end of file diff --git a/users/popomore.json b/users/popomore.json index 461cb694..d4810642 100644 --- a/users/popomore.json +++ b/users/popomore.json @@ -1,6 +1,6 @@ { - "copyright": "Haoliang Gao, http://chuo.me", - "url": "http://chuo.me", - "email": "sakura9515@gmail.com", - "gravatar": true -} + "copyright": "Haoliang Gao, http://chuo.me", + "url": "http://chuo.me", + "email": "sakura9515@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/popoway.json b/users/popoway.json index a83be2d7..b790f576 100644 --- a/users/popoway.json +++ b/users/popoway.json @@ -1,8 +1,8 @@ { - "copyright": "Ming Lei, https://popoway.me", - "url": "https://popoway.me", - "email": "popoway@foxmail.com", - "format": "html", - "gravatar": true, - "theme": "dusk" -} + "copyright": "Ming Lei, https://popoway.me", + "url": "https://popoway.me", + "email": "popoway@foxmail.com", + "format": "html", + "gravatar": true, + "theme": "dusk" +} \ No newline at end of file diff --git a/users/porada.json b/users/porada.json index ab1bb536..0840eda0 100644 --- a/users/porada.json +++ b/users/porada.json @@ -1,4 +1,4 @@ { - "copyright": "Dominik Porada", - "url": "http://dominikporada.com" -} + "copyright": "Dominik Porada", + "url": "http://dominikporada.com" +} \ No newline at end of file diff --git a/users/porras.json b/users/porras.json index 6e7342f5..9501793a 100644 --- a/users/porras.json +++ b/users/porras.json @@ -1,3 +1,3 @@ { - "copyright": "Sergio Gil P\u00e9rez de la Manga" -} + "copyright": "Sergio Gil Pérez de la Manga" +} \ No newline at end of file diff --git a/users/posa88.json b/users/posa88.json index 20a552fc..86e3933b 100644 --- a/users/posa88.json +++ b/users/posa88.json @@ -1,8 +1,8 @@ { - "copyright": "Yongbo Wu", - "url": "http://www.u14.info", - "email": "posago8@gmail.com", - "format": "html", - "gravatar": true, - "theme": "friendly" -} + "copyright": "Yongbo Wu", + "url": "http://www.u14.info", + "email": "posago8@gmail.com", + "format": "html", + "gravatar": true, + "theme": "friendly" +} \ No newline at end of file diff --git a/users/pothibo.json b/users/pothibo.json index 77ed1959..45f71744 100644 --- a/users/pothibo.json +++ b/users/pothibo.json @@ -1,3 +1,3 @@ { - "copyright": "Pier-Olivier Thibault" -} + "copyright": "Pier-Olivier Thibault" +} \ No newline at end of file diff --git a/users/pouya.json b/users/pouya.json index 26ff0279..f7e9d028 100644 --- a/users/pouya.json +++ b/users/pouya.json @@ -1,8 +1,8 @@ { - "copyright": "Pouya Saadeghi, http://saadeghi.ir", - "url": "http://saadeghi.ir", - "format": "html", - "email": "pouya.saadeghi@gmail.com", - "gravatar": true, - "theme": "opensans" -} + "copyright": "Pouya Saadeghi, http://saadeghi.ir", + "url": "http://saadeghi.ir", + "format": "html", + "email": "pouya.saadeghi@gmail.com", + "gravatar": true, + "theme": "opensans" +} \ No newline at end of file diff --git a/users/poying.json b/users/poying.json index 2c9b3627..0b7c0a43 100644 --- a/users/poying.json +++ b/users/poying.json @@ -1,5 +1,5 @@ { - "copyright": "Po-Ying Chen", - "url": "http://poying.me", - "email": "poying.me@gmail.com" -} + "copyright": "Po-Ying Chen", + "url": "http://poying.me", + "email": "poying.me@gmail.com" +} \ No newline at end of file diff --git a/users/poyu.json b/users/poyu.json index bea486f7..ef6ef3b9 100644 --- a/users/poyu.json +++ b/users/poyu.json @@ -1,5 +1,5 @@ { - "copyright": "Po-Yu Chen", - "url": "https://poyu.xyz", - "email": "me@poyu.xyz" -} + "copyright": "Po-Yu Chen", + "url": "https://poyu.xyz", + "email": "me@poyu.xyz" +} \ No newline at end of file diff --git a/users/pragai.json b/users/pragai.json index ce1a53ba..e271d156 100644 --- a/users/pragai.json +++ b/users/pragai.json @@ -1,6 +1,6 @@ { - "copyright": "Robert Pragai", - "url": "http://abasys.hu", - "email": "info@abasys.hu", - "format": "txt" -} + "copyright": "Robert Pragai", + "url": "http://abasys.hu", + "email": "info@abasys.hu", + "format": "txt" +} \ No newline at end of file diff --git a/users/pragmaticivan.json b/users/pragmaticivan.json index 3ac6dab2..3ef4ee1e 100644 --- a/users/pragmaticivan.json +++ b/users/pragmaticivan.json @@ -1,3 +1,3 @@ { - "copyright": "Ivan Santos" -} + "copyright": "Ivan Santos" +} \ No newline at end of file diff --git a/users/prajankya.json b/users/prajankya.json index d21a98b2..909267ea 100644 --- a/users/prajankya.json +++ b/users/prajankya.json @@ -1,7 +1,7 @@ { - "copyright": "Prajankya", - "url": "http://rig.solutions/Prajankya", - "email": "prajankya@rig.solutions", - "gravatar": true, - "theme": "material-teal" -} + "copyright": "Prajankya", + "url": "http://rig.solutions/Prajankya", + "email": "prajankya@rig.solutions", + "gravatar": true, + "theme": "material-teal" +} \ No newline at end of file diff --git a/users/pranavrajs.json b/users/pranavrajs.json index a658a013..3dcac23f 100644 --- a/users/pranavrajs.json +++ b/users/pranavrajs.json @@ -1,3 +1,3 @@ { - "copyright": "RePranav Raj S" -} + "copyright": "RePranav Raj S" +} \ No newline at end of file diff --git a/users/pranay.json b/users/pranay.json index 22c2a0e8..03de7a0b 100644 --- a/users/pranay.json +++ b/users/pranay.json @@ -1,6 +1,6 @@ { - "copyright": "Pranay Thangeda", - "email": "contact@prny.me", - "gravatar": false, - "theme": "material" -} + "copyright": "Pranay Thangeda", + "email": "contact@prny.me", + "gravatar": false, + "theme": "material" +} \ No newline at end of file diff --git a/users/pranayt.json b/users/pranayt.json index 22c2a0e8..03de7a0b 100644 --- a/users/pranayt.json +++ b/users/pranayt.json @@ -1,6 +1,6 @@ { - "copyright": "Pranay Thangeda", - "email": "contact@prny.me", - "gravatar": false, - "theme": "material" -} + "copyright": "Pranay Thangeda", + "email": "contact@prny.me", + "gravatar": false, + "theme": "material" +} \ No newline at end of file diff --git a/users/pranjal.json b/users/pranjal.json index 449184c2..a9e23702 100644 --- a/users/pranjal.json +++ b/users/pranjal.json @@ -1,6 +1,6 @@ { - "copyright": "Pranjal Rastogi, https://prankshaw.github.io/", - "url": "https://prankshaw.github.io/", - "email": "pranjalrastogi1998@gmail.com", - "gravatar": true -} + "copyright": "Pranjal Rastogi, https://prankshaw.github.io/", + "url": "https://prankshaw.github.io/", + "email": "pranjalrastogi1998@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/prankshaw.json b/users/prankshaw.json index c36eea5e..68c49b44 100644 --- a/users/prankshaw.json +++ b/users/prankshaw.json @@ -1,6 +1,6 @@ { - "copyright": "Pranjal Rastogi, https://prankshaw.github.io/", - "url": "https://prankshaw.github.io/", - "email": "pranjalrastogi1998@gmail.com", - "theme": "8bits-monochrome-blue-white" -} + "copyright": "Pranjal Rastogi, https://prankshaw.github.io/", + "url": "https://prankshaw.github.io/", + "email": "pranjalrastogi1998@gmail.com", + "theme": "8bits-monochrome-blue-white" +} \ No newline at end of file diff --git a/users/prashant0598.json b/users/prashant0598.json index fa5ae0ba..cbf5c39d 100644 --- a/users/prashant0598.json +++ b/users/prashant0598.json @@ -1,7 +1,7 @@ { - "copyright": "Prashant Nigam", - "email": "nigamprashant.0598@gmail.com", - "gravatar": true, - "theme": "material-deep-orange", - "format": "html" -} + "copyright": "Prashant Nigam", + "email": "nigamprashant.0598@gmail.com", + "gravatar": true, + "theme": "material-deep-orange", + "format": "html" +} \ No newline at end of file diff --git a/users/prashcr.json b/users/prashcr.json index c089108f..589f2c8f 100644 --- a/users/prashcr.json +++ b/users/prashcr.json @@ -1,6 +1,6 @@ { - "copyright": "Prashanth Chandra", - "url": "http://prashcr.xyz", - "email": "hi@prashcr.xyz", - "theme": "flesch" -} + "copyright": "Prashanth Chandra", + "url": "http://prashcr.xyz", + "email": "hi@prashcr.xyz", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/pratyk.json b/users/pratyk.json index 48a0b229..332817a8 100644 --- a/users/pratyk.json +++ b/users/pratyk.json @@ -1,6 +1,6 @@ { - "copyright": "Pratik Desai", - "url": "http://pratyk.com", - "email": "mail@pratyk.com", - "format": "txt" -} + "copyright": "Pratik Desai", + "url": "http://pratyk.com", + "email": "mail@pratyk.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/praveen.json b/users/praveen.json index 6e6ba97d..f9e37004 100644 --- a/users/praveen.json +++ b/users/praveen.json @@ -1,4 +1,4 @@ { - "copyright": "Praveen Kumar, http://apnerve.com", - "url": "http://apnerve.com" -} + "copyright": "Praveen Kumar, http://apnerve.com", + "url": "http://apnerve.com" +} \ No newline at end of file diff --git a/users/pravj.json b/users/pravj.json index bb2f89ab..26f42346 100644 --- a/users/pravj.json +++ b/users/pravj.json @@ -1,4 +1,4 @@ { - "copyright": "Pravendra Singh", - "email": "hackpravj@gmail.com" -} + "copyright": "Pravendra Singh", + "email": "hackpravj@gmail.com" +} \ No newline at end of file diff --git a/users/preco.json b/users/preco.json index 5dfe69d8..28e0fc6b 100644 --- a/users/preco.json +++ b/users/preco.json @@ -1,6 +1,6 @@ { - "copyright": "Plusb Preco", - "email": "plusb21@gmail.com", - "gravatar": true, - "theme": "material-light-blue" -} + "copyright": "Plusb Preco", + "email": "plusb21@gmail.com", + "gravatar": true, + "theme": "material-light-blue" +} \ No newline at end of file diff --git a/users/prescott.json b/users/prescott.json index 6ee650b8..f87da76a 100644 --- a/users/prescott.json +++ b/users/prescott.json @@ -1,6 +1,6 @@ { - "copyright": "MooYeol Prescott Lee, http://debug.so", - "url": "http://debug.so", - "email": "mooyoul@gmail.com", - "gravatar": true -} + "copyright": "MooYeol Prescott Lee, http://debug.so", + "url": "http://debug.so", + "email": "mooyoul@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/preston.json b/users/preston.json index 5cb0aeb7..a5884025 100644 --- a/users/preston.json +++ b/users/preston.json @@ -1,3 +1,3 @@ { - "copyright": "Preston Lee" -} + "copyright": "Preston Lee" +} \ No newline at end of file diff --git a/users/probablywrong.json b/users/probablywrong.json index 50077278..d554040d 100644 --- a/users/probablywrong.json +++ b/users/probablywrong.json @@ -1,6 +1,6 @@ { - "copyright": "Were Probably Wrong", - "url": "http://wereprobablywrong.com", - "email": "github@wereprobablywrong.com", - "format": "html" -} + "copyright": "Were Probably Wrong", + "url": "http://wereprobablywrong.com", + "email": "github@wereprobablywrong.com", + "format": "html" +} \ No newline at end of file diff --git a/users/prodicus.json b/users/prodicus.json index 3ef3b803..85bfffe9 100644 --- a/users/prodicus.json +++ b/users/prodicus.json @@ -1,3 +1,3 @@ { - "copyright": "Tasdik Rahman" -} + "copyright": "Tasdik Rahman" +} \ No newline at end of file diff --git a/users/proudlygeek.json b/users/proudlygeek.json index 5af0f04e..837115f8 100644 --- a/users/proudlygeek.json +++ b/users/proudlygeek.json @@ -1,4 +1,4 @@ { - "copyright": "Gianluca Bargelli", - "email": "g.bargelli@gmail.com" -} + "copyright": "Gianluca Bargelli", + "email": "g.bargelli@gmail.com" +} \ No newline at end of file diff --git a/users/prsly.json b/users/prsly.json index f8f3d91e..47053e82 100644 --- a/users/prsly.json +++ b/users/prsly.json @@ -1,4 +1,4 @@ { - "copyright": "Michael Petrin", - "email": "i@prsly.ru" -} + "copyright": "Michael Petrin", + "email": "i@prsly.ru" +} \ No newline at end of file diff --git a/users/pschlosser.json b/users/pschlosser.json index 8c4d0ad2..6b709290 100644 --- a/users/pschlosser.json +++ b/users/pschlosser.json @@ -1,5 +1,5 @@ { - "copyright": "Peter Schlosser", - "email": "pschlosser@sonic.net", - "gravatar": true -} + "copyright": "Peter Schlosser", + "email": "pschlosser@sonic.net", + "gravatar": true +} \ No newline at end of file diff --git a/users/psykzz.json b/users/psykzz.json index 9eded41e..610679a6 100644 --- a/users/psykzz.json +++ b/users/psykzz.json @@ -1,8 +1,8 @@ { - "copyright": "Matt Smith, http://psykzz.co.uk", - "url": "http://psykzz.co.uk", - "email": "me@psykzz.co.uk", - "format": "txt", - "theme": "black-beauty", - "gravatar": true -} + "copyright": "Matt Smith, http://psykzz.co.uk", + "url": "http://psykzz.co.uk", + "email": "me@psykzz.co.uk", + "format": "txt", + "theme": "black-beauty", + "gravatar": true +} \ No newline at end of file diff --git a/users/psyrendust.json b/users/psyrendust.json index f2789713..d0de8cdf 100644 --- a/users/psyrendust.json +++ b/users/psyrendust.json @@ -1,5 +1,5 @@ { - "copyright": "Larry Gordon, https://github.com/psyrendust", - "url": "https://github.com/psyrendust", - "theme": "double-windsor" -} + "copyright": "Larry Gordon, https://github.com/psyrendust", + "url": "https://github.com/psyrendust", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/pt.json b/users/pt.json index 8f08a896..e0d8cf20 100644 --- a/users/pt.json +++ b/users/pt.json @@ -1,6 +1,6 @@ { - "copyright": "Pranay Thangeda", - "email": "pranay.thangeda@gmail.com", - "gravatar": true, - "theme": "material" -} + "copyright": "Pranay Thangeda", + "email": "pranay.thangeda@gmail.com", + "gravatar": true, + "theme": "material" +} \ No newline at end of file diff --git a/users/pthangeda.json b/users/pthangeda.json index 22c2a0e8..03de7a0b 100644 --- a/users/pthangeda.json +++ b/users/pthangeda.json @@ -1,6 +1,6 @@ { - "copyright": "Pranay Thangeda", - "email": "contact@prny.me", - "gravatar": false, - "theme": "material" -} + "copyright": "Pranay Thangeda", + "email": "contact@prny.me", + "gravatar": false, + "theme": "material" +} \ No newline at end of file diff --git a/users/pti.json b/users/pti.json index a8a148ca..c3345232 100644 --- a/users/pti.json +++ b/users/pti.json @@ -1,5 +1,5 @@ { - "copyright": "Pyramid Technologies Inc, https://pyramidacceptors.com", - "url": "https://pyramidacceptors.com/", - "theme": "friendly" -} + "copyright": "Pyramid Technologies Inc, https://pyramidacceptors.com", + "url": "https://pyramidacceptors.com/", + "theme": "friendly" +} \ No newline at end of file diff --git a/users/punkish.json b/users/punkish.json index 2b4f1217..87f8e78f 100644 --- a/users/punkish.json +++ b/users/punkish.json @@ -1,6 +1,6 @@ { - "copyright": "Puneet Kishor", - "url": "http://punkish.org", - "email": "1@punkish.org", - "format": "txt" -} + "copyright": "Puneet Kishor", + "url": "http://punkish.org", + "email": "1@punkish.org", + "format": "txt" +} \ No newline at end of file diff --git a/users/purdy.json b/users/purdy.json index 22010e08..9d255c3b 100644 --- a/users/purdy.json +++ b/users/purdy.json @@ -1,8 +1,8 @@ { - "copyright": "Joe Purdy", - "url": "https://joepurdy.io", - "email": "hello@joepurdy.io", - "gravatar": true, - "theme": "material-blue", - "format": "html" -} + "copyright": "Joe Purdy", + "url": "https://joepurdy.io", + "email": "hello@joepurdy.io", + "gravatar": true, + "theme": "material-blue", + "format": "html" +} \ No newline at end of file diff --git a/users/pushandplay.json b/users/pushandplay.json index 0b8dfb03..ce9fdf33 100644 --- a/users/pushandplay.json +++ b/users/pushandplay.json @@ -1,8 +1,8 @@ { - "copyright": "pushandplay", - "url": "http://pushandplay.ru", - "format": "txt", - "email": "hello@pushandplay.ru", - "gravatar": true, - "theme": "default" -} + "copyright": "pushandplay", + "url": "http://pushandplay.ru", + "format": "txt", + "email": "hello@pushandplay.ru", + "gravatar": true, + "theme": "default" +} \ No newline at end of file diff --git a/users/pwmckenna.json b/users/pwmckenna.json index f9169b24..032135cf 100644 --- a/users/pwmckenna.json +++ b/users/pwmckenna.json @@ -1,3 +1,3 @@ { - "copyright": "Patrick Williams" -} + "copyright": "Patrick Williams" +} \ No newline at end of file diff --git a/users/pwn.json b/users/pwn.json index 83c70432..28682974 100644 --- a/users/pwn.json +++ b/users/pwn.json @@ -1,6 +1,6 @@ { - "copyright": "Pwn", - "url": "http://pwn.buzz", - "email": "hi@pwn.buzz", - "format": "txt" -} + "copyright": "Pwn", + "url": "http://pwn.buzz", + "email": "hi@pwn.buzz", + "format": "txt" +} \ No newline at end of file diff --git a/users/pwnall.json b/users/pwnall.json index 972e82ee..f174e3cb 100644 --- a/users/pwnall.json +++ b/users/pwnall.json @@ -1,5 +1,5 @@ { - "copyright": "Victor Costan", - "email": "victor@costan.us", - "gravatar": true -} + "copyright": "Victor Costan", + "email": "victor@costan.us", + "gravatar": true +} \ No newline at end of file diff --git a/users/px.json b/users/px.json index 6dd6abe3..7985387e 100644 --- a/users/px.json +++ b/users/px.json @@ -1,7 +1,7 @@ { - "copyright": "Rob Friedman", - "url": "http://playerx.net", - "email": "px@ns1.net", - "format": "html", - "theme": "double-windsor" -} + "copyright": "Rob Friedman", + "url": "http://playerx.net", + "email": "px@ns1.net", + "format": "html", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/pxc.json b/users/pxc.json index ce349004..38b41362 100644 --- a/users/pxc.json +++ b/users/pxc.json @@ -1,5 +1,5 @@ { - "copyright": "Matthew Strawbridge", - "url": "http://www.matthewstrawbridge.com", - "format": "html" -} + "copyright": "Matthew Strawbridge", + "url": "http://www.matthewstrawbridge.com", + "format": "html" +} \ No newline at end of file diff --git a/users/pxgamer.json b/users/pxgamer.json index d60630d4..ec44b4e5 100644 --- a/users/pxgamer.json +++ b/users/pxgamer.json @@ -1,8 +1,8 @@ { - "copyright": "Owen Voke", - "url": "https://pxgamer.xyz", - "email": "owzie123@gmail.com", - "gravatar": true, - "theme": "material-teal", - "format": "html" -} + "copyright": "Owen Voke", + "url": "https://pxgamer.xyz", + "email": "owzie123@gmail.com", + "gravatar": true, + "theme": "material-teal", + "format": "html" +} \ No newline at end of file diff --git a/users/pyyoshi.json b/users/pyyoshi.json index 47468794..25376fb6 100644 --- a/users/pyyoshi.json +++ b/users/pyyoshi.json @@ -1,3 +1,3 @@ { - "copyright": "Yoshihiro Misawa" -} + "copyright": "Yoshihiro Misawa" +} \ No newline at end of file diff --git a/users/qfox.json b/users/qfox.json index ce39b9fd..86e25833 100644 --- a/users/qfox.json +++ b/users/qfox.json @@ -1,6 +1,6 @@ { - "copyright": "Alex Yaroshevich", - "url": "http://qfox.ru", - "email": "alex@qfox.ru", - "theme": "double-windsor" -} + "copyright": "Alex Yaroshevich", + "url": "http://qfox.ru", + "email": "alex@qfox.ru", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/qing.json b/users/qing.json index 06ee22ba..6be0d7c5 100644 --- a/users/qing.json +++ b/users/qing.json @@ -1,3 +1,3 @@ { - "copyright": "Qing Ma" -} + "copyright": "Qing Ma" +} \ No newline at end of file diff --git a/users/qix1986.json b/users/qix1986.json index d32353df..714d87e4 100644 --- a/users/qix1986.json +++ b/users/qix1986.json @@ -1,7 +1,7 @@ { - "copyright": "Diego Rocha", - "url": "http://diegorocha.me", - "email": "qix1986@gmail.com", - "theme": "default", - "gravatar": true -} + "copyright": "Diego Rocha", + "url": "http://diegorocha.me", + "email": "qix1986@gmail.com", + "theme": "default", + "gravatar": true +} \ No newline at end of file diff --git a/users/qorbani.json b/users/qorbani.json index e32c42d2..bddee6a4 100644 --- a/users/qorbani.json +++ b/users/qorbani.json @@ -1,8 +1,8 @@ { - "copyright": "Reza Qorbani", - "url": "http://qorbani.com", - "email": "reza@qorbani.com", - "format": "txt", - "gravatar": true, - "theme": "friendly" -} + "copyright": "Reza Qorbani", + "url": "http://qorbani.com", + "email": "reza@qorbani.com", + "format": "txt", + "gravatar": true, + "theme": "friendly" +} \ No newline at end of file diff --git a/users/qrawl.json b/users/qrawl.json index 91ed6f00..3ab00a66 100644 --- a/users/qrawl.json +++ b/users/qrawl.json @@ -1,6 +1,6 @@ { - "copyright": "Pierre Prinetti", - "url": "https://www.pierreprinetti.net", - "email": "me@qrawl.net", - "gravatar": true -} + "copyright": "Pierre Prinetti", + "url": "https://www.pierreprinetti.net", + "email": "me@qrawl.net", + "gravatar": true +} \ No newline at end of file diff --git a/users/quantumgraph.json b/users/quantumgraph.json index cc63d65c..aaf1c32b 100644 --- a/users/quantumgraph.json +++ b/users/quantumgraph.json @@ -1,3 +1,3 @@ { - "copyright": "QuantumGraph" -} + "copyright": "QuantumGraph" +} \ No newline at end of file diff --git a/users/queryli.json b/users/queryli.json index 696fbc90..ddbc841f 100644 --- a/users/queryli.json +++ b/users/queryli.json @@ -1,7 +1,7 @@ { - "copyright": "QueryLI", - "url": "http://query.li", - "email": "hello@query.li", - "format": "html", - "gravatar": true -} + "copyright": "QueryLI", + "url": "http://query.li", + "email": "hello@query.li", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/questbeat.json b/users/questbeat.json index 5477196b..82d09ea0 100644 --- a/users/questbeat.json +++ b/users/questbeat.json @@ -1,3 +1,3 @@ { - "copyright": "Katsuma Tanaka" -} + "copyright": "Katsuma Tanaka" +} \ No newline at end of file diff --git a/users/qwertypants.json b/users/qwertypants.json index 8f09533e..36e89f6b 100644 --- a/users/qwertypants.json +++ b/users/qwertypants.json @@ -1,3 +1,3 @@ { - "copyright": "Wilkins Fernandez" -} + "copyright": "Wilkins Fernandez" +} \ No newline at end of file diff --git a/users/r15ch13.json b/users/r15ch13.json index e0732952..d4cd4131 100644 --- a/users/r15ch13.json +++ b/users/r15ch13.json @@ -1,8 +1,8 @@ { - "copyright": "Richard Kuhnt", - "url": "https://r15ch13.de", - "email": "r15ch13+git@gmail.com", - "theme": "material-green", - "format": "html", - "gravatar": true -} + "copyright": "Richard Kuhnt", + "url": "https://r15ch13.de", + "email": "r15ch13+git@gmail.com", + "theme": "material-green", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/raananw.json b/users/raananw.json index 7fe5d335..5c4da786 100644 --- a/users/raananw.json +++ b/users/raananw.json @@ -1,6 +1,6 @@ { - "copyright": "Raanan Weber", - "url": "https://github.com/RaananW", - "email": "info@raananweber.com", - "format": "html" -} + "copyright": "Raanan Weber", + "url": "https://github.com/RaananW", + "email": "info@raananweber.com", + "format": "html" +} \ No newline at end of file diff --git a/users/racklin.json b/users/racklin.json index 0e9b5d16..cd0599e2 100644 --- a/users/racklin.json +++ b/users/racklin.json @@ -1,4 +1,4 @@ { - "copyright": "Rack Lin", - "email": "racklin@gmail.com" -} + "copyright": "Rack Lin", + "email": "racklin@gmail.com" +} \ No newline at end of file diff --git a/users/radic.json b/users/radic.json index 6494022e..4a5f97ef 100644 --- a/users/radic.json +++ b/users/radic.json @@ -1,8 +1,8 @@ { - "copyright": "Robin Radic, Radic Technologies", - "url": "http://radic.nl", - "email": "info@radic.nl", - "format": "html", - "theme": "xtansia", - "gravatar": true -} + "copyright": "Robin Radic, Radic Technologies", + "url": "http://radic.nl", + "email": "info@radic.nl", + "format": "html", + "theme": "xtansia", + "gravatar": true +} \ No newline at end of file diff --git a/users/radio-t.json b/users/radio-t.json index d46f7f76..a159b949 100644 --- a/users/radio-t.json +++ b/users/radio-t.json @@ -1,5 +1,5 @@ { - "copyright": "Radio-T", - "email": "podcast@radio-t.com", - "format": "txt" -} + "copyright": "Radio-T", + "email": "podcast@radio-t.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/raegen.json b/users/raegen.json index de454f20..9e2bca21 100644 --- a/users/raegen.json +++ b/users/raegen.json @@ -1,7 +1,7 @@ { - "copyright": "Nikola Pavlovic", - "url": "http://raegen.tech", - "email": "raegen@raegen.tech", - "theme": "material", - "gravatar": true -} + "copyright": "Nikola Pavlovic", + "url": "http://raegen.tech", + "email": "raegen@raegen.tech", + "theme": "material", + "gravatar": true +} \ No newline at end of file diff --git a/users/raf.json b/users/raf.json index e0628e9d..fb65df13 100644 --- a/users/raf.json +++ b/users/raf.json @@ -1,6 +1,6 @@ { - "copyright": "Raffael Schmid", - "url": "http://blog.yux.ch", - "email": "raffael@yux.ch", - "theme": "xtansia" -} + "copyright": "Raffael Schmid", + "url": "http://blog.yux.ch", + "email": "raffael@yux.ch", + "theme": "xtansia" +} \ No newline at end of file diff --git a/users/rafamello.json b/users/rafamello.json index 4f79c381..f58899ba 100644 --- a/users/rafamello.json +++ b/users/rafamello.json @@ -1,7 +1,7 @@ { - "copyright": "Rafael Mello Campanari", - "url": "http://rafamello.com", - "email": "lab.rafamello@gmail.com", - "format": "txt", - "theme": "flesch" -} + "copyright": "Rafael Mello Campanari", + "url": "http://rafamello.com", + "email": "lab.rafamello@gmail.com", + "format": "txt", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/raindrop.json b/users/raindrop.json index b5b02074..3e1e1936 100644 --- a/users/raindrop.json +++ b/users/raindrop.json @@ -1,5 +1,5 @@ { - "copyright": "Kim Ki-hong, http://www.underfront.com/", - "url": "http://www.underfront.com/", - "theme": "double-windsor" -} + "copyright": "Kim Ki-hong, http://www.underfront.com/", + "url": "http://www.underfront.com/", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/raja.json b/users/raja.json index 3ed3289b..d39000a0 100644 --- a/users/raja.json +++ b/users/raja.json @@ -1,4 +1,4 @@ { - "copyright": "Rajesh Cherukuri, http://rxc178.github.com", - "url": "http://rxc178.github.com" -} + "copyright": "Rajesh Cherukuri, http://rxc178.github.com", + "url": "http://rxc178.github.com" +} \ No newline at end of file diff --git a/users/rajarshi.json b/users/rajarshi.json index 117c5af5..923adec1 100644 --- a/users/rajarshi.json +++ b/users/rajarshi.json @@ -1,6 +1,6 @@ { - "copyright": "Rajarshi Bhadra (aka m45k174)", - "email": "admin@distribure.cf", - "gravatar": true, - "format": "html" -} + "copyright": "Rajarshi Bhadra (aka m45k174)", + "email": "admin@distribure.cf", + "gravatar": true, + "format": "html" +} \ No newline at end of file diff --git a/users/rajeevkannav.json b/users/rajeevkannav.json index 492ca0d1..64eadca7 100644 --- a/users/rajeevkannav.json +++ b/users/rajeevkannav.json @@ -1,8 +1,8 @@ { - "copyright": "Rajeev Sharma", - "url": "https://rajeevkannav.com", - "email": "rajeevsharma86@gmail.com", - "format": "txt", - "gravatar": true, - "theme": "8bits-monochrome" -} + "copyright": "Rajeev Sharma", + "url": "https://rajeevkannav.com", + "email": "rajeevsharma86@gmail.com", + "format": "txt", + "gravatar": true, + "theme": "8bits-monochrome" +} \ No newline at end of file diff --git a/users/rajinwonderland.json b/users/rajinwonderland.json index f638b9a1..05eb48fb 100644 --- a/users/rajinwonderland.json +++ b/users/rajinwonderland.json @@ -1,8 +1,8 @@ { - "copyright": "Raj Singh, https://twitter.com/rajinwonderland", - "url": "https://twitter.com/rajinwonderland", - "email": "raj@novvum.io", - "format": "html", - "theme": "default", - "gravatar": true -} + "copyright": "Raj Singh, https://twitter.com/rajinwonderland", + "url": "https://twitter.com/rajinwonderland", + "email": "raj@novvum.io", + "format": "html", + "theme": "default", + "gravatar": true +} \ No newline at end of file diff --git a/users/ramanan.json b/users/ramanan.json index ad054091..a14f4426 100644 --- a/users/ramanan.json +++ b/users/ramanan.json @@ -1,6 +1,6 @@ { - "copyright": "Ramanan Sathananthasarma, http://www.ramanan.info", - "url": "http://www.ramanan.info", - "email": "ramanan@ramanan.info", - "theme": "default" -} + "copyright": "Ramanan Sathananthasarma, http://www.ramanan.info", + "url": "http://www.ramanan.info", + "email": "ramanan@ramanan.info", + "theme": "default" +} \ No newline at end of file diff --git a/users/ramin.json b/users/ramin.json index 9a704ff0..6c9bf2c5 100644 --- a/users/ramin.json +++ b/users/ramin.json @@ -1,6 +1,6 @@ { - "copyright": "Ramin Sedighi", - "url": "http://ramin.sedighi.com", - "email": "rsedighi@gmail.com", - "format": "txt" -} + "copyright": "Ramin Sedighi", + "url": "http://ramin.sedighi.com", + "email": "rsedighi@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/ramirio.json b/users/ramirio.json index 99b38fa3..418199ab 100644 --- a/users/ramirio.json +++ b/users/ramirio.json @@ -1,4 +1,4 @@ { - "copyright": "Cleberson Ramirio", - "email": "cleberson.ramirio@gmail.com" -} + "copyright": "Cleberson Ramirio", + "email": "cleberson.ramirio@gmail.com" +} \ No newline at end of file diff --git a/users/ramonpage.json b/users/ramonpage.json index aa8e5c01..343629fa 100644 --- a/users/ramonpage.json +++ b/users/ramonpage.json @@ -1,6 +1,6 @@ { - "copyright": "Ramon Bispo (a.k.a. RamonPage)", - "url": "http://ramonpage.com", - "email": "contact@ramonpage.com", - "format": "txt" -} + "copyright": "Ramon Bispo (a.k.a. RamonPage)", + "url": "http://ramonpage.com", + "email": "contact@ramonpage.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/ramsey.json b/users/ramsey.json index eef11ec2..b4958aa9 100644 --- a/users/ramsey.json +++ b/users/ramsey.json @@ -1,7 +1,7 @@ { - "copyright": "Ben Ramsey", - "url": "https://benramsey.com", - "email": "ben@benramsey.com", - "theme": "material-blue", - "gravatar": true -} + "copyright": "Ben Ramsey", + "url": "https://benramsey.com", + "email": "ben@benramsey.com", + "theme": "material-blue", + "gravatar": true +} \ No newline at end of file diff --git a/users/random-rem.json b/users/random-rem.json index cacde5a1..d95d0699 100644 --- a/users/random-rem.json +++ b/users/random-rem.json @@ -1,3 +1,3 @@ { - "copyright": "Random Remy Sharp" -} + "copyright": "Random Remy Sharp" +} \ No newline at end of file diff --git a/users/randsonjs.json b/users/randsonjs.json index bd47a511..dd0e7f2d 100644 --- a/users/randsonjs.json +++ b/users/randsonjs.json @@ -1,6 +1,6 @@ { - "copyright": "Randson Js", - "url": "http://randsonjs.com", - "email": "randson@randsonjs.com", - "theme": "double-windsor" -} + "copyright": "Randson Js", + "url": "http://randsonjs.com", + "email": "randson@randsonjs.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/raphael.json b/users/raphael.json index dc76f3ae..7785a5f9 100644 --- a/users/raphael.json +++ b/users/raphael.json @@ -1,4 +1,4 @@ { - "copyright": "Rapha\u00c3\u00abl Bastide, http://raphaelbastide.com", - "url": "http://raphaelbastide.com" -} + "copyright": "Raphaël Bastide, http://raphaelbastide.com", + "url": "http://raphaelbastide.com" +} \ No newline at end of file diff --git a/users/raphaelbronsveld.json b/users/raphaelbronsveld.json index 8f78986d..413d86dd 100644 --- a/users/raphaelbronsveld.json +++ b/users/raphaelbronsveld.json @@ -1,3 +1,3 @@ { - "copyright": "Raphael Bronsveld" -} + "copyright": "Raphael Bronsveld" +} \ No newline at end of file diff --git a/users/raphaelfabeni.json b/users/raphaelfabeni.json index 3c12578b..ebf7243d 100644 --- a/users/raphaelfabeni.json +++ b/users/raphaelfabeni.json @@ -1,5 +1,5 @@ { - "copyright": "Raphael Fabeni", - "url": "http://raphaelfabeni.com.br", - "email": "contato@raphaelfabeni.com.br" -} + "copyright": "Raphael Fabeni", + "url": "http://raphaelfabeni.com.br", + "email": "contato@raphaelfabeni.com.br" +} \ No newline at end of file diff --git a/users/rappa.json b/users/rappa.json index 23964319..83c7b6d7 100644 --- a/users/rappa.json +++ b/users/rappa.json @@ -1,7 +1,7 @@ { - "copyright": "Anthony Rappa", - "url": "http://rappasoft.com", - "email": "rappa819@gmail.com", - "format": "html", - "gravatar": true -} + "copyright": "Anthony Rappa", + "url": "http://rappasoft.com", + "email": "rappa819@gmail.com", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/rappasoft.json b/users/rappasoft.json index 23964319..83c7b6d7 100644 --- a/users/rappasoft.json +++ b/users/rappasoft.json @@ -1,7 +1,7 @@ { - "copyright": "Anthony Rappa", - "url": "http://rappasoft.com", - "email": "rappa819@gmail.com", - "format": "html", - "gravatar": true -} + "copyright": "Anthony Rappa", + "url": "http://rappasoft.com", + "email": "rappa819@gmail.com", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/rapson.json b/users/rapson.json index 9c76aef2..d5180236 100644 --- a/users/rapson.json +++ b/users/rapson.json @@ -1,3 +1,3 @@ { - "copyright": "David Rapson" -} + "copyright": "David Rapson" +} \ No newline at end of file diff --git a/users/rares.json b/users/rares.json index cc4fe987..1460938f 100644 --- a/users/rares.json +++ b/users/rares.json @@ -1,6 +1,6 @@ { - "copyright": "Robert Ares", - "url": "http://www.robares.com", - "email": "rob.ares+mit@gmail.com", - "format": "txt" -} + "copyright": "Robert Ares", + "url": "http://www.robares.com", + "email": "rob.ares+mit@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/rasch.json b/users/rasch.json index 3d979a28..e79e0264 100644 --- a/users/rasch.json +++ b/users/rasch.json @@ -1,6 +1,6 @@ { - "copyright": "Randy Schneck", - "url": "http://randyschneck.com", - "email": "me@randyschneck.com", - "gravatar": true -} + "copyright": "Randy Schneck", + "url": "http://randyschneck.com", + "email": "me@randyschneck.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/ravigehlot.json b/users/ravigehlot.json index e8eb1707..c3c6f1ce 100644 --- a/users/ravigehlot.json +++ b/users/ravigehlot.json @@ -1,3 +1,3 @@ { - "copyright": "Ravi Gehlot" -} + "copyright": "Ravi Gehlot" +} \ No newline at end of file diff --git a/users/raw-engineering.json b/users/raw-engineering.json index 9a1c1c2b..efbe9351 100644 --- a/users/raw-engineering.json +++ b/users/raw-engineering.json @@ -1,5 +1,5 @@ { - "copyright": "raw engineering", - "url": "http://raweng.com", - "format": "txt" -} + "copyright": "raw engineering", + "url": "http://raweng.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/raweng.json b/users/raweng.json index d4ac81bf..cf63f16d 100644 --- a/users/raweng.json +++ b/users/raweng.json @@ -1,4 +1,4 @@ { - "copyright": "raw engineering", - "url": "http://raweng.com" -} + "copyright": "raw engineering", + "url": "http://raweng.com" +} \ No newline at end of file diff --git a/users/rawengineering.json b/users/rawengineering.json index d4ac81bf..cf63f16d 100644 --- a/users/rawengineering.json +++ b/users/rawengineering.json @@ -1,4 +1,4 @@ { - "copyright": "raw engineering", - "url": "http://raweng.com" -} + "copyright": "raw engineering", + "url": "http://raweng.com" +} \ No newline at end of file diff --git a/users/raypatterson.json b/users/raypatterson.json index bba733cc..0384b843 100644 --- a/users/raypatterson.json +++ b/users/raypatterson.json @@ -1,6 +1,6 @@ { - "copyright": "Ray Patterson, http://theraypattersonstory.com", - "url": "http://theraypattersonstory.com", - "theme": "friendly", - "gravatar": true -} + "copyright": "Ray Patterson, http://theraypattersonstory.com", + "url": "http://theraypattersonstory.com", + "theme": "friendly", + "gravatar": true +} \ No newline at end of file diff --git a/users/rbardini.json b/users/rbardini.json index 8b1e6e67..a2159d07 100644 --- a/users/rbardini.json +++ b/users/rbardini.json @@ -1,7 +1,7 @@ { - "copyright": "Rafael Bardini", - "url": "http://rbardini.com/", - "email": "rafael@rbardini.com", - "theme": "double-windsor", - "gravatar": true -} + "copyright": "Rafael Bardini", + "url": "http://rbardini.com/", + "email": "rafael@rbardini.com", + "theme": "double-windsor", + "gravatar": true +} \ No newline at end of file diff --git a/users/rcpeters.json b/users/rcpeters.json index 6df40c51..1a811f29 100644 --- a/users/rcpeters.json +++ b/users/rcpeters.json @@ -1,5 +1,5 @@ { - "copyright": "Robert Peters, http://rcpeters.com", - "url": "http://rcpeters.com", - "theme": "flesch" -} + "copyright": "Robert Peters, http://rcpeters.com", + "url": "http://rcpeters.com", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/rcta.json b/users/rcta.json index c81595a3..f2743b11 100644 --- a/users/rcta.json +++ b/users/rcta.json @@ -1,6 +1,6 @@ { - "copyright": "Rick Culpepper", - "url": "http://ternaryalchemy.com", - "email": "rick@ternaryalchemy.com", - "format": "html" -} + "copyright": "Rick Culpepper", + "url": "http://ternaryalchemy.com", + "email": "rick@ternaryalchemy.com", + "format": "html" +} \ No newline at end of file diff --git a/users/readytalk.json b/users/readytalk.json index 02c9728c..0a5a3bea 100644 --- a/users/readytalk.json +++ b/users/readytalk.json @@ -1,3 +1,3 @@ { - "copyright": "ReadyTalk and Contributors" -} + "copyright": "ReadyTalk and Contributors" +} \ No newline at end of file diff --git a/users/recoye.json b/users/recoye.json index 24b72c62..e3e6805f 100644 --- a/users/recoye.json +++ b/users/recoye.json @@ -1,6 +1,6 @@ { - "copyright": "recoye", - "url": "http://www.recoye.com", - "email": "mail@recoye.com", - "format": "txt" -} + "copyright": "recoye", + "url": "http://www.recoye.com", + "email": "mail@recoye.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/redpumpkin.json b/users/redpumpkin.json index 057954df..15ba4405 100644 --- a/users/redpumpkin.json +++ b/users/redpumpkin.json @@ -1,6 +1,6 @@ { - "copyright": "RedPumpkin", - "url": "http://rp.pe.kr/", - "email": "kkkyyy03@naver.com", - "format": "txt" -} + "copyright": "RedPumpkin", + "url": "http://rp.pe.kr/", + "email": "kkkyyy03@naver.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/reedia.json b/users/reedia.json index 5529181f..aa580340 100644 --- a/users/reedia.json +++ b/users/reedia.json @@ -1,3 +1,3 @@ { - "copyright": "Reedia Limited" -} + "copyright": "Reedia Limited" +} \ No newline at end of file diff --git a/users/reefaq.json b/users/reefaq.json index 7bb0536f..541eb8f0 100644 --- a/users/reefaq.json +++ b/users/reefaq.json @@ -1,4 +1,4 @@ { - "copyright": "Reefaq Mohammed", - "email": "reefaq.mohammed@gmail.com" -} + "copyright": "Reefaq Mohammed", + "email": "reefaq.mohammed@gmail.com" +} \ No newline at end of file diff --git a/users/rei.json b/users/rei.json index 2d4eac19..b3924b26 100644 --- a/users/rei.json +++ b/users/rei.json @@ -1,5 +1,5 @@ { - "copyright": "Mark Vasilkov", - "url": "http://animuchan.net/", - "format": "txt" -} + "copyright": "Mark Vasilkov", + "url": "http://animuchan.net/", + "format": "txt" +} \ No newline at end of file diff --git a/users/rejack.json b/users/rejack.json index 1c0132a4..1fe17300 100644 --- a/users/rejack.json +++ b/users/rejack.json @@ -1,7 +1,7 @@ { - "copyright": "Raphael Jackstadt", - "url": "https://www.rejack.us", - "email": "info@rejack.de", - "theme": "black-beauty", - "gravatar": true -} + "copyright": "Raphael Jackstadt", + "url": "https://www.rejack.us", + "email": "info@rejack.de", + "theme": "black-beauty", + "gravatar": true +} \ No newline at end of file diff --git a/users/relequestual.json b/users/relequestual.json index e4062282..31df5411 100644 --- a/users/relequestual.json +++ b/users/relequestual.json @@ -1,3 +1,3 @@ { - "copyright": "Ben Hutton" -} + "copyright": "Ben Hutton" +} \ No newline at end of file diff --git a/users/relu.json b/users/relu.json index 185a1dea..97915e9d 100644 --- a/users/relu.json +++ b/users/relu.json @@ -1,3 +1,3 @@ { - "copyright": "Aurel Canciu" -} + "copyright": "Aurel Canciu" +} \ No newline at end of file diff --git a/users/rem-test.json b/users/rem-test.json index 94553093..2718a070 100644 --- a/users/rem-test.json +++ b/users/rem-test.json @@ -1,6 +1,6 @@ { - "copyright": "Remy Sharp", - "url": "http://remysharp.com", - "email": "me@mysite.com", - "format": "txt" -} + "copyright": "Remy Sharp", + "url": "http://remysharp.com", + "email": "me@mysite.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/rem-test2.json b/users/rem-test2.json index d7480beb..ba20bb8c 100644 --- a/users/rem-test2.json +++ b/users/rem-test2.json @@ -1,6 +1,6 @@ { - "copyright": "Remy Sharp", - "url": "http://remysharp.com", - "email": "me@mysite.com", - "format": "html" -} + "copyright": "Remy Sharp", + "url": "http://remysharp.com", + "email": "me@mysite.com", + "format": "html" +} \ No newline at end of file diff --git a/users/rem.json b/users/rem.json index 9c178e05..b8df0792 100644 --- a/users/rem.json +++ b/users/rem.json @@ -1,7 +1,7 @@ { - "copyright": "Remy Sharp, https://remysharp.com", - "url": "https://remysharp.com", - "email": "remy@remysharp.com", - "theme": "material-pink", - "gravatar": true -} + "copyright": "Remy Sharp, https://remysharp.com", + "url": "https://remysharp.com", + "email": "remy@remysharp.com", + "theme": "material-pink", + "gravatar": true +} \ No newline at end of file diff --git a/users/rem123.json b/users/rem123.json index 94553093..2718a070 100644 --- a/users/rem123.json +++ b/users/rem123.json @@ -1,6 +1,6 @@ { - "copyright": "Remy Sharp", - "url": "http://remysharp.com", - "email": "me@mysite.com", - "format": "txt" -} + "copyright": "Remy Sharp", + "url": "http://remysharp.com", + "email": "me@mysite.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/rematin.json b/users/rematin.json index 8a8dd88f..194558e7 100644 --- a/users/rematin.json +++ b/users/rematin.json @@ -1,3 +1,3 @@ { - "copyright": "ReFouad Matin" -} + "copyright": "ReFouad Matin" +} \ No newline at end of file diff --git a/users/reminisceme.json b/users/reminisceme.json index aac5c2df..4da35089 100644 --- a/users/reminisceme.json +++ b/users/reminisceme.json @@ -1,5 +1,5 @@ { - "copyright": "Reminisce.me", - "url": "http://reminisce.me", - "email": "info@reminisce.me" -} + "copyright": "Reminisce.me", + "url": "http://reminisce.me", + "email": "info@reminisce.me" +} \ No newline at end of file diff --git a/users/remybach.json b/users/remybach.json index c4b3fb36..2d59c865 100644 --- a/users/remybach.json +++ b/users/remybach.json @@ -1,5 +1,5 @@ { - "copyright": "Remy Bach, http://remy.bach.me.uk", - "theme": "double-windsor", - "url": "http://remy.bach.me.uk" -} + "copyright": "Remy Bach, http://remy.bach.me.uk", + "theme": "double-windsor", + "url": "http://remy.bach.me.uk" +} \ No newline at end of file diff --git a/users/remyg.json b/users/remyg.json index ce6c94b7..35720e6f 100644 --- a/users/remyg.json +++ b/users/remyg.json @@ -1,6 +1,6 @@ { - "copyright": "Remy Gardette", - "url": "http://remyg.com", - "email": "remy.gardette@gmail.com", - "format": "txt" -} + "copyright": "Remy Gardette", + "url": "http://remyg.com", + "email": "remy.gardette@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/remz.json b/users/remz.json index 947a65c5..a0ae7156 100644 --- a/users/remz.json +++ b/users/remz.json @@ -1,3 +1,3 @@ { - "copyright": "Remy12312321 Sharp1111322321333" -} + "copyright": "Remy12312321 Sharp1111322321333" +} \ No newline at end of file diff --git a/users/renatoargh.json b/users/renatoargh.json index 97abf4d1..77ae3059 100644 --- a/users/renatoargh.json +++ b/users/renatoargh.json @@ -1,5 +1,5 @@ { - "copyright": "Renato Gama", - "email": "renatoargh@gmail.com", - "format": "html" -} + "copyright": "Renato Gama", + "email": "renatoargh@gmail.com", + "format": "html" +} \ No newline at end of file diff --git a/users/rene.json b/users/rene.json index b384dc4a..850a8843 100644 --- a/users/rene.json +++ b/users/rene.json @@ -1,6 +1,6 @@ { - "copyright": "Ren\u00e9 Kooi", - "url": "http://rene.kooi.me", - "email": "rene@kooi.me", - "format": "html" -} + "copyright": "René Kooi", + "url": "http://rene.kooi.me", + "email": "rene@kooi.me", + "format": "html" +} \ No newline at end of file diff --git a/users/ress.json b/users/ress.json index a3f4b2dd..9eb2b14e 100644 --- a/users/ress.json +++ b/users/ress.json @@ -1,6 +1,6 @@ { - "copyright": "ress", - "url": "https://x39.dev", - "format": "html", - "theme": "material-deep-purple" -} + "copyright": "ress", + "url": "https://x39.dev", + "format": "html", + "theme": "material-deep-purple" +} \ No newline at end of file diff --git a/users/ressendpanda.json b/users/ressendpanda.json index f039e336..64308fd9 100644 --- a/users/ressendpanda.json +++ b/users/ressendpanda.json @@ -1,8 +1,8 @@ { - "copyright": "Kim Younggeon, http://www.kyg.kr", - "url": "http://www.kyg.kr", - "email": "mail@kyg.kr", - "gravatar": true, - "theme": "friendly", - "format": "html" -} + "copyright": "Kim Younggeon, http://www.kyg.kr", + "url": "http://www.kyg.kr", + "email": "mail@kyg.kr", + "gravatar": true, + "theme": "friendly", + "format": "html" +} \ No newline at end of file diff --git a/users/return1.json b/users/return1.json index 46542040..e9be1f43 100644 --- a/users/return1.json +++ b/users/return1.json @@ -1,4 +1,4 @@ { - "copyright": "Dominique Lederer", - "url": "http://www.return1.at" -} + "copyright": "Dominique Lederer", + "url": "http://www.return1.at" +} \ No newline at end of file diff --git a/users/revathskumar.json b/users/revathskumar.json index 85534c8d..c1d25cc6 100644 --- a/users/revathskumar.json +++ b/users/revathskumar.json @@ -1,3 +1,3 @@ { - "copyright": "Revath S Kumar" -} + "copyright": "Revath S Kumar" +} \ No newline at end of file diff --git a/users/revi.json b/users/revi.json index 77be021c..a4a43235 100644 --- a/users/revi.json +++ b/users/revi.json @@ -1,6 +1,6 @@ { - "copyright": "Yongmin Hong (Revi), https://revi.me", - "url": "https://revi.me", - "email": "revi@pobox.com", - "theme": "cherry" -} + "copyright": "Yongmin Hong (Revi), https://revi.me", + "url": "https://revi.me", + "email": "revi@pobox.com", + "theme": "cherry" +} \ No newline at end of file diff --git a/users/revolunet.json b/users/revolunet.json index 2d52d6f1..95f995c4 100644 --- a/users/revolunet.json +++ b/users/revolunet.json @@ -1,5 +1,5 @@ { - "copyright": "Julien Bouquillon, revolunet", - "url": "http://revolunet.com", - "email": "julien@revolunet.com" -} + "copyright": "Julien Bouquillon, revolunet", + "url": "http://revolunet.com", + "email": "julien@revolunet.com" +} \ No newline at end of file diff --git a/users/reza.json b/users/reza.json index e2dfb7f2..bc3cf5d8 100644 --- a/users/reza.json +++ b/users/reza.json @@ -1,7 +1,7 @@ { - "copyright": "Muhamad Reza Abdul Rohim", - "url": "http://rezartisan.com", - "email": "reza.wikrama3@gmail.com", - "format": "html", - "gravatar": true -} + "copyright": "Muhamad Reza Abdul Rohim", + "url": "http://rezartisan.com", + "email": "reza.wikrama3@gmail.com", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/rflpazini.json b/users/rflpazini.json index fddc3e7f..71346f43 100644 --- a/users/rflpazini.json +++ b/users/rflpazini.json @@ -1,5 +1,5 @@ { - "copyright": "Rafael Pazini", - "url": "http://rflpazini.github.io", - "email": "rflpazini@gmail.com" -} + "copyright": "Rafael Pazini", + "url": "http://rflpazini.github.io", + "email": "rflpazini@gmail.com" +} \ No newline at end of file diff --git a/users/rg.json b/users/rg.json index 0ab0bbf8..423b94df 100644 --- a/users/rg.json +++ b/users/rg.json @@ -1,5 +1,5 @@ { - "copyright": "Ramiro G\u00c3\u00b3mez", - "url": "http://ramiro.org/", - "email": "www@ramiro.org" -} + "copyright": "Ramiro Gómez", + "url": "http://ramiro.org/", + "email": "www@ramiro.org" +} \ No newline at end of file diff --git a/users/rgoyard.json b/users/rgoyard.json index c9b311c6..298a9b61 100644 --- a/users/rgoyard.json +++ b/users/rgoyard.json @@ -1,3 +1,3 @@ { - "copyright": "Remi Goyard" -} + "copyright": "Remi Goyard" +} \ No newline at end of file diff --git a/users/rhardih.json b/users/rhardih.json index 824e35c2..57ff0334 100644 --- a/users/rhardih.json +++ b/users/rhardih.json @@ -1,3 +1,3 @@ { - "copyright": "Ren\u00e9 Hansen" -} + "copyright": "René Hansen" +} \ No newline at end of file diff --git a/users/rhiokim.json b/users/rhiokim.json index a7272a94..7a150f17 100644 --- a/users/rhiokim.json +++ b/users/rhiokim.json @@ -1,3 +1,3 @@ { - "copyright": "Rhio Kim" -} + "copyright": "Rhio Kim" +} \ No newline at end of file diff --git a/users/rhlnair.json b/users/rhlnair.json index f1a28d4e..440cac55 100644 --- a/users/rhlnair.json +++ b/users/rhlnair.json @@ -1,3 +1,3 @@ { - "copyright": "Rahul Nair" -} + "copyright": "Rahul Nair" +} \ No newline at end of file diff --git a/users/rhnvrm.json b/users/rhnvrm.json index 4a12103a..6465a92c 100644 --- a/users/rhnvrm.json +++ b/users/rhnvrm.json @@ -1,6 +1,6 @@ { - "copyright": "Rohan Verma, http://rohanverma.net", - "url": "http://rohanverma.net", - "email": "rohanverma2004@gmail.com", - "gravatar": true -} + "copyright": "Rohan Verma, http://rohanverma.net", + "url": "http://rohanverma.net", + "email": "rohanverma2004@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/rhynl.json b/users/rhynl.json index 38611ed2..ef001188 100644 --- a/users/rhynl.json +++ b/users/rhynl.json @@ -1,7 +1,7 @@ { - "copyright": "Rhaynel Parra Aguiar", - "url": "https://rhynl.io", - "email": "me@rhynl.io", - "theme": "material-green", - "gravatar": true -} + "copyright": "Rhaynel Parra Aguiar", + "url": "https://rhynl.io", + "email": "me@rhynl.io", + "theme": "material-green", + "gravatar": true +} \ No newline at end of file diff --git a/users/ri7nz.json b/users/ri7nz.json index 9d456e6b..c5fec174 100644 --- a/users/ri7nz.json +++ b/users/ri7nz.json @@ -1,8 +1,8 @@ { - "copyright": "ri7nz, https://rin.rocks/", - "url": "https://rin.rocks", - "email": "ri7nz.labs@gmail.com", - "format": "html", - "gravatar": "false", - "theme": "afterdark" -} + "copyright": "ri7nz, https://rin.rocks/", + "url": "https://rin.rocks", + "email": "ri7nz.labs@gmail.com", + "format": "html", + "gravatar": "false", + "theme": "afterdark" +} \ No newline at end of file diff --git a/users/riadloukili.json b/users/riadloukili.json index 2bd53a50..da7b1cb2 100644 --- a/users/riadloukili.json +++ b/users/riadloukili.json @@ -1,7 +1,7 @@ { - "copyright": "Riad Loukili, http://loukili.me", - "url": "http://loukili.me", - "email": "riad.loukili@outlook.com", - "gravatar": true, - "theme": "black-beauty" -} + "copyright": "Riad Loukili, http://loukili.me", + "url": "http://loukili.me", + "email": "riad.loukili@outlook.com", + "gravatar": true, + "theme": "black-beauty" +} \ No newline at end of file diff --git a/users/ribeiroevandro.json b/users/ribeiroevandro.json index 3e607c21..f984ec74 100644 --- a/users/ribeiroevandro.json +++ b/users/ribeiroevandro.json @@ -1,7 +1,7 @@ { - "copyright": "Evandro Ribeiro, http://ribeiroevandro.com.br", - "url": "http://ribeiroevandro.com.br", - "email": "ribeiroevandro@live.com", - "theme": "default", - "gravatar": true -} + "copyright": "Evandro Ribeiro, http://ribeiroevandro.com.br", + "url": "http://ribeiroevandro.com.br", + "email": "ribeiroevandro@live.com", + "theme": "default", + "gravatar": true +} \ No newline at end of file diff --git a/users/ricardo.json b/users/ricardo.json index 3bb047f7..c73fe70b 100644 --- a/users/ricardo.json +++ b/users/ricardo.json @@ -1,6 +1,6 @@ { - "copyright": "Ricardo Tomasi", - "url": "http://ricardo.cc/", - "email": "ricardobeat@gmail.com", - "theme": "flesch" -} + "copyright": "Ricardo Tomasi", + "url": "http://ricardo.cc/", + "email": "ricardobeat@gmail.com", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/ricardogouveia3.json b/users/ricardogouveia3.json index ac81fd8e..c16b456b 100644 --- a/users/ricardogouveia3.json +++ b/users/ricardogouveia3.json @@ -1,7 +1,7 @@ { - "copyright": "Ricardo Gouveia, http://rcrd.me/", - "url": "http://rcrd.me/", - "email": "contato@rcrd.me", - "gravatar": true, - "theme": "dusk" -} + "copyright": "Ricardo Gouveia, http://rcrd.me/", + "url": "http://rcrd.me/", + "email": "contato@rcrd.me", + "gravatar": true, + "theme": "dusk" +} \ No newline at end of file diff --git a/users/richardcooper.json b/users/richardcooper.json index 294d46a6..4de47ed3 100644 --- a/users/richardcooper.json +++ b/users/richardcooper.json @@ -1,7 +1,7 @@ { - "copyright": "Richard Cooper", - "url": "https://www.bennetts.co.uk/about-us", - "email": "richard.cooper@bennetts.co.uk", - "gravatar": true, - "theme": "eula-modern" -} + "copyright": "Richard Cooper", + "url": "https://www.bennetts.co.uk/about-us", + "email": "richard.cooper@bennetts.co.uk", + "gravatar": true, + "theme": "eula-modern" +} \ No newline at end of file diff --git a/users/richie-bendall.json b/users/richie-bendall.json index 66dda92d..45005d0c 100644 --- a/users/richie-bendall.json +++ b/users/richie-bendall.json @@ -1,8 +1,8 @@ { - "copyright": "Richie Bendall, https://www.richie-bendall.ml", - "url": "https://www.richie-bendall.ml", - "email": "richiebendall@gmail.com", - "format": "html", - "gravatar": true, - "theme": "material-indigo" -} + "copyright": "Richie Bendall, https://www.richie-bendall.ml", + "url": "https://www.richie-bendall.ml", + "email": "richiebendall@gmail.com", + "format": "html", + "gravatar": true, + "theme": "material-indigo" +} \ No newline at end of file diff --git a/users/richiebendall.json b/users/richiebendall.json index 66dda92d..45005d0c 100644 --- a/users/richiebendall.json +++ b/users/richiebendall.json @@ -1,8 +1,8 @@ { - "copyright": "Richie Bendall, https://www.richie-bendall.ml", - "url": "https://www.richie-bendall.ml", - "email": "richiebendall@gmail.com", - "format": "html", - "gravatar": true, - "theme": "material-indigo" -} + "copyright": "Richie Bendall, https://www.richie-bendall.ml", + "url": "https://www.richie-bendall.ml", + "email": "richiebendall@gmail.com", + "format": "html", + "gravatar": true, + "theme": "material-indigo" +} \ No newline at end of file diff --git a/users/richienb.json b/users/richienb.json index 66dda92d..45005d0c 100644 --- a/users/richienb.json +++ b/users/richienb.json @@ -1,8 +1,8 @@ { - "copyright": "Richie Bendall, https://www.richie-bendall.ml", - "url": "https://www.richie-bendall.ml", - "email": "richiebendall@gmail.com", - "format": "html", - "gravatar": true, - "theme": "material-indigo" -} + "copyright": "Richie Bendall, https://www.richie-bendall.ml", + "url": "https://www.richie-bendall.ml", + "email": "richiebendall@gmail.com", + "format": "html", + "gravatar": true, + "theme": "material-indigo" +} \ No newline at end of file diff --git a/users/richo.json b/users/richo.json index 626d45e9..28ec7d55 100644 --- a/users/richo.json +++ b/users/richo.json @@ -1,6 +1,6 @@ { - "copyright": "Richo Healey, http://psych0.tk", - "url": "http://psych0.tk", - "theme": "afterdark", - "email": "richo@psych0tik.net" -} + "copyright": "Richo Healey, http://psych0.tk", + "url": "http://psych0.tk", + "theme": "afterdark", + "email": "richo@psych0tik.net" +} \ No newline at end of file diff --git a/users/richsage.json b/users/richsage.json index d49b7d7f..4e32da1a 100644 --- a/users/richsage.json +++ b/users/richsage.json @@ -1,3 +1,3 @@ { - "copyright": "Rich Sage" -} + "copyright": "Rich Sage" +} \ No newline at end of file diff --git a/users/rickary.json b/users/rickary.json index eea5208f..83e20321 100644 --- a/users/rickary.json +++ b/users/rickary.json @@ -1,4 +1,4 @@ { - "copyright": "Rick Chadwick", - "url": "http://madeinbeta.co.uk" -} + "copyright": "Rick Chadwick", + "url": "http://madeinbeta.co.uk" +} \ No newline at end of file diff --git a/users/rictorres.json b/users/rictorres.json index 072f613a..2dc26867 100644 --- a/users/rictorres.json +++ b/users/rictorres.json @@ -1,5 +1,5 @@ { - "copyright": "Ricardo Torres, http://rictorres.com", - "url": "http://rictorres.com", - "format": "html" -} + "copyright": "Ricardo Torres, http://rictorres.com", + "url": "http://rictorres.com", + "format": "html" +} \ No newline at end of file diff --git a/users/rigging.json b/users/rigging.json index c3d6a0ed..a1d8bbce 100644 --- a/users/rigging.json +++ b/users/rigging.json @@ -1,3 +1,3 @@ { - "copyright": "Mike McNeil" -} + "copyright": "Mike McNeil" +} \ No newline at end of file diff --git a/users/riju.json b/users/riju.json index 0dc8bf5e..50c6014e 100644 --- a/users/riju.json +++ b/users/riju.json @@ -1,7 +1,7 @@ { - "copyright": "Riju Ghosh, https://rijughosh.in", - "url": "http://rijughosh.in", - "email": "ghoshriju33@gmail.com", - "gravatar": true, - "theme": "material-light-blue" -} + "copyright": "Riju Ghosh, https://rijughosh.in", + "url": "http://rijughosh.in", + "email": "ghoshriju33@gmail.com", + "gravatar": true, + "theme": "material-light-blue" +} \ No newline at end of file diff --git a/users/rinaldi.json b/users/rinaldi.json index 9cc0bf4d..cd66c47b 100644 --- a/users/rinaldi.json +++ b/users/rinaldi.json @@ -1,4 +1,4 @@ { - "copyright": "Rafael Rinaldi", - "url": "http://rinaldi.io" -} + "copyright": "Rafael Rinaldi", + "url": "http://rinaldi.io" +} \ No newline at end of file diff --git a/users/ringe.json b/users/ringe.json index e73325d5..3ef5fb40 100644 --- a/users/ringe.json +++ b/users/ringe.json @@ -1,6 +1,6 @@ { - "copyright": "Runar Ingebrigtsen", - "url": "http://rin.no", - "email": "runar@rin.no", - "format": "txt" -} + "copyright": "Runar Ingebrigtsen", + "url": "http://rin.no", + "email": "runar@rin.no", + "format": "txt" +} \ No newline at end of file diff --git a/users/rip.json b/users/rip.json index 0eb29594..4986f7f3 100644 --- a/users/rip.json +++ b/users/rip.json @@ -1,4 +1,4 @@ { - "copyright": "Thomas Ingram, http://www.rip-lang.org", - "url": "http://www.rip-lang.org/" -} + "copyright": "Thomas Ingram, http://www.rip-lang.org", + "url": "http://www.rip-lang.org/" +} \ No newline at end of file diff --git a/users/river24.json b/users/river24.json index 9363ea35..94172041 100644 --- a/users/river24.json +++ b/users/river24.json @@ -1,6 +1,6 @@ { - "copyright": "Nao Kawanishi", - "url": "http://nao.river24.net", - "email": "river2470@gmail.com", - "gravatar": true -} + "copyright": "Nao Kawanishi", + "url": "http://nao.river24.net", + "email": "river2470@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/rixius.json b/users/rixius.json index ea0bd867..d8b9747a 100644 --- a/users/rixius.json +++ b/users/rixius.json @@ -1,5 +1,5 @@ { - "copyright": "Stephen \"Rixius\" Middleton", - "url": "http://rixi.us", - "email": "stephen@rixi.us" -} + "copyright": "Stephen \"Rixius\" Middleton", + "url": "http://rixi.us", + "email": "stephen@rixi.us" +} \ No newline at end of file diff --git a/users/rizky.json b/users/rizky.json index 4bf20c99..4c0ebf96 100644 --- a/users/rizky.json +++ b/users/rizky.json @@ -1,4 +1,4 @@ { - "copyright": "Rizky Farhan", - "email": "rizky.farhan@gmail.com" -} + "copyright": "Rizky Farhan", + "email": "rizky.farhan@gmail.com" +} \ No newline at end of file diff --git a/users/rjw57.json b/users/rjw57.json index b411dcaf..925c04eb 100644 --- a/users/rjw57.json +++ b/users/rjw57.json @@ -1,5 +1,5 @@ { - "copyright": "Rich Wareham", - "url": "https://www.richwareham.com", - "email": "rich.licensing@richwareham.com" -} + "copyright": "Rich Wareham", + "url": "https://www.richwareham.com", + "email": "rich.licensing@richwareham.com" +} \ No newline at end of file diff --git a/users/rkh.json b/users/rkh.json index c9bd7119..58143b38 100644 --- a/users/rkh.json +++ b/users/rkh.json @@ -1,3 +1,3 @@ { - "copyright": "Konstantin Haase" -} + "copyright": "Konstantin Haase" +} \ No newline at end of file diff --git a/users/rkjun.json b/users/rkjun.json index 3f42950c..49245186 100644 --- a/users/rkjun.json +++ b/users/rkjun.json @@ -1,4 +1,4 @@ { - "copyright": "Juntai Park", - "format": "txt" -} + "copyright": "Juntai Park", + "format": "txt" +} \ No newline at end of file diff --git a/users/rko.json b/users/rko.json index 8d072e16..c7649df2 100644 --- a/users/rko.json +++ b/users/rko.json @@ -1,4 +1,4 @@ { - "copyright": "Remo Koch", - "url": "http://rko.io" -} + "copyright": "Remo Koch", + "url": "http://rko.io" +} \ No newline at end of file diff --git a/users/rl.json b/users/rl.json index 010e18c2..d1b028fe 100644 --- a/users/rl.json +++ b/users/rl.json @@ -1,7 +1,7 @@ { - "copyright": "Riad Loukili", - "url": "http://loukili.me", - "email": "riad.loukili@outlook.com", - "gravatar": true, - "theme": "black-beauty" -} + "copyright": "Riad Loukili", + "url": "http://loukili.me", + "email": "riad.loukili@outlook.com", + "gravatar": true, + "theme": "black-beauty" +} \ No newline at end of file diff --git a/users/rloopteam.json b/users/rloopteam.json index 52a4293c..6d7e2e1b 100644 --- a/users/rloopteam.json +++ b/users/rloopteam.json @@ -1,5 +1,5 @@ { - "copyright": "rLoop, Incorporated", - "url": "http://rloop.org", - "email": "hi@rloop.org" -} + "copyright": "rLoop, Incorporated", + "url": "http://rloop.org", + "email": "hi@rloop.org" +} \ No newline at end of file diff --git a/users/rm.json b/users/rm.json index 301846b3..bc0fa2ef 100644 --- a/users/rm.json +++ b/users/rm.json @@ -1,3 +1,3 @@ { - "copyright": "Raphael Michel" -} + "copyright": "Raphael Michel" +} \ No newline at end of file diff --git a/users/rmartin.json b/users/rmartin.json index db61ce52..98b76bfb 100644 --- a/users/rmartin.json +++ b/users/rmartin.json @@ -1,5 +1,5 @@ { - "copyright": "Remy Martin, http://rmartin.co", - "url": "http://rmartin.co", - "theme": "afterdark" -} + "copyright": "Remy Martin, http://rmartin.co", + "url": "http://rmartin.co", + "theme": "afterdark" +} \ No newline at end of file diff --git a/users/rmf.json b/users/rmf.json index 3b026281..c0b99705 100644 --- a/users/rmf.json +++ b/users/rmf.json @@ -1,7 +1,7 @@ { - "copyright": "Rob M Frawley 2nd, http://robfrawley.com", - "url": "http://robfrawley.com", - "email": "license@robfrawley.com", - "theme": "material-pink", - "gravatar": true -} + "copyright": "Rob M Frawley 2nd, http://robfrawley.com", + "url": "http://robfrawley.com", + "email": "license@robfrawley.com", + "theme": "material-pink", + "gravatar": true +} \ No newline at end of file diff --git a/users/rmlewisuk.json b/users/rmlewisuk.json index b76c8ba6..0e61d343 100644 --- a/users/rmlewisuk.json +++ b/users/rmlewisuk.json @@ -1,6 +1,6 @@ { - "copyright": "Robb Lewis", - "url": "http://robblewis.me", - "gravatar": true, - "theme": "opensans" -} + "copyright": "Robb Lewis", + "url": "http://robblewis.me", + "gravatar": true, + "theme": "opensans" +} \ No newline at end of file diff --git a/users/rmm5t.json b/users/rmm5t.json index 3dcb4805..6e54351a 100644 --- a/users/rmm5t.json +++ b/users/rmm5t.json @@ -1,7 +1,7 @@ { - "copyright": "Ryan McGeary", - "url": "http://ryan.mcgeary.org", - "email": "ryan@mcgeary.org", - "gravatar": true, - "theme": "hmt-blue" -} + "copyright": "Ryan McGeary", + "url": "http://ryan.mcgeary.org", + "email": "ryan@mcgeary.org", + "gravatar": true, + "theme": "hmt-blue" +} \ No newline at end of file diff --git a/users/rmsubekti.json b/users/rmsubekti.json index d1a81570..869bf6dd 100644 --- a/users/rmsubekti.json +++ b/users/rmsubekti.json @@ -1,5 +1,5 @@ { - "copyright": "Rahmat Subekti", - "email": "rahmatsubekti@live.com", - "format": "txt" -} + "copyright": "Rahmat Subekti", + "email": "rahmatsubekti@live.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/rmunn.json b/users/rmunn.json index c6ba6d05..9f4e1942 100644 --- a/users/rmunn.json +++ b/users/rmunn.json @@ -1,4 +1,4 @@ { - "copyright": "Robin Munn", - "email": "rmunn@pobox.com" -} + "copyright": "Robin Munn", + "email": "rmunn@pobox.com" +} \ No newline at end of file diff --git a/users/rnelson.json b/users/rnelson.json index 0979e399..eaa8c264 100644 --- a/users/rnelson.json +++ b/users/rnelson.json @@ -1,7 +1,7 @@ { - "copyright": "Ross Nelson", - "url": "http://rnelson.me", - "email": "ross.nelson@gmail.com", - "gravatar": true, - "theme": "friendly" -} + "copyright": "Ross Nelson", + "url": "http://rnelson.me", + "email": "ross.nelson@gmail.com", + "gravatar": true, + "theme": "friendly" +} \ No newline at end of file diff --git a/users/rob.json b/users/rob.json index 70a01a36..d13ffab6 100644 --- a/users/rob.json +++ b/users/rob.json @@ -1,6 +1,6 @@ { - "copyright": "Rob Miller", - "url": "http://robm.me.uk", - "email": "r@robm.me.uk", - "format": "txt" -} + "copyright": "Rob Miller", + "url": "http://robm.me.uk", + "email": "r@robm.me.uk", + "format": "txt" +} \ No newline at end of file diff --git a/users/robario.json b/users/robario.json index adb576c9..3f8c2bc8 100644 --- a/users/robario.json +++ b/users/robario.json @@ -1,4 +1,4 @@ { - "copyright": "Hironori Yoshida", - "url": "https://github.com/robario" -} + "copyright": "Hironori Yoshida", + "url": "https://github.com/robario" +} \ No newline at end of file diff --git a/users/robdodson.json b/users/robdodson.json index 63f2a3f0..0cb6e1ce 100644 --- a/users/robdodson.json +++ b/users/robdodson.json @@ -1,6 +1,6 @@ { - "copyright": "Rob Dodson", - "url": "http://robdodson.me", - "email": "lets.email.rob@gmail.com", - "format": "txt" -} + "copyright": "Rob Dodson", + "url": "http://robdodson.me", + "email": "lets.email.rob@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/roberthernandez.json b/users/roberthernandez.json index f7ff34e2..4d949919 100644 --- a/users/roberthernandez.json +++ b/users/roberthernandez.json @@ -1,7 +1,7 @@ { - "copyright": "Robert David Hernandez", - "url": "http://RobertHernandez.io", - "email": "RHernandez513@gmail.com", - "format": "html", - "theme": "solarized" -} + "copyright": "Robert David Hernandez", + "url": "http://RobertHernandez.io", + "email": "RHernandez513@gmail.com", + "format": "html", + "theme": "solarized" +} \ No newline at end of file diff --git a/users/robertlucian.json b/users/robertlucian.json index 6c8de04b..44591adf 100644 --- a/users/robertlucian.json +++ b/users/robertlucian.json @@ -1,7 +1,7 @@ { - "copyright": "Robert Lucian Chiriac", - "url": "https://robertlucian.com", - "email": "robert.lucian.chiriac@gmail.com", - "format": "html", - "gravatar": true -} + "copyright": "Robert Lucian Chiriac", + "url": "https://robertlucian.com", + "email": "robert.lucian.chiriac@gmail.com", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/robin.json b/users/robin.json index 8f840494..2c72fe6c 100644 --- a/users/robin.json +++ b/users/robin.json @@ -1,8 +1,8 @@ { - "copyright": "Robin M\u00c3\u00bcller", - "url": "https://roundrobin.ninja", - "email": "robin.mueller@outlook.de", - "format": "html", - "gravatar": true, - "theme": "material-indigo" -} + "copyright": "Robin Müller", + "url": "https://roundrobin.ninja", + "email": "robin.mueller@outlook.de", + "format": "html", + "gravatar": true, + "theme": "material-indigo" +} \ No newline at end of file diff --git a/users/robotblake.json b/users/robotblake.json index 640e6c85..12b87ada 100644 --- a/users/robotblake.json +++ b/users/robotblake.json @@ -1,6 +1,6 @@ { - "copyright": "Blake Imsland", - "url": "http://retroco.de", - "email": "blake@retroco.de", - "format": "txt" -} + "copyright": "Blake Imsland", + "url": "http://retroco.de", + "email": "blake@retroco.de", + "format": "txt" +} \ No newline at end of file diff --git a/users/robxu9.json b/users/robxu9.json index f3be6215..3c90d735 100644 --- a/users/robxu9.json +++ b/users/robxu9.json @@ -1,6 +1,6 @@ { - "copyright": "Robert Xu", - "url": "http://www.robxu9.com", - "email": "robxu9@gmail.com", - "gravatar": true -} + "copyright": "Robert Xu", + "url": "http://www.robxu9.com", + "email": "robxu9@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/rock.json b/users/rock.json index 0f8ae1ce..5ae8c898 100644 --- a/users/rock.json +++ b/users/rock.json @@ -1,5 +1,5 @@ { - "copyright": "Denis Pushkarev", - "url": "http://zloirock.ru", - "email": "zloirock@zloirock.ru" -} + "copyright": "Denis Pushkarev", + "url": "http://zloirock.ru", + "email": "zloirock@zloirock.ru" +} \ No newline at end of file diff --git a/users/rodchyn.json b/users/rodchyn.json index 12e8b141..cf5d06fc 100644 --- a/users/rodchyn.json +++ b/users/rodchyn.json @@ -1,5 +1,5 @@ { - "copyright": "Yura Rodchyn", - "email": "rodchyn@gmail.com", - "format": "txt" -} + "copyright": "Yura Rodchyn", + "email": "rodchyn@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/rogeriopradoj.json b/users/rogeriopradoj.json index f2080415..3437221d 100644 --- a/users/rogeriopradoj.json +++ b/users/rogeriopradoj.json @@ -1,5 +1,5 @@ { - "copyright": "Rogerio Prado de Jesus, http://rogeriopradoj.com", - "url": "http://rogeriopradoj.com", - "gravatar": true -} + "copyright": "Rogerio Prado de Jesus, http://rogeriopradoj.com", + "url": "http://rogeriopradoj.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/rogeriorc.json b/users/rogeriorc.json index 03747600..d829fa84 100644 --- a/users/rogeriorc.json +++ b/users/rogeriorc.json @@ -1,7 +1,7 @@ { - "copyright": "Rogerio Ribeiro da Cruz", - "url": "https://github.com/rogeriorc", - "email": "rogeriorc@gmail.com", - "theme": "material-indigo", - "gravatar": true -} + "copyright": "Rogerio Ribeiro da Cruz", + "url": "https://github.com/rogeriorc", + "email": "rogeriorc@gmail.com", + "theme": "material-indigo", + "gravatar": true +} \ No newline at end of file diff --git a/users/rohanc.json b/users/rohanc.json index d4bcac07..fdbe50ea 100644 --- a/users/rohanc.json +++ b/users/rohanc.json @@ -1,6 +1,6 @@ { - "copyright": "Rohan Chacko", - "email": "rohanchacko007@gmail.com", - "format": "html", - "theme": "material-cyan" -} + "copyright": "Rohan Chacko", + "email": "rohanchacko007@gmail.com", + "format": "html", + "theme": "material-cyan" +} \ No newline at end of file diff --git a/users/rohithasrk.json b/users/rohithasrk.json index 765c63d9..beede7ae 100644 --- a/users/rohithasrk.json +++ b/users/rohithasrk.json @@ -1,7 +1,7 @@ { - "copyright": "Rohith A.S.R.K.", - "email": "rohith.asrk@gmail.com", - "format": "html", - "gravatar": true, - "theme": "material" -} + "copyright": "Rohith A.S.R.K.", + "email": "rohith.asrk@gmail.com", + "format": "html", + "gravatar": true, + "theme": "material" +} \ No newline at end of file diff --git a/users/rok.json b/users/rok.json index 9c28d3d0..b87115c9 100644 --- a/users/rok.json +++ b/users/rok.json @@ -1,8 +1,8 @@ { - "copyright": "Robert Kummer", - "url": "http://robert-kummer.de", - "email": "github@mail.robert-kummer.de", - "gravatar": true, - "format": "html", - "theme": "default" -} + "copyright": "Robert Kummer", + "url": "http://robert-kummer.de", + "email": "github@mail.robert-kummer.de", + "gravatar": true, + "format": "html", + "theme": "default" +} \ No newline at end of file diff --git a/users/romac.json b/users/romac.json index 918fbeaf..f5b751f5 100644 --- a/users/romac.json +++ b/users/romac.json @@ -1,5 +1,5 @@ { - "copyright": "Romain Ruetschi", - "url": "http://romac.me", - "email": "romain.ruetschi@gmail.com" -} + "copyright": "Romain Ruetschi", + "url": "http://romac.me", + "email": "romain.ruetschi@gmail.com" +} \ No newline at end of file diff --git a/users/romain.json b/users/romain.json index 75306e20..c854d4f1 100644 --- a/users/romain.json +++ b/users/romain.json @@ -1,3 +1,3 @@ { - "copyright": "Romain Pouclet" -} + "copyright": "Romain Pouclet" +} \ No newline at end of file diff --git a/users/roman-boiko.json b/users/roman-boiko.json index 7dd0b7ac..f54fbe1f 100644 --- a/users/roman-boiko.json +++ b/users/roman-boiko.json @@ -1,6 +1,6 @@ { - "copyright": "Roman Boiko", - "url": "https://www.linkedin.com/in/romanboiko", - "email": "boiko.roman@gmail.com", - "gravatar": true -} + "copyright": "Roman Boiko", + "url": "https://www.linkedin.com/in/romanboiko", + "email": "boiko.roman@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/romanboiko.json b/users/romanboiko.json index 216bf22a..cfdc0824 100644 --- a/users/romanboiko.json +++ b/users/romanboiko.json @@ -1,6 +1,6 @@ { - "copyright": "Roman Boiko", - "url": "https://www.linkedin.com/in/romanboiko", - "email": "boiko.roman@gmail.com", - "gravatar": "true" -} + "copyright": "Roman Boiko", + "url": "https://www.linkedin.com/in/romanboiko", + "email": "boiko.roman@gmail.com", + "gravatar": "true" +} \ No newline at end of file diff --git a/users/romkey.json b/users/romkey.json index 1b8dbb33..30b24bae 100644 --- a/users/romkey.json +++ b/users/romkey.json @@ -1,6 +1,6 @@ { - "copyright": "John Romkey", - "url": "https://romkey.com/", - "email": "romkey@romkey.com", - "gravatar": true -} + "copyright": "John Romkey", + "url": "https://romkey.com/", + "email": "romkey@romkey.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/ron975test.json b/users/ron975test.json index df7e8646..d435ec81 100644 --- a/users/ron975test.json +++ b/users/ron975test.json @@ -1,3 +1,3 @@ { - "copyright": "Ronny Chan" -} + "copyright": "Ronny Chan" +} \ No newline at end of file diff --git a/users/ronnchyran.json b/users/ronnchyran.json index a6501132..0b8509f1 100644 --- a/users/ronnchyran.json +++ b/users/ronnchyran.json @@ -1,7 +1,7 @@ { - "copyright": "Ronny Chan", - "url": "http://ronnchyran.com", - "email": "ronny@ronnchyran.com", - "gravatar": true, - "theme": "material-teal" -} + "copyright": "Ronny Chan", + "url": "http://ronnchyran.com", + "email": "ronny@ronnchyran.com", + "gravatar": true, + "theme": "material-teal" +} \ No newline at end of file diff --git a/users/rootulp.json b/users/rootulp.json index fb3af711..35fa5173 100644 --- a/users/rootulp.json +++ b/users/rootulp.json @@ -1,3 +1,3 @@ { - "copyright": "Rootul Patel" -} + "copyright": "Rootul Patel" +} \ No newline at end of file diff --git a/users/rosarior.json b/users/rosarior.json index c5514d5b..195f7313 100644 --- a/users/rosarior.json +++ b/users/rosarior.json @@ -1,6 +1,6 @@ { - "copyright": "Roberto Rosario", - "url": "http://robertorosario.com", - "email": "me@robertorosario.com", - "format": "txt" -} + "copyright": "Roberto Rosario", + "url": "http://robertorosario.com", + "email": "me@robertorosario.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/rosebudandmoon.json b/users/rosebudandmoon.json index 14d9e10c..d0802d1d 100644 --- a/users/rosebudandmoon.json +++ b/users/rosebudandmoon.json @@ -1,3 +1,3 @@ { - "copyright": "Rosebud and Moon" -} + "copyright": "Rosebud and Moon" +} \ No newline at end of file diff --git a/users/ross.json b/users/ross.json index a1378b86..fd9ba774 100644 --- a/users/ross.json +++ b/users/ross.json @@ -1,3 +1,3 @@ { - "copyright": "Ross Masters" -} + "copyright": "Ross Masters" +} \ No newline at end of file diff --git a/users/rossjones.json b/users/rossjones.json index 93799bae..0fe0c2e6 100644 --- a/users/rossjones.json +++ b/users/rossjones.json @@ -1,3 +1,3 @@ { - "copyright": "Ross Jones" -} + "copyright": "Ross Jones" +} \ No newline at end of file diff --git a/users/roy.json b/users/roy.json index f602f6bd..fc781f1d 100644 --- a/users/roy.json +++ b/users/roy.json @@ -1,3 +1,3 @@ { - "copyright": "Roy Riojas" -} + "copyright": "Roy Riojas" +} \ No newline at end of file diff --git a/users/rpavlik.json b/users/rpavlik.json index 6ed7fee2..ba20a657 100644 --- a/users/rpavlik.json +++ b/users/rpavlik.json @@ -1,5 +1,5 @@ { - "copyright": "Ryan Pavlik", - "url": "http://academic.cleardefinition.com", - "email": "ryan.pavlik@gmail.com" -} + "copyright": "Ryan Pavlik", + "url": "http://academic.cleardefinition.com", + "email": "ryan.pavlik@gmail.com" +} \ No newline at end of file diff --git a/users/rpetz.json b/users/rpetz.json index d17c8509..6332e4b3 100644 --- a/users/rpetz.json +++ b/users/rpetz.json @@ -1,6 +1,6 @@ { - "copyright": "Robert Petz", - "url": "http://robertpetz.com", - "email": "rpetz@ignitelabs.net", - "format": "txt" -} + "copyright": "Robert Petz", + "url": "http://robertpetz.com", + "email": "rpetz@ignitelabs.net", + "format": "txt" +} \ No newline at end of file diff --git a/users/rpetz1.json b/users/rpetz1.json index d17c8509..6332e4b3 100644 --- a/users/rpetz1.json +++ b/users/rpetz1.json @@ -1,6 +1,6 @@ { - "copyright": "Robert Petz", - "url": "http://robertpetz.com", - "email": "rpetz@ignitelabs.net", - "format": "txt" -} + "copyright": "Robert Petz", + "url": "http://robertpetz.com", + "email": "rpetz@ignitelabs.net", + "format": "txt" +} \ No newline at end of file diff --git a/users/rpowis.json b/users/rpowis.json index ade1a0bf..9d347c05 100644 --- a/users/rpowis.json +++ b/users/rpowis.json @@ -1,3 +1,3 @@ { - "copyright": "Rory Powis" -} + "copyright": "Rory Powis" +} \ No newline at end of file diff --git a/users/rubensfernandes.json b/users/rubensfernandes.json index c4ef1c58..bf4b6413 100644 --- a/users/rubensfernandes.json +++ b/users/rubensfernandes.json @@ -1,5 +1,5 @@ { - "copyright": "Rubens D. Fernandes", - "url": "http://rubensfernandes.com.br", - "email": "hi@rubensfernandes.com.br" -} + "copyright": "Rubens D. Fernandes", + "url": "http://rubensfernandes.com.br", + "email": "hi@rubensfernandes.com.br" +} \ No newline at end of file diff --git a/users/rud.json b/users/rud.json index aa4ea743..094a0b3d 100644 --- a/users/rud.json +++ b/users/rud.json @@ -1,7 +1,7 @@ { - "copyright": "Del Rudolph, http://www.rudforce.com/", - "email": "del@downinit.com", - "url": "http://www.downinit.com/", - "gravatar": true, - "theme": "default-dark" -} + "copyright": "Del Rudolph, http://www.rudforce.com/", + "email": "del@downinit.com", + "url": "http://www.downinit.com/", + "gravatar": true, + "theme": "default-dark" +} \ No newline at end of file diff --git a/users/ruedap.json b/users/ruedap.json index 3c81d46f..57b0c484 100644 --- a/users/ruedap.json +++ b/users/ruedap.json @@ -1,5 +1,5 @@ { - "copyright": "ruedap, http://ruedap.com", - "url": "http://ruedap.com", - "theme": "flesch" -} + "copyright": "ruedap, http://ruedap.com", + "url": "http://ruedap.com", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/ruhland.json b/users/ruhland.json index dcfb6a9c..4bb596b4 100644 --- a/users/ruhland.json +++ b/users/ruhland.json @@ -1,7 +1,7 @@ { - "copyright": "Joel Ruhland", - "url": "http://joelruhland.net", - "email": "contact@joelruhland.net", - "format": "txt", - "theme": "opensans" -} + "copyright": "Joel Ruhland", + "url": "http://joelruhland.net", + "email": "contact@joelruhland.net", + "format": "txt", + "theme": "opensans" +} \ No newline at end of file diff --git a/users/rumpl.json b/users/rumpl.json index 806b765c..9bbf21d1 100644 --- a/users/rumpl.json +++ b/users/rumpl.json @@ -1,4 +1,4 @@ { - "copyright": "Djordje Lukic, http://rumpl.org", - "url": "http://rumpl.org" -} + "copyright": "Djordje Lukic, http://rumpl.org", + "url": "http://rumpl.org" +} \ No newline at end of file diff --git a/users/runphp.json b/users/runphp.json index bcbbc404..264c3a70 100644 --- a/users/runphp.json +++ b/users/runphp.json @@ -1,7 +1,7 @@ { - "copyright": "Hui He, http://runphp.net", - "url": "http://runphp.net", - "email": "runphp@qq.com", - "theme": "material-blue", - "gravatar": true -} + "copyright": "Hui He, http://runphp.net", + "url": "http://runphp.net", + "email": "runphp@qq.com", + "theme": "material-blue", + "gravatar": true +} \ No newline at end of file diff --git a/users/rur.json b/users/rur.json index 9d1cbe35..f76a0deb 100644 --- a/users/rur.json +++ b/users/rur.json @@ -1,6 +1,6 @@ { - "copyright": "Raul Uranga", - "url": "https://github.com/rauluranga/", - "email": "ruranga@gmail.com", - "format": "txt" -} + "copyright": "Raul Uranga", + "url": "https://github.com/rauluranga/", + "email": "ruranga@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/ruucm.json b/users/ruucm.json index 56e92107..b2446d31 100644 --- a/users/ruucm.json +++ b/users/ruucm.json @@ -1,6 +1,6 @@ { - "copyright": "ruucm, http://ruucm.work", - "url": "http://ruucm.work", - "email": "ruucm@ruucm.work", - "gravatar": true -} + "copyright": "ruucm, http://ruucm.work", + "url": "http://ruucm.work", + "email": "ruucm@ruucm.work", + "gravatar": true +} \ No newline at end of file diff --git a/users/rverrips.json b/users/rverrips.json index d4eba70f..444d88f1 100644 --- a/users/rverrips.json +++ b/users/rverrips.json @@ -1,6 +1,6 @@ { - "copyright": "Roy Verrips, https://verrips.org", - "url": "https://verrips.org", - "email": "roy@verrips.org", - "gravatar": true -} + "copyright": "Roy Verrips, https://verrips.org", + "url": "https://verrips.org", + "email": "roy@verrips.org", + "gravatar": true +} \ No newline at end of file diff --git a/users/rx14.json b/users/rx14.json index f9083ba8..47e2ea04 100644 --- a/users/rx14.json +++ b/users/rx14.json @@ -1,3 +1,3 @@ { - "copyright": "Chris Hobbs" -} + "copyright": "Chris Hobbs" +} \ No newline at end of file diff --git a/users/ryan.json b/users/ryan.json index cb6961cd..147fa2d2 100644 --- a/users/ryan.json +++ b/users/ryan.json @@ -1,3 +1,3 @@ { - "copyright": "Ryan Lester" -} + "copyright": "Ryan Lester" +} \ No newline at end of file diff --git a/users/ryanjacobs.json b/users/ryanjacobs.json index e95a8c42..4a5b79a9 100644 --- a/users/ryanjacobs.json +++ b/users/ryanjacobs.json @@ -1,6 +1,6 @@ { - "copyright": "Ryan Jacobs", - "url": "http://ryanjacobs.io", - "format": "html", - "theme": "default" -} + "copyright": "Ryan Jacobs", + "url": "http://ryanjacobs.io", + "format": "html", + "theme": "default" +} \ No newline at end of file diff --git a/users/ryanleland.json b/users/ryanleland.json index 514a0e62..6e519e2c 100644 --- a/users/ryanleland.json +++ b/users/ryanleland.json @@ -1,3 +1,3 @@ { - "copyright": "Fynt Inc." -} + "copyright": "Fynt Inc." +} \ No newline at end of file diff --git a/users/ryanmjacobs.json b/users/ryanmjacobs.json index ece696c3..f32baf08 100644 --- a/users/ryanmjacobs.json +++ b/users/ryanmjacobs.json @@ -1,6 +1,6 @@ { - "copyright": "Ryan Jacobs", - "url": "http://ryanjacobs.io", - "email": "ryan.mjacobs@gmail.com", - "format": "txt" -} + "copyright": "Ryan Jacobs", + "url": "http://ryanjacobs.io", + "email": "ryan.mjacobs@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/ryanscott.json b/users/ryanscott.json index 1aa8dcbe..1b7ef59a 100644 --- a/users/ryanscott.json +++ b/users/ryanscott.json @@ -1,5 +1,5 @@ { - "copyright": "Ryan Scott", - "url": "https://github.com/Archytaus", - "format": "html" -} + "copyright": "Ryan Scott", + "url": "https://github.com/Archytaus", + "format": "html" +} \ No newline at end of file diff --git a/users/ryanseddon.json b/users/ryanseddon.json index 326c9e94..f117f8b3 100644 --- a/users/ryanseddon.json +++ b/users/ryanseddon.json @@ -1,4 +1,4 @@ { - "copyright": "Ryan Seddon", - "url": "http://thecssninja.com" -} + "copyright": "Ryan Seddon", + "url": "http://thecssninja.com" +} \ No newline at end of file diff --git a/users/ryanwu.json b/users/ryanwu.json index bb16f68c..654b09d6 100644 --- a/users/ryanwu.json +++ b/users/ryanwu.json @@ -1,7 +1,7 @@ { - "copyright": "Ryan Wu", - "url": "http://ryanwu.me", - "email": "hello@ryanwu.me", - "gravatar": true, - "theme": "hilula" -} + "copyright": "Ryan Wu", + "url": "http://ryanwu.me", + "email": "hello@ryanwu.me", + "gravatar": true, + "theme": "hilula" +} \ No newline at end of file diff --git a/users/ryck.json b/users/ryck.json index 505d5ab9..d2132c48 100644 --- a/users/ryck.json +++ b/users/ryck.json @@ -1,3 +1,3 @@ { - "copyright": "Ricardo Gonz\u00e1lez, http://ryck.me" -} + "copyright": "Ricardo González, http://ryck.me" +} \ No newline at end of file diff --git a/users/ryepdx.json b/users/ryepdx.json index 72317114..bd0f98e8 100644 --- a/users/ryepdx.json +++ b/users/ryepdx.json @@ -1,6 +1,6 @@ { - "copyright": "Ryan Casey", - "url": "http://ryepdx.com", - "email": "ryepdx@gmail.com", - "format": "txt" -} + "copyright": "Ryan Casey", + "url": "http://ryepdx.com", + "email": "ryepdx@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/ryf.json b/users/ryf.json index c585bb7b..1932784d 100644 --- a/users/ryf.json +++ b/users/ryf.json @@ -1,3 +1,3 @@ { - "copyright": "Ry Ferguson" -} + "copyright": "Ry Ferguson" +} \ No newline at end of file diff --git a/users/rylee.json b/users/rylee.json index 8caf7a36..a4b5de3f 100644 --- a/users/rylee.json +++ b/users/rylee.json @@ -1,5 +1,5 @@ { - "copyright": "Rylee Harrison", - "email": "ryleeharrison@icloud.com", - "format": "txt" -} + "copyright": "Rylee Harrison", + "email": "ryleeharrison@icloud.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/ryotahirano.json b/users/ryotahirano.json index cb99f880..03eaff03 100644 --- a/users/ryotahirano.json +++ b/users/ryotahirano.json @@ -1,3 +1,3 @@ { - "copyright": "RyotaHirano" -} + "copyright": "RyotaHirano" +} \ No newline at end of file diff --git a/users/s-a.json b/users/s-a.json index d651e75e..1dd85a50 100644 --- a/users/s-a.json +++ b/users/s-a.json @@ -1,6 +1,6 @@ { - "copyright": "Stephan Ahlf", - "url": "https://github.com/s-a", - "email": "stephan.ahlf@gmail.com", - "format": "txt" -} + "copyright": "Stephan Ahlf", + "url": "https://github.com/s-a", + "email": "stephan.ahlf@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/s.json b/users/s.json index 4ca20bc3..50e6f468 100644 --- a/users/s.json +++ b/users/s.json @@ -1,5 +1,5 @@ { - "copyright": "Sam Epstein", - "email": "license@samepstein.com", - "theme": "afterdark" -} + "copyright": "Sam Epstein", + "email": "license@samepstein.com", + "theme": "afterdark" +} \ No newline at end of file diff --git a/users/saas-ninja.json b/users/saas-ninja.json index 5bff6b94..32495f16 100644 --- a/users/saas-ninja.json +++ b/users/saas-ninja.json @@ -1,7 +1,7 @@ { - "copyright": "Brian Giaraffa", - "url": "https://saas.ninja", - "email": "public88878878887@hotmail.com", - "theme": "hipster-gray", - "gravatar": true -} + "copyright": "Brian Giaraffa", + "url": "https://saas.ninja", + "email": "public88878878887@hotmail.com", + "theme": "hipster-gray", + "gravatar": true +} \ No newline at end of file diff --git a/users/sachinjain.json b/users/sachinjain.json index 592a386c..f6daa88e 100644 --- a/users/sachinjain.json +++ b/users/sachinjain.json @@ -1,6 +1,6 @@ { - "copyright": "Sachin Jain", - "email": "sachinjain024@gmail.com", - "format": "html", - "theme": "cherry" -} + "copyright": "Sachin Jain", + "email": "sachinjain024@gmail.com", + "format": "html", + "theme": "cherry" +} \ No newline at end of file diff --git a/users/sadko.json b/users/sadko.json index 1cb400f9..a83e78d0 100644 --- a/users/sadko.json +++ b/users/sadko.json @@ -1,4 +1,4 @@ { - "copyright": "Paul Miller (http://paulmillr.com/)", - "format": "txt" -} + "copyright": "Paul Miller (http://paulmillr.com/)", + "format": "txt" +} \ No newline at end of file diff --git a/users/saeid.json b/users/saeid.json index 6fc5ec34..c3a8f0d6 100644 --- a/users/saeid.json +++ b/users/saeid.json @@ -1,6 +1,6 @@ { - "copyright": "Saeid Zebardast", - "url": "http://zebardast.com", - "email": "saeid.zebardast@gmail.com", - "format": "txt" -} + "copyright": "Saeid Zebardast", + "url": "http://zebardast.com", + "email": "saeid.zebardast@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/sagru.json b/users/sagru.json index 6483cd4c..0102ddc7 100644 --- a/users/sagru.json +++ b/users/sagru.json @@ -1,8 +1,8 @@ { - "copyright": "Simple App Group LLC", - "email": "info@simpleappgroup.com", - "format": "html", - "theme": "opensans", - "url": "https://simpleappgroup.com", - "gravatar": true -} + "copyright": "Simple App Group LLC", + "email": "info@simpleappgroup.com", + "format": "html", + "theme": "opensans", + "url": "https://simpleappgroup.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/sails-spinnaker.json b/users/sails-spinnaker.json index 6aeb1670..2a332e55 100644 --- a/users/sails-spinnaker.json +++ b/users/sails-spinnaker.json @@ -1,6 +1,6 @@ { - "copyright": "Blake Owens", - "url": "http://blakeowens.com", - "email": "blake@blakeowens.com", - "format": "html" -} + "copyright": "Blake Owens", + "url": "http://blakeowens.com", + "email": "blake@blakeowens.com", + "format": "html" +} \ No newline at end of file diff --git a/users/sails.json b/users/sails.json index 5de680b8..bd304a70 100644 --- a/users/sails.json +++ b/users/sails.json @@ -1,3 +1,3 @@ { - "copyright": "Mike McNeil & Balderdash Design Co." -} + "copyright": "Mike McNeil & Balderdash Design Co." +} \ No newline at end of file diff --git a/users/sailxjx.json b/users/sailxjx.json index e289fcce..7c834302 100644 --- a/users/sailxjx.json +++ b/users/sailxjx.json @@ -1,7 +1,7 @@ { - "copyright": "Tristan Xu, http://sailxjx.github.io", - "url": "http://sailxjx.github.io", - "theme": "double-windsor", - "email": "sailxjx@163.com", - "gravatar": true -} + "copyright": "Tristan Xu, http://sailxjx.github.io", + "url": "http://sailxjx.github.io", + "theme": "double-windsor", + "email": "sailxjx@163.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/sallar.json b/users/sallar.json index 7dbdafdb..c310a0ed 100644 --- a/users/sallar.json +++ b/users/sallar.json @@ -1,7 +1,7 @@ { - "copyright": "Sallar Kaboli", - "url": "http://sallar.me", - "email": "sallar.kaboli@gmail.com", - "format": "html", - "gravatar": true -} + "copyright": "Sallar Kaboli", + "url": "http://sallar.me", + "email": "sallar.kaboli@gmail.com", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/sam.json b/users/sam.json index 401b53cf..8f806964 100644 --- a/users/sam.json +++ b/users/sam.json @@ -1,4 +1,4 @@ { - "copyright": "Sam Strasser", - "url": "http://samstrasser.com" -} + "copyright": "Sam Strasser", + "url": "http://samstrasser.com" +} \ No newline at end of file diff --git a/users/sambhav2612.json b/users/sambhav2612.json index 29ba339c..3054efcb 100644 --- a/users/sambhav2612.json +++ b/users/sambhav2612.json @@ -1,6 +1,6 @@ { - "copyright": "Sambhav Jain, https://sambhavjain.netlify.com", - "url": "https://sambhavjain.netlify.com", - "email": "sambhavjain2612@gmail.com", - "theme": "8bits-monochrome-blue-white" -} + "copyright": "Sambhav Jain, https://sambhavjain.netlify.com", + "url": "https://sambhavjain.netlify.com", + "email": "sambhavjain2612@gmail.com", + "theme": "8bits-monochrome-blue-white" +} \ No newline at end of file diff --git a/users/samirtalwar.json b/users/samirtalwar.json index 8fe106f7..a4543dcf 100644 --- a/users/samirtalwar.json +++ b/users/samirtalwar.json @@ -1,6 +1,6 @@ { - "copyright": "Samir Talwar", - "url": "http://samirtalwar.com", - "email": "samir@noodlesandwich.com", - "gravatar": true -} + "copyright": "Samir Talwar", + "url": "http://samirtalwar.com", + "email": "samir@noodlesandwich.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/sammyt.json b/users/sammyt.json index bb5cc706..0d1c44f8 100644 --- a/users/sammyt.json +++ b/users/sammyt.json @@ -1,3 +1,3 @@ { - "copyright": "Samuel Williams" -} + "copyright": "Samuel Williams" +} \ No newline at end of file diff --git a/users/samsoffes.json b/users/samsoffes.json index 8dd5cc7a..bcd73723 100644 --- a/users/samsoffes.json +++ b/users/samsoffes.json @@ -1,3 +1,3 @@ { - "copyright": "Sam Soffes, http://sstoolk.it" -} + "copyright": "Sam Soffes, http://sstoolk.it" +} \ No newline at end of file diff --git a/users/samuel.json b/users/samuel.json index 4ebad019..cdf36b09 100644 --- a/users/samuel.json +++ b/users/samuel.json @@ -1,6 +1,6 @@ { - "copyright": "Samuel Mesquita", - "url": "http://samuelmesquita.com.br", - "email": "samuelmesq@gmail.com", - "theme": "double-windsor" -} + "copyright": "Samuel Mesquita", + "url": "http://samuelmesquita.com.br", + "email": "samuelmesq@gmail.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/samuelstiles.json b/users/samuelstiles.json index 3863a8f7..61bd9749 100644 --- a/users/samuelstiles.json +++ b/users/samuelstiles.json @@ -1,3 +1,3 @@ { - "copyright": "Samuel Stiles" -} + "copyright": "Samuel Stiles" +} \ No newline at end of file diff --git a/users/san.json b/users/san.json index c20fbe25..4d81098b 100644 --- a/users/san.json +++ b/users/san.json @@ -1,8 +1,8 @@ { - "copyright": "Santhosh Kumar Srinivasan, http://sanspace.in", - "url": "http://sanspace.in", - "email": "san@sanspace.in", - "gravatar": true, - "format": "html", - "theme": "eula-modern" -} + "copyright": "Santhosh Kumar Srinivasan, http://sanspace.in", + "url": "http://sanspace.in", + "email": "san@sanspace.in", + "gravatar": true, + "format": "html", + "theme": "eula-modern" +} \ No newline at end of file diff --git a/users/sand.json b/users/sand.json index 2869f9f6..811254dd 100644 --- a/users/sand.json +++ b/users/sand.json @@ -1,6 +1,6 @@ { - "copyright": "Marcin Spoczynski", - "url": "http://marcin.spoczynski.com", - "email": "marcin@spoczynski.com", - "format": "txt" -} + "copyright": "Marcin Spoczynski", + "url": "http://marcin.spoczynski.com", + "email": "marcin@spoczynski.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/sandeep.json b/users/sandeep.json index 9076c45b..cf1e79f7 100644 --- a/users/sandeep.json +++ b/users/sandeep.json @@ -1,6 +1,6 @@ { - "copyright": "Sandeep Bhat", - "email": "sandeep.anand.bhat@gmail.com", - "gravatar": true, - "theme": "magic-mint" -} + "copyright": "Sandeep Bhat", + "email": "sandeep.anand.bhat@gmail.com", + "gravatar": true, + "theme": "magic-mint" +} \ No newline at end of file diff --git a/users/sandropadin.json b/users/sandropadin.json index 33f88ccf..88cae6f6 100644 --- a/users/sandropadin.json +++ b/users/sandropadin.json @@ -1,3 +1,3 @@ { - "copyright": "Sandro Padin" -} + "copyright": "Sandro Padin" +} \ No newline at end of file diff --git a/users/sanfyin.json b/users/sanfyin.json index 408196ce..d0dab9de 100644 --- a/users/sanfyin.json +++ b/users/sanfyin.json @@ -1,7 +1,7 @@ { - "copyright": "Sanfy.In ,http://sanfy.in", - "url": "http://sanfy.in", - "email": "me@sanfy.in", - "format": "html", - "gravatar": true -} + "copyright": "Sanfy.In ,http://sanfy.in", + "url": "http://sanfy.in", + "email": "me@sanfy.in", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/sangliere.json b/users/sangliere.json index bacc425a..1b1debca 100644 --- a/users/sangliere.json +++ b/users/sangliere.json @@ -1,3 +1,3 @@ { - "copyright": "La Sangli\u00e8re (JM Marcastel)" -} + "copyright": "La Sanglière (JM Marcastel)" +} \ No newline at end of file diff --git a/users/santtu.json b/users/santtu.json index e3cad47c..51989bdf 100644 --- a/users/santtu.json +++ b/users/santtu.json @@ -1,6 +1,6 @@ { - "copyright": "Santeri Paavolainen", - "url": "http://santtu.iki.fi", - "email": "santtu@iki.fi", - "format": "txt" -} + "copyright": "Santeri Paavolainen", + "url": "http://santtu.iki.fi", + "email": "santtu@iki.fi", + "format": "txt" +} \ No newline at end of file diff --git a/users/saravanan.json b/users/saravanan.json index 5a629388..d8f52b48 100644 --- a/users/saravanan.json +++ b/users/saravanan.json @@ -1,3 +1,3 @@ { - "copyright": "Saravanan Rajaraman" -} + "copyright": "Saravanan Rajaraman" +} \ No newline at end of file diff --git a/users/sarith.json b/users/sarith.json index b90afd6e..2a1332f4 100644 --- a/users/sarith.json +++ b/users/sarith.json @@ -1,6 +1,6 @@ { - "copyright": "Sarith Demuni", - "url": "http://sarithdemuni.com", - "email": "sarith@nullandvoid.co", - "gravatar": true -} + "copyright": "Sarith Demuni", + "url": "http://sarithdemuni.com", + "email": "sarith@nullandvoid.co", + "gravatar": true +} \ No newline at end of file diff --git a/users/sarkasper.json b/users/sarkasper.json index ef894f0b..7827dbab 100644 --- a/users/sarkasper.json +++ b/users/sarkasper.json @@ -1,3 +1,3 @@ { - "copyright": "Kasper Menten" -} + "copyright": "Kasper Menten" +} \ No newline at end of file diff --git a/users/sascha.json b/users/sascha.json index be2cdd41..85f13c0f 100644 --- a/users/sascha.json +++ b/users/sascha.json @@ -1,3 +1,3 @@ { - "copyright": "Sascha Linn" -} + "copyright": "Sascha Linn" +} \ No newline at end of file diff --git a/users/saschame.json b/users/saschame.json index f7fd3ae8..3ad4e184 100644 --- a/users/saschame.json +++ b/users/saschame.json @@ -1,3 +1,3 @@ { - "copyright": "Sascha Merkofer" -} + "copyright": "Sascha Merkofer" +} \ No newline at end of file diff --git a/users/saschamzh.json b/users/saschamzh.json index f0585b8c..19ce4390 100644 --- a/users/saschamzh.json +++ b/users/saschamzh.json @@ -1,7 +1,7 @@ { - "copyright": "Sascha M\u00c3\u00bcller zum Hagen, http://www.mzh.name", - "url": "http://www.mzh.name", - "email": "sascha@mzh.name", - "theme": "rokkitt", - "gravatar": true -} + "copyright": "Sascha Müller zum Hagen, http://www.mzh.name", + "url": "http://www.mzh.name", + "email": "sascha@mzh.name", + "theme": "rokkitt", + "gravatar": true +} \ No newline at end of file diff --git a/users/sasha.json b/users/sasha.json index 3d75f09a..a568fb80 100644 --- a/users/sasha.json +++ b/users/sasha.json @@ -1,3 +1,3 @@ { - "copyright": "Sasha Gerrand" -} + "copyright": "Sasha Gerrand" +} \ No newline at end of file diff --git a/users/sashko.json b/users/sashko.json index c3d1c605..e21005d3 100644 --- a/users/sashko.json +++ b/users/sashko.json @@ -1,6 +1,6 @@ { - "copyright": "Oleksandr Kravchuk, https://sashko.rv.ua", - "url": "https://sashko.rv.ua", - "email": "dev@sashko.rv.ua", - "gravatar": true -} + "copyright": "Oleksandr Kravchuk, https://sashko.rv.ua", + "url": "https://sashko.rv.ua", + "email": "dev@sashko.rv.ua", + "gravatar": true +} \ No newline at end of file diff --git a/users/sauerlo.json b/users/sauerlo.json index d7bad24a..0eda7f41 100644 --- a/users/sauerlo.json +++ b/users/sauerlo.json @@ -1,8 +1,8 @@ { - "copyright": "Lorenz Lo Sauer, https://www.lsauer.com", - "url": "http://www.lsauer.com", - "format": "html", - "email": "lorenz.lo.sauer@gmail.com", - "gravatar": true, - "theme": "eula-modern" -} + "copyright": "Lorenz Lo Sauer, https://www.lsauer.com", + "url": "http://www.lsauer.com", + "format": "html", + "email": "lorenz.lo.sauer@gmail.com", + "gravatar": true, + "theme": "eula-modern" +} \ No newline at end of file diff --git a/users/saulhardman.json b/users/saulhardman.json index a5d4cbe2..27302f1e 100644 --- a/users/saulhardman.json +++ b/users/saulhardman.json @@ -1,6 +1,6 @@ { - "copyright": "Saul Hardman, http://iamsaul.co.uk", - "url": "http://iamsaul.co.uk", - "email": "hello@iamsaul.co.uk", - "gravatar": true -} + "copyright": "Saul Hardman, http://iamsaul.co.uk", + "url": "http://iamsaul.co.uk", + "email": "hello@iamsaul.co.uk", + "gravatar": true +} \ No newline at end of file diff --git a/users/sauravtom.json b/users/sauravtom.json index 1ccba2e6..f0d014e3 100644 --- a/users/sauravtom.json +++ b/users/sauravtom.json @@ -1,6 +1,6 @@ { - "copyright": "Saurav Tomar", - "url": "http://sauravtom.com", - "email": "stomatrix@gmail.com", - "format": "html" -} + "copyright": "Saurav Tomar", + "url": "http://sauravtom.com", + "email": "stomatrix@gmail.com", + "format": "html" +} \ No newline at end of file diff --git a/users/sbuzonas.json b/users/sbuzonas.json index eac24a52..e9b68943 100644 --- a/users/sbuzonas.json +++ b/users/sbuzonas.json @@ -1,7 +1,7 @@ { - "copyright": "Steve Buzonas", - "url": "http://stevebuzonas.com", - "email": "steve@fancyguy.com", - "gravatar": true, - "theme": "opensans" -} + "copyright": "Steve Buzonas", + "url": "http://stevebuzonas.com", + "email": "steve@fancyguy.com", + "gravatar": true, + "theme": "opensans" +} \ No newline at end of file diff --git a/users/scarf.json b/users/scarf.json index 02b4617c..bab08e01 100644 --- a/users/scarf.json +++ b/users/scarf.json @@ -1,6 +1,6 @@ { - "copyright": "Martin Brown", - "url": "http://www.f-list.net/", - "email": "nobody@f-list.net", - "format": "html" -} + "copyright": "Martin Brown", + "url": "http://www.f-list.net/", + "email": "nobody@f-list.net", + "format": "html" +} \ No newline at end of file diff --git a/users/schiff.json b/users/schiff.json index 3c679f83..45664922 100644 --- a/users/schiff.json +++ b/users/schiff.json @@ -1,6 +1,6 @@ { - "copyright": "Hayden Schiff, http://schiff.io", - "url": "http://schiff.io", - "email": "haydenschiff@gmail.com", - "theme": "friendly" -} + "copyright": "Hayden Schiff, http://schiff.io", + "url": "http://schiff.io", + "email": "haydenschiff@gmail.com", + "theme": "friendly" +} \ No newline at end of file diff --git a/users/schjetne.json b/users/schjetne.json index c9bafa88..f64adf8e 100644 --- a/users/schjetne.json +++ b/users/schjetne.json @@ -1,3 +1,3 @@ { - "copyright": "Jan Schjetne" -} + "copyright": "Jan Schjetne" +} \ No newline at end of file diff --git a/users/schlaus.json b/users/schlaus.json index e7ad0303..d8c62a35 100644 --- a/users/schlaus.json +++ b/users/schlaus.json @@ -1,7 +1,7 @@ { - "copyright": "Klaus Karkia, http://schlaus.karkia.me", - "url": "http://schlaus.karkia.me", - "email": "klaus@karkia.me", - "gravatar": true, - "theme": "friendly" -} + "copyright": "Klaus Karkia, http://schlaus.karkia.me", + "url": "http://schlaus.karkia.me", + "email": "klaus@karkia.me", + "gravatar": true, + "theme": "friendly" +} \ No newline at end of file diff --git a/users/schoolapply.json b/users/schoolapply.json index ed90f21c..a489230b 100644 --- a/users/schoolapply.json +++ b/users/schoolapply.json @@ -1,6 +1,6 @@ { - "copyright": "SchoolApply, https://www.schoolapply.com", - "email": "opensource@schoolapply.com", - "format": "html", - "theme": "friendly" -} + "copyright": "SchoolApply, https://www.schoolapply.com", + "email": "opensource@schoolapply.com", + "format": "html", + "theme": "friendly" +} \ No newline at end of file diff --git a/users/scio.json b/users/scio.json index f9da85f1..eaaa61f4 100644 --- a/users/scio.json +++ b/users/scio.json @@ -1,7 +1,7 @@ { - "copyright": "Sayantan Chaudhuri", - "url": "https://google.com/+SayantanChaudhuri/about", - "email": "sayantan.chaudhuri@gmail.com", - "theme": "open-sans", - "gravatar": true -} + "copyright": "Sayantan Chaudhuri", + "url": "https://google.com/+SayantanChaudhuri/about", + "email": "sayantan.chaudhuri@gmail.com", + "theme": "open-sans", + "gravatar": true +} \ No newline at end of file diff --git a/users/scottrobertson.json b/users/scottrobertson.json index 0c66bbb7..aa51d52b 100644 --- a/users/scottrobertson.json +++ b/users/scottrobertson.json @@ -1,6 +1,6 @@ { - "copyright": "Scott Robertson, https://scottrobertson.me", - "url": "https://scottrobertson.me", - "email": "scottymeuk@gmail.com", - "gravatar": true -} + "copyright": "Scott Robertson, https://scottrobertson.me", + "url": "https://scottrobertson.me", + "email": "scottymeuk@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/scottsauyet.json b/users/scottsauyet.json index a290c4a7..ab2526d9 100644 --- a/users/scottsauyet.json +++ b/users/scottsauyet.json @@ -1,7 +1,7 @@ { - "copyright": "Scott Sauyet, https://github.com/CrossEye", - "url": "https://github.com/CrossEye", - "email": "scott@sauyet.com", - "gravatar": true, - "theme": "afterdark" -} + "copyright": "Scott Sauyet, https://github.com/CrossEye", + "url": "https://github.com/CrossEye", + "email": "scott@sauyet.com", + "gravatar": true, + "theme": "afterdark" +} \ No newline at end of file diff --git a/users/scoundrels.json b/users/scoundrels.json index 4a92fcc3..1fdb9e02 100644 --- a/users/scoundrels.json +++ b/users/scoundrels.json @@ -1,7 +1,7 @@ { - "copyright": "The League of Magnificent Scoundrels", - "url": "http://thescoundrels.net.net/", - "email": "support@thescoundrels.net", - "gravatar": true, - "theme": "afterdark" -} + "copyright": "The League of Magnificent Scoundrels", + "url": "http://thescoundrels.net.net/", + "email": "support@thescoundrels.net", + "gravatar": true, + "theme": "afterdark" +} \ No newline at end of file diff --git a/users/scr.json b/users/scr.json index f4476507..6f8fedb7 100644 --- a/users/scr.json +++ b/users/scr.json @@ -1,6 +1,6 @@ { - "copyright": "Scribe Inc.", - "url": "https://scribenet.com", - "email": "systems@scribenet.com", - "format": "txt" -} + "copyright": "Scribe Inc.", + "url": "https://scribenet.com", + "email": "systems@scribenet.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/scribe.json b/users/scribe.json index 181ef156..239580aa 100644 --- a/users/scribe.json +++ b/users/scribe.json @@ -1,7 +1,7 @@ { - "copyright": "Scribe Inc.", - "url": "http://scribenet.com/", - "email": "open@scribe.tools", - "format": "html", - "theme": "default" -} + "copyright": "Scribe Inc.", + "url": "http://scribenet.com/", + "email": "open@scribe.tools", + "format": "html", + "theme": "default" +} \ No newline at end of file diff --git a/users/scritt.json b/users/scritt.json index 352dbc9d..04c1593d 100644 --- a/users/scritt.json +++ b/users/scritt.json @@ -1,7 +1,7 @@ { - "copyright": "Scritt.it", - "url": "http://scritt.it/", - "format": "html", - "gravatar": false, - "theme": "plaintext" -} + "copyright": "Scritt.it", + "url": "http://scritt.it/", + "format": "html", + "gravatar": false, + "theme": "plaintext" +} \ No newline at end of file diff --git a/users/scrittit.json b/users/scrittit.json index 352dbc9d..04c1593d 100644 --- a/users/scrittit.json +++ b/users/scrittit.json @@ -1,7 +1,7 @@ { - "copyright": "Scritt.it", - "url": "http://scritt.it/", - "format": "html", - "gravatar": false, - "theme": "plaintext" -} + "copyright": "Scritt.it", + "url": "http://scritt.it/", + "format": "html", + "gravatar": false, + "theme": "plaintext" +} \ No newline at end of file diff --git a/users/sdailey.json b/users/sdailey.json index a6d3069a..dfe59658 100644 --- a/users/sdailey.json +++ b/users/sdailey.json @@ -1,4 +1,4 @@ { - "copyright": "Sam Dailey", - "url": "http://samdailey.com" -} + "copyright": "Sam Dailey", + "url": "http://samdailey.com" +} \ No newline at end of file diff --git a/users/sdqali.json b/users/sdqali.json index 08122ed0..050108d9 100644 --- a/users/sdqali.json +++ b/users/sdqali.json @@ -1,3 +1,3 @@ { - "copyright": "Sadique Ali" -} + "copyright": "Sadique Ali" +} \ No newline at end of file diff --git a/users/sean-vieira.json b/users/sean-vieira.json index 95e01b80..deae753d 100644 --- a/users/sean-vieira.json +++ b/users/sean-vieira.json @@ -1,4 +1,4 @@ { - "copyright": "Sean Vieira, http://dedeodesigns.com", - "url": "http://dedeodesigns.com" -} + "copyright": "Sean Vieira, http://dedeodesigns.com", + "url": "http://dedeodesigns.com" +} \ No newline at end of file diff --git a/users/seanecoffey.json b/users/seanecoffey.json index 9661ebd0..75870397 100644 --- a/users/seanecoffey.json +++ b/users/seanecoffey.json @@ -1,5 +1,5 @@ { - "copyright": "Sean Coffey, http://seanecoffey.com/", - "url": "http://seanecoffey.com/", - "email": "seanedwardcoffey@gmail.com" -} + "copyright": "Sean Coffey, http://seanecoffey.com/", + "url": "http://seanecoffey.com/", + "email": "seanedwardcoffey@gmail.com" +} \ No newline at end of file diff --git a/users/seanirby.json b/users/seanirby.json index 416b6a26..d53ff7a9 100644 --- a/users/seanirby.json +++ b/users/seanirby.json @@ -1,3 +1,3 @@ { - "copyright": "Sean Irby" -} + "copyright": "Sean Irby" +} \ No newline at end of file diff --git a/users/seb.json b/users/seb.json index 4ea3b383..4c2ff59e 100644 --- a/users/seb.json +++ b/users/seb.json @@ -1,3 +1,3 @@ { - "copyright": "Seb Richards" -} + "copyright": "Seb Richards" +} \ No newline at end of file diff --git a/users/sebacruz.json b/users/sebacruz.json index 7dc07952..f634b597 100644 --- a/users/sebacruz.json +++ b/users/sebacruz.json @@ -1,5 +1,5 @@ { - "copyright": "Sebastian Cruz", - "url": "http://sebacruz.com", - "email": "sebacruzcode@gmail.com" -} + "copyright": "Sebastian Cruz", + "url": "http://sebacruz.com", + "email": "sebacruzcode@gmail.com" +} \ No newline at end of file diff --git a/users/sebelga.json b/users/sebelga.json index 7106e7ee..a58505f8 100644 --- a/users/sebelga.json +++ b/users/sebelga.json @@ -1,3 +1,3 @@ { - "copyright": "S\u00e9bastien Loix" -} + "copyright": "Sébastien Loix" +} \ No newline at end of file diff --git a/users/secretery.json b/users/secretery.json index eadc2d9b..33ec710b 100644 --- a/users/secretery.json +++ b/users/secretery.json @@ -1,6 +1,6 @@ { - "copyright": "Wesrc UG", - "url": "http://www.wesrc.com", - "email": "code@wesrc.com", - "format": "txt" -} + "copyright": "Wesrc UG", + "url": "http://www.wesrc.com", + "email": "code@wesrc.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/seikichi.json b/users/seikichi.json index 0a30e67d..862183c7 100644 --- a/users/seikichi.json +++ b/users/seikichi.json @@ -1,4 +1,4 @@ { - "copyright": "Seiichi KONDO", - "url": "https://github.com/seikichi" -} + "copyright": "Seiichi KONDO", + "url": "https://github.com/seikichi" +} \ No newline at end of file diff --git a/users/seiran.json b/users/seiran.json index 3e984187..1257c2bb 100644 --- a/users/seiran.json +++ b/users/seiran.json @@ -1,4 +1,4 @@ { - "copyright": "Seiran Hana", - "email": "pochy2008@qq.com" -} + "copyright": "Seiran Hana", + "email": "pochy2008@qq.com" +} \ No newline at end of file diff --git a/users/selwin.json b/users/selwin.json index b957d6f2..07024c15 100644 --- a/users/selwin.json +++ b/users/selwin.json @@ -1,6 +1,6 @@ { - "copyright": "Selwin Ong", - "url": "http://ong.co.id", - "email": "selwin.ong@gmail.com", - "theme": "double-windsor" -} + "copyright": "Selwin Ong", + "url": "http://ong.co.id", + "email": "selwin.ong@gmail.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/sendcloud.json b/users/sendcloud.json index 9c4ae13c..04235ccf 100644 --- a/users/sendcloud.json +++ b/users/sendcloud.json @@ -1,3 +1,3 @@ { - "copyright": "sendcloud" -} + "copyright": "sendcloud" +} \ No newline at end of file diff --git a/users/senura.json b/users/senura.json index 04d565d9..56d5fba9 100644 --- a/users/senura.json +++ b/users/senura.json @@ -1,3 +1,3 @@ { - "copyright": "Senura Seneviratne" -} + "copyright": "Senura Seneviratne" +} \ No newline at end of file diff --git a/users/senuraa.json b/users/senuraa.json index 3b905dc8..aaab42ce 100644 --- a/users/senuraa.json +++ b/users/senuraa.json @@ -1,5 +1,5 @@ { - "copyright": "Senura Seneviratne", - "url": "http://senuraa.com", - "email": "senuraa@msn.com" -} + "copyright": "Senura Seneviratne", + "url": "http://senuraa.com", + "email": "senuraa@msn.com" +} \ No newline at end of file diff --git a/users/serdar.json b/users/serdar.json index 6ef27e0e..7213417e 100644 --- a/users/serdar.json +++ b/users/serdar.json @@ -1,3 +1,3 @@ { - "copyright": "Serdar \u00d6zt\u00fcrk" -} + "copyright": "Serdar Öztürk" +} \ No newline at end of file diff --git a/users/sergeibelov.json b/users/sergeibelov.json index 754e3cb3..2625d006 100644 --- a/users/sergeibelov.json +++ b/users/sergeibelov.json @@ -1,3 +1,3 @@ { - "copyright": "Sergei Belov" -} + "copyright": "Sergei Belov" +} \ No newline at end of file diff --git a/users/sergey.json b/users/sergey.json index 3fdda8d5..63f0a85f 100644 --- a/users/sergey.json +++ b/users/sergey.json @@ -1,6 +1,6 @@ { - "copyright": "Sergey Lukin", - "url": "http://sergeylukin.com", - "email": "contact@sergeylukin.com", - "theme": "double-windsor" -} + "copyright": "Sergey Lukin", + "url": "http://sergeylukin.com", + "email": "contact@sergeylukin.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/serverside-boilerplate.json b/users/serverside-boilerplate.json index b1065524..92736ef5 100644 --- a/users/serverside-boilerplate.json +++ b/users/serverside-boilerplate.json @@ -1,6 +1,6 @@ { - "copyright": "Server-side Boilerplate", - "theme": "default", - "email": "support@icodeclarity.com", - "format": "html" -} + "copyright": "Server-side Boilerplate", + "theme": "default", + "email": "support@icodeclarity.com", + "format": "html" +} \ No newline at end of file diff --git a/users/serversidetools.json b/users/serversidetools.json index 9a4c449a..96e2dda3 100644 --- a/users/serversidetools.json +++ b/users/serversidetools.json @@ -1,6 +1,6 @@ { - "copyright": "$1", - "theme": "$2", - "email": "$3", - "format": "$4" -} + "copyright": "$1", + "theme": "$2", + "email": "$3", + "format": "$4" +} \ No newline at end of file diff --git a/users/sesser.json b/users/sesser.json index 112f08ad..6ea02dfa 100644 --- a/users/sesser.json +++ b/users/sesser.json @@ -1,6 +1,6 @@ { - "copyright": "Randy Sesser", - "url": "http://www.randys.org", - "email": "sesser@gmail.com", - "format": "txt" -} + "copyright": "Randy Sesser", + "url": "http://www.randys.org", + "email": "sesser@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/sevagf.json b/users/sevagf.json index 318d6272..6ef65a1f 100644 --- a/users/sevagf.json +++ b/users/sevagf.json @@ -1,3 +1,3 @@ { - "copyright": "Sevag Frankian" -} + "copyright": "Sevag Frankian" +} \ No newline at end of file diff --git a/users/sevos.json b/users/sevos.json index 164d374d..0ab28991 100644 --- a/users/sevos.json +++ b/users/sevos.json @@ -1,3 +1,3 @@ { - "copyright": "Artur Roszczyk" -} + "copyright": "Artur Roszczyk" +} \ No newline at end of file diff --git a/users/sexyfishhorse.json b/users/sexyfishhorse.json index 9e4d3017..2379aa03 100644 --- a/users/sexyfishhorse.json +++ b/users/sexyfishhorse.json @@ -1,6 +1,6 @@ { - "copyright": "SexyFishHorse, http://sexy.fish.horse", - "url": "http://sexy.fish.horse", - "format": "html", - "theme": "material-red" -} + "copyright": "SexyFishHorse, http://sexy.fish.horse", + "url": "http://sexy.fish.horse", + "format": "html", + "theme": "material-red" +} \ No newline at end of file diff --git a/users/seyedi.json b/users/seyedi.json index e9b1f1eb..aa3f6e27 100644 --- a/users/seyedi.json +++ b/users/seyedi.json @@ -1,5 +1,5 @@ { - "copyright": "Seyed Mojtaba Seyedi, http://seyedi.github.com", - "url": "http://seyedi.github.com", - "theme": "default" -} + "copyright": "Seyed Mojtaba Seyedi, http://seyedi.github.com", + "url": "http://seyedi.github.com", + "theme": "default" +} \ No newline at end of file diff --git a/users/sg.json b/users/sg.json index 3d75f09a..a568fb80 100644 --- a/users/sg.json +++ b/users/sg.json @@ -1,3 +1,3 @@ { - "copyright": "Sasha Gerrand" -} + "copyright": "Sasha Gerrand" +} \ No newline at end of file diff --git a/users/sgehlich.json b/users/sgehlich.json index 1ab8b670..70448b2b 100644 --- a/users/sgehlich.json +++ b/users/sgehlich.json @@ -1,6 +1,6 @@ { - "copyright": "Sascha Gehlich", - "url": "http://filshmedia.net", - "email": "sascha@gehlich.us", - "format": "html" -} + "copyright": "Sascha Gehlich", + "url": "http://filshmedia.net", + "email": "sascha@gehlich.us", + "format": "html" +} \ No newline at end of file diff --git a/users/sgerrand.json b/users/sgerrand.json index 3d75f09a..a568fb80 100644 --- a/users/sgerrand.json +++ b/users/sgerrand.json @@ -1,3 +1,3 @@ { - "copyright": "Sasha Gerrand" -} + "copyright": "Sasha Gerrand" +} \ No newline at end of file diff --git a/users/sguidetti.json b/users/sguidetti.json index 8811902b..cee9e970 100644 --- a/users/sguidetti.json +++ b/users/sguidetti.json @@ -1,6 +1,6 @@ { - "copyright": "Steve Guidetti", - "url": "http://www.ultramegasoft.com", - "email": "sguidetti@ultramegasoft.com", - "gravatar": true -} + "copyright": "Steve Guidetti", + "url": "http://www.ultramegasoft.com", + "email": "sguidetti@ultramegasoft.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/sha2nk.json b/users/sha2nk.json index 086f0148..b2efba7b 100644 --- a/users/sha2nk.json +++ b/users/sha2nk.json @@ -1,6 +1,6 @@ { - "copyright": "Shashank Duhan", - "url": "http://loudcurtain.com", - "email": "sha2nk@hailhumanity.com", - "format": "html" -} + "copyright": "Shashank Duhan", + "url": "http://loudcurtain.com", + "email": "sha2nk@hailhumanity.com", + "format": "html" +} \ No newline at end of file diff --git a/users/shad0wcore.json b/users/shad0wcore.json index 636cddd1..257aded9 100644 --- a/users/shad0wcore.json +++ b/users/shad0wcore.json @@ -1,8 +1,8 @@ { - "copyright": "Shad0wCore, https://twitter.com/Shad0wCore", - "url": "https://twitter.com/Shad0wCore", - "format": "txt", - "email": "shad0wcoretv@gmail.com", - "gravatar": true, - "theme": "material-cyan" -} + "copyright": "Shad0wCore, https://twitter.com/Shad0wCore", + "url": "https://twitter.com/Shad0wCore", + "format": "txt", + "email": "shad0wcoretv@gmail.com", + "gravatar": true, + "theme": "material-cyan" +} \ No newline at end of file diff --git a/users/shagen.json b/users/shagen.json index 693a6058..452f94a9 100644 --- a/users/shagen.json +++ b/users/shagen.json @@ -1,8 +1,8 @@ { - "copyright": "Stefan Hagen (dilettant)", - "url": "https://stefan-hagen.website", - "email": "stefan@hagen.link", - "format": "html", - "theme": "material-gray", - "gravatar": true -} + "copyright": "Stefan Hagen (dilettant)", + "url": "https://stefan-hagen.website", + "email": "stefan@hagen.link", + "format": "html", + "theme": "material-gray", + "gravatar": true +} \ No newline at end of file diff --git a/users/shagun.json b/users/shagun.json index ca3d3f33..15aa3223 100644 --- a/users/shagun.json +++ b/users/shagun.json @@ -1,7 +1,7 @@ { - "copyright": "Shagun Sodhani", - "url": "https://shagunsodhani.in", - "email": "sshagunsodhani@gmail.com", - "format": "html", - "gravatar": true -} + "copyright": "Shagun Sodhani", + "url": "https://shagunsodhani.in", + "email": "sshagunsodhani@gmail.com", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/shaieilat.json b/users/shaieilat.json index 9ed9d689..d322a7cd 100644 --- a/users/shaieilat.json +++ b/users/shaieilat.json @@ -1,3 +1,3 @@ { - "copyright": "Shai Eilat" -} + "copyright": "Shai Eilat" +} \ No newline at end of file diff --git a/users/shaun.json b/users/shaun.json index 9e314b97..a9cd5f2a 100644 --- a/users/shaun.json +++ b/users/shaun.json @@ -1,4 +1,4 @@ { - "copyright": "Shaun Hare, http://shaunhare.co.uk", - "url": "http://shaunhare.co.uk" -} + "copyright": "Shaun Hare, http://shaunhare.co.uk", + "url": "http://shaunhare.co.uk" +} \ No newline at end of file diff --git a/users/shawnsi.json b/users/shawnsi.json index 2cd4b9b6..08bf5863 100644 --- a/users/shawnsi.json +++ b/users/shawnsi.json @@ -1,6 +1,6 @@ { - "copyright": "Shawn Siefkas", - "url": "https://github.com/shawnsi", - "email": "shawn@siefk.as", - "format": "txt" -} + "copyright": "Shawn Siefkas", + "url": "https://github.com/shawnsi", + "email": "shawn@siefk.as", + "format": "txt" +} \ No newline at end of file diff --git a/users/sheedy.json b/users/sheedy.json index 04666e8d..ba618fb8 100644 --- a/users/sheedy.json +++ b/users/sheedy.json @@ -1,4 +1,4 @@ { - "copyright": "Michael Sheedy, http://michaelsheedy.com", - "url": "http://michaelsheedy.com" -} + "copyright": "Michael Sheedy, http://michaelsheedy.com", + "url": "http://michaelsheedy.com" +} \ No newline at end of file diff --git a/users/sheknows.json b/users/sheknows.json index 4b85d02b..a007020d 100644 --- a/users/sheknows.json +++ b/users/sheknows.json @@ -1,4 +1,4 @@ { - "copyright": "SheKnows, LLC", - "url": "http://www.sheknows.com" -} + "copyright": "SheKnows, LLC", + "url": "http://www.sheknows.com" +} \ No newline at end of file diff --git a/users/sheldonrupp.json b/users/sheldonrupp.json index 61671af5..b04d8155 100644 --- a/users/sheldonrupp.json +++ b/users/sheldonrupp.json @@ -1,6 +1,6 @@ { - "copyright": "Sheldon Rupp", - "url": "https://shel.io", - "email": "me@shel.io", - "format": "txt" -} + "copyright": "Sheldon Rupp", + "url": "https://shel.io", + "email": "me@shel.io", + "format": "txt" +} \ No newline at end of file diff --git a/users/shepjeng.json b/users/shepjeng.json index c6e6b458..c51dc3c3 100644 --- a/users/shepjeng.json +++ b/users/shepjeng.json @@ -1,6 +1,6 @@ { - "copyright": "Chung-Chiang Cheng", - "url": "http://shepjeng.net", - "email": "shepjeng@gmail.com", - "format": "text" -} + "copyright": "Chung-Chiang Cheng", + "url": "http://shepjeng.net", + "email": "shepjeng@gmail.com", + "format": "text" +} \ No newline at end of file diff --git a/users/shibu.json b/users/shibu.json index 9d9713d8..ccc6d075 100644 --- a/users/shibu.json +++ b/users/shibu.json @@ -1,4 +1,4 @@ { - "copyright": "Yoshiki Shibukawa", - "url": "http://www.shibu.jp" -} + "copyright": "Yoshiki Shibukawa", + "url": "http://www.shibu.jp" +} \ No newline at end of file diff --git a/users/shidhincr.json b/users/shidhincr.json index 68a670fd..1b0e291c 100644 --- a/users/shidhincr.json +++ b/users/shidhincr.json @@ -1,3 +1,3 @@ { - "copyright": "Shidhin C R" -} + "copyright": "Shidhin C R" +} \ No newline at end of file diff --git a/users/shiftkey.json b/users/shiftkey.json index 67ef4302..14e63916 100644 --- a/users/shiftkey.json +++ b/users/shiftkey.json @@ -1,6 +1,6 @@ { - "copyright": "Brendan Forster", - "url": "http://brendanforster.com", - "email": "me@brendanforster.com", - "format": "txt" -} + "copyright": "Brendan Forster", + "url": "http://brendanforster.com", + "email": "me@brendanforster.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/shimizukawa.json b/users/shimizukawa.json index 31961f27..3dfe00ca 100644 --- a/users/shimizukawa.json +++ b/users/shimizukawa.json @@ -1,3 +1,3 @@ { - "copyright": "Takayuki Shimizukawa" -} + "copyright": "Takayuki Shimizukawa" +} \ No newline at end of file diff --git a/users/shionryuu.json b/users/shionryuu.json index 4f69f8bf..d546c936 100644 --- a/users/shionryuu.json +++ b/users/shionryuu.json @@ -1,8 +1,8 @@ { - "copyright": "Shion Ryuu", - "url": "https://github.com/ShionRyuu", - "email": "shionryuu@outlook.com", - "format": "html", - "gravatar": true, - "theme": "double-windsor" -} + "copyright": "Shion Ryuu", + "url": "https://github.com/ShionRyuu", + "email": "shionryuu@outlook.com", + "format": "html", + "gravatar": true, + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/shirkey.json b/users/shirkey.json index 4364a158..f406e2e4 100644 --- a/users/shirkey.json +++ b/users/shirkey.json @@ -1,6 +1,6 @@ { - "copyright": "Shirkey ", - "url": "http://dev.shirkey.me", - "email": "dev@shirkey.me", - "gravatar": true -} + "copyright": "Shirkey ", + "url": "http://dev.shirkey.me", + "email": "dev@shirkey.me", + "gravatar": true +} \ No newline at end of file diff --git a/users/shivapoudel.json b/users/shivapoudel.json index e328ceb1..3889f7d0 100644 --- a/users/shivapoudel.json +++ b/users/shivapoudel.json @@ -1,5 +1,5 @@ { - "copyright": "Shiva Poudel", - "url": "https://github.com/shivapoudel", - "theme": "double-windsor" -} + "copyright": "Shiva Poudel", + "url": "https://github.com/shivapoudel", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/shldrs.json b/users/shldrs.json index aedbd45c..a1a877a8 100644 --- a/users/shldrs.json +++ b/users/shldrs.json @@ -1,6 +1,6 @@ { - "copyright": "James Tindall", - "url": "http://shldrs.com", - "email": "james@atomless.com", - "format": "txt" -} + "copyright": "James Tindall", + "url": "http://shldrs.com", + "email": "james@atomless.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/shps.json b/users/shps.json index 26f545db..ada5363c 100644 --- a/users/shps.json +++ b/users/shps.json @@ -1,5 +1,5 @@ { - "copyright": "Sergii Shpak", - "email": "sergii.shpak.web@gmail.com", - "theme": "afterdark" -} + "copyright": "Sergii Shpak", + "email": "sergii.shpak.web@gmail.com", + "theme": "afterdark" +} \ No newline at end of file diff --git a/users/shreyas.json b/users/shreyas.json index 9a4bfac2..c5c09442 100644 --- a/users/shreyas.json +++ b/users/shreyas.json @@ -1,6 +1,6 @@ { - "copyright": "Shreyas Minocha", - "url": "https://shreyasminocha.me", - "email": "shreyasminocha@protonmail.com", - "format": "txt" -} + "copyright": "Shreyas Minocha", + "url": "https://shreyasminocha.me", + "email": "shreyasminocha@protonmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/shumate.json b/users/shumate.json index e64310a1..5bd49cb7 100644 --- a/users/shumate.json +++ b/users/shumate.json @@ -1,6 +1,6 @@ { - "copyright": "Brian Shumate", - "url": "http://brianshumate.com", - "email": "brian@brianshumate.com", - "format": "txt" -} + "copyright": "Brian Shumate", + "url": "http://brianshumate.com", + "email": "brian@brianshumate.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/shy.json b/users/shy.json index c50fab46..164d3fa3 100644 --- a/users/shy.json +++ b/users/shy.json @@ -1,4 +1,4 @@ { - "copyright": "Sung Hoon Yang", - "email": "sunghoonyang90@gmail.com" -} + "copyright": "Sung Hoon Yang", + "email": "sunghoonyang90@gmail.com" +} \ No newline at end of file diff --git a/users/siamak.json b/users/siamak.json index 32ececfc..ba524cd2 100644 --- a/users/siamak.json +++ b/users/siamak.json @@ -1,5 +1,5 @@ { - "copyright": "Siamak Mokhtari", - "email": "s.mokhtari75@gmail.com", - "format": "txt" -} + "copyright": "Siamak Mokhtari", + "email": "s.mokhtari75@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/sid.json b/users/sid.json index 2d5839be..7f0a6fe9 100644 --- a/users/sid.json +++ b/users/sid.json @@ -1,7 +1,7 @@ { - "copyright": "Dirk Sidney Jansen, http://sidisinsane.com", - "url": "http://sidisinsane.com", - "email": "sid@sidisinsane.com", - "gravatar": false, - "theme": "double-windsor" -} + "copyright": "Dirk Sidney Jansen, http://sidisinsane.com", + "url": "http://sidisinsane.com", + "email": "sid@sidisinsane.com", + "gravatar": false, + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/sidak.json b/users/sidak.json index 37e6f66b..78191804 100644 --- a/users/sidak.json +++ b/users/sidak.json @@ -1,3 +1,3 @@ { - "copyright": "Sidak Pal Singh" -} + "copyright": "Sidak Pal Singh" +} \ No newline at end of file diff --git a/users/sienikasvusto.json b/users/sienikasvusto.json index bd25573d..4a492762 100644 --- a/users/sienikasvusto.json +++ b/users/sienikasvusto.json @@ -1,6 +1,6 @@ { - "copyright": "Teemu Heikkila", - "Url": "http://emblica.org", - "email": "sienikasvusto@pistoke.org", - "format": "txt" -} + "copyright": "Teemu Heikkila", + "Url": "http://emblica.org", + "email": "sienikasvusto@pistoke.org", + "format": "txt" +} \ No newline at end of file diff --git a/users/sigfried.json b/users/sigfried.json index b4b54540..384e13e9 100644 --- a/users/sigfried.json +++ b/users/sigfried.json @@ -1,3 +1,3 @@ { - "copyright": "Sigfried Gold" -} + "copyright": "Sigfried Gold" +} \ No newline at end of file diff --git a/users/signicode.json b/users/signicode.json index 34a99fe9..a3437ac1 100644 --- a/users/signicode.json +++ b/users/signicode.json @@ -1,6 +1,6 @@ { - "copyright": "Signicode Micha\u0142 Czapracki", - "url": "http://www.signicode.com/", - "email": "budleigh.salterton@gmail.com", - "gravatar": true -} + "copyright": "Signicode Michał Czapracki", + "url": "http://www.signicode.com/", + "email": "budleigh.salterton@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/sija.json b/users/sija.json index 2ffac305..9f7e36cd 100644 --- a/users/sija.json +++ b/users/sija.json @@ -1,6 +1,6 @@ { - "copyright": "Sijawusz Pur Rahnama", - "url": "https://sija.pl", - "email": "sija@sija.pl", - "gravatar": true -} + "copyright": "Sijawusz Pur Rahnama", + "url": "https://sija.pl", + "email": "sija@sija.pl", + "gravatar": true +} \ No newline at end of file diff --git a/users/sil.json b/users/sil.json index 5d72437f..e36f3815 100644 --- a/users/sil.json +++ b/users/sil.json @@ -1,3 +1,3 @@ { - "copyright": "SIL International" -} + "copyright": "SIL International" +} \ No newline at end of file diff --git a/users/sillysina.json b/users/sillysina.json index 90a6ac31..6263d183 100644 --- a/users/sillysina.json +++ b/users/sillysina.json @@ -1,8 +1,8 @@ { - "copyright": "Sina Mashek", - "url": "http://sina.mashek.xyz", - "email": "sina@mashek.xyz", - "format": "html", - "theme": "default-dark", - "gravatar": "true" -} + "copyright": "Sina Mashek", + "url": "http://sina.mashek.xyz", + "email": "sina@mashek.xyz", + "format": "html", + "theme": "default-dark", + "gravatar": "true" +} \ No newline at end of file diff --git a/users/silvers.json b/users/silvers.json index 609fe23d..345061fe 100644 --- a/users/silvers.json +++ b/users/silvers.json @@ -1,6 +1,6 @@ { - "copyright": "silvers", - "url": "https://github.com/silvers", - "email": "ofsilvers+github@gmail.com", - "gravatar": true -} + "copyright": "silvers", + "url": "https://github.com/silvers", + "email": "ofsilvers+github@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/sim.json b/users/sim.json index d500618b..deec92ad 100644 --- a/users/sim.json +++ b/users/sim.json @@ -1,5 +1,5 @@ { - "copyright": "Sim Inc.", - "format": "html", - "theme": "double-windsor" -} + "copyright": "Sim Inc.", + "format": "html", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/simbo.json b/users/simbo.json index f2352e81..4df57fb6 100644 --- a/users/simbo.json +++ b/users/simbo.json @@ -1,6 +1,6 @@ { - "copyright": "Simon Lepel", - "url": "http://simonlepel.de", - "email": "hallo@simonlepel.de", - "gravatar": true -} + "copyright": "Simon Lepel", + "url": "http://simonlepel.de", + "email": "hallo@simonlepel.de", + "gravatar": true +} \ No newline at end of file diff --git a/users/simgeker.json b/users/simgeker.json index 29577d56..0aca9679 100644 --- a/users/simgeker.json +++ b/users/simgeker.json @@ -1,7 +1,7 @@ { - "copyright": "Anurag Simgeker", - "url": "http://anuragsimgeker.com", - "email": "me@anuragsimgeker.com", - "format": "txt", - "gravatar": true -} + "copyright": "Anurag Simgeker", + "url": "http://anuragsimgeker.com", + "email": "me@anuragsimgeker.com", + "format": "txt", + "gravatar": true +} \ No newline at end of file diff --git a/users/simon.json b/users/simon.json index f52a06ce..22f9b14b 100644 --- a/users/simon.json +++ b/users/simon.json @@ -1,3 +1,3 @@ { - "copyright": "Simon MacDonald, http://simonmacdonald.com" -} + "copyright": "Simon MacDonald, http://simonmacdonald.com" +} \ No newline at end of file diff --git a/users/simonkberg.json b/users/simonkberg.json index 625ad423..63ed3610 100644 --- a/users/simonkberg.json +++ b/users/simonkberg.json @@ -1,7 +1,7 @@ { - "copyright": "Simon Kjellberg", - "url": "https://simonkjellberg.com", - "email": "simon.kjellberg@gmail.com", - "theme": "default", - "gravatar": true -} + "copyright": "Simon Kjellberg", + "url": "https://simonkjellberg.com", + "email": "simon.kjellberg@gmail.com", + "theme": "default", + "gravatar": true +} \ No newline at end of file diff --git a/users/simonwalsh.json b/users/simonwalsh.json index e57c36e8..4161b163 100644 --- a/users/simonwalsh.json +++ b/users/simonwalsh.json @@ -1,6 +1,6 @@ { - "copyright": "Simon Walsh", - "url": "http://www.walsh.si", - "email": "simon@walsh.si", - "format": "txt" -} + "copyright": "Simon Walsh", + "url": "http://www.walsh.si", + "email": "simon@walsh.si", + "format": "txt" +} \ No newline at end of file diff --git a/users/singh.json b/users/singh.json index 2c602572..a4c836bf 100644 --- a/users/singh.json +++ b/users/singh.json @@ -1,4 +1,4 @@ { - "copyright": "Hardeep Singh", - "email": "h@rdeep.ca" -} + "copyright": "Hardeep Singh", + "email": "h@rdeep.ca" +} \ No newline at end of file diff --git a/users/singingwolfboy.json b/users/singingwolfboy.json index e31c79fa..8a500a17 100644 --- a/users/singingwolfboy.json +++ b/users/singingwolfboy.json @@ -1,5 +1,5 @@ { - "copyright": "David Baumgold", - "url": "http://davidbaumgold.com", - "email": "david@davidbaumgold.com" -} + "copyright": "David Baumgold", + "url": "http://davidbaumgold.com", + "email": "david@davidbaumgold.com" +} \ No newline at end of file diff --git a/users/siteware.json b/users/siteware.json index 869adf43..19a75b51 100644 --- a/users/siteware.json +++ b/users/siteware.json @@ -1,5 +1,5 @@ { - "copyright": "Edwin Mol", - "email": "edwin@siteware.be", - "gravatar": true -} + "copyright": "Edwin Mol", + "email": "edwin@siteware.be", + "gravatar": true +} \ No newline at end of file diff --git a/users/siutsin.json b/users/siutsin.json index ab49f0b0..55b7e0a8 100644 --- a/users/siutsin.json +++ b/users/siutsin.json @@ -1,8 +1,8 @@ { - "copyright": "Siu Tsin Li", - "url": "http://siutsin.com", - "email": "li@siutsin.com", - "theme": "double-windsor", - "format": "html", - "gravatar": true -} + "copyright": "Siu Tsin Li", + "url": "http://siutsin.com", + "email": "li@siutsin.com", + "theme": "double-windsor", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/sivasankarnc.json b/users/sivasankarnc.json index 9a6c1db2..4f8eaa5c 100644 --- a/users/sivasankarnc.json +++ b/users/sivasankarnc.json @@ -1,8 +1,8 @@ { - "copyright": "Sivasankaran Chandrasekaran, https://github.com/sivasankarnc", - "url": "https://twitter.com/sivasankarnc", - "format": "txt", - "email": "sivasankarnc@gmail.com", - "gravatar": true, - "theme": "default" -} + "copyright": "Sivasankaran Chandrasekaran, https://github.com/sivasankarnc", + "url": "https://twitter.com/sivasankarnc", + "format": "txt", + "email": "sivasankarnc@gmail.com", + "gravatar": true, + "theme": "default" +} \ No newline at end of file diff --git a/users/siwatpru.json b/users/siwatpru.json index 11e888c1..fab6247f 100644 --- a/users/siwatpru.json +++ b/users/siwatpru.json @@ -1,6 +1,6 @@ { - "copyright": "Siwat Pruksapanya", - "email": "siwat.pru@outlook.com", - "gravatar": true, - "theme": "material-deep-orange" -} + "copyright": "Siwat Pruksapanya", + "email": "siwat.pru@outlook.com", + "gravatar": true, + "theme": "material-deep-orange" +} \ No newline at end of file diff --git a/users/sjs.json b/users/sjs.json index aeca491b..5983fe58 100644 --- a/users/sjs.json +++ b/users/sjs.json @@ -1,5 +1,5 @@ { - "copyright": "Sami Samhuri, http://samhuri.net", - "url": "http://samhuri.net", - "email": "sami@samhuri.net" -} + "copyright": "Sami Samhuri, http://samhuri.net", + "url": "http://samhuri.net", + "email": "sami@samhuri.net" +} \ No newline at end of file diff --git a/users/sjwilliams.json b/users/sjwilliams.json index fd84ce63..85f00c2c 100644 --- a/users/sjwilliams.json +++ b/users/sjwilliams.json @@ -1,5 +1,5 @@ { - "copyright": "Josh Williams", - "url": "http://joshwilliams.com", - "format": "txt" -} + "copyright": "Josh Williams", + "url": "http://joshwilliams.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/skeletonframework.json b/users/skeletonframework.json index 085a8ad2..8b4c03b0 100644 --- a/users/skeletonframework.json +++ b/users/skeletonframework.json @@ -1,3 +1,3 @@ { - "copyright": "Skeleton Framework" -} + "copyright": "Skeleton Framework" +} \ No newline at end of file diff --git a/users/sketchmore.json b/users/sketchmore.json index 2df3f0b7..8e94c6f1 100644 --- a/users/sketchmore.json +++ b/users/sketchmore.json @@ -1,5 +1,5 @@ { - "copyright": "Sketchmore", - "url": "http://sketchmore.com", - "format": "txt" -} + "copyright": "Sketchmore", + "url": "http://sketchmore.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/skidding.json b/users/skidding.json index 10f22af1..8ce0d8ff 100644 --- a/users/skidding.json +++ b/users/skidding.json @@ -1,4 +1,4 @@ { - "copyright": "@skidding \u2014 Ovidiu Chereche\u0219", - "url": "http://ovidiu.ch" -} + "copyright": "@skidding — Ovidiu Cherecheș", + "url": "http://ovidiu.ch" +} \ No newline at end of file diff --git a/users/skinofstars.json b/users/skinofstars.json index 47780971..51fc82b3 100644 --- a/users/skinofstars.json +++ b/users/skinofstars.json @@ -1,6 +1,6 @@ { - "copyright": "Kevin Carmody", - "url": "http://skinofstars.com", - "email": "kevin@skinofstars.com", - "format": "txt" -} + "copyright": "Kevin Carmody", + "url": "http://skinofstars.com", + "email": "kevin@skinofstars.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/skip.json b/users/skip.json index 6170aa58..17927460 100644 --- a/users/skip.json +++ b/users/skip.json @@ -1,5 +1,5 @@ { - "copyright": "Matthew 'Skip' Rotter, http://codechops.com", - "url": "http://codechops.com", - "theme": "flesch" -} + "copyright": "Matthew 'Skip' Rotter, http://codechops.com", + "url": "http://codechops.com", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/skwasha.json b/users/skwasha.json index be2cdd41..85f13c0f 100644 --- a/users/skwasha.json +++ b/users/skwasha.json @@ -1,3 +1,3 @@ { - "copyright": "Sascha Linn" -} + "copyright": "Sascha Linn" +} \ No newline at end of file diff --git a/users/skymaiden.json b/users/skymaiden.json index e36a5950..c3b25fd6 100644 --- a/users/skymaiden.json +++ b/users/skymaiden.json @@ -1,4 +1,4 @@ { - "copyright": "Hinerangi Courtenay", - "url": "http://skymaiden.com" -} + "copyright": "Hinerangi Courtenay", + "url": "http://skymaiden.com" +} \ No newline at end of file diff --git a/users/slackit.json b/users/slackit.json index 58fea364..c5b62c30 100644 --- a/users/slackit.json +++ b/users/slackit.json @@ -1,4 +1,4 @@ { - "copyright": "OrgaChem", - "url": "https://github.com/OrgaChem/slackit" -} + "copyright": "OrgaChem", + "url": "https://github.com/OrgaChem/slackit" +} \ No newline at end of file diff --git a/users/slashsbin.json b/users/slashsbin.json index 844f0fff..2e37ead2 100644 --- a/users/slashsbin.json +++ b/users/slashsbin.json @@ -1,7 +1,7 @@ { - "copyright": "Mohammad Shokri Khanghah, https://slashsbin.com", - "url": "https://slashsbin.com", - "email": "shokri.md@gmail.com", - "gravatar": true, - "theme": "material-blue" -} + "copyright": "Mohammad Shokri Khanghah, https://slashsbin.com", + "url": "https://slashsbin.com", + "email": "shokri.md@gmail.com", + "gravatar": true, + "theme": "material-blue" +} \ No newline at end of file diff --git a/users/sliceofcode.json b/users/sliceofcode.json index 4845bf89..b9edaabd 100644 --- a/users/sliceofcode.json +++ b/users/sliceofcode.json @@ -1,3 +1,3 @@ { - "copyright": "Slice of Code" -} + "copyright": "Slice of Code" +} \ No newline at end of file diff --git a/users/slikts.json b/users/slikts.json index 28f28566..cf709cb5 100644 --- a/users/slikts.json +++ b/users/slikts.json @@ -1,6 +1,6 @@ { - "copyright": "slikts", - "url": "http://untu.ms", - "email": "dabas@untu.ms", - "format": "txt" -} + "copyright": "slikts", + "url": "http://untu.ms", + "email": "dabas@untu.ms", + "format": "txt" +} \ No newline at end of file diff --git a/users/sloria.json b/users/sloria.json index 5593a56c..ce87f53e 100644 --- a/users/sloria.json +++ b/users/sloria.json @@ -1,3 +1,3 @@ { - "copyright": "Steven Loria" -} + "copyright": "Steven Loria" +} \ No newline at end of file diff --git a/users/sm.json b/users/sm.json index cf48f256..594412a2 100644 --- a/users/sm.json +++ b/users/sm.json @@ -1,6 +1,6 @@ { - "copyright": "Shashank Mehta", - "url": "http://shashankmehta.in", - "email": "me@shashankmehta.in", - "format": "txt" -} + "copyright": "Shashank Mehta", + "url": "http://shashankmehta.in", + "email": "me@shashankmehta.in", + "format": "txt" +} \ No newline at end of file diff --git a/users/smg.json b/users/smg.json index 3d75f09a..a568fb80 100644 --- a/users/smg.json +++ b/users/smg.json @@ -1,3 +1,3 @@ { - "copyright": "Sasha Gerrand" -} + "copyright": "Sasha Gerrand" +} \ No newline at end of file diff --git a/users/smirking-ninja.json b/users/smirking-ninja.json index e9bc5e96..63dfbf24 100644 --- a/users/smirking-ninja.json +++ b/users/smirking-ninja.json @@ -1,6 +1,6 @@ { - "copyright": "Connor Spencer Harries", - "url": "https://smirking.ninja", - "email": "connor@smirking.ninja", - "format": "txt" -} + "copyright": "Connor Spencer Harries", + "url": "https://smirking.ninja", + "email": "connor@smirking.ninja", + "format": "txt" +} \ No newline at end of file diff --git a/users/smly.json b/users/smly.json index 504a8ca6..78031cce 100644 --- a/users/smly.json +++ b/users/smly.json @@ -1,3 +1,3 @@ { - "copyright": "Kohei Ozaki" -} + "copyright": "Kohei Ozaki" +} \ No newline at end of file diff --git a/users/smt.json b/users/smt.json index 450de70d..f56ca54a 100644 --- a/users/smt.json +++ b/users/smt.json @@ -1,5 +1,5 @@ { - "copyright": "Stephen Tudor, http://www.stephentudor.com", - "url": "http://www.stephentudor.com", - "theme": "hipster-gray" -} + "copyright": "Stephen Tudor, http://www.stephentudor.com", + "url": "http://www.stephentudor.com", + "theme": "hipster-gray" +} \ No newline at end of file diff --git a/users/sndnvaps.json b/users/sndnvaps.json index 91af7264..72c53000 100644 --- a/users/sndnvaps.json +++ b/users/sndnvaps.json @@ -1,8 +1,8 @@ { - "copyright": "Jimes Yang", - "url": "http://blog.sndnvaps.com/", - "email": "sndnvaps@gmail.com", - "format": "html", - "gravatar": true, - "theme": "orange" -} + "copyright": "Jimes Yang", + "url": "http://blog.sndnvaps.com/", + "email": "sndnvaps@gmail.com", + "format": "html", + "gravatar": true, + "theme": "orange" +} \ No newline at end of file diff --git a/users/snhack.json b/users/snhack.json index 70ed1d23..1224c272 100644 --- a/users/snhack.json +++ b/users/snhack.json @@ -1,6 +1,6 @@ { - "copyright": "Swindon Hackspace", - "url": "swindon.hackspace.org.uk", - "email": "snhackspace@gmail.com", - "gravatar": "true" -} + "copyright": "Swindon Hackspace", + "url": "swindon.hackspace.org.uk", + "email": "snhackspace@gmail.com", + "gravatar": "true" +} \ No newline at end of file diff --git a/users/snhackspace.json b/users/snhackspace.json index c5e6a249..175c4ab1 100644 --- a/users/snhackspace.json +++ b/users/snhackspace.json @@ -1,4 +1,4 @@ { - "copyright": "Swindon Hackspace", - "url": "http://swindon.hackspace.org.uk" -} + "copyright": "Swindon Hackspace", + "url": "http://swindon.hackspace.org.uk" +} \ No newline at end of file diff --git a/users/snig.json b/users/snig.json index 92c8d190..37af4833 100644 --- a/users/snig.json +++ b/users/snig.json @@ -1,6 +1,6 @@ { - "copyright": "Dmitry Mina", - "url": "http://snig.ga", - "email": "snigavig@gmail.com", - "format": "txt" -} + "copyright": "Dmitry Mina", + "url": "http://snig.ga", + "email": "snigavig@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/snwflake.json b/users/snwflake.json index e99dde20..01596bb5 100644 --- a/users/snwflake.json +++ b/users/snwflake.json @@ -1,6 +1,6 @@ { - "copyright": "Florian Mahlert", - "url": "https://me.snwflake.ml", - "email": "me@snwflake.ml", - "theme": "black-beauty" -} + "copyright": "Florian Mahlert", + "url": "https://me.snwflake.ml", + "email": "me@snwflake.ml", + "theme": "black-beauty" +} \ No newline at end of file diff --git a/users/softcreatr.json b/users/softcreatr.json index fc359197..875e9bca 100644 --- a/users/softcreatr.json +++ b/users/softcreatr.json @@ -1,7 +1,7 @@ { - "copyright": "Sascha Greuel", - "url": "https://www.softcreatr.de", - "email": "sascha@softcreatr.de", - "theme": "material-blue", - "gravatar": true -} + "copyright": "Sascha Greuel", + "url": "https://www.softcreatr.de", + "email": "sascha@softcreatr.de", + "theme": "material-blue", + "gravatar": true +} \ No newline at end of file diff --git a/users/softnayr.json b/users/softnayr.json index 669c0fc6..05e61d17 100644 --- a/users/softnayr.json +++ b/users/softnayr.json @@ -1,6 +1,6 @@ { - "copyright": "Ryan Ba\u00c3\u00b1aria", - "email": "b.softnayr@gmail.com", - "theme": "dusk", - "gravatar": true -} + "copyright": "Ryan Bañaria", + "email": "b.softnayr@gmail.com", + "theme": "dusk", + "gravatar": true +} \ No newline at end of file diff --git a/users/softwave.json b/users/softwave.json index 2e1b064d..e93b00e6 100644 --- a/users/softwave.json +++ b/users/softwave.json @@ -1,6 +1,6 @@ { - "copyright": "Softwave, http://softwavestudios.com/", - "url": "http://softwavestudios.com/", - "theme": "default", - "gravatar": true -} + "copyright": "Softwave, http://softwavestudios.com/", + "url": "http://softwavestudios.com/", + "theme": "default", + "gravatar": true +} \ No newline at end of file diff --git a/users/sohalt.json b/users/sohalt.json index fd524aca..c8c8da91 100644 --- a/users/sohalt.json +++ b/users/sohalt.json @@ -1,6 +1,6 @@ { - "copyright": "sohalt", - "url": "http://www.sohalt.net", - "email": "sohalt@sohalt.net", - "format": "txt" -} + "copyright": "sohalt", + "url": "http://www.sohalt.net", + "email": "sohalt@sohalt.net", + "format": "txt" +} \ No newline at end of file diff --git a/users/solid-constructs.json b/users/solid-constructs.json index 43da55f2..1b4b609b 100644 --- a/users/solid-constructs.json +++ b/users/solid-constructs.json @@ -1,3 +1,3 @@ { - "copyright": "Solid Constructs, LLC" -} + "copyright": "Solid Constructs, LLC" +} \ No newline at end of file diff --git a/users/solidworx.json b/users/solidworx.json index eac5b9c2..7e2112f0 100644 --- a/users/solidworx.json +++ b/users/solidworx.json @@ -1,5 +1,5 @@ { - "copyright": "SolidWorx", - "url": "https://solidworx.co", - "email": "open-source@solidworx.co" -} + "copyright": "SolidWorx", + "url": "https://solidworx.co", + "email": "open-source@solidworx.co" +} \ No newline at end of file diff --git a/users/somya.json b/users/somya.json index 404e7aa3..45c40e9b 100644 --- a/users/somya.json +++ b/users/somya.json @@ -1,3 +1,3 @@ { - "copyright": "Somya Anand, somyaanand214@gmail.com" -} + "copyright": "Somya Anand, somyaanand214@gmail.com" +} \ No newline at end of file diff --git a/users/sonalraj.json b/users/sonalraj.json index 3c204f4b..25c446c0 100644 --- a/users/sonalraj.json +++ b/users/sonalraj.json @@ -1,6 +1,6 @@ { - "copyright": "Sonal Raj", - "url": "http://sonalraj.com", - "email": "sonal.nitjsr@gmail.com", - "format": "txt" -} + "copyright": "Sonal Raj", + "url": "http://sonalraj.com", + "email": "sonal.nitjsr@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/songdu.json b/users/songdu.json index 13aa54c0..256cdaa4 100644 --- a/users/songdu.json +++ b/users/songdu.json @@ -1,6 +1,6 @@ { - "copyright": "Du Song", - "url": "http://rollingcode.org", - "email": "freewizard@gmail.com", - "format": "txt" -} + "copyright": "Du Song", + "url": "http://rollingcode.org", + "email": "freewizard@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/songmu.json b/users/songmu.json index f15e7e3e..e7247e6e 100644 --- a/users/songmu.json +++ b/users/songmu.json @@ -1,3 +1,3 @@ { - "copyright": "Masayuki Matsuki" -} + "copyright": "Masayuki Matsuki" +} \ No newline at end of file diff --git a/users/sonnywebdesign.json b/users/sonnywebdesign.json index 64c99d5a..629cae06 100644 --- a/users/sonnywebdesign.json +++ b/users/sonnywebdesign.json @@ -1,5 +1,5 @@ { - "copyright": "SonnyWebDesign", - "url": "https://github.com/SonnyWebDesign", - "theme": "black-beauty" -} + "copyright": "SonnyWebDesign", + "url": "https://github.com/SonnyWebDesign", + "theme": "black-beauty" +} \ No newline at end of file diff --git a/users/soong.json b/users/soong.json index a0c04fd1..a245c9b8 100644 --- a/users/soong.json +++ b/users/soong.json @@ -1,6 +1,6 @@ { - "copyright": "Billie Soong, http://volfox.cn", - "url": "http://volfox.cn", - "email": "nonkr@hotmail.com", - "theme": "default" -} + "copyright": "Billie Soong, http://volfox.cn", + "url": "http://volfox.cn", + "email": "nonkr@hotmail.com", + "theme": "default" +} \ No newline at end of file diff --git a/users/sorairo.json b/users/sorairo.json index cd3f3280..083d6e87 100644 --- a/users/sorairo.json +++ b/users/sorairo.json @@ -1,5 +1,5 @@ { - "copyright": "Sora Iro Fansubs, https://sorairo.fansub.site", - "url": "https://sorairo.fansub.site", - "theme": "default-dark" -} + "copyright": "Sora Iro Fansubs, https://sorairo.fansub.site", + "url": "https://sorairo.fansub.site", + "theme": "default-dark" +} \ No newline at end of file diff --git a/users/soralv9.json b/users/soralv9.json index 04ed0652..e34a3ac7 100644 --- a/users/soralv9.json +++ b/users/soralv9.json @@ -1,5 +1,5 @@ { - "copyright": "Sora@Lv9, http://sora.lv9.org", - "url": "http://sora.lv9.org", - "theme": "flesch" -} + "copyright": "Sora@Lv9, http://sora.lv9.org", + "url": "http://sora.lv9.org", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/soren121.json b/users/soren121.json index 85cff7ed..659cede8 100644 --- a/users/soren121.json +++ b/users/soren121.json @@ -1,4 +1,4 @@ { - "copyright": "Nicholas Narsing", - "email": "soren121@sorenstudios.com" -} + "copyright": "Nicholas Narsing", + "email": "soren121@sorenstudios.com" +} \ No newline at end of file diff --git a/users/sotayamashita.json b/users/sotayamashita.json index e84a12b4..d2f629c4 100644 --- a/users/sotayamashita.json +++ b/users/sotayamashita.json @@ -1,6 +1,6 @@ { - "copyright": "Sota Yamashita, https://github.com/sotayamashita", - "url": "https://github.com/sotayamshita", - "email": "sota.yamashita@gmail.com", - "gravatar": false -} + "copyright": "Sota Yamashita, https://github.com/sotayamashita", + "url": "https://github.com/sotayamshita", + "email": "sota.yamashita@gmail.com", + "gravatar": false +} \ No newline at end of file diff --git a/users/soulis.json b/users/soulis.json index 4eff2d43..6dc6abf8 100644 --- a/users/soulis.json +++ b/users/soulis.json @@ -1,8 +1,8 @@ { - "copyright": "Anastasios Selalmazidis, https://soulis.tech", - "url": "https://soulis.tech", - "format": "html", - "email": "t.selalmasidis@gmail.com", - "gravatar": true, - "theme": "opensans" -} + "copyright": "Anastasios Selalmazidis, https://soulis.tech", + "url": "https://soulis.tech", + "format": "html", + "email": "t.selalmasidis@gmail.com", + "gravatar": true, + "theme": "opensans" +} \ No newline at end of file diff --git a/users/souri.json b/users/souri.json index 438d3b57..75ebd0cc 100644 --- a/users/souri.json +++ b/users/souri.json @@ -1,5 +1,5 @@ { - "copyright": "Souri Guha", - "url": "http://souriguha.wordpress.com", - "email": "souriguha@gmail.com" -} + "copyright": "Souri Guha", + "url": "http://souriguha.wordpress.com", + "email": "souriguha@gmail.com" +} \ No newline at end of file diff --git a/users/specimen.json b/users/specimen.json index 1215919b..27f93990 100644 --- a/users/specimen.json +++ b/users/specimen.json @@ -1,3 +1,3 @@ { - "copyright": "Specimen" -} + "copyright": "Specimen" +} \ No newline at end of file diff --git a/users/sphw.json b/users/sphw.json index 8c1deef7..24bc7597 100644 --- a/users/sphw.json +++ b/users/sphw.json @@ -1,3 +1,3 @@ { - "copyright": "Sascha Wise" -} + "copyright": "Sascha Wise" +} \ No newline at end of file diff --git a/users/spier.json b/users/spier.json index 5bb8833d..34e294b1 100644 --- a/users/spier.json +++ b/users/spier.json @@ -1,4 +1,4 @@ { - "copyright": "Sebastian Spier, http://spier.hu", - "url": "http://spier.hu" -} + "copyright": "Sebastian Spier, http://spier.hu", + "url": "http://spier.hu" +} \ No newline at end of file diff --git a/users/spirited.json b/users/spirited.json index b88aee74..6965d0fe 100644 --- a/users/spirited.json +++ b/users/spirited.json @@ -1,3 +1,3 @@ { - "copyright": "Spirited Media Inc." -} + "copyright": "Spirited Media Inc." +} \ No newline at end of file diff --git a/users/spockz.json b/users/spockz.json index 7ada0d29..c295e22f 100644 --- a/users/spockz.json +++ b/users/spockz.json @@ -1,3 +1,3 @@ { - "copyright": "Alessandro Vermeulen" -} + "copyright": "Alessandro Vermeulen" +} \ No newline at end of file diff --git a/users/spooky.json b/users/spooky.json index ed884925..f1a4652c 100644 --- a/users/spooky.json +++ b/users/spooky.json @@ -1,3 +1,3 @@ { - "copyright": "Rylee Harrison" -} + "copyright": "Rylee Harrison" +} \ No newline at end of file diff --git a/users/sputnik27.json b/users/sputnik27.json index 0115fc43..8914b807 100644 --- a/users/sputnik27.json +++ b/users/sputnik27.json @@ -1,6 +1,6 @@ { - "copyright": "Florian Wilhelm", - "url": "http://sputnik27.github.io", - "email": "florian-wilhelm@onlinehome.de", - "format": "txt" -} + "copyright": "Florian Wilhelm", + "url": "http://sputnik27.github.io", + "email": "florian-wilhelm@onlinehome.de", + "format": "txt" +} \ No newline at end of file diff --git a/users/sqneffect.json b/users/sqneffect.json index 2c3039a7..2427a580 100644 --- a/users/sqneffect.json +++ b/users/sqneffect.json @@ -1,3 +1,3 @@ { - "copyright": "Robert Karbarz" -} + "copyright": "Robert Karbarz" +} \ No newline at end of file diff --git a/users/src-run.json b/users/src-run.json index 8f8d9d53..8050c8b1 100644 --- a/users/src-run.json +++ b/users/src-run.json @@ -1,7 +1,7 @@ { - "copyright": "Source Consulting, ", - "url": "http://src.run", - "email": "src@src.run", - "theme": "material-pink", - "gravatar": false -} + "copyright": "Source Consulting, ", + "url": "http://src.run", + "email": "src@src.run", + "theme": "material-pink", + "gravatar": false +} \ No newline at end of file diff --git a/users/srezic.json b/users/srezic.json index 9ed33b93..9ac628af 100644 --- a/users/srezic.json +++ b/users/srezic.json @@ -1,3 +1,3 @@ { - "copyright": "Slaven Rezic" -} + "copyright": "Slaven Rezic" +} \ No newline at end of file diff --git a/users/srivathsa.json b/users/srivathsa.json index d37541e8..72168850 100644 --- a/users/srivathsa.json +++ b/users/srivathsa.json @@ -1,6 +1,6 @@ { - "copyright": "Sai Sri Vathsa", - "email": "srivathsaeric@gmail.com", - "format": "html", - "gravatar": true -} + "copyright": "Sai Sri Vathsa", + "email": "srivathsaeric@gmail.com", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/srmor.json b/users/srmor.json index 5f3a8372..ea89567f 100644 --- a/users/srmor.json +++ b/users/srmor.json @@ -1,7 +1,7 @@ { - "copyright": "Stephen Morrison", - "email": "srmorrisonjit@gmail.com", - "gravatar": true, - "format": "html", - "theme": "afterdark" -} + "copyright": "Stephen Morrison", + "email": "srmorrisonjit@gmail.com", + "gravatar": true, + "format": "html", + "theme": "afterdark" +} \ No newline at end of file diff --git a/users/ss.json b/users/ss.json index e15f3254..1ea5d62a 100644 --- a/users/ss.json +++ b/users/ss.json @@ -1,3 +1,3 @@ { - "copyright": "Sidney San Mart\u00edn" -} + "copyright": "Sidney San Martín" +} \ No newline at end of file diff --git a/users/ssiefkas.json b/users/ssiefkas.json index 2cd4b9b6..08bf5863 100644 --- a/users/ssiefkas.json +++ b/users/ssiefkas.json @@ -1,6 +1,6 @@ { - "copyright": "Shawn Siefkas", - "url": "https://github.com/shawnsi", - "email": "shawn@siefk.as", - "format": "txt" -} + "copyright": "Shawn Siefkas", + "url": "https://github.com/shawnsi", + "email": "shawn@siefk.as", + "format": "txt" +} \ No newline at end of file diff --git a/users/stacey.json b/users/stacey.json index 3bf83f6d..cf70770d 100644 --- a/users/stacey.json +++ b/users/stacey.json @@ -1,4 +1,4 @@ { - "copyright": "Stacey Moore", - "url": "http://www.staceymoore.com" -} + "copyright": "Stacey Moore", + "url": "http://www.staceymoore.com" +} \ No newline at end of file diff --git a/users/stack72.json b/users/stack72.json index 86dc7051..1dd585ab 100644 --- a/users/stack72.json +++ b/users/stack72.json @@ -1,3 +1,3 @@ { - "copyright": "Paul Stack" -} + "copyright": "Paul Stack" +} \ No newline at end of file diff --git a/users/stakats.json b/users/stakats.json index c1f5a7b2..06658926 100644 --- a/users/stakats.json +++ b/users/stakats.json @@ -1,5 +1,5 @@ { - "copyright": "Sean Takats", - "email": "sean@takats.org", - "format": "html" -} + "copyright": "Sean Takats", + "email": "sean@takats.org", + "format": "html" +} \ No newline at end of file diff --git a/users/stanzheng.json b/users/stanzheng.json index 6fa0c84b..3d0498f3 100644 --- a/users/stanzheng.json +++ b/users/stanzheng.json @@ -1,3 +1,3 @@ { - "copyright": "Stanley Zheng" -} + "copyright": "Stanley Zheng" +} \ No newline at end of file diff --git a/users/stefan.json b/users/stefan.json index e5544cb4..7d1d00bd 100644 --- a/users/stefan.json +++ b/users/stefan.json @@ -1,7 +1,7 @@ { - "copyright": "Stefan Bruvik", - "url": "http://stefan.codes", - "email": "stefan.bruvik@gmail.com", - "theme": "eula-modern", - "gravatar": true -} + "copyright": "Stefan Bruvik", + "url": "http://stefan.codes", + "email": "stefan.bruvik@gmail.com", + "theme": "eula-modern", + "gravatar": true +} \ No newline at end of file diff --git a/users/stephdatu.json b/users/stephdatu.json index 5c62d995..0eb81ea3 100644 --- a/users/stephdatu.json +++ b/users/stephdatu.json @@ -1,6 +1,6 @@ { - "copyright": "Stephanie Datu", - "url": "http://stephdatu.com", - "email": "stephdatu@gmail.com", - "format": "txt" -} + "copyright": "Stephanie Datu", + "url": "http://stephdatu.com", + "email": "stephdatu@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/stephendavis89.json b/users/stephendavis89.json index 5dd76db4..af12a606 100644 --- a/users/stephendavis89.json +++ b/users/stephendavis89.json @@ -1,5 +1,5 @@ { - "copyright": "Stephen Davis", - "url": "http://stephendavis.im/", - "theme": "double-windsor" -} + "copyright": "Stephen Davis", + "url": "http://stephendavis.im/", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/stephenhay.json b/users/stephenhay.json index 2264c279..c6ce6024 100644 --- a/users/stephenhay.json +++ b/users/stephenhay.json @@ -1,3 +1,3 @@ { - "copyright": "Stephen Hay" -} + "copyright": "Stephen Hay" +} \ No newline at end of file diff --git a/users/steve.json b/users/steve.json index b71efa50..2cebc238 100644 --- a/users/steve.json +++ b/users/steve.json @@ -1,7 +1,7 @@ { - "copyright": "Steve Banton", - "url": "http://stevebanton.com", - "email": "steve.g.banton@gmail.com", - "format": "html", - "gravatar": true -} + "copyright": "Steve Banton", + "url": "http://stevebanton.com", + "email": "steve.g.banton@gmail.com", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/stevegraham.json b/users/stevegraham.json index 640fbb91..684e9925 100644 --- a/users/stevegraham.json +++ b/users/stevegraham.json @@ -1,3 +1,3 @@ { - "copyright": "Stevie Graham" -} + "copyright": "Stevie Graham" +} \ No newline at end of file diff --git a/users/stevegrunwell.json b/users/stevegrunwell.json index 6585164c..72285f65 100644 --- a/users/stevegrunwell.json +++ b/users/stevegrunwell.json @@ -1,6 +1,6 @@ { - "copyright": "Steve Grunwell", - "url": "https://stevegrunwell.com", - "email": "steve@stevegrunwell.com", - "format": "txt" -} + "copyright": "Steve Grunwell", + "url": "https://stevegrunwell.com", + "email": "steve@stevegrunwell.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/stever.json b/users/stever.json index ae88b85b..48f927b4 100644 --- a/users/stever.json +++ b/users/stever.json @@ -1,5 +1,5 @@ { - "copyright": "Steven Robertson", - "url": "http://stever.org.uk", - "email": "steverobertson@gmail.com" -} + "copyright": "Steven Robertson", + "url": "http://stever.org.uk", + "email": "steverobertson@gmail.com" +} \ No newline at end of file diff --git a/users/stewart.json b/users/stewart.json index dda00190..069c9df2 100644 --- a/users/stewart.json +++ b/users/stewart.json @@ -1,3 +1,3 @@ { - "copyright": "Andrew Stewart" -} + "copyright": "Andrew Stewart" +} \ No newline at end of file diff --git a/users/stoshiya.json b/users/stoshiya.json index 14d96e86..abc22c94 100644 --- a/users/stoshiya.json +++ b/users/stoshiya.json @@ -1,4 +1,4 @@ { - "copyright": "Toshiya SAITOH", - "email": "stoshiya@gmail.com" -} + "copyright": "Toshiya SAITOH", + "email": "stoshiya@gmail.com" +} \ No newline at end of file diff --git a/users/strainno.json b/users/strainno.json index 9a5516b0..d89bd178 100644 --- a/users/strainno.json +++ b/users/strainno.json @@ -1,6 +1,6 @@ { - "copyright": "Strainno Team, https://gitlab.com/strainno", - "url": "https://gitlab.com/strainno", - "email": "pratim.chaudhuri@barclays.com", - "format": "txt" -} + "copyright": "Strainno Team, https://gitlab.com/strainno", + "url": "https://gitlab.com/strainno", + "email": "pratim.chaudhuri@barclays.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/straub.json b/users/straub.json index 7b904556..cc1c2482 100644 --- a/users/straub.json +++ b/users/straub.json @@ -1,6 +1,6 @@ { - "copyright": "David M Straub", - "url": "http://www.davidstraub.com", - "email": "himself@davidstraub.com", - "format": "txt" -} + "copyright": "David M Straub", + "url": "http://www.davidstraub.com", + "email": "himself@davidstraub.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/strawson.json b/users/strawson.json index c0007913..1b6b1861 100644 --- a/users/strawson.json +++ b/users/strawson.json @@ -1,3 +1,3 @@ { - "copyright": "Adam Strawson" -} + "copyright": "Adam Strawson" +} \ No newline at end of file diff --git a/users/streethub.json b/users/streethub.json index 4d95885f..7bedc560 100644 --- a/users/streethub.json +++ b/users/streethub.json @@ -1,6 +1,6 @@ { - "copyright": "StreetHub", - "url": "http://streethub.com", - "email": "hello@streethub.com", - "format": "txt" -} + "copyright": "StreetHub", + "url": "http://streethub.com", + "email": "hello@streethub.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/struktur.json b/users/struktur.json index f64d7b93..587a4be2 100644 --- a/users/struktur.json +++ b/users/struktur.json @@ -1,6 +1,6 @@ { - "copyright": "Lars Steen", - "url": "https://bitbucket.org/larste/struktur", - "email": "larste@gmail.com", - "format": "txt" -} + "copyright": "Lars Steen", + "url": "https://bitbucket.org/larste/struktur", + "email": "larste@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/stuart.json b/users/stuart.json index 9c182b14..8a9a6978 100644 --- a/users/stuart.json +++ b/users/stuart.json @@ -1,3 +1,3 @@ { - "copyright": "Stuart Richardson" -} + "copyright": "Stuart Richardson" +} \ No newline at end of file diff --git a/users/studer.json b/users/studer.json index 000d479e..d01e44af 100644 --- a/users/studer.json +++ b/users/studer.json @@ -1,3 +1,3 @@ { - "copyright": "Th\u00e9ophile Studer" -} + "copyright": "Théophile Studer" +} \ No newline at end of file diff --git a/users/styleshare.json b/users/styleshare.json index 657a0d57..cb319c0a 100644 --- a/users/styleshare.json +++ b/users/styleshare.json @@ -1,5 +1,5 @@ { - "copyright": "StyleShare", - "url": "https://stylesha.re/", - "email": "dev@stylesha.re" -} + "copyright": "StyleShare", + "url": "https://stylesha.re/", + "email": "dev@stylesha.re" +} \ No newline at end of file diff --git a/users/suaoc.json b/users/suaoc.json index 786829c0..2f5efdf1 100644 --- a/users/suaoc.json +++ b/users/suaoc.json @@ -1,3 +1,3 @@ { - "copyright": "Saleem Ullah" -} + "copyright": "Saleem Ullah" +} \ No newline at end of file diff --git a/users/sublee.json b/users/sublee.json index 5b433687..9392899e 100644 --- a/users/sublee.json +++ b/users/sublee.json @@ -1,6 +1,6 @@ { - "copyright": "Heungsub Lee", - "url": "http://subl.ee/", - "email": "h@subl.ee", - "theme": "plaintext" -} + "copyright": "Heungsub Lee", + "url": "http://subl.ee/", + "email": "h@subl.ee", + "theme": "plaintext" +} \ No newline at end of file diff --git a/users/subtub.json b/users/subtub.json index 3cd70de4..48434c2c 100644 --- a/users/subtub.json +++ b/users/subtub.json @@ -1,8 +1,8 @@ { - "copyright": "subtub, https://github.com/subtub", - "url": "https://github.com/subtub", - "email": "subtubteam@gmail.com", - "format": "html", - "gravatar": false, - "theme": "plaintext" -} + "copyright": "subtub, https://github.com/subtub", + "url": "https://github.com/subtub", + "email": "subtubteam@gmail.com", + "format": "html", + "gravatar": false, + "theme": "plaintext" +} \ No newline at end of file diff --git a/users/succhiello.json b/users/succhiello.json index 33b6c3ee..9f9ada9c 100644 --- a/users/succhiello.json +++ b/users/succhiello.json @@ -1,4 +1,4 @@ { - "copyright": "Satoshi Ebihara", - "url": "https://github.com/succhiello" -} + "copyright": "Satoshi Ebihara", + "url": "https://github.com/succhiello" +} \ No newline at end of file diff --git a/users/sudhq.json b/users/sudhq.json index 265e5803..2e9f0621 100644 --- a/users/sudhq.json +++ b/users/sudhq.json @@ -1,6 +1,6 @@ { - "copyright": "Studio Upside Down", - "url": "http://sudhq.com", - "email": "hello@sudhq.com", - "theme": "default" -} + "copyright": "Studio Upside Down", + "url": "http://sudhq.com", + "email": "hello@sudhq.com", + "theme": "default" +} \ No newline at end of file diff --git a/users/sue445.json b/users/sue445.json index fa5fc0e3..9bc90f32 100644 --- a/users/sue445.json +++ b/users/sue445.json @@ -1,3 +1,3 @@ { - "copyright": "sue445" -} + "copyright": "sue445" +} \ No newline at end of file diff --git a/users/sugarshin.json b/users/sugarshin.json index ac5831d6..ce40bc7c 100644 --- a/users/sugarshin.json +++ b/users/sugarshin.json @@ -1,3 +1,3 @@ { - "copyright": "sugarshin" -} + "copyright": "sugarshin" +} \ No newline at end of file diff --git a/users/sun.json b/users/sun.json index c0eb7049..1a454ca4 100644 --- a/users/sun.json +++ b/users/sun.json @@ -1,4 +1,4 @@ { - "copyright": "Daniel F. Kudwien", - "url": "http://unleashedmind.com" -} + "copyright": "Daniel F. Kudwien", + "url": "http://unleashedmind.com" +} \ No newline at end of file diff --git a/users/sungchi.json b/users/sungchi.json index a3d7d5ad..639be1e5 100644 --- a/users/sungchi.json +++ b/users/sungchi.json @@ -1,3 +1,3 @@ { - "copyright": "sungchi, http://www.feed9.com/" -} + "copyright": "sungchi, http://www.feed9.com/" +} \ No newline at end of file diff --git a/users/sunny.json b/users/sunny.json index 45dbee68..e8d5d9f3 100644 --- a/users/sunny.json +++ b/users/sunny.json @@ -1,5 +1,5 @@ { - "copyright": "Sunny Mittal", - "email": "sunnymittal2003@gmail.com", - "url": "http://www.sunnymittal.com" -} + "copyright": "Sunny Mittal", + "email": "sunnymittal2003@gmail.com", + "url": "http://www.sunnymittal.com" +} \ No newline at end of file diff --git a/users/sunoru.json b/users/sunoru.json index e4e1a147..d0300c56 100644 --- a/users/sunoru.json +++ b/users/sunoru.json @@ -1,7 +1,7 @@ { - "copyright": "Sunoru Sidw", - "url": "https://www.sunoru.com", - "email": "s@sunoru.com", - "format": "html", - "gravatar": true -} + "copyright": "Sunoru Sidw", + "url": "https://www.sunoru.com", + "email": "s@sunoru.com", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/superbil.json b/users/superbil.json index e2895765..63371c7b 100644 --- a/users/superbil.json +++ b/users/superbil.json @@ -1,3 +1,3 @@ { - "copyright": "Kai-Yuan Cheng" -} + "copyright": "Kai-Yuan Cheng" +} \ No newline at end of file diff --git a/users/superdev.json b/users/superdev.json index f9a25cec..58c2bc75 100644 --- a/users/superdev.json +++ b/users/superdev.json @@ -1,3 +1,3 @@ { - "copyright": "SuperDev" -} + "copyright": "SuperDev" +} \ No newline at end of file diff --git a/users/surender.json b/users/surender.json index 40aec202..3b637bac 100644 --- a/users/surender.json +++ b/users/surender.json @@ -1,5 +1,5 @@ { - "copyright": "Surender Lohia, https://www.surender.net/", - "url": "https://www.surender.net/", - "email": "surender.lohia.e@gmail.com" -} + "copyright": "Surender Lohia, https://www.surender.net/", + "url": "https://www.surender.net/", + "email": "surender.lohia.e@gmail.com" +} \ No newline at end of file diff --git a/users/suriyaakudo.json b/users/suriyaakudo.json index 51984b7b..7e6d1ecf 100644 --- a/users/suriyaakudo.json +++ b/users/suriyaakudo.json @@ -1,8 +1,8 @@ { - "copyright": "Suriyaa Kudo", - "url": "https://github.com/SuriyaaKudoIsc", - "format": "html", - "email": "isc.suriyaa@gmail.com", - "gravatar": true, - "theme": "default" -} + "copyright": "Suriyaa Kudo", + "url": "https://github.com/SuriyaaKudoIsc", + "format": "html", + "email": "isc.suriyaa@gmail.com", + "gravatar": true, + "theme": "default" +} \ No newline at end of file diff --git a/users/susheel.json b/users/susheel.json index 212b636e..6956a42d 100644 --- a/users/susheel.json +++ b/users/susheel.json @@ -1,3 +1,3 @@ { - "copyright": "Susheel Varma" -} + "copyright": "Susheel Varma" +} \ No newline at end of file diff --git a/users/swarnava.json b/users/swarnava.json index b2c440a5..19b57b60 100644 --- a/users/swarnava.json +++ b/users/swarnava.json @@ -1,8 +1,8 @@ { - "copyright": "Swarnava Bhattacharya, https://github.com/SwarnavaBhattacharya", - "url": "https://swarnavabhattacharya.com/", - "format": "txt", - "email": "swarnavabhattacharyawork@gmail.com", - "gravatar": true, - "theme": "material-teal" -} + "copyright": "Swarnava Bhattacharya, https://github.com/SwarnavaBhattacharya", + "url": "https://swarnavabhattacharya.com/", + "format": "txt", + "email": "swarnavabhattacharyawork@gmail.com", + "gravatar": true, + "theme": "material-teal" +} \ No newline at end of file diff --git a/users/swarnavabhattacharya.json b/users/swarnavabhattacharya.json index 18a8c918..b5d557f4 100644 --- a/users/swarnavabhattacharya.json +++ b/users/swarnavabhattacharya.json @@ -1,8 +1,8 @@ { - "copyright": "Swarnava Bhattacharya, https://github.com/SwarnavaBhattacharya", - "url": "https://swarnavabhattacharya.com/", - "format": "html", - "email": "swarnavabhattacharyawork@gmail.com", - "gravatar": true, - "theme": "dusk" -} + "copyright": "Swarnava Bhattacharya, https://github.com/SwarnavaBhattacharya", + "url": "https://swarnavabhattacharya.com/", + "format": "html", + "email": "swarnavabhattacharyawork@gmail.com", + "gravatar": true, + "theme": "dusk" +} \ No newline at end of file diff --git a/users/swinton.json b/users/swinton.json index 6b6f092c..4c1dfd13 100644 --- a/users/swinton.json +++ b/users/swinton.json @@ -1,3 +1,3 @@ { - "copyright": "Steve Winton" -} + "copyright": "Steve Winton" +} \ No newline at end of file diff --git a/users/symphonycms.json b/users/symphonycms.json index a7eb3e4a..8f02d6d9 100644 --- a/users/symphonycms.json +++ b/users/symphonycms.json @@ -1,6 +1,6 @@ { - "copyright": "Symphony CMS", - "url": "https://www.getsymphony.com", - "theme": "flesch", - "gravatar": true -} + "copyright": "Symphony CMS", + "url": "https://www.getsymphony.com", + "theme": "flesch", + "gravatar": true +} \ No newline at end of file diff --git a/users/synack.json b/users/synack.json index eae2eda5..ef6bab4c 100644 --- a/users/synack.json +++ b/users/synack.json @@ -1,5 +1,5 @@ { - "copyright": "Synack AB", - "url": "http://synack.se", - "theme": "default" -} + "copyright": "Synack AB", + "url": "http://synack.se", + "theme": "default" +} \ No newline at end of file diff --git a/users/synvox.json b/users/synvox.json index f3fe1b2c..2840f3d0 100644 --- a/users/synvox.json +++ b/users/synvox.json @@ -1,6 +1,6 @@ { - "copyright": "Ryan Allred", - "url": "http://ryan.allred.xyz", - "email": "ryan@allred.xyz", - "format": "txt" -} + "copyright": "Ryan Allred", + "url": "http://ryan.allred.xyz", + "email": "ryan@allred.xyz", + "format": "txt" +} \ No newline at end of file diff --git a/users/szelcsanyi.json b/users/szelcsanyi.json index 344d31fe..9dfdf738 100644 --- a/users/szelcsanyi.json +++ b/users/szelcsanyi.json @@ -1,6 +1,6 @@ { - "copyright": "Gabor Szelcsanyi", - "email": "szelcsanyi.gabor@gmail.com", - "format": "html", - "theme": "double-windsor" -} + "copyright": "Gabor Szelcsanyi", + "email": "szelcsanyi.gabor@gmail.com", + "format": "html", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/szgal.json b/users/szgal.json index 9cdd6b87..a9ad981d 100644 --- a/users/szgal.json +++ b/users/szgal.json @@ -1,3 +1,3 @@ { - "copyright": "szgal" -} + "copyright": "szgal" +} \ No newline at end of file diff --git a/users/t-ashula.json b/users/t-ashula.json index e435cc87..24c466f1 100644 --- a/users/t-ashula.json +++ b/users/t-ashula.json @@ -1,6 +1,6 @@ { - "copyright": "t.ashula, https://ashula.info", - "url": "https://ashula.info", - "email": "office@ashula.info", - "theme": "opensans" -} + "copyright": "t.ashula, https://ashula.info", + "url": "https://ashula.info", + "email": "office@ashula.info", + "theme": "opensans" +} \ No newline at end of file diff --git a/users/t.json b/users/t.json index 2ddba81e..c734dfde 100644 --- a/users/t.json +++ b/users/t.json @@ -1,6 +1,6 @@ { - "copyright": "Tadeo Kondrak", - "url": "http://tadeokondrak.com/", - "email": "tadeo@kondrak.tk", - "format": "html" -} + "copyright": "Tadeo Kondrak", + "url": "http://tadeokondrak.com/", + "email": "tadeo@kondrak.tk", + "format": "html" +} \ No newline at end of file diff --git a/users/tad.json b/users/tad.json index d525123f..2eeefa90 100644 --- a/users/tad.json +++ b/users/tad.json @@ -1,8 +1,8 @@ { - "copyright": "Tad DeVries, https://blog.splunk.net", - "url": "https://blog.splunk.net", - "email": "tad@splunk.net", - "format": "txt", - "gravatar": true, - "theme": "plaintext" -} + "copyright": "Tad DeVries, https://blog.splunk.net", + "url": "https://blog.splunk.net", + "email": "tad@splunk.net", + "format": "txt", + "gravatar": true, + "theme": "plaintext" +} \ No newline at end of file diff --git a/users/tadejm.json b/users/tadejm.json index f464ea05..72785eed 100644 --- a/users/tadejm.json +++ b/users/tadejm.json @@ -1,6 +1,6 @@ { - "copyright": "Tadej Murovec", - "url": "http://twitter.com/tadejm", - "email": "tadej.murovec@gmail.com", - "format": "txt" -} + "copyright": "Tadej Murovec", + "url": "http://twitter.com/tadejm", + "email": "tadej.murovec@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/tadeo.json b/users/tadeo.json index 6b1e03c7..d06cff77 100644 --- a/users/tadeo.json +++ b/users/tadeo.json @@ -1,6 +1,6 @@ { - "copyright": "Tadeo Kondrak", - "url": "http://tadeokondrak.com", - "email": "tadeo@kondrak.tk", - "format": "html" -} + "copyright": "Tadeo Kondrak", + "url": "http://tadeokondrak.com", + "email": "tadeo@kondrak.tk", + "format": "html" +} \ No newline at end of file diff --git a/users/takano32.json b/users/takano32.json index 3b9152dd..29464d3f 100644 --- a/users/takano32.json +++ b/users/takano32.json @@ -1,6 +1,6 @@ { - "copyright": "TAKANO Mitsuhiro, http://twitter.com/takano32/", - "email": "takano32@gmail.com", - "url": "http://taka.no32.tk/", - "theme": "afterdark" -} + "copyright": "TAKANO Mitsuhiro, http://twitter.com/takano32/", + "email": "takano32@gmail.com", + "url": "http://taka.no32.tk/", + "theme": "afterdark" +} \ No newline at end of file diff --git a/users/takanopontaro.json b/users/takanopontaro.json index c649b2c8..864cb089 100644 --- a/users/takanopontaro.json +++ b/users/takanopontaro.json @@ -1,4 +1,4 @@ { - "copyright": "Shinji Takano", - "url": "https://github.com/takanopontaro" -} + "copyright": "Shinji Takano", + "url": "https://github.com/takanopontaro" +} \ No newline at end of file diff --git a/users/takashi.json b/users/takashi.json index dff8d169..48fca946 100644 --- a/users/takashi.json +++ b/users/takashi.json @@ -1,3 +1,3 @@ { - "copyright": "Takashi Nakagawa" -} + "copyright": "Takashi Nakagawa" +} \ No newline at end of file diff --git a/users/takashisite.json b/users/takashisite.json index 7e2dc764..37d3be10 100644 --- a/users/takashisite.json +++ b/users/takashisite.json @@ -1,8 +1,8 @@ { - "copyright": "Takashi Site", - "url": "http://www.sai.to/", - "email": "takashi@sai.to", - "format": "html", - "gravatar": true, - "theme": "opensans" -} + "copyright": "Takashi Site", + "url": "http://www.sai.to/", + "email": "takashi@sai.to", + "format": "html", + "gravatar": true, + "theme": "opensans" +} \ No newline at end of file diff --git a/users/takuro.json b/users/takuro.json index 370db267..3e9ede9f 100644 --- a/users/takuro.json +++ b/users/takuro.json @@ -1,3 +1,3 @@ { - "copyright": "Takuro Wada" -} + "copyright": "Takuro Wada" +} \ No newline at end of file diff --git a/users/talkative.json b/users/talkative.json index df7158a4..8c66b682 100644 --- a/users/talkative.json +++ b/users/talkative.json @@ -1,3 +1,3 @@ { - "copyright": "Talkative, Aesculus AB" -} + "copyright": "Talkative, Aesculus AB" +} \ No newline at end of file diff --git a/users/tam.json b/users/tam.json index 3c2c6a1f..9f7fbeeb 100644 --- a/users/tam.json +++ b/users/tam.json @@ -1,6 +1,6 @@ { - "copyright": "Tam McDonald", - "url": "http://tam.sx", - "email": "hi@tam.sx", - "gravatar": true -} + "copyright": "Tam McDonald", + "url": "http://tam.sx", + "email": "hi@tam.sx", + "gravatar": true +} \ No newline at end of file diff --git a/users/tamberg.json b/users/tamberg.json index 287edb91..baadcb1f 100644 --- a/users/tamberg.json +++ b/users/tamberg.json @@ -1,3 +1,3 @@ { - "copyright": "Thomas Amberg" -} + "copyright": "Thomas Amberg" +} \ No newline at end of file diff --git a/users/tameraydin.json b/users/tameraydin.json index ae1bd541..c2766e3d 100644 --- a/users/tameraydin.json +++ b/users/tameraydin.json @@ -1,4 +1,4 @@ { - "copyright": "Tamer Aydin, http://tamerayd.in", - "url": "http://tamerayd.in" -} + "copyright": "Tamer Aydin, http://tamerayd.in", + "url": "http://tamerayd.in" +} \ No newline at end of file diff --git a/users/tanel.json b/users/tanel.json index b24b2b19..5238b65f 100644 --- a/users/tanel.json +++ b/users/tanel.json @@ -1,3 +1,3 @@ { - "copyright": "Tanel Puhu" -} + "copyright": "Tanel Puhu" +} \ No newline at end of file diff --git a/users/tangocoder.json b/users/tangocoder.json index ad85ad9a..6d23398b 100644 --- a/users/tangocoder.json +++ b/users/tangocoder.json @@ -1,8 +1,8 @@ { - "copyright": "Feras ALHAEK", - "url": "http://alhaek.com", - "email": "feras@alhaek.com", - "format": "html", - "gravatar": true, - "theme": "eula-modern" -} + "copyright": "Feras ALHAEK", + "url": "http://alhaek.com", + "email": "feras@alhaek.com", + "format": "html", + "gravatar": true, + "theme": "eula-modern" +} \ No newline at end of file diff --git a/users/tanja.json b/users/tanja.json index 61b50dbb..6d180a68 100644 --- a/users/tanja.json +++ b/users/tanja.json @@ -1,5 +1,5 @@ { - "copyright": "Tanja Pislar", - "url": "http://heroesneverpanic.com", - "format": "txt" -} + "copyright": "Tanja Pislar", + "url": "http://heroesneverpanic.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/tantalor.json b/users/tantalor.json index 503e95d2..f2680fad 100644 --- a/users/tantalor.json +++ b/users/tantalor.json @@ -1,5 +1,5 @@ { - "copyright": "John Tantalo", - "url": "http://johntantalo.com", - "email": "john.tantalo@gmail.com" -} + "copyright": "John Tantalo", + "url": "http://johntantalo.com", + "email": "john.tantalo@gmail.com" +} \ No newline at end of file diff --git a/users/tap5.json b/users/tap5.json index a11fb9db..32ae6b40 100644 --- a/users/tap5.json +++ b/users/tap5.json @@ -1,3 +1,3 @@ { - "copyright": "Bj\u00f6rn S\u00f6derqvist" -} + "copyright": "Björn Söderqvist" +} \ No newline at end of file diff --git a/users/tarcisio.json b/users/tarcisio.json index 01a77150..7e670f39 100644 --- a/users/tarcisio.json +++ b/users/tarcisio.json @@ -1,4 +1,4 @@ { - "copyright": "Tarc\u00edsio Sassara", - "url": "https://github.com/tarcisio" -} + "copyright": "Tarcísio Sassara", + "url": "https://github.com/tarcisio" +} \ No newline at end of file diff --git a/users/taschetto.json b/users/taschetto.json index f22b13b9..e7730351 100644 --- a/users/taschetto.json +++ b/users/taschetto.json @@ -1,8 +1,8 @@ { - "copyright": "Guilherme Taschetto", - "url": "http://taschetto.com", - "email": "gtaschetto@gmail.com", - "format": "html", - "gravatar": true, - "theme": "friendly" -} + "copyright": "Guilherme Taschetto", + "url": "http://taschetto.com", + "email": "gtaschetto@gmail.com", + "format": "html", + "gravatar": true, + "theme": "friendly" +} \ No newline at end of file diff --git a/users/tastapod.json b/users/tastapod.json index 34fb8cd0..0002a70a 100644 --- a/users/tastapod.json +++ b/users/tastapod.json @@ -1,6 +1,6 @@ { - "copyright": "Dan North", - "url": "http://dannorth.net", - "email": "dan@dannorth.net", - "format": "txt" -} + "copyright": "Dan North", + "url": "http://dannorth.net", + "email": "dan@dannorth.net", + "format": "txt" +} \ No newline at end of file diff --git a/users/taye.json b/users/taye.json index d4508844..43da3fc7 100644 --- a/users/taye.json +++ b/users/taye.json @@ -1,6 +1,6 @@ { - "copyright": "Taye Adeyemi, http://taye.me", - "url": "http://taye.me", - "email": "dev@taye.me", - "gravatar": true -} + "copyright": "Taye Adeyemi, http://taye.me", + "url": "http://taye.me", + "email": "dev@taye.me", + "gravatar": true +} \ No newline at end of file diff --git a/users/taylor.json b/users/taylor.json index cd499c65..604c642a 100644 --- a/users/taylor.json +++ b/users/taylor.json @@ -1,3 +1,3 @@ { - "copyright": "Taylor Carpenter" -} + "copyright": "Taylor Carpenter" +} \ No newline at end of file diff --git a/users/taylorcc.json b/users/taylorcc.json index cd499c65..604c642a 100644 --- a/users/taylorcc.json +++ b/users/taylorcc.json @@ -1,3 +1,3 @@ { - "copyright": "Taylor Carpenter" -} + "copyright": "Taylor Carpenter" +} \ No newline at end of file diff --git a/users/tbaltrushaitis.json b/users/tbaltrushaitis.json index ae668c06..1869c6e1 100644 --- a/users/tbaltrushaitis.json +++ b/users/tbaltrushaitis.json @@ -1,6 +1,6 @@ { - "copyright": "Tomas Baltrushaitis", - "url": "https://github.com/tbaltrushaitis", - "email": "tbaltrushaitis@gmail.com", - "theme": "blackwood" -} + "copyright": "Tomas Baltrushaitis", + "url": "https://github.com/tbaltrushaitis", + "email": "tbaltrushaitis@gmail.com", + "theme": "blackwood" +} \ No newline at end of file diff --git a/users/tbekolay.json b/users/tbekolay.json index aac35b6d..e546f996 100644 --- a/users/tbekolay.json +++ b/users/tbekolay.json @@ -1,6 +1,6 @@ { - "copyright": "Trevor Bekolay", - "url": "http://tbekolay.github.com/", - "email": "tbekolay@gmail.com", - "theme": "hipster-gray" -} + "copyright": "Trevor Bekolay", + "url": "http://tbekolay.github.com/", + "email": "tbekolay@gmail.com", + "theme": "hipster-gray" +} \ No newline at end of file diff --git a/users/tbr.json b/users/tbr.json index 760a4031..c346e88b 100644 --- a/users/tbr.json +++ b/users/tbr.json @@ -1,7 +1,7 @@ { - "copyright": "Anders Str\u00c3\u00b6m, http://thebarricade.net", - "url": "http://thebarricade.net", - "email": "anders@thebarricade.net", - "format": "html", - "theme": "double-windsor" -} + "copyright": "Anders Ström, http://thebarricade.net", + "url": "http://thebarricade.net", + "email": "anders@thebarricade.net", + "format": "html", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/tbrennan.json b/users/tbrennan.json index 82b839fb..600eda5a 100644 --- a/users/tbrennan.json +++ b/users/tbrennan.json @@ -1,3 +1,3 @@ { - "copyright": "Todd F. Brennan" -} + "copyright": "Todd F. Brennan" +} \ No newline at end of file diff --git a/users/tc.json b/users/tc.json index f884ef41..265255e2 100644 --- a/users/tc.json +++ b/users/tc.json @@ -1,6 +1,6 @@ { - "copyright": "Thomas Chapman", - "url": "http://thomchap.com.au", - "email": "hola@thomchap.com.au", - "format": "txt" -} + "copyright": "Thomas Chapman", + "url": "http://thomchap.com.au", + "email": "hola@thomchap.com.au", + "format": "txt" +} \ No newline at end of file diff --git a/users/tchel.json b/users/tchel.json index b863735d..022082a7 100644 --- a/users/tchel.json +++ b/users/tchel.json @@ -1,7 +1,7 @@ { - "copyright": "Tche LIU", - "url": "http://github.com/TcheL", - "email": "seistche@gmail.com", - "format": "afterdark", - "gravatar": true -} + "copyright": "Tche LIU", + "url": "http://github.com/TcheL", + "email": "seistche@gmail.com", + "format": "afterdark", + "gravatar": true +} \ No newline at end of file diff --git a/users/tclh123.json b/users/tclh123.json index 66ce0004..06e5b32d 100644 --- a/users/tclh123.json +++ b/users/tclh123.json @@ -1,6 +1,6 @@ { - "copyright": "Harry Lee, http://tclh123.com", - "url": "http://tclh123.com", - "email": "tclh123@gmail.com", - "theme": "eula-modern" -} + "copyright": "Harry Lee, http://tclh123.com", + "url": "http://tclh123.com", + "email": "tclh123@gmail.com", + "theme": "eula-modern" +} \ No newline at end of file diff --git a/users/tdsh.json b/users/tdsh.json index 130528e8..bc0445a7 100644 --- a/users/tdsh.json +++ b/users/tdsh.json @@ -1,4 +1,4 @@ { - "copyright": "Tadashi Abe", - "email": "tadashi.abe@gmail.com" -} + "copyright": "Tadashi Abe", + "email": "tadashi.abe@gmail.com" +} \ No newline at end of file diff --git a/users/tdue21.json b/users/tdue21.json index 4e4feb37..1a2a753c 100644 --- a/users/tdue21.json +++ b/users/tdue21.json @@ -1,5 +1,5 @@ { - "copyright": "Thomas Due", - "email": "tho.due@gmail.com", - "gravatar": true -} + "copyright": "Thomas Due", + "email": "tho.due@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/teambition.json b/users/teambition.json index b13a9716..e125cffa 100644 --- a/users/teambition.json +++ b/users/teambition.json @@ -1,6 +1,6 @@ { - "copyright": "teambition, http://teambition.com", - "url": "http://teambition.com", - "email": "dev@teambition.com", - "gravatar": true -} + "copyright": "teambition, http://teambition.com", + "url": "http://teambition.com", + "email": "dev@teambition.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/teamosc.json b/users/teamosc.json index 206795ac..3ff76beb 100644 --- a/users/teamosc.json +++ b/users/teamosc.json @@ -1,6 +1,6 @@ { - "copyright": "Team Open Source Coders", - "url": "http://tosc.in", - "email": "toscapps@gmail.com", - "format": "html" -} + "copyright": "Team Open Source Coders", + "url": "http://tosc.in", + "email": "toscapps@gmail.com", + "format": "html" +} \ No newline at end of file diff --git a/users/tec.json b/users/tec.json index 52729e05..70297c63 100644 --- a/users/tec.json +++ b/users/tec.json @@ -1,6 +1,6 @@ { - "copyright": "Silvan T. Golega", - "url": "http://golega.de", - "email": "silvan@golega.de", - "format": "txt" -} + "copyright": "Silvan T. Golega", + "url": "http://golega.de", + "email": "silvan@golega.de", + "format": "txt" +} \ No newline at end of file diff --git a/users/teenst.json b/users/teenst.json index 48911d48..77c9f50b 100644 --- a/users/teenst.json +++ b/users/teenst.json @@ -1,3 +1,3 @@ { - "copyright": "teenst" -} + "copyright": "teenst" +} \ No newline at end of file diff --git a/users/tellnes.json b/users/tellnes.json index c3cbfa5a..72996fd5 100644 --- a/users/tellnes.json +++ b/users/tellnes.json @@ -1,3 +1,3 @@ { - "copyright": "Christian Tellnes" -} + "copyright": "Christian Tellnes" +} \ No newline at end of file diff --git a/users/tenacioushusky.json b/users/tenacioushusky.json index 7edc422a..ddbbf0bd 100644 --- a/users/tenacioushusky.json +++ b/users/tenacioushusky.json @@ -1,7 +1,7 @@ { - "copyright": "Joshua Hansen", - "url": "pages.mtu.edu/~joshuaha", - "email": "joshuaha@mtu.edu", - "theme": "material-light-blue", - "format": "html" -} + "copyright": "Joshua Hansen", + "url": "pages.mtu.edu/~joshuaha", + "email": "joshuaha@mtu.edu", + "theme": "material-light-blue", + "format": "html" +} \ No newline at end of file diff --git a/users/teppeis.json b/users/teppeis.json index a4d5a978..1bce0056 100644 --- a/users/teppeis.json +++ b/users/teppeis.json @@ -1,6 +1,6 @@ { - "copyright": "Teppei Sato", - "url": "https://github.com/teppeis", - "email": "teppeis@gmail.com", - "theme": "double-windsor" -} + "copyright": "Teppei Sato", + "url": "https://github.com/teppeis", + "email": "teppeis@gmail.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/terkel.json b/users/terkel.json index aec21b5c..c96aa533 100644 --- a/users/terkel.json +++ b/users/terkel.json @@ -1,4 +1,4 @@ { - "copyright": "Takeru Suzuki", - "url": "http://terkel.jp" -} + "copyright": "Takeru Suzuki", + "url": "http://terkel.jp" +} \ No newline at end of file diff --git a/users/test.json b/users/test.json index c3d6a0ed..a1d8bbce 100644 --- a/users/test.json +++ b/users/test.json @@ -1,3 +1,3 @@ { - "copyright": "Mike McNeil" -} + "copyright": "Mike McNeil" +} \ No newline at end of file diff --git a/users/test12.json b/users/test12.json index e8cabd2e..700c53fb 100644 --- a/users/test12.json +++ b/users/test12.json @@ -1,6 +1,6 @@ { - "copyright": "Ali shars", - "url": "http://alisharp.com", - "email": "ale@my.com", - "gravatar": true -} + "copyright": "Ali shars", + "url": "http://alisharp.com", + "email": "ale@my.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/testdouble.json b/users/testdouble.json index 832cf616..728af71a 100644 --- a/users/testdouble.json +++ b/users/testdouble.json @@ -1,6 +1,6 @@ { - "copyright": "Test Double, http://testdouble.com", - "url": "http://testdouble.com", - "email": "hello@testdouble.com", - "gravatar": true -} + "copyright": "Test Double, http://testdouble.com", + "url": "http://testdouble.com", + "email": "hello@testdouble.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/testermotherfucker.json b/users/testermotherfucker.json index 95e5160e..e45dcd66 100644 --- a/users/testermotherfucker.json +++ b/users/testermotherfucker.json @@ -1,3 +1,3 @@ { - "copyright": "Tester Mother Fucker" -} + "copyright": "Tester Mother Fucker" +} \ No newline at end of file diff --git a/users/tetwis.json b/users/tetwis.json index 9db3e2e2..9adf3c8a 100644 --- a/users/tetwis.json +++ b/users/tetwis.json @@ -1,6 +1,6 @@ { - "copyright": "Andrew McPherson", - "url": "ehgoodenough.com", - "email": "ehgoodenough@gmail.com", - "gravatar": true -} + "copyright": "Andrew McPherson", + "url": "ehgoodenough.com", + "email": "ehgoodenough@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/texty.json b/users/texty.json index fbe1805f..b8af0c98 100644 --- a/users/texty.json +++ b/users/texty.json @@ -1,6 +1,6 @@ { - "copyright": "{{TEXTY}}", - "url": "{{URL}}", - "email": "{{EMAIL}}", - "format": "txt" -} + "copyright": "{{TEXTY}}", + "url": "{{URL}}", + "email": "{{EMAIL}}", + "format": "txt" +} \ No newline at end of file diff --git a/users/texty1.json b/users/texty1.json index 9f84ec48..10ed4374 100644 --- a/users/texty1.json +++ b/users/texty1.json @@ -1,5 +1,5 @@ { - "copyright": "{{TEXTY}}", - "url": "{{URL}}", - "format": "txt" -} + "copyright": "{{TEXTY}}", + "url": "{{URL}}", + "format": "txt" +} \ No newline at end of file diff --git a/users/texty2.json b/users/texty2.json index 48711ea8..11e5a2a6 100644 --- a/users/texty2.json +++ b/users/texty2.json @@ -1,5 +1,5 @@ { - "copyright": "{{TEXTY}}, {{URL}}", - "url": "{{URL}}", - "format": "txt" -} + "copyright": "{{TEXTY}}, {{URL}}", + "url": "{{URL}}", + "format": "txt" +} \ No newline at end of file diff --git a/users/tf.json b/users/tf.json index af9aa730..e413c310 100644 --- a/users/tf.json +++ b/users/tf.json @@ -1,4 +1,4 @@ { - "copyright": "Johannes J. Schmidt, TF, http://die-tf.de", - "url": "http://die-tf.de" -} + "copyright": "Johannes J. Schmidt, TF, http://die-tf.de", + "url": "http://die-tf.de" +} \ No newline at end of file diff --git a/users/th.json b/users/th.json index 96b4281e..7d4b87b1 100644 --- a/users/th.json +++ b/users/th.json @@ -1,5 +1,5 @@ { - "copyright": "Trey Hunner", - "url": "http://treyhunner.com", - "theme": "default" -} + "copyright": "Trey Hunner", + "url": "http://treyhunner.com", + "theme": "default" +} \ No newline at end of file diff --git a/users/thangeda.json b/users/thangeda.json index 22c2a0e8..03de7a0b 100644 --- a/users/thangeda.json +++ b/users/thangeda.json @@ -1,6 +1,6 @@ { - "copyright": "Pranay Thangeda", - "email": "contact@prny.me", - "gravatar": false, - "theme": "material" -} + "copyright": "Pranay Thangeda", + "email": "contact@prny.me", + "gravatar": false, + "theme": "material" +} \ No newline at end of file diff --git a/users/thasmo.json b/users/thasmo.json index 5961baeb..285c18f3 100644 --- a/users/thasmo.json +++ b/users/thasmo.json @@ -1,7 +1,7 @@ { - "copyright": "Thomas Deinhamer", - "url": "https://thasmo.com/", - "email": "thasmo@gmail.com", - "format": "html", - "gravatar": true -} + "copyright": "Thomas Deinhamer", + "url": "https://thasmo.com/", + "email": "thasmo@gmail.com", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/the-zumata-team.json b/users/the-zumata-team.json index e3768a76..9f191a40 100644 --- a/users/the-zumata-team.json +++ b/users/the-zumata-team.json @@ -1,6 +1,6 @@ { - "copyright": "The Zumata Team", - "url": "https://github.com/Zumata", - "email": "gary.theis@zumata.com", - "format": "html" -} + "copyright": "The Zumata Team", + "url": "https://github.com/Zumata", + "email": "gary.theis@zumata.com", + "format": "html" +} \ No newline at end of file diff --git a/users/theboshy.json b/users/theboshy.json index 27def6c6..519891a2 100644 --- a/users/theboshy.json +++ b/users/theboshy.json @@ -1,7 +1,7 @@ { - "copyright": "Peter Lobo, http://theboshy.com", - "url": "", - "email": "akumaokami10@gmail.com", - "gravatar": true, - "theme": "dusk" -} + "copyright": "Peter Lobo, http://theboshy.com", + "url": "", + "email": "akumaokami10@gmail.com", + "gravatar": true, + "theme": "dusk" +} \ No newline at end of file diff --git a/users/thedersen.json b/users/thedersen.json index de45373b..6e6f8952 100644 --- a/users/thedersen.json +++ b/users/thedersen.json @@ -1,4 +1,4 @@ { - "copyright": "Thomas Pedersen, http://thedersen.com", - "url": "http://thedersen.com" -} + "copyright": "Thomas Pedersen, http://thedersen.com", + "url": "http://thedersen.com" +} \ No newline at end of file diff --git a/users/theflow0360.json b/users/theflow0360.json index 86427ed7..5259bd7b 100644 --- a/users/theflow0360.json +++ b/users/theflow0360.json @@ -1,7 +1,7 @@ { - "copyright": "Florian Koch", - "email": "floriankochde@arcor.de", - "format": "html", - "gravatar": true, - "theme": "hipster-gray" -} + "copyright": "Florian Koch", + "email": "floriankochde@arcor.de", + "format": "html", + "gravatar": true, + "theme": "hipster-gray" +} \ No newline at end of file diff --git a/users/thehippo.json b/users/thehippo.json index 2dded9a7..6207b6bb 100644 --- a/users/thehippo.json +++ b/users/thehippo.json @@ -1,3 +1,3 @@ { - "copyright": "Philipp Klose" -} + "copyright": "Philipp Klose" +} \ No newline at end of file diff --git a/users/thehodge.json b/users/thehodge.json index f6cf42e6..19f49ff8 100644 --- a/users/thehodge.json +++ b/users/thehodge.json @@ -1,4 +1,4 @@ { - "copyright": "Dom Hodgson", - "url": "http://thehodge.co.uk/" -} + "copyright": "Dom Hodgson", + "url": "http://thehodge.co.uk/" +} \ No newline at end of file diff --git a/users/thekhenzie.json b/users/thekhenzie.json index 710abbd3..6b54dfda 100644 --- a/users/thekhenzie.json +++ b/users/thekhenzie.json @@ -1,6 +1,6 @@ { - "copyright": "Harold Khen Daniel Baniqued, http://khendaniel.com", - "url": "http://khendaniel.com", - "email": "thekhenzie@gmail.com", - "gravatar": true -} + "copyright": "Harold Khen Daniel Baniqued, http://khendaniel.com", + "url": "http://khendaniel.com", + "email": "thekhenzie@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/thelonelyghost.json b/users/thelonelyghost.json index 026b95c0..087d2981 100644 --- a/users/thelonelyghost.json +++ b/users/thelonelyghost.json @@ -1,7 +1,7 @@ { - "copyright": "David Alexander", - "url": "http://www.thelonelyghost.com", - "email": "opensource@thelonelyghost.com", - "gravatar": true, - "theme": "material-brown" -} + "copyright": "David Alexander", + "url": "http://www.thelonelyghost.com", + "email": "opensource@thelonelyghost.com", + "gravatar": true, + "theme": "material-brown" +} \ No newline at end of file diff --git a/users/theodi.json b/users/theodi.json index d6b8eec3..2443dd49 100644 --- a/users/theodi.json +++ b/users/theodi.json @@ -1,6 +1,6 @@ { - "copyright": "The Open Data Institute", - "url": "http://theodi.org", - "email": "ops@theodi.org", - "gravatar": true -} + "copyright": "The Open Data Institute", + "url": "http://theodi.org", + "email": "ops@theodi.org", + "gravatar": true +} \ No newline at end of file diff --git a/users/therebelrobot.json b/users/therebelrobot.json index 3fc370e0..54ea4bdb 100644 --- a/users/therebelrobot.json +++ b/users/therebelrobot.json @@ -1,8 +1,8 @@ { - "copyright": "Trent Oswald (@therebelrobot) ", - "url": "https://therebelrobot.com", - "email": "trentoswald@therebelrobot.com", - "gravatar": true, - "format": "html", - "theme": "material-deep-orange" -} + "copyright": "Trent Oswald (@therebelrobot) ", + "url": "https://therebelrobot.com", + "email": "trentoswald@therebelrobot.com", + "gravatar": true, + "format": "html", + "theme": "material-deep-orange" +} \ No newline at end of file diff --git a/users/thescoundrels.json b/users/thescoundrels.json index 12574aa2..739bd454 100644 --- a/users/thescoundrels.json +++ b/users/thescoundrels.json @@ -1,6 +1,6 @@ { - "copyright": "The League of Magnificent Scoundrels", - "url": "http://thescoundrels.net", - "email": "support@thescoundrels.net", - "theme": "double-windsor" -} + "copyright": "The League of Magnificent Scoundrels", + "url": "http://thescoundrels.net", + "email": "support@thescoundrels.net", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/theuves.json b/users/theuves.json index 9e6e8b0b..4ad1a203 100644 --- a/users/theuves.json +++ b/users/theuves.json @@ -1,3 +1,3 @@ { - "copyright": "Matheus Alves" -} + "copyright": "Matheus Alves" +} \ No newline at end of file diff --git a/users/thewebguy.json b/users/thewebguy.json index bfdc4dbd..475d6311 100644 --- a/users/thewebguy.json +++ b/users/thewebguy.json @@ -1,6 +1,6 @@ { - "copyright": "Kevin Khandjian", - "url": "http://kevin.fm", - "email": "kevinkhandjian@gmail.com", - "format": "txt" -} + "copyright": "Kevin Khandjian", + "url": "http://kevin.fm", + "email": "kevinkhandjian@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/theyranos.json b/users/theyranos.json index a81de30a..509c0803 100644 --- a/users/theyranos.json +++ b/users/theyranos.json @@ -1,3 +1,3 @@ { - "copyright": "Dan Charney" -} + "copyright": "Dan Charney" +} \ No newline at end of file diff --git a/users/thi.json b/users/thi.json index 4eb4e07c..57bbcccd 100644 --- a/users/thi.json +++ b/users/thi.json @@ -1,3 +1,3 @@ { - "copyright": "Doan Truong Thi" -} + "copyright": "Doan Truong Thi" +} \ No newline at end of file diff --git a/users/thiagohagy.json b/users/thiagohagy.json index 8dd74998..618187f8 100644 --- a/users/thiagohagy.json +++ b/users/thiagohagy.json @@ -1,5 +1,5 @@ { - "copyright": "Thiago A. Hagy", - "email": "thiagohagy@hotmail.com", - "gravatar": true -} + "copyright": "Thiago A. Hagy", + "email": "thiagohagy@hotmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/thibautd.json b/users/thibautd.json index a92cf22b..1db74c2f 100644 --- a/users/thibautd.json +++ b/users/thibautd.json @@ -1,4 +1,4 @@ { - "copyright": "Thibaut DIRLIK", - "email": "thibaut.dirlik@gmail.com" -} + "copyright": "Thibaut DIRLIK", + "email": "thibaut.dirlik@gmail.com" +} \ No newline at end of file diff --git a/users/thingsinjars.json b/users/thingsinjars.json index bde219ca..ed28fbaa 100644 --- a/users/thingsinjars.json +++ b/users/thingsinjars.json @@ -1,6 +1,6 @@ { - "copyright": "Simon Madine, http://thingsinjars.com", - "url": "http://thingsinjars.com", - "email": "simon@thingsinjars.com", - "theme": "double-windsor" -} + "copyright": "Simon Madine, http://thingsinjars.com", + "url": "http://thingsinjars.com", + "email": "simon@thingsinjars.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/thj.json b/users/thj.json index 0f83f2cf..9f17e501 100644 --- a/users/thj.json +++ b/users/thj.json @@ -1,4 +1,4 @@ { - "copyright": "The Humble Jester", - "email": "the.humble.jester@gmail.com" -} + "copyright": "The Humble Jester", + "email": "the.humble.jester@gmail.com" +} \ No newline at end of file diff --git a/users/tholu.json b/users/tholu.json index 3fc69458..7ee5bbf6 100644 --- a/users/tholu.json +++ b/users/tholu.json @@ -1,3 +1,3 @@ { - "copyright": "Thomas Lutz" -} + "copyright": "Thomas Lutz" +} \ No newline at end of file diff --git a/users/thomas.json b/users/thomas.json index 4645d708..8604c311 100644 --- a/users/thomas.json +++ b/users/thomas.json @@ -1,6 +1,6 @@ { - "copyright": "Thomas Stachl", - "email": "thomas@stachl.me", - "url": "http://stachl.me", - "theme": "opensans" -} + "copyright": "Thomas Stachl", + "email": "thomas@stachl.me", + "url": "http://stachl.me", + "theme": "opensans" +} \ No newline at end of file diff --git a/users/thomd.json b/users/thomd.json index e3418c74..fb7c108a 100644 --- a/users/thomd.json +++ b/users/thomd.json @@ -1,3 +1,3 @@ { - "copyright": "Thomas Depierre" -} + "copyright": "Thomas Depierre" +} \ No newline at end of file diff --git a/users/thompsonemerson.json b/users/thompsonemerson.json index ff11d89a..5b77b47b 100644 --- a/users/thompsonemerson.json +++ b/users/thompsonemerson.json @@ -1,3 +1,3 @@ { - "copyright": "Emerson Thompson" -} + "copyright": "Emerson Thompson" +} \ No newline at end of file diff --git a/users/throger.json b/users/throger.json index 558899e6..1d1ff6e4 100644 --- a/users/throger.json +++ b/users/throger.json @@ -1,3 +1,3 @@ { - "copyright": "Thomas Roger" -} + "copyright": "Thomas Roger" +} \ No newline at end of file diff --git a/users/thulioph.json b/users/thulioph.json index 4b710856..6c2f512c 100644 --- a/users/thulioph.json +++ b/users/thulioph.json @@ -1,6 +1,6 @@ { - "copyright": "Thulio Philipe", - "url": "http://thulioph.com", - "email": "thulioph@gmail.com", - "format": "html" -} + "copyright": "Thulio Philipe", + "url": "http://thulioph.com", + "email": "thulioph@gmail.com", + "format": "html" +} \ No newline at end of file diff --git a/users/thypon.json b/users/thypon.json index 3a14e2c1..57eebbe8 100644 --- a/users/thypon.json +++ b/users/thypon.json @@ -1,5 +1,5 @@ { - "copyright": "Andrea Brancaleoni", - "email": "miwaxe@github.com", - "format": "txt" -} + "copyright": "Andrea Brancaleoni", + "email": "miwaxe@github.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/tiaan.json b/users/tiaan.json index 88017f61..0d696c2e 100644 --- a/users/tiaan.json +++ b/users/tiaan.json @@ -1,6 +1,6 @@ { - "copyright": "Tiaan du Plessis", - "url": "https://github.com/mightyCrow", - "email": "tiaanduplessis@hotmail.com", - "gravatar": true -} + "copyright": "Tiaan du Plessis", + "url": "https://github.com/mightyCrow", + "email": "tiaanduplessis@hotmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/tian.json b/users/tian.json index c3ddcae2..638832f8 100644 --- a/users/tian.json +++ b/users/tian.json @@ -1,6 +1,6 @@ { - "copyright": "Tian Permana", - "url": "http://hello.tianpermana.com", - "email": "hello@tianpermana.com", - "format": "html" -} + "copyright": "Tian Permana", + "url": "http://hello.tianpermana.com", + "email": "hello@tianpermana.com", + "format": "html" +} \ No newline at end of file diff --git a/users/ticking.json b/users/ticking.json index 6ce4a39f..cd1a0789 100644 --- a/users/ticking.json +++ b/users/ticking.json @@ -1,6 +1,6 @@ { - "copyright": "Jan-Paul Bultmann (ticking)", - "url": "http://undeadco.de", - "email": "ticking@me.com", - "gravatar": true -} + "copyright": "Jan-Paul Bultmann (ticking)", + "url": "http://undeadco.de", + "email": "ticking@me.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/tigra.json b/users/tigra.json index b965edce..a9e8ac7c 100644 --- a/users/tigra.json +++ b/users/tigra.json @@ -1,3 +1,3 @@ { - "copyright": "Tigra Astronomy" -} + "copyright": "Tigra Astronomy" +} \ No newline at end of file diff --git a/users/tih.json b/users/tih.json index 1a520125..7be01e2e 100644 --- a/users/tih.json +++ b/users/tih.json @@ -1,6 +1,6 @@ { - "copyright": "Hugo Jobling", - "url": "http://www.thisishugo.com", - "email": "me@thisishugo.com", - "format": "txt" -} + "copyright": "Hugo Jobling", + "url": "http://www.thisishugo.com", + "email": "me@thisishugo.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/tilgovi.json b/users/tilgovi.json index b9d14bef..1d4ee4e0 100644 --- a/users/tilgovi.json +++ b/users/tilgovi.json @@ -1,5 +1,5 @@ { - "copyright": "Randall Leeds", - "email": "randall@bleeds.info", - "url": "http://randall.bleeds.info/" -} + "copyright": "Randall Leeds", + "email": "randall@bleeds.info", + "url": "http://randall.bleeds.info/" +} \ No newline at end of file diff --git a/users/tim.json b/users/tim.json index 54a453c9..d63740e5 100644 --- a/users/tim.json +++ b/users/tim.json @@ -1,3 +1,3 @@ { - "copyright": "Timothy Andrew" -} + "copyright": "Timothy Andrew" +} \ No newline at end of file diff --git a/users/timjb.json b/users/timjb.json index 2a1dbbc9..be04a425 100644 --- a/users/timjb.json +++ b/users/timjb.json @@ -1,3 +1,3 @@ { - "copyright": "Tim Baumann, http://timbaumann.info" -} + "copyright": "Tim Baumann, http://timbaumann.info" +} \ No newline at end of file diff --git a/users/timmolendijk.json b/users/timmolendijk.json index 00a96e3d..61d85590 100644 --- a/users/timmolendijk.json +++ b/users/timmolendijk.json @@ -1,4 +1,4 @@ { - "copyright": "Tim Molendijk", - "url": "http://timmolendijk.nl/" -} + "copyright": "Tim Molendijk", + "url": "http://timmolendijk.nl/" +} \ No newline at end of file diff --git a/users/timon-josh.json b/users/timon-josh.json index e9697c24..ab778bda 100644 --- a/users/timon-josh.json +++ b/users/timon-josh.json @@ -1,3 +1,3 @@ { - "copyright": "Timon Vonk & Josh Kalderimis" -} + "copyright": "Timon Vonk & Josh Kalderimis" +} \ No newline at end of file diff --git a/users/timothy.json b/users/timothy.json index 54a453c9..d63740e5 100644 --- a/users/timothy.json +++ b/users/timothy.json @@ -1,3 +1,3 @@ { - "copyright": "Timothy Andrew" -} + "copyright": "Timothy Andrew" +} \ No newline at end of file diff --git a/users/timothyandrew.json b/users/timothyandrew.json index 54a453c9..d63740e5 100644 --- a/users/timothyandrew.json +++ b/users/timothyandrew.json @@ -1,3 +1,3 @@ { - "copyright": "Timothy Andrew" -} + "copyright": "Timothy Andrew" +} \ No newline at end of file diff --git a/users/timtjtim.json b/users/timtjtim.json index 5a8fa978..68d61101 100644 --- a/users/timtjtim.json +++ b/users/timtjtim.json @@ -1,8 +1,8 @@ { - "copyright": "Tim Hitchins, http://timonline.tk", - "url": "http://timonline.tk", - "email": "contact@timonline.tk", - "format": "html", - "gravatar": true, - "theme": "material" -} + "copyright": "Tim Hitchins, http://timonline.tk", + "url": "http://timonline.tk", + "email": "contact@timonline.tk", + "format": "html", + "gravatar": true, + "theme": "material" +} \ No newline at end of file diff --git a/users/timuruski.json b/users/timuruski.json index 0c6d7f6e..a6e8e74e 100644 --- a/users/timuruski.json +++ b/users/timuruski.json @@ -1,3 +1,3 @@ { - "copyright": "Tim Uruski" -} + "copyright": "Tim Uruski" +} \ No newline at end of file diff --git a/users/timzenner.json b/users/timzenner.json index 30c93256..757b4bde 100644 --- a/users/timzenner.json +++ b/users/timzenner.json @@ -1,6 +1,6 @@ { - "copyright": "Tim Zenner", - "url": "http://zennsoftworks.dyndns.org/", - "email": "epidemicz@gmail.com", - "format": "txt" -} + "copyright": "Tim Zenner", + "url": "http://zennsoftworks.dyndns.org/", + "email": "epidemicz@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/tiryoh.json b/users/tiryoh.json index bc463c14..c7632d2c 100644 --- a/users/tiryoh.json +++ b/users/tiryoh.json @@ -1,7 +1,7 @@ { - "copyright": "Daisuke Sato", - "url": "https://tiryoh.com", - "email": "tiryoh@gmail.com", - "theme": "material", - "gravatar": true -} + "copyright": "Daisuke Sato", + "url": "https://tiryoh.com", + "email": "tiryoh@gmail.com", + "theme": "material", + "gravatar": true +} \ No newline at end of file diff --git a/users/tkahn.json b/users/tkahn.json index 55e54616..f0841579 100644 --- a/users/tkahn.json +++ b/users/tkahn.json @@ -1,6 +1,6 @@ { - "copyright": "Thomas Kahn, http://tkahn.se", - "url": "http://tkahn.se", - "theme": "flesch", - "gravatar": true -} + "copyright": "Thomas Kahn, http://tkahn.se", + "url": "http://tkahn.se", + "theme": "flesch", + "gravatar": true +} \ No newline at end of file diff --git a/users/tleb.json b/users/tleb.json index 301f67dd..32860217 100644 --- a/users/tleb.json +++ b/users/tleb.json @@ -1,8 +1,8 @@ { - "copyright": "Th\u00c3\u00a9o Lebrun", - "url": "https://github.com/tleb", - "email": "tleb@openmailbox.org", - "format": "html", - "gravatar": false, - "theme": "plaintext" -} + "copyright": "Théo Lebrun", + "url": "https://github.com/tleb", + "email": "tleb@openmailbox.org", + "format": "html", + "gravatar": false, + "theme": "plaintext" +} \ No newline at end of file diff --git a/users/tloep.json b/users/tloep.json index e5734e3d..9206d16f 100644 --- a/users/tloep.json +++ b/users/tloep.json @@ -1,5 +1,5 @@ { - "copyright": "The League of Extraordinary Programmers", - "url": "http://tloep.tk/", - "theme": "afterdark" -} + "copyright": "The League of Extraordinary Programmers", + "url": "http://tloep.tk/", + "theme": "afterdark" +} \ No newline at end of file diff --git a/users/tlvince.json b/users/tlvince.json index 413f428b..11424b98 100644 --- a/users/tlvince.json +++ b/users/tlvince.json @@ -1,4 +1,4 @@ { - "copyright": "Tom Vincent", - "url": "https://tlvince.com/contact" -} + "copyright": "Tom Vincent", + "url": "https://tlvince.com/contact" +} \ No newline at end of file diff --git a/users/tmn.json b/users/tmn.json index f951a587..4bfbde31 100644 --- a/users/tmn.json +++ b/users/tmn.json @@ -1,7 +1,7 @@ { - "copyright": "Tri M. Nguyen", - "url": "http://tmn.io", - "email": "mail@trimn.net", - "format": "html", - "theme": "flesch" -} + "copyright": "Tri M. Nguyen", + "url": "http://tmn.io", + "email": "mail@trimn.net", + "format": "html", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/tmpvar.json b/users/tmpvar.json index 4681e896..3b804a7c 100644 --- a/users/tmpvar.json +++ b/users/tmpvar.json @@ -1,6 +1,6 @@ { - "copyright": "Elijah Insua", - "url": "http://tmpvar.com", - "email": "tmpvar@gmail.com", - "format": "txt" -} + "copyright": "Elijah Insua", + "url": "http://tmpvar.com", + "email": "tmpvar@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/tmw.json b/users/tmw.json index 96e6ac64..64aab221 100644 --- a/users/tmw.json +++ b/users/tmw.json @@ -1,4 +1,4 @@ { - "copyright": "TMWUnlimited...", - "url": "http://tmwunlimited.com" -} + "copyright": "TMWUnlimited...", + "url": "http://tmwunlimited.com" +} \ No newline at end of file diff --git a/users/tnoda.json b/users/tnoda.json index db5e3ef9..feb3bb23 100644 --- a/users/tnoda.json +++ b/users/tnoda.json @@ -1,3 +1,3 @@ { - "copyright": "Takahiro Noda" -} + "copyright": "Takahiro Noda" +} \ No newline at end of file diff --git a/users/tnviking.json b/users/tnviking.json index 455d1c92..c7af6a52 100644 --- a/users/tnviking.json +++ b/users/tnviking.json @@ -1,8 +1,8 @@ { - "copyright": "Martin Bratteng, https://bratteng.xyz", - "format": "html", - "email": "ole-martin@bratteng.xyz", - "gravatar": true, - "url": "https://bratteng.xyz", - "theme": "material-deep-purple" -} + "copyright": "Martin Bratteng, https://bratteng.xyz", + "format": "html", + "email": "ole-martin@bratteng.xyz", + "gravatar": true, + "url": "https://bratteng.xyz", + "theme": "material-deep-purple" +} \ No newline at end of file diff --git a/users/to4iki.json b/users/to4iki.json index adc248a2..c6f243f4 100644 --- a/users/to4iki.json +++ b/users/to4iki.json @@ -1,4 +1,4 @@ { - "copyright": "Tsk Takezawa", - "url": "https://github.com/to4iki" -} + "copyright": "Tsk Takezawa", + "url": "https://github.com/to4iki" +} \ No newline at end of file diff --git a/users/toblea.json b/users/toblea.json index 584bb23c..5e273d04 100644 --- a/users/toblea.json +++ b/users/toblea.json @@ -1,3 +1,3 @@ { - "copyright": "Tobias Leander" -} + "copyright": "Tobias Leander" +} \ No newline at end of file diff --git a/users/tocttou.json b/users/tocttou.json index 8db8948f..63c3e4c2 100644 --- a/users/tocttou.json +++ b/users/tocttou.json @@ -1,6 +1,6 @@ { - "copyright": "Ashish Chaudhary", - "url": "https://ashishchaudhary.in", - "email": "me@ashishchaudhary.in", - "theme": "black-beauty" -} + "copyright": "Ashish Chaudhary", + "url": "https://ashishchaudhary.in", + "email": "me@ashishchaudhary.in", + "theme": "black-beauty" +} \ No newline at end of file diff --git a/users/todor.json b/users/todor.json index d9e51274..298a3c16 100644 --- a/users/todor.json +++ b/users/todor.json @@ -1,4 +1,4 @@ { - "copyright": "Todor Dimitrov, http://todordimitrov.de", - "url": "http://todordimitrov.de" -} + "copyright": "Todor Dimitrov, http://todordimitrov.de", + "url": "http://todordimitrov.de" +} \ No newline at end of file diff --git a/users/toedter.json b/users/toedter.json index 6f13e1c2..e1982ee0 100644 --- a/users/toedter.json +++ b/users/toedter.json @@ -1,5 +1,5 @@ { - "copyright": "Kai Toedter", - "url": "http://toedter.com", - "email": "kai@toedter.com" -} + "copyright": "Kai Toedter", + "url": "http://toedter.com", + "email": "kai@toedter.com" +} \ No newline at end of file diff --git a/users/tokuhirom.json b/users/tokuhirom.json index 486148b3..c2337c82 100644 --- a/users/tokuhirom.json +++ b/users/tokuhirom.json @@ -1,6 +1,6 @@ { - "copyright": "Tokuhiro Matsuno, http://64p.org/", - "email": "tokuhirom@gmail.com", - "url": "http://64p.org", - "theme": "orange" -} + "copyright": "Tokuhiro Matsuno, http://64p.org/", + "email": "tokuhirom@gmail.com", + "url": "http://64p.org", + "theme": "orange" +} \ No newline at end of file diff --git a/users/tolu.json b/users/tolu.json index aae36620..d2c4eb61 100644 --- a/users/tolu.json +++ b/users/tolu.json @@ -1,7 +1,7 @@ { - "copyright": "Tobias Lundin", - "url": "http://tobiaslundin.se", - "email": "tobias.lundin@gmail.com", - "gravatar": true, - "theme": "material" -} + "copyright": "Tobias Lundin", + "url": "http://tobiaslundin.se", + "email": "tobias.lundin@gmail.com", + "gravatar": true, + "theme": "material" +} \ No newline at end of file diff --git a/users/tom.json b/users/tom.json index e7dd4134..e01c10f8 100644 --- a/users/tom.json +++ b/users/tom.json @@ -1,7 +1,7 @@ { - "copyright": "Tom Lavenziano", - "email": "tlavenziano@gmail.com", - "format": "html", - "gravatar": "false", - "theme": "dusk" -} + "copyright": "Tom Lavenziano", + "email": "tlavenziano@gmail.com", + "format": "html", + "gravatar": "false", + "theme": "dusk" +} \ No newline at end of file diff --git a/users/tomalec.json b/users/tomalec.json index 86023447..a9c9bc5a 100644 --- a/users/tomalec.json +++ b/users/tomalec.json @@ -1,4 +1,4 @@ { - "copyright": "Tomek Wytrebowicz", - "url": "https://github.com/tomalec" -} + "copyright": "Tomek Wytrebowicz", + "url": "https://github.com/tomalec" +} \ No newline at end of file diff --git a/users/tomasmcguinness.json b/users/tomasmcguinness.json index 76c96248..d5df4aa9 100644 --- a/users/tomasmcguinness.json +++ b/users/tomasmcguinness.json @@ -1,5 +1,5 @@ { - "copyright": "Tomas McGuinness, http://www.tomasmcguinness.com", - "url": "http://www.tomasmcguinness.com", - "email": "tomas@tomasmcguinness.com" -} + "copyright": "Tomas McGuinness, http://www.tomasmcguinness.com", + "url": "http://www.tomasmcguinness.com", + "email": "tomas@tomasmcguinness.com" +} \ No newline at end of file diff --git a/users/tomass1996.json b/users/tomass1996.json index 8e1ac12d..fbef8f79 100644 --- a/users/tomass1996.json +++ b/users/tomass1996.json @@ -1,7 +1,7 @@ { - "copyright": "Thomas Farr, http://tomass1996.github.com", - "url": "http://tomass1996.github.com", - "email": "farr.thomas@gmail.com", - "format": "html", - "theme": "xtansia" -} + "copyright": "Thomas Farr, http://tomass1996.github.com", + "url": "http://tomass1996.github.com", + "email": "farr.thomas@gmail.com", + "format": "html", + "theme": "xtansia" +} \ No newline at end of file diff --git a/users/tombuildsstuff.json b/users/tombuildsstuff.json index 52d30c94..8f584dc3 100644 --- a/users/tombuildsstuff.json +++ b/users/tombuildsstuff.json @@ -1,3 +1,3 @@ { - "copyright": "Tom Harvey" -} + "copyright": "Tom Harvey" +} \ No newline at end of file diff --git a/users/tomchentw.json b/users/tomchentw.json index 803ea8a6..0f08c646 100644 --- a/users/tomchentw.json +++ b/users/tomchentw.json @@ -1,6 +1,6 @@ { - "copyright": "Tom Chen", - "url": "http://www.tomchentw.com", - "email": "developer@tomchentw.com", - "gravatar": true -} + "copyright": "Tom Chen", + "url": "http://www.tomchentw.com", + "email": "developer@tomchentw.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/tomdavies.json b/users/tomdavies.json index 7153adf4..5993535b 100644 --- a/users/tomdavies.json +++ b/users/tomdavies.json @@ -1,6 +1,6 @@ { - "copyright": "Tom Davies", - "url": "http://tomdavies.net", - "email": "mail@tomdavies.net", - "format": "txt" -} + "copyright": "Tom Davies", + "url": "http://tomdavies.net", + "email": "mail@tomdavies.net", + "format": "txt" +} \ No newline at end of file diff --git a/users/tommarshall.json b/users/tommarshall.json index 38ac2e0b..7759619e 100644 --- a/users/tommarshall.json +++ b/users/tommarshall.json @@ -1,3 +1,3 @@ { - "copyright": "Tom Marshall" -} + "copyright": "Tom Marshall" +} \ No newline at end of file diff --git a/users/tommy.json b/users/tommy.json index e48a095b..8b55fd96 100644 --- a/users/tommy.json +++ b/users/tommy.json @@ -1,7 +1,7 @@ { - "copyright": "Tommy Pujol", - "url": "https://tommypujol.cf", - "email": "tommy@pujol.cf", - "format": "html", - "theme": "hacker" -} + "copyright": "Tommy Pujol", + "url": "https://tommypujol.cf", + "email": "tommy@pujol.cf", + "format": "html", + "theme": "hacker" +} \ No newline at end of file diff --git a/users/tomohiro.json b/users/tomohiro.json index 83b78121..5d266ef6 100644 --- a/users/tomohiro.json +++ b/users/tomohiro.json @@ -1,5 +1,5 @@ { - "copyright": "Tomohiro Taira, http://tomohiro.me", - "url": "http://tomohiro.me", - "theme": "afterdark" -} + "copyright": "Tomohiro Taira, http://tomohiro.me", + "url": "http://tomohiro.me", + "theme": "afterdark" +} \ No newline at end of file diff --git a/users/tomoya.json b/users/tomoya.json index fc3c4ea3..aff80f79 100644 --- a/users/tomoya.json +++ b/users/tomoya.json @@ -1,5 +1,5 @@ { - "copyright": "Tomoya Otake", - "url": "http://d.hatena.ne.jp/tomoya/", - "theme": "double-windsor" -} + "copyright": "Tomoya Otake", + "url": "http://d.hatena.ne.jp/tomoya/", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/tomraithel.json b/users/tomraithel.json index 7772e4b3..bea85506 100644 --- a/users/tomraithel.json +++ b/users/tomraithel.json @@ -1,7 +1,7 @@ { - "copyright": "Tom Raithel", - "url": "http://www.tomraithel.de", - "email": "hello@tomraithel.de", - "format": "html", - "theme": "flesch" -} + "copyright": "Tom Raithel", + "url": "http://www.tomraithel.de", + "email": "hello@tomraithel.de", + "format": "html", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/toneden.json b/users/toneden.json index 98a28b8d..912217fd 100644 --- a/users/toneden.json +++ b/users/toneden.json @@ -1,3 +1,3 @@ { - "copyright": "ToneDen, Inc" -} + "copyright": "ToneDen, Inc" +} \ No newline at end of file diff --git a/users/tonekk.json b/users/tonekk.json index 70fd855c..17b3258c 100644 --- a/users/tonekk.json +++ b/users/tonekk.json @@ -1,4 +1,4 @@ { - "copyright": "Finn Heemeyer", - "url": "https://github.com/tonekk" -} + "copyright": "Finn Heemeyer", + "url": "https://github.com/tonekk" +} \ No newline at end of file diff --git a/users/tonivdv.json b/users/tonivdv.json index 77501795..4ec7f5e6 100644 --- a/users/tonivdv.json +++ b/users/tonivdv.json @@ -1,6 +1,6 @@ { - "copyright": "Toni Van de Voorde", - "email": "toni.vdv@gmail.com", - "format": "html", - "theme": "double-windsor" -} + "copyright": "Toni Van de Voorde", + "email": "toni.vdv@gmail.com", + "format": "html", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/tony.json b/users/tony.json index 17266889..12a781f1 100644 --- a/users/tony.json +++ b/users/tony.json @@ -1,7 +1,7 @@ { - "copyright": "Tony Findeisen", - "url": "http://tonyfindeisen.de", - "email": "kontakt@tonyfindeisen.de", - "theme": "friendly", - "gravatar": true -} + "copyright": "Tony Findeisen", + "url": "http://tonyfindeisen.de", + "email": "kontakt@tonyfindeisen.de", + "theme": "friendly", + "gravatar": true +} \ No newline at end of file diff --git a/users/tonyb.json b/users/tonyb.json index 55d525c8..29cad5a8 100644 --- a/users/tonyb.json +++ b/users/tonyb.json @@ -1,3 +1,3 @@ { - "copyright": "Tony Biondo" -} + "copyright": "Tony Biondo" +} \ No newline at end of file diff --git a/users/tonyb486.json b/users/tonyb486.json index 55d525c8..29cad5a8 100644 --- a/users/tonyb486.json +++ b/users/tonyb486.json @@ -1,3 +1,3 @@ { - "copyright": "Tony Biondo" -} + "copyright": "Tony Biondo" +} \ No newline at end of file diff --git a/users/tonypelletier.json b/users/tonypelletier.json index e5e73eb1..12cdcae2 100644 --- a/users/tonypelletier.json +++ b/users/tonypelletier.json @@ -1,3 +1,3 @@ { - "copyright": "Tony Pelletier" -} + "copyright": "Tony Pelletier" +} \ No newline at end of file diff --git a/users/tonyphelps.json b/users/tonyphelps.json index 3931704f..fa1f759e 100644 --- a/users/tonyphelps.json +++ b/users/tonyphelps.json @@ -1,5 +1,5 @@ { - "copyright": "Anthony Phelps", - "url": "http://tonyphelps.net", - "email": "anthonypphelps@gmail.com" -} + "copyright": "Anthony Phelps", + "url": "http://tonyphelps.net", + "email": "anthonypphelps@gmail.com" +} \ No newline at end of file diff --git a/users/tonyskn.json b/users/tonyskn.json index b404501c..6fd59c20 100644 --- a/users/tonyskn.json +++ b/users/tonyskn.json @@ -1,4 +1,4 @@ { - "copyright": "Tony Sokhon, http://twitter.com/tonyskn", - "url": "http://tonyskn.me" -} + "copyright": "Tony Sokhon, http://twitter.com/tonyskn", + "url": "http://tonyskn.me" +} \ No newline at end of file diff --git a/users/toolbear.json b/users/toolbear.json index 69339545..49642022 100644 --- a/users/toolbear.json +++ b/users/toolbear.json @@ -1,6 +1,6 @@ { - "copyright": "Tim Taylor, http://tool-man.org", - "url": "http://tool-man.org/", - "email": "tim@tool-man.org", - "gravatar": true -} + "copyright": "Tim Taylor, http://tool-man.org", + "url": "http://tool-man.org/", + "email": "tim@tool-man.org", + "gravatar": true +} \ No newline at end of file diff --git a/users/toomore.json b/users/toomore.json index 6bb90db1..96486ae1 100644 --- a/users/toomore.json +++ b/users/toomore.json @@ -1,7 +1,7 @@ { - "copyright": "Toomore Chiang, http://toomore.net/", - "url": "http://toomore.net", - "theme": "silver-style", - "email": "toomore0929@gmail.com", - "gravatar": true -} + "copyright": "Toomore Chiang, http://toomore.net/", + "url": "http://toomore.net", + "theme": "silver-style", + "email": "toomore0929@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/toonketels.json b/users/toonketels.json index dc7ebe07..d084be1a 100644 --- a/users/toonketels.json +++ b/users/toonketels.json @@ -1,4 +1,4 @@ { - "copyright": "Toon Ketels", - "url": "http://toon.io" -} + "copyright": "Toon Ketels", + "url": "http://toon.io" +} \ No newline at end of file diff --git a/users/torjue.json b/users/torjue.json index c30f0cdc..9d7d415c 100644 --- a/users/torjue.json +++ b/users/torjue.json @@ -1,5 +1,5 @@ { - "copyright": "Torjus Eidet", - "email": "torjue@gmail.com", - "theme": "flesch" -} + "copyright": "Torjus Eidet", + "email": "torjue@gmail.com", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/tornqvist.json b/users/tornqvist.json index 267e82d0..7af6a5e1 100644 --- a/users/tornqvist.json +++ b/users/tornqvist.json @@ -1,5 +1,5 @@ { - "copyright": "Carl T\u00c3\u00b6rnqvist", - "email": "calle.tornqvist@gmail.com", - "theme": "double-windsor" -} + "copyright": "Carl Törnqvist", + "email": "calle.tornqvist@gmail.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/towry.json b/users/towry.json index aa329384..4cf86d08 100644 --- a/users/towry.json +++ b/users/towry.json @@ -1,6 +1,6 @@ { - "copyright": "Towry Wang", - "url": "https://github.com/towry", - "email": "tovvry@gmail.com", - "theme": "plaintext" -} + "copyright": "Towry Wang", + "url": "https://github.com/towry", + "email": "tovvry@gmail.com", + "theme": "plaintext" +} \ No newline at end of file diff --git a/users/tpojka.json b/users/tpojka.json index a1bf3d25..0c50b7f1 100644 --- a/users/tpojka.json +++ b/users/tpojka.json @@ -1,8 +1,8 @@ { - "copyright": "Goran Grbic, http://tpojka.com", - "url": "http://tpojka.com", - "email": "hello@tpojka.com", - "format": "html", - "gravatar": true, - "theme": "black-beauty" -} + "copyright": "Goran Grbic, http://tpojka.com", + "url": "http://tpojka.com", + "email": "hello@tpojka.com", + "format": "html", + "gravatar": true, + "theme": "black-beauty" +} \ No newline at end of file diff --git a/users/tracking.json b/users/tracking.json index 8592e332..bd106566 100644 --- a/users/tracking.json +++ b/users/tracking.json @@ -1,7 +1,7 @@ { - "copyright": "Tracking, https://mura.la", - "url": "https://mura.la", - "email": "tracking@mura.la", - "theme": "dusk", - "gravatar": true -} + "copyright": "Tracking, https://mura.la", + "url": "https://mura.la", + "email": "tracking@mura.la", + "theme": "dusk", + "gravatar": true +} \ No newline at end of file diff --git a/users/transrate.json b/users/transrate.json index f028b58d..07345886 100644 --- a/users/transrate.json +++ b/users/transrate.json @@ -1,5 +1,5 @@ { - "copyright": "Richard Smith-Unna and Chris Boursnell", - "url": "http://hibberdlab.com/transrate", - "format": "txt" -} + "copyright": "Richard Smith-Unna and Chris Boursnell", + "url": "http://hibberdlab.com/transrate", + "format": "txt" +} \ No newline at end of file diff --git a/users/tregusti.json b/users/tregusti.json index 5c31a72d..d5ac7328 100644 --- a/users/tregusti.json +++ b/users/tregusti.json @@ -1,4 +1,4 @@ { - "copyright": "Glenn Jorde, http://tregusti.com/", - "theme": "flesch" -} + "copyright": "Glenn Jorde, http://tregusti.com/", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/trev.json b/users/trev.json index 04da580d..627c1581 100644 --- a/users/trev.json +++ b/users/trev.json @@ -1,5 +1,5 @@ { - "copyright": "Trevor Cook", - "email": "trevdc@gmail.com", - "format": "txt" -} + "copyright": "Trevor Cook", + "email": "trevdc@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/trevorburnham.json b/users/trevorburnham.json index 704aeddb..9157eb24 100644 --- a/users/trevorburnham.json +++ b/users/trevorburnham.json @@ -1,3 +1,3 @@ { - "copyright": "Trevor Burnham" -} + "copyright": "Trevor Burnham" +} \ No newline at end of file diff --git a/users/trey.json b/users/trey.json index 35828a7d..3fbea553 100644 --- a/users/trey.json +++ b/users/trey.json @@ -1,4 +1,4 @@ { - "copyright": "Arthur L Piepmeier III, http://treypiepmeier.com", - "url": "http://treypiepmeier.com" -} + "copyright": "Arthur L Piepmeier III, http://treypiepmeier.com", + "url": "http://treypiepmeier.com" +} \ No newline at end of file diff --git a/users/trialtrialtrial.json b/users/trialtrialtrial.json index 86802de2..f23346d1 100644 --- a/users/trialtrialtrial.json +++ b/users/trialtrialtrial.json @@ -1,7 +1,7 @@ { - "copyright": "Trial", - "url": "http://trial.com", - "email": "me@mysite.com", - "theme": "solarized", - "gravatar": true -} + "copyright": "Trial", + "url": "http://trial.com", + "email": "me@mysite.com", + "theme": "solarized", + "gravatar": true +} \ No newline at end of file diff --git a/users/triplein.json b/users/triplein.json index 5e36cf83..3a9bccad 100644 --- a/users/triplein.json +++ b/users/triplein.json @@ -1,6 +1,6 @@ { - "copyright": "TripleIn software solutions GmbH, https://www.triplein.at", - "url": "https://www.triplein.at", - "email": "office@triplein.at", - "format": "html" -} + "copyright": "TripleIn software solutions GmbH, https://www.triplein.at", + "url": "https://www.triplein.at", + "email": "office@triplein.at", + "format": "html" +} \ No newline at end of file diff --git a/users/trisk.json b/users/trisk.json index 7c4d6960..a9f2493f 100644 --- a/users/trisk.json +++ b/users/trisk.json @@ -1,4 +1,4 @@ { - "copyright": "Albert Lee", - "email": "trisk@forkgnu.org" -} + "copyright": "Albert Lee", + "email": "trisk@forkgnu.org" +} \ No newline at end of file diff --git a/users/tristancode.json b/users/tristancode.json index d017abf2..8d42ab7b 100644 --- a/users/tristancode.json +++ b/users/tristancode.json @@ -1,6 +1,6 @@ { - "copyright": "Test, Inc.", - "url": "www.test.com", - "email": "legal@test.com", - "theme": "afterdark" -} + "copyright": "Test, Inc.", + "url": "www.test.com", + "email": "legal@test.com", + "theme": "afterdark" +} \ No newline at end of file diff --git a/users/troopjs.json b/users/troopjs.json index 9dec6b90..cbae2322 100644 --- a/users/troopjs.json +++ b/users/troopjs.json @@ -1,4 +1,4 @@ { - "copyright": "TroopJS", - "url": "http://troopjs.com" -} + "copyright": "TroopJS", + "url": "http://troopjs.com" +} \ No newline at end of file diff --git a/users/troutowicz.json b/users/troutowicz.json index 24e59457..b5caed07 100644 --- a/users/troutowicz.json +++ b/users/troutowicz.json @@ -1,3 +1,3 @@ { - "copyright": "Tim Routowicz" -} + "copyright": "Tim Routowicz" +} \ No newline at end of file diff --git a/users/troy.json b/users/troy.json index 8184c8c2..baf7160b 100644 --- a/users/troy.json +++ b/users/troy.json @@ -1,3 +1,3 @@ { - "copyright": "Troy Deck" -} + "copyright": "Troy Deck" +} \ No newline at end of file diff --git a/users/true.json b/users/true.json index fff891b6..649b7a6e 100644 --- a/users/true.json +++ b/users/true.json @@ -1,3 +1,3 @@ { - "copyright": "TrueServer B.V." -} + "copyright": "TrueServer B.V." +} \ No newline at end of file diff --git a/users/trueserver.json b/users/trueserver.json index fff891b6..649b7a6e 100644 --- a/users/trueserver.json +++ b/users/trueserver.json @@ -1,3 +1,3 @@ { - "copyright": "TrueServer B.V." -} + "copyright": "TrueServer B.V." +} \ No newline at end of file diff --git a/users/trykickoff.json b/users/trykickoff.json index 4ef5ed23..40052f4b 100644 --- a/users/trykickoff.json +++ b/users/trykickoff.json @@ -1,5 +1,5 @@ { - "copyright": "TryKickoff", - "url": "http://trykickoff.github.io", - "format": "txt" -} + "copyright": "TryKickoff", + "url": "http://trykickoff.github.io", + "format": "txt" +} \ No newline at end of file diff --git a/users/tschaub.json b/users/tschaub.json index 3de5d1a1..cc87b58c 100644 --- a/users/tschaub.json +++ b/users/tschaub.json @@ -1,4 +1,4 @@ { - "copyright": "Tim Schaub, http://tschaub.net", - "url": "http://tschaub.net" -} + "copyright": "Tim Schaub, http://tschaub.net", + "url": "http://tschaub.net" +} \ No newline at end of file diff --git a/users/tscm.json b/users/tscm.json index 1ffdbe19..6ea4ed2d 100644 --- a/users/tscm.json +++ b/users/tscm.json @@ -1,4 +1,4 @@ { - "copyright": "Tsujimoto Sir Christopher Mamoru", - "url": "https://github.com/MamoruTsujimoto/" -} + "copyright": "Tsujimoto Sir Christopher Mamoru", + "url": "https://github.com/MamoruTsujimoto/" +} \ No newline at end of file diff --git a/users/tulos.json b/users/tulos.json index fed782dc..9da62f0f 100644 --- a/users/tulos.json +++ b/users/tulos.json @@ -1,5 +1,5 @@ { - "copyright": "Tulos Capital", - "url": "http://tuloscapital.com", - "email": "admin@tuloscapital.com" -} + "copyright": "Tulos Capital", + "url": "http://tuloscapital.com", + "email": "admin@tuloscapital.com" +} \ No newline at end of file diff --git a/users/turnbullm.json b/users/turnbullm.json index 9363da7f..58a7f014 100644 --- a/users/turnbullm.json +++ b/users/turnbullm.json @@ -1,5 +1,5 @@ { - "copyright": "Matthew Turnbull", - "url": "http://turnbullm.com", - "email": "turnbullm@gmail.com" -} + "copyright": "Matthew Turnbull", + "url": "http://turnbullm.com", + "email": "turnbullm@gmail.com" +} \ No newline at end of file diff --git a/users/tvsloot.json b/users/tvsloot.json index 4f8f3ecb..051510e9 100644 --- a/users/tvsloot.json +++ b/users/tvsloot.json @@ -1,5 +1,5 @@ { - "copyright": "travis vander sloot ", - "url": "http://tvsloot.com", - "email": "travis@tvsloot.com" -} + "copyright": "travis vander sloot ", + "url": "http://tvsloot.com", + "email": "travis@tvsloot.com" +} \ No newline at end of file diff --git a/users/twada.json b/users/twada.json index 08ca0ae8..16e178cf 100644 --- a/users/twada.json +++ b/users/twada.json @@ -1,4 +1,4 @@ { - "copyright": "Takuto Wada", - "url": "https://github.com/twada" -} + "copyright": "Takuto Wada", + "url": "https://github.com/twada" +} \ No newline at end of file diff --git a/users/twotoasters.json b/users/twotoasters.json index 6733782b..a9699750 100644 --- a/users/twotoasters.json +++ b/users/twotoasters.json @@ -1,5 +1,5 @@ { - "copyright": "Two Toasters", - "url": "http://twotoasters.com", - "email": "general@twotoasters.com" -} + "copyright": "Two Toasters", + "url": "http://twotoasters.com", + "email": "general@twotoasters.com" +} \ No newline at end of file diff --git a/users/tyabe.json b/users/tyabe.json index 9466043c..8cd4d96b 100644 --- a/users/tyabe.json +++ b/users/tyabe.json @@ -1,4 +1,4 @@ { - "copyright": "Takeshi Yabe", - "theme": "double-windsor" -} + "copyright": "Takeshi Yabe", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/tzi.json b/users/tzi.json index 8b9f7f51..6ce6241e 100644 --- a/users/tzi.json +++ b/users/tzi.json @@ -1,4 +1,4 @@ { - "copyright": "Thomas ZILLIOX", - "url": "http://tzi.fr" -} + "copyright": "Thomas ZILLIOX", + "url": "http://tzi.fr" +} \ No newline at end of file diff --git a/users/tzmartin.json b/users/tzmartin.json index c331278f..2f2b382b 100644 --- a/users/tzmartin.json +++ b/users/tzmartin.json @@ -1,8 +1,8 @@ { - "copyright": "TZ Martin, http://tzmartin.github.io", - "url": "http://tzmartin.github.io", - "email": "license@tzmartin.com", - "format": "txt", - "gravatar": true, - "theme": "default" -} + "copyright": "TZ Martin, http://tzmartin.github.io", + "url": "http://tzmartin.github.io", + "email": "license@tzmartin.com", + "format": "txt", + "gravatar": true, + "theme": "default" +} \ No newline at end of file diff --git a/users/uda.json b/users/uda.json index 40583c70..60c8250f 100644 --- a/users/uda.json +++ b/users/uda.json @@ -1,7 +1,7 @@ { - "copyright": "Yehuda T. Deutsch", - "url": "http://x59.co", - "email": "yeh@uda.co.il", - "gravatar": true, - "theme": "eula-modern" -} + "copyright": "Yehuda T. Deutsch", + "url": "http://x59.co", + "email": "yeh@uda.co.il", + "gravatar": true, + "theme": "eula-modern" +} \ No newline at end of file diff --git a/users/udondokodoon.json b/users/udondokodoon.json index 73ea64eb..111de992 100644 --- a/users/udondokodoon.json +++ b/users/udondokodoon.json @@ -1,5 +1,5 @@ { - "copyright": "Usoda Dondokodoon", - "url": "http://udondokodoon.github.com", - "email": "usoda.dondokodoon@gmail.com" -} + "copyright": "Usoda Dondokodoon", + "url": "http://udondokodoon.github.com", + "email": "usoda.dondokodoon@gmail.com" +} \ No newline at end of file diff --git a/users/udzura.json b/users/udzura.json index af2c3642..35cc3f78 100644 --- a/users/udzura.json +++ b/users/udzura.json @@ -1,3 +1,3 @@ { - "copyright": "Uchio KONDO" -} + "copyright": "Uchio KONDO" +} \ No newline at end of file diff --git a/users/uec-azlab.json b/users/uec-azlab.json index 07e86a59..ff0878dc 100644 --- a/users/uec-azlab.json +++ b/users/uec-azlab.json @@ -1,4 +1,4 @@ { - "copyright": "AnZen-Lab (UEC, Tokyo)", - "url": "http://www.az.inf.uec.ac.jp/" -} + "copyright": "AnZen-Lab (UEC, Tokyo)", + "url": "http://www.az.inf.uec.ac.jp/" +} \ No newline at end of file diff --git a/users/uersi.json b/users/uersi.json index a3abd157..373618a9 100644 --- a/users/uersi.json +++ b/users/uersi.json @@ -1,4 +1,4 @@ { - "copyright": "Elena Utkina", - "email": "uersi@yandex.ru" -} + "copyright": "Elena Utkina", + "email": "uersi@yandex.ru" +} \ No newline at end of file diff --git a/users/uglybugger.json b/users/uglybugger.json index 1b173b84..8c7ae4f9 100644 --- a/users/uglybugger.json +++ b/users/uglybugger.json @@ -1,6 +1,6 @@ { - "copyright": "Andrew Harcourt", - "url": "http://www.codingforfunandprofit.com/", - "email": "andrewh@uglybugger.org", - "format": "txt" -} + "copyright": "Andrew Harcourt", + "url": "http://www.codingforfunandprofit.com/", + "email": "andrewh@uglybugger.org", + "format": "txt" +} \ No newline at end of file diff --git a/users/ugurceylan.json b/users/ugurceylan.json index b6c11574..eba15b24 100644 --- a/users/ugurceylan.json +++ b/users/ugurceylan.json @@ -1,6 +1,6 @@ { - "copyright": "U\u00c4\u0178ur CEYLAN", - "url": "https://github.com/ugurceylan", - "theme": "ecijol", - "gravatar": true -} + "copyright": "UÄŸur CEYLAN", + "url": "https://github.com/ugurceylan", + "theme": "ecijol", + "gravatar": true +} \ No newline at end of file diff --git a/users/uiwwnw.json b/users/uiwwnw.json index 673a0168..18ac6a2e 100644 --- a/users/uiwwnw.json +++ b/users/uiwwnw.json @@ -1,5 +1,5 @@ { - "copyright": "uiwwnw", - "email": "uiwwnw@icloud.com", - "format": "html" -} + "copyright": "uiwwnw", + "email": "uiwwnw@icloud.com", + "format": "html" +} \ No newline at end of file diff --git a/users/ulysse.json b/users/ulysse.json index 37fb648f..6c064c0a 100644 --- a/users/ulysse.json +++ b/users/ulysse.json @@ -1,4 +1,4 @@ { - "copyright": "Ulysse Buonomo", - "email": "buonomo.ulysse@gmail.com" -} + "copyright": "Ulysse Buonomo", + "email": "buonomo.ulysse@gmail.com" +} \ No newline at end of file diff --git a/users/umaar.json b/users/umaar.json index 588dd295..f42e6626 100644 --- a/users/umaar.json +++ b/users/umaar.json @@ -1,3 +1,3 @@ { - "copyright": "Umar Hansa" -} + "copyright": "Umar Hansa" +} \ No newline at end of file diff --git a/users/umputun.json b/users/umputun.json index eaeb581a..39f1efa9 100644 --- a/users/umputun.json +++ b/users/umputun.json @@ -1,6 +1,6 @@ { - "copyright": "Umpuun", - "url": "http://umputun.com", - "email": "umputun@gmail.com", - "format": "txt" -} + "copyright": "Umpuun", + "url": "http://umputun.com", + "email": "umputun@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/undozen.json b/users/undozen.json index 5f58d2c8..100c1f20 100644 --- a/users/undozen.json +++ b/users/undozen.json @@ -1,7 +1,7 @@ { - "copyright": "Anson Yu Wang", - "email": "opensource@undozen.com", - "url": "http://www.undozen.com", - "gravatar": true, - "theme": "friendly" -} + "copyright": "Anson Yu Wang", + "email": "opensource@undozen.com", + "url": "http://www.undozen.com", + "gravatar": true, + "theme": "friendly" +} \ No newline at end of file diff --git a/users/unicodejs.json b/users/unicodejs.json index 8d24a1db..40a71004 100644 --- a/users/unicodejs.json +++ b/users/unicodejs.json @@ -1,6 +1,6 @@ { - "copyright": "UnicodeJS Team and other contributors", - "url": "https://www.mediawiki.org/wiki/UnicodeJS", - "format": "html", - "theme": "double-windsor" -} + "copyright": "UnicodeJS Team and other contributors", + "url": "https://www.mediawiki.org/wiki/UnicodeJS", + "format": "html", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/unisharp.json b/users/unisharp.json index 6cab5de0..e66a9107 100644 --- a/users/unisharp.json +++ b/users/unisharp.json @@ -1,8 +1,8 @@ { - "copyright": "UniSharp & Contributors", - "url": "https://unisharp.com", - "email": "opensource@unisharp.com", - "format": "html", - "theme": "eula-modern", - "gravatar": true -} + "copyright": "UniSharp & Contributors", + "url": "https://unisharp.com", + "email": "opensource@unisharp.com", + "format": "html", + "theme": "eula-modern", + "gravatar": true +} \ No newline at end of file diff --git a/users/unmoremaster.json b/users/unmoremaster.json index ce3ae0aa..7510150f 100644 --- a/users/unmoremaster.json +++ b/users/unmoremaster.json @@ -1,6 +1,6 @@ { - "copyright": "Unmore Master", - "url": "http://unmoremaster.hatenablog.com", - "email": "unmoremaster@gmail.com", - "gravatar": true -} + "copyright": "Unmore Master", + "url": "http://unmoremaster.hatenablog.com", + "email": "unmoremaster@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/uservoice.json b/users/uservoice.json index d2d31935..f97747a3 100644 --- a/users/uservoice.json +++ b/users/uservoice.json @@ -1,6 +1,6 @@ { - "copyright": "Raimo Tuisku", - "url": "https://developer.uservoice.com/", - "email": "dev@uservoice.com", - "format": "txt" -} + "copyright": "Raimo Tuisku", + "url": "https://developer.uservoice.com/", + "email": "dev@uservoice.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/usuck.json b/users/usuck.json index 169ec2eb..808bb43c 100644 --- a/users/usuck.json +++ b/users/usuck.json @@ -1,3 +1,3 @@ { - "copyright": "USuck" -} + "copyright": "USuck" +} \ No newline at end of file diff --git a/users/utkarsh.json b/users/utkarsh.json index 2e405062..68d0f345 100644 --- a/users/utkarsh.json +++ b/users/utkarsh.json @@ -1,3 +1,3 @@ { - "copyright": "Utkarsh Sengar" -} + "copyright": "Utkarsh Sengar" +} \ No newline at end of file diff --git a/users/uu59.json b/users/uu59.json index c2f72e62..65515d0f 100644 --- a/users/uu59.json +++ b/users/uu59.json @@ -1,5 +1,5 @@ { - "copyright": "uu59", - "url": "http://uu59.org/", - "email": "k@uu59.org" -} + "copyright": "uu59", + "url": "http://uu59.org/", + "email": "k@uu59.org" +} \ No newline at end of file diff --git a/users/uv.json b/users/uv.json index e8871cf4..e4beadac 100644 --- a/users/uv.json +++ b/users/uv.json @@ -1,6 +1,6 @@ { - "copyright": "UserVoice", - "url": "https://developer.uservoice.com/", - "email": "dev@uservoice.com", - "format": "txt" -} + "copyright": "UserVoice", + "url": "https://developer.uservoice.com/", + "email": "dev@uservoice.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/uvd.json b/users/uvd.json index ca0d6866..40621e4c 100644 --- a/users/uvd.json +++ b/users/uvd.json @@ -1,3 +1,3 @@ { - "copyright": "Ultraviolet Design Ltd" -} + "copyright": "Ultraviolet Design Ltd" +} \ No newline at end of file diff --git a/users/v.json b/users/v.json index 215c4c18..bdb6b062 100644 --- a/users/v.json +++ b/users/v.json @@ -1,6 +1,6 @@ { - "copyright": "Avinash Sajjanshetty", - "url": "http://avi.im/", - "email": "hi@avi.im", - "theme": "afterdark" -} + "copyright": "Avinash Sajjanshetty", + "url": "http://avi.im/", + "email": "hi@avi.im", + "theme": "afterdark" +} \ No newline at end of file diff --git a/users/vagnersantana.json b/users/vagnersantana.json index e307635f..2b50f85e 100644 --- a/users/vagnersantana.json +++ b/users/vagnersantana.json @@ -1,6 +1,6 @@ { - "copyright": "Vagner Santana", - "url": "http://vagnersantana.com", - "email": "vagnervjs@gmail.com.com", - "format": "html" -} + "copyright": "Vagner Santana", + "url": "http://vagnersantana.com", + "email": "vagnervjs@gmail.com.com", + "format": "html" +} \ No newline at end of file diff --git a/users/vagnervjs.json b/users/vagnervjs.json index 712fd066..5e966de5 100644 --- a/users/vagnervjs.json +++ b/users/vagnervjs.json @@ -1,6 +1,6 @@ { - "copyright": "Vagner Santana", - "url": "http://vagnersantana.com", - "email": "vagnervjs@gmail.com.com", - "format": "txt" -} + "copyright": "Vagner Santana", + "url": "http://vagnersantana.com", + "email": "vagnervjs@gmail.com.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/vaibhavsingh97.json b/users/vaibhavsingh97.json index 52edd733..561833f1 100644 --- a/users/vaibhavsingh97.json +++ b/users/vaibhavsingh97.json @@ -1,7 +1,7 @@ { - "copyright": "Vaibhav Singh, https://vaibhavsingh97.me", - "url": "https://vaibhavsingh97.me", - "email": "vaibhav.singh.14cse@bml.edu.in", - "theme": "material-teal", - "gravatar": true -} + "copyright": "Vaibhav Singh, https://vaibhavsingh97.me", + "url": "https://vaibhavsingh97.me", + "email": "vaibhav.singh.14cse@bml.edu.in", + "theme": "material-teal", + "gravatar": true +} \ No newline at end of file diff --git a/users/vakiliy.json b/users/vakiliy.json index 08c29418..bbe82f37 100644 --- a/users/vakiliy.json +++ b/users/vakiliy.json @@ -1,4 +1,4 @@ { - "copyright": "Dmitriy Sergeev", - "email": "vakiliy@gmail.com" -} + "copyright": "Dmitriy Sergeev", + "email": "vakiliy@gmail.com" +} \ No newline at end of file diff --git a/users/vardy.json b/users/vardy.json index 8ef0051e..5b3d4cbd 100644 --- a/users/vardy.json +++ b/users/vardy.json @@ -1,7 +1,7 @@ { - "copyright": "Jarred Vardy", - "email": "jarred.vardy@gmail.com", - "format": "html", - "gravatar": true, - "theme": "material-orange" -} + "copyright": "Jarred Vardy", + "email": "jarred.vardy@gmail.com", + "format": "html", + "gravatar": true, + "theme": "material-orange" +} \ No newline at end of file diff --git a/users/varundey.json b/users/varundey.json index 3b0a9576..62fb4615 100644 --- a/users/varundey.json +++ b/users/varundey.json @@ -1,7 +1,7 @@ { - "copyright": "Varun Dey", - "url": "https://varundey.me", - "theme": "afterdark", - "email": "varundey20@gmail.com", - "format": "html" -} + "copyright": "Varun Dey", + "url": "https://varundey.me", + "theme": "afterdark", + "email": "varundey20@gmail.com", + "format": "html" +} \ No newline at end of file diff --git a/users/varunkumar.json b/users/varunkumar.json index fd9f48e2..310a979c 100644 --- a/users/varunkumar.json +++ b/users/varunkumar.json @@ -1,6 +1,6 @@ { - "copyright": "Varunkumar Nagarajan, http://www.varunkumar.me", - "url": "http://www.varunkumar.me", - "email": "varunkumar.n@gmail.com", - "theme": "xtansia" -} + "copyright": "Varunkumar Nagarajan, http://www.varunkumar.me", + "url": "http://www.varunkumar.me", + "email": "varunkumar.n@gmail.com", + "theme": "xtansia" +} \ No newline at end of file diff --git a/users/varzea.json b/users/varzea.json index 0c9aede6..ed0771e4 100644 --- a/users/varzea.json +++ b/users/varzea.json @@ -1,4 +1,4 @@ { - "copyright": "Maxwell Brown", - "url": "https://github.com/varzea/" -} + "copyright": "Maxwell Brown", + "url": "https://github.com/varzea/" +} \ No newline at end of file diff --git a/users/vbalien.json b/users/vbalien.json index 56012b2e..3a9ff148 100644 --- a/users/vbalien.json +++ b/users/vbalien.json @@ -1,6 +1,6 @@ { - "copyright": "Jisu Kim", - "url": "http://alien.moe", - "email": "vbalien@live.jp", - "format": "txt" -} + "copyright": "Jisu Kim", + "url": "http://alien.moe", + "email": "vbalien@live.jp", + "format": "txt" +} \ No newline at end of file diff --git a/users/ve.json b/users/ve.json index 42147040..b0d92592 100644 --- a/users/ve.json +++ b/users/ve.json @@ -1,6 +1,6 @@ { - "copyright": "VisualEditor Team and others", - "url": "https://phabricator.wikimedia.org/diffusion/GVED/browse/master/AUTHORS.txt", - "format": "html", - "theme": "double-windsor" -} + "copyright": "VisualEditor Team and others", + "url": "https://phabricator.wikimedia.org/diffusion/GVED/browse/master/AUTHORS.txt", + "format": "html", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/venomvendor.json b/users/venomvendor.json index e24d870f..8a2ade49 100644 --- a/users/venomvendor.json +++ b/users/venomvendor.json @@ -1,6 +1,6 @@ { - "copyright": "VenomVendor", - "url": "http://VenomVendor.com", - "email": "info@VenomVendor.com", - "format": "txt" -} + "copyright": "VenomVendor", + "url": "http://VenomVendor.com", + "email": "info@VenomVendor.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/vevix.json b/users/vevix.json index 9f92d27a..d4b62a51 100644 --- a/users/vevix.json +++ b/users/vevix.json @@ -1,5 +1,5 @@ { - "copyright": "Thomas McNiven", - "email": "hello@vevix.net", - "url": "http://vevix.net" -} + "copyright": "Thomas McNiven", + "email": "hello@vevix.net", + "url": "http://vevix.net" +} \ No newline at end of file diff --git a/users/vi3okryulfqjthl6.json b/users/vi3okryulfqjthl6.json index a36303b6..005c9409 100644 --- a/users/vi3okryulfqjthl6.json +++ b/users/vi3okryulfqjthl6.json @@ -1,3 +1,3 @@ { - "copyright": "test" -} + "copyright": "test" +} \ No newline at end of file diff --git a/users/via.json b/users/via.json index cc9dde4f..c0c8d2a8 100644 --- a/users/via.json +++ b/users/via.json @@ -1,3 +1,3 @@ { - "copyright": "Vereniging Informatiewetenschappen Amsterdam" -} + "copyright": "Vereniging Informatiewetenschappen Amsterdam" +} \ No newline at end of file diff --git a/users/vicey.json b/users/vicey.json index faa68147..3198bf49 100644 --- a/users/vicey.json +++ b/users/vicey.json @@ -1,6 +1,6 @@ { - "copyright": "Vicey Wang", - "url": "https://vicey.com", - "email": "vicey@live.com", - "format": "txt" -} + "copyright": "Vicey Wang", + "url": "https://vicey.com", + "email": "vicey@live.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/vicnicius.json b/users/vicnicius.json index b72049cd..6af055b6 100644 --- a/users/vicnicius.json +++ b/users/vicnicius.json @@ -1,6 +1,6 @@ { - "copyright": "Vin\u00edcius Andrade", - "url": "http://vicnicius.github.io", - "email": "vchavesster@gmail.com", - "format": "txt" -} + "copyright": "Vinícius Andrade", + "url": "http://vicnicius.github.io", + "email": "vchavesster@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/victor.json b/users/victor.json index 192894c8..55f9d107 100644 --- a/users/victor.json +++ b/users/victor.json @@ -1,6 +1,6 @@ { - "copyright": "Victor Nogueira", - "email": "felladrin@gmail.com", - "gravatar": true, - "theme": "black-beauty" -} + "copyright": "Victor Nogueira", + "email": "felladrin@gmail.com", + "gravatar": true, + "theme": "black-beauty" +} \ No newline at end of file diff --git a/users/victordavydov.json b/users/victordavydov.json index acd225b3..c8aea5bc 100644 --- a/users/victordavydov.json +++ b/users/victordavydov.json @@ -1,3 +1,3 @@ { - "copyright": "Victor Davydov" -} + "copyright": "Victor Davydov" +} \ No newline at end of file diff --git a/users/victordieggo.json b/users/victordieggo.json index 553c84c5..cd19d5e3 100644 --- a/users/victordieggo.json +++ b/users/victordieggo.json @@ -1,5 +1,5 @@ { - "copyright": "Victor Diego", - "url": "http://victordiego.com", - "email": "victordieggo@gmail.com" -} + "copyright": "Victor Diego", + "url": "http://victordiego.com", + "email": "victordieggo@gmail.com" +} \ No newline at end of file diff --git a/users/viditor.json b/users/viditor.json index 9db3e2e2..9adf3c8a 100644 --- a/users/viditor.json +++ b/users/viditor.json @@ -1,6 +1,6 @@ { - "copyright": "Andrew McPherson", - "url": "ehgoodenough.com", - "email": "ehgoodenough@gmail.com", - "gravatar": true -} + "copyright": "Andrew McPherson", + "url": "ehgoodenough.com", + "email": "ehgoodenough@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/vieiralucas.json b/users/vieiralucas.json index 3c8d45b8..c2261eb9 100644 --- a/users/vieiralucas.json +++ b/users/vieiralucas.json @@ -1,5 +1,5 @@ { - "copyright": "Lucas Vieira", - "url": "http://vieiralucas.com", - "email": "vieiralucas4@gmail.com" -} + "copyright": "Lucas Vieira", + "url": "http://vieiralucas.com", + "email": "vieiralucas4@gmail.com" +} \ No newline at end of file diff --git a/users/vijayendra.json b/users/vijayendra.json index b519018f..06d21391 100644 --- a/users/vijayendra.json +++ b/users/vijayendra.json @@ -1,7 +1,7 @@ { - "copyright": "Vijayendra Bapte", - "url": "http://vijayendra.github.io", - "email": "vijayendra.bapte@gmail.com", - "theme": "material-pink", - "gravatar": true -} + "copyright": "Vijayendra Bapte", + "url": "http://vijayendra.github.io", + "email": "vijayendra.bapte@gmail.com", + "theme": "material-pink", + "gravatar": true +} \ No newline at end of file diff --git a/users/viktorbergehall.json b/users/viktorbergehall.json index d8ee4b4e..6ee4fd5f 100644 --- a/users/viktorbergehall.json +++ b/users/viktorbergehall.json @@ -1,3 +1,3 @@ { - "copyright": "Viktor Bergehall" -} + "copyright": "Viktor Bergehall" +} \ No newline at end of file diff --git a/users/viktort.json b/users/viktort.json index 3da751e4..c954d07f 100644 --- a/users/viktort.json +++ b/users/viktort.json @@ -1,3 +1,3 @@ { - "copyright": "Viktor Trako" -} + "copyright": "Viktor Trako" +} \ No newline at end of file diff --git a/users/vineetdhanawat.json b/users/vineetdhanawat.json index 19e05858..1e6caaad 100644 --- a/users/vineetdhanawat.json +++ b/users/vineetdhanawat.json @@ -1,4 +1,4 @@ { - "copyright": "Vineet Dhanawat", - "url": "http://www.vineetdhanawat.com/" -} + "copyright": "Vineet Dhanawat", + "url": "http://www.vineetdhanawat.com/" +} \ No newline at end of file diff --git a/users/vinipalma.json b/users/vinipalma.json index 797268c1..0e080609 100644 --- a/users/vinipalma.json +++ b/users/vinipalma.json @@ -1,7 +1,7 @@ { - "copyright": "Vin\u00c3\u00adcius Palma", - "url": "http://vinipalma.com", - "email": "vini_palma@outlook.com", - "format": "txt", - "gravatar": true -} + "copyright": "Vinícius Palma", + "url": "http://vinipalma.com", + "email": "vini_palma@outlook.com", + "format": "txt", + "gravatar": true +} \ No newline at end of file diff --git a/users/vinnyguitar.json b/users/vinnyguitar.json index f0681bc6..27ade3b2 100644 --- a/users/vinnyguitar.json +++ b/users/vinnyguitar.json @@ -1,5 +1,5 @@ { - "copyright": "vinnyguitar", - "email": "vinnyguitar@126.com", - "format": "txt" -} + "copyright": "vinnyguitar", + "email": "vinnyguitar@126.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/vinwz.json b/users/vinwz.json index f2a95add..366d8616 100644 --- a/users/vinwz.json +++ b/users/vinwz.json @@ -1,3 +1,3 @@ { - "copyright": "Vincent Watremez" -} + "copyright": "Vincent Watremez" +} \ No newline at end of file diff --git a/users/visav.json b/users/visav.json index cb3c1ea2..787535de 100644 --- a/users/visav.json +++ b/users/visav.json @@ -1,3 +1,3 @@ { - "copyright": "Visa Varjus" -} + "copyright": "Visa Varjus" +} \ No newline at end of file diff --git a/users/vishal.json b/users/vishal.json index a8fe7e7e..5783e7d7 100644 --- a/users/vishal.json +++ b/users/vishal.json @@ -1,5 +1,5 @@ { - "copyright": "Vishal Singal", - "email": "vishalsingal94@gmail.com", - "theme": "xtansia" -} + "copyright": "Vishal Singal", + "email": "vishalsingal94@gmail.com", + "theme": "xtansia" +} \ No newline at end of file diff --git a/users/visionmedia.json b/users/visionmedia.json index 1de71d08..9074e04f 100644 --- a/users/visionmedia.json +++ b/users/visionmedia.json @@ -1,3 +1,3 @@ { - "copyright": "TJ Holowaychuk" -} + "copyright": "TJ Holowaychuk" +} \ No newline at end of file diff --git a/users/vitalk.json b/users/vitalk.json index c3fa13a7..5c728eb9 100644 --- a/users/vitalk.json +++ b/users/vitalk.json @@ -1,4 +1,4 @@ { - "copyright": "Vital Kudzelka", - "email": "vital.kudzelka@gmail.com" -} + "copyright": "Vital Kudzelka", + "email": "vital.kudzelka@gmail.com" +} \ No newline at end of file diff --git a/users/vito.json b/users/vito.json index ca73068f..29536a11 100644 --- a/users/vito.json +++ b/users/vito.json @@ -1,6 +1,6 @@ { - "copyright": "Vito Zhang", - "url": "http://vit0.com", - "email": "vvitozhang@gmail.com", - "format": "txt" -} + "copyright": "Vito Zhang", + "url": "http://vit0.com", + "email": "vvitozhang@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/vitor.json b/users/vitor.json index c6164c81..370344e0 100644 --- a/users/vitor.json +++ b/users/vitor.json @@ -1,8 +1,8 @@ { - "copyright": "Vitor Carlos", - "url": "http://v42.com.br", - "email": "vitor@v42.com.br", - "format": "html", - "gravatar": true, - "theme": "opensans" -} + "copyright": "Vitor Carlos", + "url": "http://v42.com.br", + "email": "vitor@v42.com.br", + "format": "html", + "gravatar": true, + "theme": "opensans" +} \ No newline at end of file diff --git a/users/vitorbal.json b/users/vitorbal.json index a69d4c04..1961b1ef 100644 --- a/users/vitorbal.json +++ b/users/vitorbal.json @@ -1,5 +1,5 @@ { - "copyright": "Vitor Balocco", - "url": "http://github.com/vitorbal", - "theme": "double-windsor" -} + "copyright": "Vitor Balocco", + "url": "http://github.com/vitorbal", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/vitorbritto.json b/users/vitorbritto.json index a9e0a291..45afd1bf 100644 --- a/users/vitorbritto.json +++ b/users/vitorbritto.json @@ -1,5 +1,5 @@ { - "copyright": "Vitor Britto", - "url": "http://vitorbritto.com.br", - "email": "code@vitorbritto.com.br" -} + "copyright": "Vitor Britto", + "url": "http://vitorbritto.com.br", + "email": "code@vitorbritto.com.br" +} \ No newline at end of file diff --git a/users/vitornogueira.json b/users/vitornogueira.json index 5f4695f3..5ed41c23 100644 --- a/users/vitornogueira.json +++ b/users/vitornogueira.json @@ -1,3 +1,3 @@ { - "copyright": "Vitor Nogueira" -} + "copyright": "Vitor Nogueira" +} \ No newline at end of file diff --git a/users/vjpr.json b/users/vjpr.json index 5de63011..7957071f 100644 --- a/users/vjpr.json +++ b/users/vjpr.json @@ -1,3 +1,3 @@ { - "copyright": "Vaughan Rouesnel" -} + "copyright": "Vaughan Rouesnel" +} \ No newline at end of file diff --git a/users/vko-online.json b/users/vko-online.json index 76d48768..450b17ff 100644 --- a/users/vko-online.json +++ b/users/vko-online.json @@ -1,3 +1,3 @@ { - "copyright": "Medet Tleukabiluly" -} + "copyright": "Medet Tleukabiluly" +} \ No newline at end of file diff --git a/users/vmanot.json b/users/vmanot.json index a2316078..b9a6b3e5 100644 --- a/users/vmanot.json +++ b/users/vmanot.json @@ -1,3 +1,3 @@ { - "copyright": "Vatsal Manot" -} + "copyright": "Vatsal Manot" +} \ No newline at end of file diff --git a/users/vnk.json b/users/vnk.json index 2af72d06..50ddc779 100644 --- a/users/vnk.json +++ b/users/vnk.json @@ -1,6 +1,6 @@ { - "copyright": "gnz/vnk", - "url": "http://lapartequefalta.com", - "email": "venkman@lapartequefalta.com", - "format": "txt" -} + "copyright": "gnz/vnk", + "url": "http://lapartequefalta.com", + "email": "venkman@lapartequefalta.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/vocksel.json b/users/vocksel.json index 82813f15..1491cab6 100644 --- a/users/vocksel.json +++ b/users/vocksel.json @@ -1,5 +1,5 @@ { - "copyright": "David Minnerly", - "url": "http://davidminnerly.com", - "format": "txt" -} + "copyright": "David Minnerly", + "url": "http://davidminnerly.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/voltdb.json b/users/voltdb.json index 1b21bda9..b61809c5 100644 --- a/users/voltdb.json +++ b/users/voltdb.json @@ -1,6 +1,6 @@ { - "copyright": "VoltDB, Inc.", - "url": "http://www.voltdb.com", - "email": "info@voltdb.com", - "format": "txt" -} + "copyright": "VoltDB, Inc.", + "url": "http://www.voltdb.com", + "email": "info@voltdb.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/voodootikigod.json b/users/voodootikigod.json index eec0711e..54fb2ed7 100644 --- a/users/voodootikigod.json +++ b/users/voodootikigod.json @@ -1,3 +1,3 @@ { - "copyright": "Chris Williams" -} + "copyright": "Chris Williams" +} \ No newline at end of file diff --git a/users/voxpelli.json b/users/voxpelli.json index 800f480c..080bbcff 100644 --- a/users/voxpelli.json +++ b/users/voxpelli.json @@ -1,6 +1,6 @@ { - "copyright": "Pelle Wessman", - "url": "http://kodfabrik.se", - "email": "pelle@kodfabrik.se", - "theme": "double-windsor" -} + "copyright": "Pelle Wessman", + "url": "http://kodfabrik.se", + "email": "pelle@kodfabrik.se", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/vsisk.json b/users/vsisk.json index 9696f0cd..6dd7aed4 100644 --- a/users/vsisk.json +++ b/users/vsisk.json @@ -1,5 +1,5 @@ { - "copyright": "Vincent Sisk, https://github.com/sappharx", - "email": "vinnysisk@gmail.com", - "theme": "solarized" -} + "copyright": "Vincent Sisk, https://github.com/sappharx", + "email": "vinnysisk@gmail.com", + "theme": "solarized" +} \ No newline at end of file diff --git a/users/vsouza.json b/users/vsouza.json index 0c4694b5..a25289b0 100644 --- a/users/vsouza.json +++ b/users/vsouza.json @@ -1,8 +1,8 @@ { - "copyright": "Vinicius Souza, http://vsouza.com ", - "url": "http://vsouza.com", - "email": "hi@vsouza.com", - "format": "html", - "gravatar": true, - "theme": "double-windsor" -} + "copyright": "Vinicius Souza, http://vsouza.com ", + "url": "http://vsouza.com", + "email": "hi@vsouza.com", + "format": "html", + "gravatar": true, + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/vsr.json b/users/vsr.json index f3cd61ad..22614625 100644 --- a/users/vsr.json +++ b/users/vsr.json @@ -1,4 +1,4 @@ { - "copyright": "Vinay Raikar, http://vinayraikar.com", - "url": "http://vinayraikar.com" -} + "copyright": "Vinay Raikar, http://vinayraikar.com", + "url": "http://vinayraikar.com" +} \ No newline at end of file diff --git a/users/vt47.json b/users/vt47.json index bca36baf..d19b0f9c 100644 --- a/users/vt47.json +++ b/users/vt47.json @@ -1,7 +1,7 @@ { - "copyright": "Vu Tran, http://vutran47.us", - "url": "http://vutran47.us", - "email": "vutran.1710@gmail.com", - "format": "html", - "theme": "dusk" -} + "copyright": "Vu Tran, http://vutran47.us", + "url": "http://vutran47.us", + "email": "vutran.1710@gmail.com", + "format": "html", + "theme": "dusk" +} \ No newline at end of file diff --git a/users/vtalbot.json b/users/vtalbot.json index 4f8ed963..610a9e09 100644 --- a/users/vtalbot.json +++ b/users/vtalbot.json @@ -1,5 +1,5 @@ { - "copyright": "Vincent Talbot", - "url": "http://github.com/vtalbot", - "email": "vincent.talbot@gmail.com" -} + "copyright": "Vincent Talbot", + "url": "http://github.com/vtalbot", + "email": "vincent.talbot@gmail.com" +} \ No newline at end of file diff --git a/users/vtence.json b/users/vtence.json index 4369dfa3..2139df8e 100644 --- a/users/vtence.json +++ b/users/vtence.json @@ -1,3 +1,3 @@ { - "copyright": "Vincent Tenc\u00e9" -} + "copyright": "Vincent Tencé" +} \ No newline at end of file diff --git a/users/vulk.json b/users/vulk.json index 1ca3baae..d4146ec2 100644 --- a/users/vulk.json +++ b/users/vulk.json @@ -1,4 +1,4 @@ { - "copyright": "Vulk", - "email": "wolfpack@vulk.co" -} + "copyright": "Vulk", + "email": "wolfpack@vulk.co" +} \ No newline at end of file diff --git a/users/vuquochuy.json b/users/vuquochuy.json index 26e088c6..67b7c097 100644 --- a/users/vuquochuy.json +++ b/users/vuquochuy.json @@ -1,6 +1,6 @@ { - "copyright": "Huy Vu", - "url": "http://huyvq.com", - "email": "vuquochuy@gmail.com", - "format": "txt" -} + "copyright": "Huy Vu", + "url": "http://huyvq.com", + "email": "vuquochuy@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/vvakame.json b/users/vvakame.json index 3aca9ffa..6a4fd7e1 100644 --- a/users/vvakame.json +++ b/users/vvakame.json @@ -1,4 +1,4 @@ { - "copyright": "Masahiro Wakame", - "url": "https://github.com/vvakame" -} + "copyright": "Masahiro Wakame", + "url": "https://github.com/vvakame" +} \ No newline at end of file diff --git a/users/vzool.json b/users/vzool.json index a521eac8..216287e3 100644 --- a/users/vzool.json +++ b/users/vzool.json @@ -1,4 +1,4 @@ { - "copyright": "Abdelaziz Elrashed", - "email": "aeemh.sdn@gmail.com" -} + "copyright": "Abdelaziz Elrashed", + "email": "aeemh.sdn@gmail.com" +} \ No newline at end of file diff --git a/users/w.json b/users/w.json index cfb17757..9a83d983 100644 --- a/users/w.json +++ b/users/w.json @@ -1,8 +1,8 @@ { - "copyright": "Zijie(Jay) Wang", - "url": "http://hooo.ooo", - "email": "xiao.hk1997@gmail.com", - "format": "html", - "theme": "material-brown", - "gravatar": true -} + "copyright": "Zijie(Jay) Wang", + "url": "http://hooo.ooo", + "email": "xiao.hk1997@gmail.com", + "format": "html", + "theme": "material-brown", + "gravatar": true +} \ No newline at end of file diff --git a/users/wangbin.json b/users/wangbin.json index 54254a46..e4bf2a2b 100644 --- a/users/wangbin.json +++ b/users/wangbin.json @@ -1,5 +1,5 @@ { - "copyright": "Wang Bin", - "email": "wangbin.zibo@gmail.com", - "format": "txt" -} + "copyright": "Wang Bin", + "email": "wangbin.zibo@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/wangchi.json b/users/wangchi.json index 9905b011..2b9ac868 100644 --- a/users/wangchi.json +++ b/users/wangchi.json @@ -1,7 +1,7 @@ { - "copyright": "Wang Chi, http://beyondweb.cn/", - "url": "http://beyondweb.cn/", - "email": "hiwangchi@gmail.com", - "format": "html", - "gravatar": true -} + "copyright": "Wang Chi, http://beyondweb.cn/", + "url": "http://beyondweb.cn/", + "email": "hiwangchi@gmail.com", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/wangeleile.json b/users/wangeleile.json index b63cd979..a209edca 100644 --- a/users/wangeleile.json +++ b/users/wangeleile.json @@ -1,5 +1,5 @@ { - "copyright": "Horst Wangeleile, http://wangeleile.de", - "url": "http://wangeleile.de", - "email": "wangeleile@googlemail.com" -} + "copyright": "Horst Wangeleile, http://wangeleile.de", + "url": "http://wangeleile.de", + "email": "wangeleile@googlemail.com" +} \ No newline at end of file diff --git a/users/wanja.json b/users/wanja.json index 090cfec3..d6580829 100644 --- a/users/wanja.json +++ b/users/wanja.json @@ -1,3 +1,3 @@ { - "copyright": "Wanja Stier" -} + "copyright": "Wanja Stier" +} \ No newline at end of file diff --git a/users/warwick.json b/users/warwick.json index 95065ce3..c315750d 100644 --- a/users/warwick.json +++ b/users/warwick.json @@ -1,4 +1,4 @@ { - "copyright": "University of Warwick", - "url": "http://warwick.ac.uk/" -} + "copyright": "University of Warwick", + "url": "http://warwick.ac.uk/" +} \ No newline at end of file diff --git a/users/warwickmasson.json b/users/warwickmasson.json index e0aa582b..b83a7647 100644 --- a/users/warwickmasson.json +++ b/users/warwickmasson.json @@ -1,3 +1,3 @@ { - "copyright": "Warwick Masson" -} + "copyright": "Warwick Masson" +} \ No newline at end of file diff --git a/users/watchout.json b/users/watchout.json index 3de14274..8e2735be 100644 --- a/users/watchout.json +++ b/users/watchout.json @@ -1,6 +1,6 @@ { - "copyright": "Watchout, Co.", - "url": "http://watchout.tw/", - "email": "info@watchout.tw", - "format": "txt" -} + "copyright": "Watchout, Co.", + "url": "http://watchout.tw/", + "email": "info@watchout.tw", + "format": "txt" +} \ No newline at end of file diff --git a/users/wavell.json b/users/wavell.json index a335226c..2709a889 100644 --- a/users/wavell.json +++ b/users/wavell.json @@ -1,4 +1,4 @@ { - "copyright": "Wavell Watson", - "url": "https://github.com/wavell" -} + "copyright": "Wavell Watson", + "url": "https://github.com/wavell" +} \ No newline at end of file diff --git a/users/waynesan.json b/users/waynesan.json index 95e829c3..af5d529a 100644 --- a/users/waynesan.json +++ b/users/waynesan.json @@ -1,8 +1,8 @@ { - "copyright": "Wayne San, http://waynesan.zerozone.tw/", - "url": "http://waynesan.zerozone.tw/", - "email": "waynesan@zerozone.tw", - "format": "html", - "gravatar": true, - "theme": "default" -} + "copyright": "Wayne San, http://waynesan.zerozone.tw/", + "url": "http://waynesan.zerozone.tw/", + "email": "waynesan@zerozone.tw", + "format": "html", + "gravatar": true, + "theme": "default" +} \ No newline at end of file diff --git a/users/wbinnssmith.json b/users/wbinnssmith.json index fc058661..cf713c4b 100644 --- a/users/wbinnssmith.json +++ b/users/wbinnssmith.json @@ -1,4 +1,4 @@ { - "copyright": "Will Binns-Smith", - "email": "wbinnssmith@gmail.com" -} + "copyright": "Will Binns-Smith", + "email": "wbinnssmith@gmail.com" +} \ No newline at end of file diff --git a/users/wd.json b/users/wd.json index 3bc41d50..988594da 100644 --- a/users/wd.json +++ b/users/wd.json @@ -1,5 +1,5 @@ { - "copyright": "Oleg Korsunsky", - "url": "http://wd.dizaina.net", - "email": "wd@dizaina.net" -} + "copyright": "Oleg Korsunsky", + "url": "http://wd.dizaina.net", + "email": "wd@dizaina.net" +} \ No newline at end of file diff --git a/users/web-xaser.json b/users/web-xaser.json index e872f186..b6cd835d 100644 --- a/users/web-xaser.json +++ b/users/web-xaser.json @@ -1,6 +1,6 @@ { - "copyright": "WeB XaSeR", - "url": "http://www.web-xaser.ru", - "email": "admin@web-xaser.ru", - "theme": "double-windsor" -} + "copyright": "WeB XaSeR", + "url": "http://www.web-xaser.ru", + "email": "admin@web-xaser.ru", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/web.json b/users/web.json index b3461c44..91650cda 100644 --- a/users/web.json +++ b/users/web.json @@ -1,7 +1,7 @@ { - "copyright": "Chris Weber, http://www.lookout.net", - "url": "http://www.lookout.net", - "email": "chrisweber@live.com", - "format": "html", - "gravatar": true -} + "copyright": "Chris Weber, http://www.lookout.net", + "url": "http://www.lookout.net", + "email": "chrisweber@live.com", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/webbson.json b/users/webbson.json index b85a9d0a..053cdbc1 100644 --- a/users/webbson.json +++ b/users/webbson.json @@ -1,7 +1,7 @@ { - "copyright": "Tom Stevens, http://webbson.net", - "url": "http://webbson.net", - "email": "tom@stevens.se", - "gravatar": true, - "theme": "black-beauty" -} + "copyright": "Tom Stevens, http://webbson.net", + "url": "http://webbson.net", + "email": "tom@stevens.se", + "gravatar": true, + "theme": "black-beauty" +} \ No newline at end of file diff --git a/users/webcomponentsorg.json b/users/webcomponentsorg.json index c050ccb3..e5d79e51 100644 --- a/users/webcomponentsorg.json +++ b/users/webcomponentsorg.json @@ -1,5 +1,5 @@ { - "copyright": "WebComponents.org", - "url": "http://webcomponents.org", - "email": "webcomponentsdotorg@gmail.com" -} + "copyright": "WebComponents.org", + "url": "http://webcomponents.org", + "email": "webcomponentsdotorg@gmail.com" +} \ No newline at end of file diff --git a/users/webdevrich.json b/users/webdevrich.json index cb581cdf..1ad58da5 100644 --- a/users/webdevrich.json +++ b/users/webdevrich.json @@ -1,7 +1,7 @@ { - "copyright": "Richard Keyzor, http://webdevri.ch", - "url": "http://webdevri.ch/", - "email": "web_dev_rich@keyzor.net", - "format": "txt", - "gravatar": true -} + "copyright": "Richard Keyzor, http://webdevri.ch", + "url": "http://webdevri.ch/", + "email": "web_dev_rich@keyzor.net", + "format": "txt", + "gravatar": true +} \ No newline at end of file diff --git a/users/webpro.json b/users/webpro.json index de2b2935..30b1416a 100644 --- a/users/webpro.json +++ b/users/webpro.json @@ -1,7 +1,7 @@ { - "copyright": "Lars Kappert, https://webpro.nl", - "url": "https://webpro.nl", - "email": "lars@webpro.nl", - "theme": "default", - "gravatar": true -} + "copyright": "Lars Kappert, https://webpro.nl", + "url": "https://webpro.nl", + "email": "lars@webpro.nl", + "theme": "default", + "gravatar": true +} \ No newline at end of file diff --git a/users/weejames.json b/users/weejames.json index bbbb81ff..a30dd01e 100644 --- a/users/weejames.json +++ b/users/weejames.json @@ -1,6 +1,6 @@ { - "copyright": "James Constable", - "url": "http://jamesconstable.co.uk", - "email": "me@jamesconstable.co.uk", - "format": "txt" -} + "copyright": "James Constable", + "url": "http://jamesconstable.co.uk", + "email": "me@jamesconstable.co.uk", + "format": "txt" +} \ No newline at end of file diff --git a/users/wei.json b/users/wei.json index a3a7615a..8ccc99c5 100644 --- a/users/wei.json +++ b/users/wei.json @@ -1,7 +1,7 @@ { - "copyright": "Wei He", - "url": "https://github.com/wei", - "email": "github@weispot.com", - "theme": "material-blue", - "gravatar": true -} + "copyright": "Wei He", + "url": "https://github.com/wei", + "email": "github@weispot.com", + "theme": "material-blue", + "gravatar": true +} \ No newline at end of file diff --git a/users/weijunji.json b/users/weijunji.json index 68ef18ac..c9275314 100644 --- a/users/weijunji.json +++ b/users/weijunji.json @@ -1,7 +1,7 @@ { - "copyright": "Junji Wei", - "url": "https://weijunji.me", - "email": "990628wjy@gmail.com", - "gravatar": true, - "theme": "dusk" -} + "copyright": "Junji Wei", + "url": "https://weijunji.me", + "email": "990628wjy@gmail.com", + "gravatar": true, + "theme": "dusk" +} \ No newline at end of file diff --git a/users/werle.json b/users/werle.json index 8eadc9ae..10f63931 100644 --- a/users/werle.json +++ b/users/werle.json @@ -1,5 +1,5 @@ { - "copyright": "Joseph Werle, http://werle.io", - "url": "http://werle.io", - "theme": "afterdark" -} + "copyright": "Joseph Werle, http://werle.io", + "url": "http://werle.io", + "theme": "afterdark" +} \ No newline at end of file diff --git a/users/wesbos.json b/users/wesbos.json index a4bd5f5a..df1e2f71 100644 --- a/users/wesbos.json +++ b/users/wesbos.json @@ -1,4 +1,4 @@ { - "copyright": "Wes Bos, http://wesbos.com", - "url": "http://wesbos.com" -} + "copyright": "Wes Bos, http://wesbos.com", + "url": "http://wesbos.com" +} \ No newline at end of file diff --git a/users/wesley.json b/users/wesley.json index eff02f2f..7d9bceb6 100644 --- a/users/wesley.json +++ b/users/wesley.json @@ -1,6 +1,6 @@ { - "copyright": "Wesley Sui", - "url": "http://suijy.com", - "email": "wesleysui@gmail.com", - "format": "txt" -} + "copyright": "Wesley Sui", + "url": "http://suijy.com", + "email": "wesleysui@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/wesleydesouza.json b/users/wesleydesouza.json index 7bcd43b0..1e02d030 100644 --- a/users/wesleydesouza.json +++ b/users/wesleydesouza.json @@ -1,7 +1,7 @@ { - "copyright": "Wesley de Souza", - "url": "http://wesley.so", - "email": "me@wesley.so", - "format": "html", - "gravatar": true -} + "copyright": "Wesley de Souza", + "url": "http://wesley.so", + "email": "me@wesley.so", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/weslly.json b/users/weslly.json index 4777672b..0c5c1261 100644 --- a/users/weslly.json +++ b/users/weslly.json @@ -1,5 +1,5 @@ { - "copyright": "Weslly Honorato, http://about.me/weslly", - "url": "http://about.me/weslly", - "format": "html" -} + "copyright": "Weslly Honorato, http://about.me/weslly", + "url": "http://about.me/weslly", + "format": "html" +} \ No newline at end of file diff --git a/users/wfxr.json b/users/wfxr.json index ff14fbd6..59d8eda2 100644 --- a/users/wfxr.json +++ b/users/wfxr.json @@ -1,6 +1,6 @@ { - "copyright": "Wenxuan Zhang", - "url": "https://github.com/wfxr", - "email": "wenxuangm@gmail.com", - "format": "txt" -} + "copyright": "Wenxuan Zhang", + "url": "https://github.com/wfxr", + "email": "wenxuangm@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/wglab.json b/users/wglab.json index 35f1264e..2a3c31e8 100644 --- a/users/wglab.json +++ b/users/wglab.json @@ -1,3 +1,3 @@ { - "copyright": "Wang Genomics Lab" -} + "copyright": "Wang Genomics Lab" +} \ No newline at end of file diff --git a/users/whatsim.json b/users/whatsim.json index 7bd3fee8..8d068441 100644 --- a/users/whatsim.json +++ b/users/whatsim.json @@ -1,3 +1,3 @@ { - "copyright": "Will Ruby" -} + "copyright": "Will Ruby" +} \ No newline at end of file diff --git a/users/whittle.json b/users/whittle.json index 8b5dd51f..83826d45 100644 --- a/users/whittle.json +++ b/users/whittle.json @@ -1,3 +1,3 @@ { - "copyright": "Jason Whittle" -} + "copyright": "Jason Whittle" +} \ No newline at end of file diff --git a/users/whizark.json b/users/whizark.json index d7eda013..e72ce17c 100644 --- a/users/whizark.json +++ b/users/whizark.json @@ -1,4 +1,4 @@ { - "copyright": "Whizark", - "url": "https://github.com/whizark" -} + "copyright": "Whizark", + "url": "https://github.com/whizark" +} \ No newline at end of file diff --git a/users/whostolemyhat.json b/users/whostolemyhat.json index 317c7aa9..a32c490e 100644 --- a/users/whostolemyhat.json +++ b/users/whostolemyhat.json @@ -1,4 +1,4 @@ { - "copyright": "James Tease", - "url": "http://jamestease.co.uk" -} + "copyright": "James Tease", + "url": "http://jamestease.co.uk" +} \ No newline at end of file diff --git a/users/whym.json b/users/whym.json index c5cce247..9bff9b1b 100644 --- a/users/whym.json +++ b/users/whym.json @@ -1,7 +1,7 @@ { - "copyright": "Yusuke Matsubara", - "url": "http://whym.org", - "email": "whym@whym.org", - "gravatar": true, - "theme": "eula-modern" -} + "copyright": "Yusuke Matsubara", + "url": "http://whym.org", + "email": "whym@whym.org", + "gravatar": true, + "theme": "eula-modern" +} \ No newline at end of file diff --git a/users/wickett.json b/users/wickett.json index 35252286..bc5612bc 100644 --- a/users/wickett.json +++ b/users/wickett.json @@ -1,4 +1,4 @@ { - "copyright": "James Wickett, wickett.me", - "url": "http://wickett.me/" -} + "copyright": "James Wickett, wickett.me", + "url": "http://wickett.me/" +} \ No newline at end of file diff --git a/users/widged.json b/users/widged.json index 0b4b1e8c..3961f2df 100644 --- a/users/widged.json +++ b/users/widged.json @@ -1,5 +1,5 @@ { - "copyright": "Marielle Lange, http://widged.com", - "url": "http://widged.com", - "theme": "flesch" -} + "copyright": "Marielle Lange, http://widged.com", + "url": "http://widged.com", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/widnyana.json b/users/widnyana.json index 52b1f664..5d7d80f3 100644 --- a/users/widnyana.json +++ b/users/widnyana.json @@ -1,7 +1,7 @@ { - "copyright": "Widnyana Putra", - "url": "http://widnyana.web.id", - "email": "me@widnyana.web.id", - "format": "html", - "theme": "white cherry" -} + "copyright": "Widnyana Putra", + "url": "http://widnyana.web.id", + "email": "me@widnyana.web.id", + "format": "html", + "theme": "white cherry" +} \ No newline at end of file diff --git a/users/wiesner.json b/users/wiesner.json index e2cf2707..6379d575 100644 --- a/users/wiesner.json +++ b/users/wiesner.json @@ -1,5 +1,5 @@ { - "copyright": "Michael Wiesner", - "url": "https://mwiesner.com", - "email": "impressum@mwiesner.com" -} + "copyright": "Michael Wiesner", + "url": "https://mwiesner.com", + "email": "impressum@mwiesner.com" +} \ No newline at end of file diff --git a/users/wilddog.json b/users/wilddog.json index 12b7ed65..86712f59 100644 --- a/users/wilddog.json +++ b/users/wilddog.json @@ -1,5 +1,5 @@ { - "copyright": "Wilddog", - "url": "https://wilddog.com", - "email": "opensource@wilddog.com" -} + "copyright": "Wilddog", + "url": "https://wilddog.com", + "email": "opensource@wilddog.com" +} \ No newline at end of file diff --git a/users/will.json b/users/will.json index f95c789e..4ad6b964 100644 --- a/users/will.json +++ b/users/will.json @@ -1,5 +1,5 @@ { - "copyright": "Will Mayner, http://willmayner.com", - "url": "http://willmayner.com", - "theme": "blackwood" -} + "copyright": "Will Mayner, http://willmayner.com", + "url": "http://willmayner.com", + "theme": "blackwood" +} \ No newline at end of file diff --git a/users/will3942.json b/users/will3942.json index c9665a92..4b3ec2a1 100644 --- a/users/will3942.json +++ b/users/will3942.json @@ -1,6 +1,6 @@ { - "copyright": "Will Evans", - "url": "http://will3942.com", - "email": "will@will3942.com", - "format": "txt" -} + "copyright": "Will Evans", + "url": "http://will3942.com", + "email": "will@will3942.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/william17.json b/users/william17.json index 2da3a4cd..703d7b98 100644 --- a/users/william17.json +++ b/users/william17.json @@ -1,4 +1,4 @@ { - "copyright": "William Leung", - "url": "https://github.com/William17" -} + "copyright": "William Leung", + "url": "https://github.com/William17" +} \ No newline at end of file diff --git a/users/willianduarte.json b/users/willianduarte.json index e47a0bfc..e2444d1e 100644 --- a/users/willianduarte.json +++ b/users/willianduarte.json @@ -1,6 +1,6 @@ { - "copyright": "Willian Duarte, http://willianduarte.com", - "url": "http://willianduarte.com", - "theme": "blackwood", - "email": "contato@willianduarte.com" -} + "copyright": "Willian Duarte, http://willianduarte.com", + "url": "http://willianduarte.com", + "theme": "blackwood", + "email": "contato@willianduarte.com" +} \ No newline at end of file diff --git a/users/willin.json b/users/willin.json index d7445e96..b49e544b 100644 --- a/users/willin.json +++ b/users/willin.json @@ -1,8 +1,8 @@ { - "copyright": "Willin Wang", - "url": "http://willin.wang", - "email": "willin@willin.org", - "format": "html", - "gravatar": true, - "theme": "material" -} + "copyright": "Willin Wang", + "url": "http://willin.wang", + "email": "willin@willin.org", + "format": "html", + "gravatar": true, + "theme": "material" +} \ No newline at end of file diff --git a/users/willpower.json b/users/willpower.json index fcb6e638..c97c02fa 100644 --- a/users/willpower.json +++ b/users/willpower.json @@ -1,7 +1,7 @@ { - "copyright": "Felipe Nunes", - "url": "http://willpower.art.br", - "email": "felipe@willpower.art.br", - "theme": "willpower", - "gravatar": true -} + "copyright": "Felipe Nunes", + "url": "http://willpower.art.br", + "email": "felipe@willpower.art.br", + "theme": "willpower", + "gravatar": true +} \ No newline at end of file diff --git a/users/wind4869.json b/users/wind4869.json index 896c6b11..60e373ef 100644 --- a/users/wind4869.json +++ b/users/wind4869.json @@ -1,6 +1,6 @@ { - "copyright": "Youqiang Hao", - "url": "http://wind4869.me", - "email": "windv587@gmail.com", - "format": "txt" -} + "copyright": "Youqiang Hao", + "url": "http://wind4869.me", + "email": "windv587@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/witchard.json b/users/witchard.json index a5d96c01..2e610ebf 100644 --- a/users/witchard.json +++ b/users/witchard.json @@ -1,4 +1,4 @@ { - "copyright": "witchard, http://witchard.github.io/", - "url": "http://witchard.github.io/" -} + "copyright": "witchard, http://witchard.github.io/", + "url": "http://witchard.github.io/" +} \ No newline at end of file diff --git a/users/wjr3.json b/users/wjr3.json index 5e099d68..52d99f4d 100644 --- a/users/wjr3.json +++ b/users/wjr3.json @@ -1,7 +1,7 @@ { - "copyright": "William J. Rainaud, https://wrainaud.com", - "url": "https://wrainaud.com", - "email": "wrainaud@outlook.com", - "format": "html", - "theme": "mitserrat" -} + "copyright": "William J. Rainaud, https://wrainaud.com", + "url": "https://wrainaud.com", + "email": "wrainaud@outlook.com", + "format": "html", + "theme": "mitserrat" +} \ No newline at end of file diff --git a/users/wmwragg.json b/users/wmwragg.json index f4e08f65..70a41789 100644 --- a/users/wmwragg.json +++ b/users/wmwragg.json @@ -1,3 +1,3 @@ { - "copyright": "William Wragg" -} + "copyright": "William Wragg" +} \ No newline at end of file diff --git a/users/wolfiezero.json b/users/wolfiezero.json index c4448020..f86c94e7 100644 --- a/users/wolfiezero.json +++ b/users/wolfiezero.json @@ -1,6 +1,6 @@ { - "copyright": "Neil Sweeney", - "url": "http://wolfiezero.com/", - "email": "neil@wolfiezero.com", - "gravatar": true -} + "copyright": "Neil Sweeney", + "url": "http://wolfiezero.com/", + "email": "neil@wolfiezero.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/wolflee.json b/users/wolflee.json index f0bf2b6f..2dc87c67 100644 --- a/users/wolflee.json +++ b/users/wolflee.json @@ -1,3 +1,3 @@ { - "copyright": "WolfLee" -} + "copyright": "WolfLee" +} \ No newline at end of file diff --git a/users/wong2.json b/users/wong2.json index 65ef5fe8..627d63a0 100644 --- a/users/wong2.json +++ b/users/wong2.json @@ -1,4 +1,4 @@ { - "copyright": "Wang Dapeng", - "url": "http://wong2.cn" -} + "copyright": "Wang Dapeng", + "url": "http://wong2.cn" +} \ No newline at end of file diff --git a/users/wordpresspokhara.json b/users/wordpresspokhara.json index 6d021522..4c01ee7c 100644 --- a/users/wordpresspokhara.json +++ b/users/wordpresspokhara.json @@ -1,5 +1,5 @@ { - "copyright": "WordPress Pokhara", - "url": "https://www.facebook.com/groups/wordpress.pokhara", - "theme": "double-windsor" -} + "copyright": "WordPress Pokhara", + "url": "https://www.facebook.com/groups/wordpress.pokhara", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/wouterjanson.json b/users/wouterjanson.json index 7a7606f8..ff13b454 100644 --- a/users/wouterjanson.json +++ b/users/wouterjanson.json @@ -1,8 +1,8 @@ { - "copyright": "Wouter Janson", - "url": "https://wouterjanson.nl", - "email": "wouterjanson@icloud.com", - "format": "html", - "gravatar": true, - "theme": "mitserrat" -} + "copyright": "Wouter Janson", + "url": "https://wouterjanson.nl", + "email": "wouterjanson@icloud.com", + "format": "html", + "gravatar": true, + "theme": "mitserrat" +} \ No newline at end of file diff --git a/users/wozozo.json b/users/wozozo.json index f4232e34..73cbce2f 100644 --- a/users/wozozo.json +++ b/users/wozozo.json @@ -1,5 +1,5 @@ { - "copyright": "Yoichi Fujimoto, http://wozozo.jp/", - "url": "http://wozozo.jp/", - "theme": "flesch" -} + "copyright": "Yoichi Fujimoto, http://wozozo.jp/", + "url": "http://wozozo.jp/", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/wp-blank-canvas-framework.json b/users/wp-blank-canvas-framework.json index 9a4c449a..96e2dda3 100644 --- a/users/wp-blank-canvas-framework.json +++ b/users/wp-blank-canvas-framework.json @@ -1,6 +1,6 @@ { - "copyright": "$1", - "theme": "$2", - "email": "$3", - "format": "$4" -} + "copyright": "$1", + "theme": "$2", + "email": "$3", + "format": "$4" +} \ No newline at end of file diff --git a/users/wp-freelancer-client-panel.json b/users/wp-freelancer-client-panel.json index 04a2497c..a82c3e74 100644 --- a/users/wp-freelancer-client-panel.json +++ b/users/wp-freelancer-client-panel.json @@ -1,6 +1,6 @@ { - "copyright": "Wordpress Freelancer Client Panel", - "theme": "flesch", - "email": "support@icodeclarity.com", - "format": "html" -} + "copyright": "Wordpress Freelancer Client Panel", + "theme": "flesch", + "email": "support@icodeclarity.com", + "format": "html" +} \ No newline at end of file diff --git a/users/wp-uptimerobot-dashboard-widget.json b/users/wp-uptimerobot-dashboard-widget.json index a0826290..035af349 100644 --- a/users/wp-uptimerobot-dashboard-widget.json +++ b/users/wp-uptimerobot-dashboard-widget.json @@ -1,6 +1,6 @@ { - "copyright": "WP Uptime-Robot Dashboard Widget", - "theme": "orange", - "email": "support@icodeclarity.com", - "format": "html" -} + "copyright": "WP Uptime-Robot Dashboard Widget", + "theme": "orange", + "email": "support@icodeclarity.com", + "format": "html" +} \ No newline at end of file diff --git a/users/wph.json b/users/wph.json index 55579cae..99be50f9 100644 --- a/users/wph.json +++ b/users/wph.json @@ -1,8 +1,8 @@ { - "copyright": "Warren Harrison", - "url": "http://hungry-media.com", - "email": "warren@hungry-media.com", - "format": "html", - "gravatar": true, - "theme": "black beauty" -} + "copyright": "Warren Harrison", + "url": "http://hungry-media.com", + "email": "warren@hungry-media.com", + "format": "html", + "gravatar": true, + "theme": "black beauty" +} \ No newline at end of file diff --git a/users/wpk.json b/users/wpk.json index 46c48453..21fefe02 100644 --- a/users/wpk.json +++ b/users/wpk.json @@ -1,4 +1,4 @@ { - "copyright": "Paul Koppen, http://paulkoppen.com", - "url": "http://paulkoppen.com" -} + "copyright": "Paul Koppen, http://paulkoppen.com", + "url": "http://paulkoppen.com" +} \ No newline at end of file diff --git a/users/wpsitecare.json b/users/wpsitecare.json index 47f1ca12..0676de5f 100644 --- a/users/wpsitecare.json +++ b/users/wpsitecare.json @@ -1,6 +1,6 @@ { - "copyright": "WP Site Care", - "url": "http://www.wpsitecare.com", - "email": "hello@wpsitecare.com", - "gravatar": true -} + "copyright": "WP Site Care", + "url": "http://www.wpsitecare.com", + "email": "hello@wpsitecare.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/wraithan.json b/users/wraithan.json index 8c2dff55..ceeb3bb2 100644 --- a/users/wraithan.json +++ b/users/wraithan.json @@ -1,7 +1,7 @@ { - "copyright": "Chris McDonald", - "url": "http://wraithan.net", - "email": "xwraithanx@gmail.com", - "theme": "flesch", - "gravatar": true -} + "copyright": "Chris McDonald", + "url": "http://wraithan.net", + "email": "xwraithanx@gmail.com", + "theme": "flesch", + "gravatar": true +} \ No newline at end of file diff --git a/users/wrl.json b/users/wrl.json index 71d7c722..aeea11c5 100644 --- a/users/wrl.json +++ b/users/wrl.json @@ -1,5 +1,5 @@ { - "copyright": "William Light", - "email": "wrl@illest.net", - "format": "txt" -} + "copyright": "William Light", + "email": "wrl@illest.net", + "format": "txt" +} \ No newline at end of file diff --git a/users/wrong-entertainment.json b/users/wrong-entertainment.json index de337180..8919fb51 100644 --- a/users/wrong-entertainment.json +++ b/users/wrong-entertainment.json @@ -1,7 +1,7 @@ { - "copyright": "wrong-entertainment, https://www.wrong-entertainment.com", - "url": "http://www.wrong-entertainment.com", - "format": "html", - "gravatar": false, - "theme": "plaintext" -} + "copyright": "wrong-entertainment, https://www.wrong-entertainment.com", + "url": "http://www.wrong-entertainment.com", + "format": "html", + "gravatar": false, + "theme": "plaintext" +} \ No newline at end of file diff --git a/users/wsmoak.json b/users/wsmoak.json index e3398615..b39fb263 100644 --- a/users/wsmoak.json +++ b/users/wsmoak.json @@ -1,6 +1,6 @@ { - "copyright": "Wendy Smoak", - "url": "http://wsmoak.net", - "email": "wsmoak@gmail.com", - "format": "txt" -} + "copyright": "Wendy Smoak", + "url": "http://wsmoak.net", + "email": "wsmoak@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/wtigert.json b/users/wtigert.json index a3537ba5..f938e794 100644 --- a/users/wtigert.json +++ b/users/wtigert.json @@ -1,3 +1,3 @@ { - "copyright": "Wyatt Tigert" -} + "copyright": "Wyatt Tigert" +} \ No newline at end of file diff --git a/users/wttw.json b/users/wttw.json index ae62c0a5..df4686b6 100644 --- a/users/wttw.json +++ b/users/wttw.json @@ -1,6 +1,6 @@ { - "copyright": "Steve Atkins", - "url": "http://labs.wordtothewise.com/", - "email": "steve@wordtothewise.com", - "theme": "double-windsor" -} + "copyright": "Steve Atkins", + "url": "http://labs.wordtothewise.com/", + "email": "steve@wordtothewise.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/wty.json b/users/wty.json index 68435bf5..d417ea48 100644 --- a/users/wty.json +++ b/users/wty.json @@ -1,3 +1,3 @@ { - "copyright": "Tianyu Wang" -} + "copyright": "Tianyu Wang" +} \ No newline at end of file diff --git a/users/wty21cn.json b/users/wty21cn.json index 68435bf5..d417ea48 100644 --- a/users/wty21cn.json +++ b/users/wty21cn.json @@ -1,3 +1,3 @@ { - "copyright": "Tianyu Wang" -} + "copyright": "Tianyu Wang" +} \ No newline at end of file diff --git a/users/wuan.json b/users/wuan.json index fb03f54d..74b3f372 100644 --- a/users/wuan.json +++ b/users/wuan.json @@ -1,3 +1,3 @@ { - "copyright": "Andreas W\u00fcrl" -} + "copyright": "Andreas Würl" +} \ No newline at end of file diff --git a/users/wuthefwasthat.json b/users/wuthefwasthat.json index ade97c1d..bd34c7dc 100644 --- a/users/wuthefwasthat.json +++ b/users/wuthefwasthat.json @@ -1,3 +1,3 @@ { - "copyright": "Jeff Wu" -} + "copyright": "Jeff Wu" +} \ No newline at end of file diff --git a/users/ww24.json b/users/ww24.json index b53641e7..9d489a7e 100644 --- a/users/ww24.json +++ b/users/ww24.json @@ -1,4 +1,4 @@ { - "copyright": "Takenori Nakagawa", - "url": "https://github.com/ww24" -} + "copyright": "Takenori Nakagawa", + "url": "https://github.com/ww24" +} \ No newline at end of file diff --git a/users/wwalker.json b/users/wwalker.json index 598b2d1e..09f99e97 100644 --- a/users/wwalker.json +++ b/users/wwalker.json @@ -1,4 +1,4 @@ { - "copyright": "Wayne Walker", - "email": "wwalker@solid-constructs.com" -} + "copyright": "Wayne Walker", + "email": "wwalker@solid-constructs.com" +} \ No newline at end of file diff --git a/users/wwbrannon.json b/users/wwbrannon.json index 0e2787c3..ed7e7d3b 100644 --- a/users/wwbrannon.json +++ b/users/wwbrannon.json @@ -1,7 +1,7 @@ { - "copyright": "William Brannon (@wwbrannon), https://github.com/wwbrannon/", - "url": "https://willbrannon.com/", - "email": "will.brannon@gmail.com", - "gravatar": true, - "format": "html" -} + "copyright": "William Brannon (@wwbrannon), https://github.com/wwbrannon/", + "url": "https://willbrannon.com/", + "email": "will.brannon@gmail.com", + "gravatar": true, + "format": "html" +} \ No newline at end of file diff --git a/users/wy.json b/users/wy.json index 42f54913..388a1c05 100644 --- a/users/wy.json +++ b/users/wy.json @@ -1,5 +1,5 @@ { - "copyright": "William Youmans", - "url": "http://www.williamyoumans.com", - "email": "hello@williamyoumans.com" -} + "copyright": "William Youmans", + "url": "http://www.williamyoumans.com", + "email": "hello@williamyoumans.com" +} \ No newline at end of file diff --git a/users/wychoe.json b/users/wychoe.json index daaf5be5..a4e78986 100644 --- a/users/wychoe.json +++ b/users/wychoe.json @@ -1,3 +1,3 @@ { - "copyright": "Choe Wooyeong" -} + "copyright": "Choe Wooyeong" +} \ No newline at end of file diff --git a/users/wytrivail.json b/users/wytrivail.json index 57120e08..e586bcf8 100644 --- a/users/wytrivail.json +++ b/users/wytrivail.json @@ -1,3 +1,3 @@ { - "copyright": "wytrivail" -} + "copyright": "wytrivail" +} \ No newline at end of file diff --git a/users/xcuze.json b/users/xcuze.json index 46360ee9..1b0b547a 100644 --- a/users/xcuze.json +++ b/users/xcuze.json @@ -1,6 +1,6 @@ { - "copyright": "Florian Kr\u00fcger", - "url": "http://xcuze.me", - "email": "florian.krueger@projectserver.org", - "theme": "afterdark" -} + "copyright": "Florian Krüger", + "url": "http://xcuze.me", + "email": "florian.krueger@projectserver.org", + "theme": "afterdark" +} \ No newline at end of file diff --git a/users/xerula.json b/users/xerula.json index 3e024441..96904dfd 100644 --- a/users/xerula.json +++ b/users/xerula.json @@ -1,6 +1,6 @@ { - "copyright": "Joseph Kai Russell", - "url": "http://xerula.com", - "email": "xerula@gmail.com", - "format": "html" -} + "copyright": "Joseph Kai Russell", + "url": "http://xerula.com", + "email": "xerula@gmail.com", + "format": "html" +} \ No newline at end of file diff --git a/users/xffljjqbqvsywxqakpvdbwyqqyt.json b/users/xffljjqbqvsywxqakpvdbwyqqyt.json index f22aa22e..087944fc 100644 --- a/users/xffljjqbqvsywxqakpvdbwyqqyt.json +++ b/users/xffljjqbqvsywxqakpvdbwyqqyt.json @@ -1,3 +1,3 @@ { - "copyright": "xffljjqbqvsywxqakpvdbwyqqyt" -} + "copyright": "xffljjqbqvsywxqakpvdbwyqqyt" +} \ No newline at end of file diff --git a/users/xhh.json b/users/xhh.json index aca68c4b..1b70c8e4 100644 --- a/users/xhh.json +++ b/users/xhh.json @@ -1,6 +1,6 @@ { - "copyright": "Xu Hui Hui", - "url": "http://xhh.me", - "email": "xhh@xhh.me", - "format": "txt" -} + "copyright": "Xu Hui Hui", + "url": "http://xhh.me", + "email": "xhh@xhh.me", + "format": "txt" +} \ No newline at end of file diff --git a/users/xiaods.json b/users/xiaods.json index 4e7c8b7a..fc1c4bba 100644 --- a/users/xiaods.json +++ b/users/xiaods.json @@ -1,6 +1,6 @@ { - "copyright": "Deshi Xiao", - "url": "http://coder.858go.com/", - "email": "xiaods@gmail.com", - "format": "html" -} + "copyright": "Deshi Xiao", + "url": "http://coder.858go.com/", + "email": "xiaods@gmail.com", + "format": "html" +} \ No newline at end of file diff --git a/users/xight.json b/users/xight.json index 37da94b6..ce0a87cd 100644 --- a/users/xight.json +++ b/users/xight.json @@ -1,5 +1,5 @@ { - "copyright": "Yoshiki Sato", - "url": "http://xight.org", - "gravatar": true -} + "copyright": "Yoshiki Sato", + "url": "http://xight.org", + "gravatar": true +} \ No newline at end of file diff --git a/users/ximi.json b/users/ximi.json index 08c923c8..25430cce 100644 --- a/users/ximi.json +++ b/users/ximi.json @@ -1,6 +1,6 @@ { - "copyright": "Max (ximi)", - "url": "http://ximi.io", - "email": "max@ximi.io", - "format": "txt" -} + "copyright": "Max (ximi)", + "url": "http://ximi.io", + "email": "max@ximi.io", + "format": "txt" +} \ No newline at end of file diff --git a/users/xinuc.json b/users/xinuc.json index 2c23f740..c232c4c1 100644 --- a/users/xinuc.json +++ b/users/xinuc.json @@ -1,3 +1,3 @@ { - "copyright": "Nugroho Herucahyono" -} + "copyright": "Nugroho Herucahyono" +} \ No newline at end of file diff --git a/users/xkerman.json b/users/xkerman.json index a6336321..b48764e7 100644 --- a/users/xkerman.json +++ b/users/xkerman.json @@ -1,4 +1,4 @@ { - "copyright": "xKerman", - "url": "https://github.com/xKerman" -} + "copyright": "xKerman", + "url": "https://github.com/xKerman" +} \ No newline at end of file diff --git a/users/xlab.json b/users/xlab.json index c86aeb2f..c2efd396 100644 --- a/users/xlab.json +++ b/users/xlab.json @@ -1,6 +1,6 @@ { - "copyright": "Maxim Kupriianov", - "url": "https://xlab.is", - "email": "max@kc.vc", - "format": "txt" -} + "copyright": "Maxim Kupriianov", + "url": "https://xlab.is", + "email": "max@kc.vc", + "format": "txt" +} \ No newline at end of file diff --git a/users/xlune.json b/users/xlune.json index 72b3b21e..994125cd 100644 --- a/users/xlune.json +++ b/users/xlune.json @@ -1,6 +1,6 @@ { - "copyright": "Xlune, http://xlune.com", - "url": "http://xlune.com", - "gravatar": true, - "theme": "silver-style" -} + "copyright": "Xlune, http://xlune.com", + "url": "http://xlune.com", + "gravatar": true, + "theme": "silver-style" +} \ No newline at end of file diff --git a/users/xoebus.json b/users/xoebus.json index 3bf56c2e..28c3f1b1 100644 --- a/users/xoebus.json +++ b/users/xoebus.json @@ -1,6 +1,6 @@ { - "copyright": "Chris Brown", - "url": "http://xoeb.us", - "email": "chris@xoeb.us", - "format": "txt" -} + "copyright": "Chris Brown", + "url": "http://xoeb.us", + "email": "chris@xoeb.us", + "format": "txt" +} \ No newline at end of file diff --git a/users/xsc.json b/users/xsc.json index da11e774..c57a094a 100644 --- a/users/xsc.json +++ b/users/xsc.json @@ -1,6 +1,6 @@ { - "copyright": "Yannick Scherer", - "url": "https://xsc.github.io", - "email": "yannick.scherer@gmail.com", - "gravatar": true -} + "copyright": "Yannick Scherer", + "url": "https://xsc.github.io", + "email": "yannick.scherer@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/xtansia.json b/users/xtansia.json index 63cf0d7d..b3a6f0cd 100644 --- a/users/xtansia.json +++ b/users/xtansia.json @@ -1,7 +1,7 @@ { - "copyright": "Thomas Farr, http://xtansia.github.com", - "url": "http://xtansia.github.com", - "email": "farr.thomas@gmail.com", - "format": "html", - "theme": "xtansia" -} + "copyright": "Thomas Farr, http://xtansia.github.com", + "url": "http://xtansia.github.com", + "email": "farr.thomas@gmail.com", + "format": "html", + "theme": "xtansia" +} \ No newline at end of file diff --git a/users/xuhong.json b/users/xuhong.json index 4552d274..2c4527ec 100644 --- a/users/xuhong.json +++ b/users/xuhong.json @@ -1,5 +1,5 @@ { - "copyright": "xuhong chen", - "url": "http://xuhong.github.com", - "email": "cxh710200711@gmail.com" -} + "copyright": "xuhong chen", + "url": "http://xuhong.github.com", + "email": "cxh710200711@gmail.com" +} \ No newline at end of file diff --git a/users/xuncheng.json b/users/xuncheng.json index de2b4459..555e71fa 100644 --- a/users/xuncheng.json +++ b/users/xuncheng.json @@ -1,5 +1,5 @@ { - "copyright": "Xuncheng Wang", - "url": "https://xuncheng.github.io", - "email": "w.xun.cheng@gmail.com" -} + "copyright": "Xuncheng Wang", + "url": "https://xuncheng.github.io", + "email": "w.xun.cheng@gmail.com" +} \ No newline at end of file diff --git a/users/xyc.json b/users/xyc.json index 913557f1..7bf9f39e 100644 --- a/users/xyc.json +++ b/users/xyc.json @@ -1,3 +1,3 @@ { - "copyright": "Xiaoyi Chen" -} + "copyright": "Xiaoyi Chen" +} \ No newline at end of file diff --git a/users/y3sh.json b/users/y3sh.json index 4cf1ebfe..2ca7d7c7 100644 --- a/users/y3sh.json +++ b/users/y3sh.json @@ -1,6 +1,6 @@ { - "copyright": "Josh Hibschman", - "url": "http://y3sh.com", - "email": "joshhibschman@gmail.com", - "format": "txt" -} + "copyright": "Josh Hibschman", + "url": "http://y3sh.com", + "email": "joshhibschman@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/y6nH.json b/users/y6nH.json index 69e6ce5e..aca8463b 100644 --- a/users/y6nH.json +++ b/users/y6nH.json @@ -1,4 +1,4 @@ { - "copyright": "Hugh Spiller", - "url": "https://y6nh.github.io/" -} + "copyright": "Hugh Spiller", + "url": "https://y6nh.github.io/" +} \ No newline at end of file diff --git a/users/ya-ota.json b/users/ya-ota.json index 9bffc350..4332a273 100644 --- a/users/ya-ota.json +++ b/users/ya-ota.json @@ -1,6 +1,6 @@ { - "copyright": "Yasuhiro Ota", - "url": "http://ccm-lulu.com", - "email": "ya-ota@ccm-lulu.com", - "format": "txt" -} + "copyright": "Yasuhiro Ota", + "url": "http://ccm-lulu.com", + "email": "ya-ota@ccm-lulu.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/yadavjpr.json b/users/yadavjpr.json index 0dd29eb0..d58d5db1 100644 --- a/users/yadavjpr.json +++ b/users/yadavjpr.json @@ -1,6 +1,6 @@ { - "copyright": "Kailash Yadav", - "url": "http://kailashyadav.in", - "email": "yadavjpr@gmail.com", - "gravatar": true -} + "copyright": "Kailash Yadav", + "url": "http://kailashyadav.in", + "email": "yadavjpr@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/yaler.json b/users/yaler.json index 688b6d7a..87b48a38 100644 --- a/users/yaler.json +++ b/users/yaler.json @@ -1,3 +1,3 @@ { - "copyright": "Yaler GmbH" -} + "copyright": "Yaler GmbH" +} \ No newline at end of file diff --git a/users/yantene.json b/users/yantene.json index 8b5fff42..1b133232 100644 --- a/users/yantene.json +++ b/users/yantene.json @@ -1,4 +1,4 @@ { - "copyright": "yantene", - "url": "http://yantene.net" -} + "copyright": "yantene", + "url": "http://yantene.net" +} \ No newline at end of file diff --git a/users/yanyiwu.json b/users/yanyiwu.json index 81f2bd95..f19b0f85 100644 --- a/users/yanyiwu.json +++ b/users/yanyiwu.json @@ -1,6 +1,6 @@ { - "copyright": "Yanyi Wu", - "url": "http://yanyiwu.com", - "email": "i@yanyiwu.com", - "format": "txt" -} + "copyright": "Yanyi Wu", + "url": "http://yanyiwu.com", + "email": "i@yanyiwu.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/yappo.json b/users/yappo.json index f26877ea..7debda0a 100644 --- a/users/yappo.json +++ b/users/yappo.json @@ -1,6 +1,6 @@ { - "copyright": "Kazuhiro Osawa, http://search.cpan.org/~yappo/", - "email": "yappo@shibuya.pl", - "url": "http://search.cpan.org/~yappo/", - "theme": "plaintext" -} + "copyright": "Kazuhiro Osawa, http://search.cpan.org/~yappo/", + "email": "yappo@shibuya.pl", + "url": "http://search.cpan.org/~yappo/", + "theme": "plaintext" +} \ No newline at end of file diff --git a/users/yarmomackenbach.json b/users/yarmomackenbach.json index a5786c89..44dcaadb 100644 --- a/users/yarmomackenbach.json +++ b/users/yarmomackenbach.json @@ -1,6 +1,6 @@ { - "copyright": "Yarmo Mackenbach", - "url": "http://medea.one", - "email": "yarmo@medea.one", - "format": "html" -} + "copyright": "Yarmo Mackenbach", + "url": "http://medea.one", + "email": "yarmo@medea.one", + "format": "html" +} \ No newline at end of file diff --git a/users/yaro.json b/users/yaro.json index 939bd36b..2dbee273 100644 --- a/users/yaro.json +++ b/users/yaro.json @@ -1,7 +1,7 @@ { - "copyright": "Jaroslav Janukevic", - "url": "http://moca.li", - "email": "yaro@moca.li", - "format": "html", - "theme": "hipster-gray" -} + "copyright": "Jaroslav Janukevic", + "url": "http://moca.li", + "email": "yaro@moca.li", + "format": "html", + "theme": "hipster-gray" +} \ No newline at end of file diff --git a/users/yashar.json b/users/yashar.json index 68b4768a..495e3311 100644 --- a/users/yashar.json +++ b/users/yashar.json @@ -1,6 +1,6 @@ { - "copyright": "Yashar Imanlou", - "url": "http://yash.im", - "email": "me@yash.im", - "format": "html" -} + "copyright": "Yashar Imanlou", + "url": "http://yash.im", + "email": "me@yash.im", + "format": "html" +} \ No newline at end of file diff --git a/users/yasyf.json b/users/yasyf.json index af27d532..dc9997e0 100644 --- a/users/yasyf.json +++ b/users/yasyf.json @@ -1,6 +1,6 @@ { - "copyright": "Yasyf Mohamedali, http://www.yasyf.com", - "url": "http://www.yasyf.com", - "gravatar": true, - "theme": "double-windsor" -} + "copyright": "Yasyf Mohamedali, http://www.yasyf.com", + "url": "http://www.yasyf.com", + "gravatar": true, + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/yatil.json b/users/yatil.json index a6654f04..54638f03 100644 --- a/users/yatil.json +++ b/users/yatil.json @@ -1,4 +1,4 @@ { - "copyright": "Eric Eggert, http://yatil.net", - "url": "http://yatil.net" -} + "copyright": "Eric Eggert, http://yatil.net", + "url": "http://yatil.net" +} \ No newline at end of file diff --git a/users/yeltsin.json b/users/yeltsin.json index 86e24743..f24777b7 100644 --- a/users/yeltsin.json +++ b/users/yeltsin.json @@ -1,3 +1,3 @@ { - "copyright": "Yeltsin Lima" -} + "copyright": "Yeltsin Lima" +} \ No newline at end of file diff --git a/users/yhnavein.json b/users/yhnavein.json index 4e2dfd12..fe033709 100644 --- a/users/yhnavein.json +++ b/users/yhnavein.json @@ -1,3 +1,3 @@ { - "copyright": "Piotrek D\u0105browski" -} + "copyright": "Piotrek Dąbrowski" +} \ No newline at end of file diff --git a/users/yimengtianya.json b/users/yimengtianya.json index 7a891793..11f6e013 100644 --- a/users/yimengtianya.json +++ b/users/yimengtianya.json @@ -1,3 +1,3 @@ { - "copyright": "yimengtianya" -} + "copyright": "yimengtianya" +} \ No newline at end of file diff --git a/users/yimengtianya1.json b/users/yimengtianya1.json index f142bf1d..64dae92a 100644 --- a/users/yimengtianya1.json +++ b/users/yimengtianya1.json @@ -1,6 +1,6 @@ { - "copyright": "yimengtianya", - "url": "http://remysharp.com", - "email": "support@wilddog.com", - "format": "txt" -} + "copyright": "yimengtianya", + "url": "http://remysharp.com", + "email": "support@wilddog.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/yimengtianya444.json b/users/yimengtianya444.json index f142bf1d..64dae92a 100644 --- a/users/yimengtianya444.json +++ b/users/yimengtianya444.json @@ -1,6 +1,6 @@ { - "copyright": "yimengtianya", - "url": "http://remysharp.com", - "email": "support@wilddog.com", - "format": "txt" -} + "copyright": "yimengtianya", + "url": "http://remysharp.com", + "email": "support@wilddog.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/yiramang.json b/users/yiramang.json index f27641ad..928a528f 100644 --- a/users/yiramang.json +++ b/users/yiramang.json @@ -1,3 +1,3 @@ { - "copyright": "Yiramang" -} + "copyright": "Yiramang" +} \ No newline at end of file diff --git a/users/ylrxeidx.json b/users/ylrxeidx.json index 385527e0..bc59bd26 100644 --- a/users/ylrxeidx.json +++ b/users/ylrxeidx.json @@ -1,5 +1,5 @@ { - "copyright": "Aldo Iljazi", - "email": "ylrxeidx@openmailbox.org", - "theme": "flesch" -} + "copyright": "Aldo Iljazi", + "email": "ylrxeidx@openmailbox.org", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/yoelp.json b/users/yoelp.json index 8bcd40a0..cef118a6 100644 --- a/users/yoelp.json +++ b/users/yoelp.json @@ -1,3 +1,3 @@ { - "copyright": "Yoel Porgesz" -} + "copyright": "Yoel Porgesz" +} \ No newline at end of file diff --git a/users/yogesh.json b/users/yogesh.json index 2c39b65d..ba080b38 100644 --- a/users/yogesh.json +++ b/users/yogesh.json @@ -1,5 +1,5 @@ { - "copyright": "Yogesh Chaudhari, http://www.cyogesh.com", - "url": "http://www.cyogesh.com", - "email": "mr.yogesh@gmail.com" -} + "copyright": "Yogesh Chaudhari, http://www.cyogesh.com", + "url": "http://www.cyogesh.com", + "email": "mr.yogesh@gmail.com" +} \ No newline at end of file diff --git a/users/yoggy.json b/users/yoggy.json index 06516b97..0056e682 100644 --- a/users/yoggy.json +++ b/users/yoggy.json @@ -1,4 +1,4 @@ { - "copyright": "yoggy", - "url": "https://github.com/yoggy" -} + "copyright": "yoggy", + "url": "https://github.com/yoggy" +} \ No newline at end of file diff --git a/users/yoginth.json b/users/yoginth.json index d3aec3b0..d99801bf 100644 --- a/users/yoginth.json +++ b/users/yoginth.json @@ -1,6 +1,6 @@ { - "copyright": "Yoginth", - "url": "https://yoginth.ml", - "email": "yoginth@zoho.com", - "gravatar": true -} + "copyright": "Yoginth", + "url": "https://yoginth.ml", + "email": "yoginth@zoho.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/yoloconfessions.json b/users/yoloconfessions.json index e821094d..611dccf6 100644 --- a/users/yoloconfessions.json +++ b/users/yoloconfessions.json @@ -1,3 +1,3 @@ { - "copyright": "John Jensen and Jonah Kirangi" -} + "copyright": "John Jensen and Jonah Kirangi" +} \ No newline at end of file diff --git a/users/yoruaki.json b/users/yoruaki.json index 7a6d2875..e15f1339 100644 --- a/users/yoruaki.json +++ b/users/yoruaki.json @@ -1,5 +1,5 @@ { - "copyright": "yoruaki", - "url": "http://simpleism.net/", - "theme": "default" -} + "copyright": "yoruaki", + "url": "http://simpleism.net/", + "theme": "default" +} \ No newline at end of file diff --git a/users/yoshuki.json b/users/yoshuki.json index 061d6e32..f3744a0d 100644 --- a/users/yoshuki.json +++ b/users/yoshuki.json @@ -1,4 +1,4 @@ { - "copyright": "MIKAMI Yoshiyuki", - "url": "http://saikyoline.jp/" -} + "copyright": "MIKAMI Yoshiyuki", + "url": "http://saikyoline.jp/" +} \ No newline at end of file diff --git a/users/yosida95.json b/users/yosida95.json index 43ad740e..1f328f4d 100644 --- a/users/yosida95.json +++ b/users/yosida95.json @@ -1,7 +1,7 @@ { - "copyright": "Kohei YOSHIDA, https://yosida95.com/", - "url": "https://yosida95.com", - "email": "license@yosida95.com", - "theme": "friendly", - "gravatar": true -} + "copyright": "Kohei YOSHIDA, https://yosida95.com/", + "url": "https://yosida95.com", + "email": "license@yosida95.com", + "theme": "friendly", + "gravatar": true +} \ No newline at end of file diff --git a/users/yosugi.json b/users/yosugi.json index 5f6659b2..f2927e11 100644 --- a/users/yosugi.json +++ b/users/yosugi.json @@ -1,3 +1,3 @@ { - "copyright": "yosugi" -} + "copyright": "yosugi" +} \ No newline at end of file diff --git a/users/yotpo.json b/users/yotpo.json index f23f39e1..59fc601a 100644 --- a/users/yotpo.json +++ b/users/yotpo.json @@ -1,6 +1,6 @@ { - "copyright": "Yotpo", - "url": "https://www.yotpo.com", - "email": "vlad@yotpo.com", - "format": "md" -} + "copyright": "Yotpo", + "url": "https://www.yotpo.com", + "email": "vlad@yotpo.com", + "format": "md" +} \ No newline at end of file diff --git a/users/youhide.json b/users/youhide.json index b9799d5e..e3120be0 100644 --- a/users/youhide.json +++ b/users/youhide.json @@ -1,3 +1,3 @@ { - "copyright": "YouHide" -} + "copyright": "YouHide" +} \ No newline at end of file diff --git a/users/yousuf.json b/users/yousuf.json index 54eb9d2b..84f5552f 100644 --- a/users/yousuf.json +++ b/users/yousuf.json @@ -1,6 +1,6 @@ { - "copyright": "Yousuf Fauzan", - "url": "http://fauzism.com", - "email": "yousuffauzan@gmail.com", - "format": "txt" -} + "copyright": "Yousuf Fauzan", + "url": "http://fauzism.com", + "email": "yousuffauzan@gmail.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/yousuf2.json b/users/yousuf2.json index 548309fd..09c45b7d 100644 --- a/users/yousuf2.json +++ b/users/yousuf2.json @@ -1,7 +1,7 @@ { - "copyright": "Yousuf Fauzan", - "url": "http://fauzism.com", - "email": "yousuffauzan@gmail.com", - "format": "txt", - "theme": "default" -} + "copyright": "Yousuf Fauzan", + "url": "http://fauzism.com", + "email": "yousuffauzan@gmail.com", + "format": "txt", + "theme": "default" +} \ No newline at end of file diff --git a/users/yousuf3.json b/users/yousuf3.json index 300b8fc1..21d0786d 100644 --- a/users/yousuf3.json +++ b/users/yousuf3.json @@ -1,6 +1,6 @@ { - "copyright": "Yousuf Fauzan", - "url": "http://fauzism.com", - "email": "yousuffauzan@gmail.com", - "theme": "default" -} + "copyright": "Yousuf Fauzan", + "url": "http://fauzism.com", + "email": "yousuffauzan@gmail.com", + "theme": "default" +} \ No newline at end of file diff --git a/users/yrosen.json b/users/yrosen.json index f26ac393..24dd0ac0 100644 --- a/users/yrosen.json +++ b/users/yrosen.json @@ -1,4 +1,4 @@ { - "copyright": "Yudi Rosen, http://yudirosen.com", - "url": "http://yudirosen.com" -} + "copyright": "Yudi Rosen, http://yudirosen.com", + "url": "http://yudirosen.com" +} \ No newline at end of file diff --git a/users/ysarbabi.json b/users/ysarbabi.json index d54477c6..33a31ce4 100644 --- a/users/ysarbabi.json +++ b/users/ysarbabi.json @@ -1,7 +1,7 @@ { - "copyright": "Yahya SayadArbabi", - "url": "http://ysarbabi.ir", - "email": "yahya.arbabi@gmail.com", - "format": "html", - "gravatar": true -} + "copyright": "Yahya SayadArbabi", + "url": "http://ysarbabi.ir", + "email": "yahya.arbabi@gmail.com", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/yshrsmz.json b/users/yshrsmz.json index 3a78b762..77b38724 100644 --- a/users/yshrsmz.json +++ b/users/yshrsmz.json @@ -1,5 +1,5 @@ { - "copyright": "Yasuhiro Shimizu", - "email": "yshrsmz.lab@gmail.com", - "theme": "eula-modern" -} + "copyright": "Yasuhiro Shimizu", + "email": "yshrsmz.lab@gmail.com", + "theme": "eula-modern" +} \ No newline at end of file diff --git a/users/ysong.json b/users/ysong.json index 2ddc9b7d..199ef2a5 100644 --- a/users/ysong.json +++ b/users/ysong.json @@ -1,6 +1,6 @@ { - "copyright": "Song Yang", - "url": "http://github.com/ysong", - "email": "ysong@139.com", - "format": "txt" -} + "copyright": "Song Yang", + "url": "http://github.com/ysong", + "email": "ysong@139.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/ytaler.json b/users/ytaler.json index 113a2d14..dbf76622 100644 --- a/users/ytaler.json +++ b/users/ytaler.json @@ -1,7 +1,7 @@ { - "copyright": "Yamil Taler", - "url": "http://ytaler.github.io/", - "email": "yamil.taler@gmail.com", - "gravatar": true, - "theme": "eula-modern" -} + "copyright": "Yamil Taler", + "url": "http://ytaler.github.io/", + "email": "yamil.taler@gmail.com", + "gravatar": true, + "theme": "eula-modern" +} \ No newline at end of file diff --git a/users/yu-cheng-chuang.json b/users/yu-cheng-chuang.json index 18f60e13..e3111030 100644 --- a/users/yu-cheng-chuang.json +++ b/users/yu-cheng-chuang.json @@ -1,5 +1,5 @@ { - "copyright": "Yu-Cheng Chuang", - "url": "http://yorkxin.org", - "theme": "hipster-gray" -} + "copyright": "Yu-Cheng Chuang", + "url": "http://yorkxin.org", + "theme": "hipster-gray" +} \ No newline at end of file diff --git a/users/yuanyan.json b/users/yuanyan.json index 0b90475b..e287137b 100644 --- a/users/yuanyan.json +++ b/users/yuanyan.json @@ -1,6 +1,6 @@ { - "copyright": "yuanyan, http://madscript.com", - "url": "http://madscript.com", - "theme": "flesch", - "gravatar": true -} + "copyright": "yuanyan, http://madscript.com", + "url": "http://madscript.com", + "theme": "flesch", + "gravatar": true +} \ No newline at end of file diff --git a/users/yuchi.json b/users/yuchi.json index 3e63d0b3..906ede24 100644 --- a/users/yuchi.json +++ b/users/yuchi.json @@ -1,3 +1,3 @@ { - "copyright": "Pier Paolo Ramon" -} + "copyright": "Pier Paolo Ramon" +} \ No newline at end of file diff --git a/users/yudoufu.json b/users/yudoufu.json index b46e1903..89da5b52 100644 --- a/users/yudoufu.json +++ b/users/yudoufu.json @@ -1,5 +1,5 @@ { - "copyright": "Daichi Kamemoto(a.k.a:yudoufu)", - "url": "http://yudoufu.com/", - "theme": "default" -} + "copyright": "Daichi Kamemoto(a.k.a:yudoufu)", + "url": "http://yudoufu.com/", + "theme": "default" +} \ No newline at end of file diff --git a/users/yudppp.json b/users/yudppp.json index 1cef2d23..7519dfd1 100644 --- a/users/yudppp.json +++ b/users/yudppp.json @@ -1,3 +1,3 @@ { - "copyright": "yudppp" -} + "copyright": "yudppp" +} \ No newline at end of file diff --git a/users/yuhki50.json b/users/yuhki50.json index 2c3508f4..f5b1f3e5 100644 --- a/users/yuhki50.json +++ b/users/yuhki50.json @@ -1,4 +1,4 @@ { - "copyright": "Yuuki Taguchi", - "url": "https://github.com/yuhki50" -} + "copyright": "Yuuki Taguchi", + "url": "https://github.com/yuhki50" +} \ No newline at end of file diff --git a/users/yulun.json b/users/yulun.json index a11b9072..5c3f8f4d 100644 --- a/users/yulun.json +++ b/users/yulun.json @@ -1,7 +1,7 @@ { - "copyright": "YuLun Shih, http://yulun.me", - "url": "http://yulun.me", - "theme": "black-beauty", - "email": "shih@yulun.me", - "gravatar": true -} + "copyright": "YuLun Shih, http://yulun.me", + "url": "http://yulun.me", + "theme": "black-beauty", + "email": "shih@yulun.me", + "gravatar": true +} \ No newline at end of file diff --git a/users/yungsang.json b/users/yungsang.json index 46b8854d..83791ee4 100644 --- a/users/yungsang.json +++ b/users/yungsang.json @@ -1,7 +1,7 @@ { - "copyright": "YungSang", - "url": "http://yungsang.com", - "email": "info@yungsang.com", - "theme": "flesch", - "gravatar": "ture" -} + "copyright": "YungSang", + "url": "http://yungsang.com", + "email": "info@yungsang.com", + "theme": "flesch", + "gravatar": "ture" +} \ No newline at end of file diff --git a/users/yuniorusop.json b/users/yuniorusop.json index 712b1bad..1a6b01f5 100644 --- a/users/yuniorusop.json +++ b/users/yuniorusop.json @@ -1,7 +1,7 @@ { - "copyright": "Yunior Rahmawan Usop", - "url": "http://www.yuniorusop.com", - "email": "yonkyunior@gmail.com", - "theme": "black-beauty", - "gravatar": true -} + "copyright": "Yunior Rahmawan Usop", + "url": "http://www.yuniorusop.com", + "email": "yonkyunior@gmail.com", + "theme": "black-beauty", + "gravatar": true +} \ No newline at end of file diff --git a/users/yuriel.json b/users/yuriel.json index 48497497..7af614f4 100644 --- a/users/yuriel.json +++ b/users/yuriel.json @@ -1,5 +1,5 @@ { - "copyright": "Yuriel, http://www.zyy1217.com", - "url": "http://www.zyy1217.com", - "theme": "double-windsor" -} + "copyright": "Yuriel, http://www.zyy1217.com", + "url": "http://www.zyy1217.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/yuriy.json b/users/yuriy.json index 04358435..94c93c27 100644 --- a/users/yuriy.json +++ b/users/yuriy.json @@ -1,3 +1,3 @@ { - "copyright": "Yuriy Arabskyy" -} + "copyright": "Yuriy Arabskyy" +} \ No newline at end of file diff --git a/users/yurrriq.json b/users/yurrriq.json index 1d7a3bd7..64955f50 100644 --- a/users/yurrriq.json +++ b/users/yurrriq.json @@ -1,6 +1,6 @@ { - "copyright": "Eric Bailey", - "url": "http://ericb.me", - "email": "eric@ericb.me", - "format": "txt" -} + "copyright": "Eric Bailey", + "url": "http://ericb.me", + "email": "eric@ericb.me", + "format": "txt" +} \ No newline at end of file diff --git a/users/yusuke.json b/users/yusuke.json index 514f48c7..27d4b644 100644 --- a/users/yusuke.json +++ b/users/yusuke.json @@ -1,4 +1,4 @@ { - "copyright": "Yusuke Matsubara", - "url": "http://whym.org" -} + "copyright": "Yusuke Matsubara", + "url": "http://whym.org" +} \ No newline at end of file diff --git a/users/yzlow.json b/users/yzlow.json index e1b280bb..e256395f 100644 --- a/users/yzlow.json +++ b/users/yzlow.json @@ -1,3 +1,3 @@ { - "copyright": "Low Yong Zhen" -} + "copyright": "Low Yong Zhen" +} \ No newline at end of file diff --git a/users/z.json b/users/z.json index a308f2f8..1a267901 100644 --- a/users/z.json +++ b/users/z.json @@ -1,5 +1,5 @@ { - "copyright": "\u6587\u5f3a \u5b8b", - "email": "z.tar.gz@gmail.com", - "theme": "double-windsor" -} + "copyright": "文强 宋", + "email": "z.tar.gz@gmail.com", + "theme": "double-windsor" +} \ No newline at end of file diff --git a/users/zachary.json b/users/zachary.json index 69c12292..774d7f4e 100644 --- a/users/zachary.json +++ b/users/zachary.json @@ -1,5 +1,5 @@ { - "copyright": "Zachary Espiritu, ", - "url": "http://zacharyespiritu.com", - "email": "me@zacharyespiritu.com" -} + "copyright": "Zachary Espiritu, ", + "url": "http://zacharyespiritu.com", + "email": "me@zacharyespiritu.com" +} \ No newline at end of file diff --git a/users/zaki-yama.json b/users/zaki-yama.json index 8548ae0c..db274246 100644 --- a/users/zaki-yama.json +++ b/users/zaki-yama.json @@ -1,5 +1,5 @@ { - "copyright": "Shingo Yamazaki", - "url": "https://github.com/zaki-yama", - "email": "shingoyamazaki00@gmail.com" -} + "copyright": "Shingo Yamazaki", + "url": "https://github.com/zaki-yama", + "email": "shingoyamazaki00@gmail.com" +} \ No newline at end of file diff --git a/users/zander.json b/users/zander.json index dde6aeb8..d09c1b06 100644 --- a/users/zander.json +++ b/users/zander.json @@ -1,4 +1,4 @@ { - "copyright": "Zander Martineau", - "url": "http://martineau.tv" -} + "copyright": "Zander Martineau", + "url": "http://martineau.tv" +} \ No newline at end of file diff --git a/users/zaploink.json b/users/zaploink.json index 17db88b7..93293334 100644 --- a/users/zaploink.json +++ b/users/zaploink.json @@ -1,6 +1,6 @@ { - "copyright": "Kaspar von Gunten", - "url": "http://code.zaploink.org", - "email": "zaploink@code.zaploink.org", - "theme": "willpower" -} + "copyright": "Kaspar von Gunten", + "url": "http://code.zaploink.org", + "email": "zaploink@code.zaploink.org", + "theme": "willpower" +} \ No newline at end of file diff --git a/users/zaurus.json b/users/zaurus.json index 4d799911..41914287 100644 --- a/users/zaurus.json +++ b/users/zaurus.json @@ -1,3 +1,3 @@ { - "copyright": "Edge.Blogger" -} + "copyright": "Edge.Blogger" +} \ No newline at end of file diff --git a/users/zaz600.json b/users/zaz600.json index c033a222..08f62d6a 100644 --- a/users/zaz600.json +++ b/users/zaz600.json @@ -1,5 +1,5 @@ { - "copyright": "Dmitriy Denisov", - "email": "zaz600@gmail.com", - "gravatar": true -} + "copyright": "Dmitriy Denisov", + "email": "zaz600@gmail.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/zdwolfe.json b/users/zdwolfe.json index 382a55e0..f1ec9a56 100644 --- a/users/zdwolfe.json +++ b/users/zdwolfe.json @@ -1,7 +1,7 @@ { - "copyright": "Zachary Wolfe", - "url": "http://zdwolfe.net", - "email": "wolfe.zach@gmail.com", - "format": "txt", - "gravatar": true -} + "copyright": "Zachary Wolfe", + "url": "http://zdwolfe.net", + "email": "wolfe.zach@gmail.com", + "format": "txt", + "gravatar": true +} \ No newline at end of file diff --git a/users/zebmccorkle.json b/users/zebmccorkle.json index 185b2f71..d42f6de8 100644 --- a/users/zebmccorkle.json +++ b/users/zebmccorkle.json @@ -1,8 +1,8 @@ { - "copyright": "Zebulon McCorkle", - "url": "https://zebmccorkle.me", - "email": "zebmccorkle@gmail.com", - "format": "html", - "gravatar": true, - "theme": "friendly" -} + "copyright": "Zebulon McCorkle", + "url": "https://zebmccorkle.me", + "email": "zebmccorkle@gmail.com", + "format": "html", + "gravatar": true, + "theme": "friendly" +} \ No newline at end of file diff --git a/users/zellio.json b/users/zellio.json index a8902593..8b82dfae 100644 --- a/users/zellio.json +++ b/users/zellio.json @@ -1,5 +1,5 @@ { - "copyright": "Zachary Elliott", - "email": "zach@nyu.edu", - "format": "txt" -} + "copyright": "Zachary Elliott", + "email": "zach@nyu.edu", + "format": "txt" +} \ No newline at end of file diff --git a/users/zen.json b/users/zen.json index 77c9e2d6..a189c8d7 100644 --- a/users/zen.json +++ b/users/zen.json @@ -1,6 +1,6 @@ { - "copyright": "Zen Savona", - "url": "http://zensavona.com", - "email": "z@zensavona.com", - "format": "txt" -} + "copyright": "Zen Savona", + "url": "http://zensavona.com", + "email": "z@zensavona.com", + "format": "txt" +} \ No newline at end of file diff --git a/users/zenjoy.json b/users/zenjoy.json index e53adf55..01923585 100644 --- a/users/zenjoy.json +++ b/users/zenjoy.json @@ -1,6 +1,6 @@ { - "copyright": "Zenjoy", - "url": "http://www.zenjoy.be", - "email": "hello@zenjoy.be", - "theme": "flesch" -} + "copyright": "Zenjoy", + "url": "http://www.zenjoy.be", + "email": "hello@zenjoy.be", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/zenorocha.json b/users/zenorocha.json index de1fb658..906f2bf3 100644 --- a/users/zenorocha.json +++ b/users/zenorocha.json @@ -1,5 +1,5 @@ { - "copyright": "Zeno Rocha", - "url": "http://zenorocha.com", - "email": "hi@zenorocha.com" -} + "copyright": "Zeno Rocha", + "url": "http://zenorocha.com", + "email": "hi@zenorocha.com" +} \ No newline at end of file diff --git a/users/zenry.json b/users/zenry.json index 940f3402..e7025059 100644 --- a/users/zenry.json +++ b/users/zenry.json @@ -1,7 +1,7 @@ { - "copyright": "Henry Louwhoff", - "url": "http://zenry.github.io", - "email": "henry@postb.us", - "format": "html", - "gravatar": true -} + "copyright": "Henry Louwhoff", + "url": "http://zenry.github.io", + "email": "henry@postb.us", + "format": "html", + "gravatar": true +} \ No newline at end of file diff --git a/users/zhengyi.json b/users/zhengyi.json index f4f74f6e..64c46642 100644 --- a/users/zhengyi.json +++ b/users/zhengyi.json @@ -1,6 +1,6 @@ { - "copyright": "Zhengyi Yang, http://zhengyi.one", - "url": "http://zhengyi.one", - "email": "zhengyi.one@outlook.com", - "gravatar": true -} + "copyright": "Zhengyi Yang, http://zhengyi.one", + "url": "http://zhengyi.one", + "email": "zhengyi.one@outlook.com", + "gravatar": true +} \ No newline at end of file diff --git a/users/zhiyuan.json b/users/zhiyuan.json index 89f6fc10..7f3679aa 100644 --- a/users/zhiyuan.json +++ b/users/zhiyuan.json @@ -1,3 +1,3 @@ { - "copyright": "Zhiyuan Shi" -} + "copyright": "Zhiyuan Shi" +} \ No newline at end of file diff --git a/users/zhiyuanshi.json b/users/zhiyuanshi.json index 89f6fc10..7f3679aa 100644 --- a/users/zhiyuanshi.json +++ b/users/zhiyuanshi.json @@ -1,3 +1,3 @@ { - "copyright": "Zhiyuan Shi" -} + "copyright": "Zhiyuan Shi" +} \ No newline at end of file diff --git a/users/ziloi.json b/users/ziloi.json index 45e5d9f7..b11aa9d3 100644 --- a/users/ziloi.json +++ b/users/ziloi.json @@ -1,6 +1,6 @@ { - "copyright": "Ziloi", - "url": "http://ziloi.com", - "email": "info@ziloi.com", - "theme": "flesch" -} + "copyright": "Ziloi", + "url": "http://ziloi.com", + "email": "info@ziloi.com", + "theme": "flesch" +} \ No newline at end of file diff --git a/users/zimozito.json b/users/zimozito.json index c3d66ed4..64ea3ff7 100644 --- a/users/zimozito.json +++ b/users/zimozito.json @@ -1,4 +1,4 @@ { - "copyright": "ZimoZito", - "url": "http://zimozito.com" -} + "copyright": "ZimoZito", + "url": "http://zimozito.com" +} \ No newline at end of file diff --git a/users/zimp.json b/users/zimp.json index be3a5227..8364a771 100644 --- a/users/zimp.json +++ b/users/zimp.json @@ -1,5 +1,5 @@ { - "copyright": "Zimp Recompensas", - "url": "http://zimp.me", - "email": "suporte@zimp.me" -} + "copyright": "Zimp Recompensas", + "url": "http://zimp.me", + "email": "suporte@zimp.me" +} \ No newline at end of file diff --git a/users/zinc.json b/users/zinc.json index a798e205..a99df936 100644 --- a/users/zinc.json +++ b/users/zinc.json @@ -1,5 +1,5 @@ { - "copyright": "Mihir Singh", - "url": "http://citruspi.github.com/Zinc", - "email": "me@mihirsingh.com" -} + "copyright": "Mihir Singh", + "url": "http://citruspi.github.com/Zinc", + "email": "me@mihirsingh.com" +} \ No newline at end of file diff --git a/users/znck.json b/users/znck.json index 93b42ba2..6012f7e6 100644 --- a/users/znck.json +++ b/users/znck.json @@ -1,3 +1,3 @@ { - "copyright": "Rahul Kadyan" -} + "copyright": "Rahul Kadyan" +} \ No newline at end of file diff --git a/users/zonble.json b/users/zonble.json index 6078512a..3d75f9fb 100644 --- a/users/zonble.json +++ b/users/zonble.json @@ -1,3 +1,3 @@ { - "copyright": "Weizhong Yang" -} + "copyright": "Weizhong Yang" +} \ No newline at end of file diff --git a/users/zzeris.json b/users/zzeris.json index ecac9977..0e9af084 100644 --- a/users/zzeris.json +++ b/users/zzeris.json @@ -1,4 +1,4 @@ { - "copyright": "Jos\u00e9 Luiz", - "email": "zzeris@gmail.com" -} + "copyright": "José Luiz", + "email": "zzeris@gmail.com" +} \ No newline at end of file diff --git a/users/zzimbler.json b/users/zzimbler.json index 8d64afea..14020096 100644 --- a/users/zzimbler.json +++ b/users/zzimbler.json @@ -1,3 +1,3 @@ { - "copyright": "Zachary Zimbler" -} + "copyright": "Zachary Zimbler" +} \ No newline at end of file diff --git a/users/zzzzbov.json b/users/zzzzbov.json index 28b1fcb3..3e1ae712 100644 --- a/users/zzzzbov.json +++ b/users/zzzzbov.json @@ -1,5 +1,5 @@ { - "copyright": "zzzzBov", - "email": "zzzzbov@gmail.com", - "url": "http://zzzzbov.com" -} + "copyright": "zzzzBov", + "email": "zzzzbov@gmail.com", + "url": "http://zzzzbov.com" +} \ No newline at end of file From 47b9749ac9e3ffd86efcbb6d2df363b6364beeee Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Fri, 21 Jun 2019 20:26:48 +1200 Subject: [PATCH 39/53] chore: Readd accidentally gitignored json files in root. Signed-off-by: Richie Bendall --- .eslintrc.json | 18 ++++++++++++++++ .gitignore | 2 -- package.json | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 74 insertions(+), 2 deletions(-) create mode 100644 .eslintrc.json create mode 100644 package.json diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 00000000..cd57d612 --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,18 @@ +{ + "env": { + "browser": true, + "es6": true, + "node": true + }, + "plugins": ["node"], + "extends": ["eslint:recommended", "plugin:node/recommended"], + "parserOptions": { + "ecmaVersion": 2018, + "sourceType": "module", + "warnOnUnsupportedTypeScriptVersion": false + }, + "rules": { + "node/no-deprecated-api": 0, + "no-console": 0 + } +} diff --git a/.gitignore b/.gitignore index bf9b59a1..110bba10 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,3 @@ -/*.json - # Node Version Manager configuration. .nvmrc diff --git a/package.json b/package.json new file mode 100644 index 00000000..8c1ebd75 --- /dev/null +++ b/package.json @@ -0,0 +1,56 @@ +{ + "author": "Remy Sharp (http://remysharp.com/)", + "name": "mit-licence", + "description": "Hosted MIT License with details controlled through this repo", + "private": true, + "version": "2.0.0", + "main": "server.js", + "repository": { + "type": "git", + "url": "git@github.com:remy/mit-license.git" + }, + "engines": { + "node": ">=10.x.x" + }, + "scripts": { + "start": "node .", + "dev": "nodemon .", + "serve": "node server.js", + "test": "node test.js", + "lint": "eslint server.js middleware/*.js routes/*.js --color" + }, + "bugs": { + "url": "https://github.com/remy/mit-license/issues" + }, + "license": "MIT", + "dependencies": { + "@octokit/rest": "^16.28.2", + "btoa": "^1.2.1", + "ejs": "^2.6.2", + "express": "^4.17.1", + "express-minify": "^1.0.0", + "md5": "^2.2.1", + "node-html-parser": "^1.1.15", + "postcss-middleware": "^1.1.4", + "postcss-preset-env": "^6.6.0" + }, + "devDependencies": { + "@types/btoa": "^1.2.3", + "@types/compression": "^0.0.36", + "@types/css": "^0.0.31", + "@types/ejs": "^2.6.3", + "@types/express": "^4.17.0", + "@types/express-minify": "^0.1.34", + "@types/md5": "^2.1.33", + "@types/node": "^12.0.8", + "css": "^2.2.4", + "eslint": "^5.16.0", + "eslint-plugin-node": "^9.1.0", + "has-flag": "^4.0.0", + "nodemon": "^1.19.1" + }, + "resolutions": { + "postcss-middleware/vinyl-fs/glob-stream/micromatch/braces": "^2.3.1", + "caniuse-lite": "1.0.30000974" + } +} From fd54e7198dafc005bd88dc7356aafd5de5cbff13 Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Fri, 21 Jun 2019 21:03:55 +1200 Subject: [PATCH 40/53] fix: Append user params instead of overwrite to fix empty file bugs Signed-off-by: Richie Bendall --- middleware/load-options.js | 2 -- middleware/load-user.js | 2 +- routes/get.js | 2 +- routes/post.js | 2 -- users/mit-license.json | 5 +++++ 5 files changed, 7 insertions(+), 6 deletions(-) create mode 100644 users/mit-license.json diff --git a/middleware/load-options.js b/middleware/load-options.js index 712bec14..d33cbe72 100644 --- a/middleware/load-options.js +++ b/middleware/load-options.js @@ -49,8 +49,6 @@ module.exports = (req, res, next) => { } ); - console.log(res.locals.options); - if (res.locals.options.sha) { res.setHeader( 'X-note', diff --git a/middleware/load-user.js b/middleware/load-user.js index 182567a7..f16dbbc6 100644 --- a/middleware/load-user.js +++ b/middleware/load-user.js @@ -20,7 +20,7 @@ module.exports = async (req, res, next) => { path.join(__dirname, '..', 'users', `${id}.json`), 'utf8' ); - res.locals.user = JSON.parse(data); + res.locals.user = {...res.locals.user, ...JSON.parse(data)}; } catch ({code, message}) { res.code(500).send(`An internal error occurred - open an issue on https://github.com/remy/mit-license with the following information: ${message}`) return; diff --git a/routes/get.js b/routes/get.js index 2893d6c3..9a7447dd 100644 --- a/routes/get.js +++ b/routes/get.js @@ -48,7 +48,7 @@ module.exports = (req, res) => { gravatar = `Profile image`; - } else if (user.copyright && typeof user.copyright[0] === 'object' && user.gravatar) { + } else if (typeof user.copyright[0] === 'object' && user.gravatar) { // Supports multi-user format gravatar = `Profile image Date: Sun, 23 Jun 2019 12:45:43 +1200 Subject: [PATCH 41/53] fix: Properly display ISC license in plain text and correctly parse requested license from URL. Signed-off-by: Richie Bendall --- licenses/ISC.ejs | 35 +++++++++++---------- licenses/components/footer.ejs | 2 +- licenses/components/header.ejs | 56 ++++++++++++++++------------------ middleware/load-options.js | 13 +++++--- routes/get.js | 2 +- 5 files changed, 55 insertions(+), 53 deletions(-) diff --git a/licenses/ISC.ejs b/licenses/ISC.ejs index 0e6f7b8b..44fc3094 100644 --- a/licenses/ISC.ejs +++ b/licenses/ISC.ejs @@ -1,27 +1,26 @@ - <% include components/header %> - -
- <%- gravatar %> -

The ISC License (ISC)

-

Copyright © <%- info %>

+
+<%- gravatar %> +

The ISC License (ISC)

-

Permission to use, copy, modify, and/or distribute this software for any - purpose with or without fee is hereby granted, provided that the above - copyright notice and this permission notice appear in all copies.

+

Copyright © <%- info %>

-

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF - OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

-
- <% include components/footer %> +

Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies.

+ +

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

+
+<% include components/footer %> diff --git a/licenses/components/footer.ejs b/licenses/components/footer.ejs index 2107f147..4f857c83 100644 --- a/licenses/components/footer.ejs +++ b/licenses/components/footer.ejs @@ -1,3 +1,3 @@
diff --git a/licenses/components/header.ejs b/licenses/components/header.ejs index 290e278b..3ad2e4ab 100644 --- a/licenses/components/header.ejs +++ b/licenses/components/header.ejs @@ -1,40 +1,38 @@ - MIT License - - - - - - - - +--> + + + diff --git a/middleware/load-options.js b/middleware/load-options.js index d33cbe72..505c70ac 100644 --- a/middleware/load-options.js +++ b/middleware/load-options.js @@ -5,14 +5,12 @@ module.exports = (req, res, next) => { res.locals.options = parts.reduce( (acc, curr) => { - if (!curr) { - return acc; - } + if (!curr) return acc; let match = curr.match(/^@?(\d{4})$/) || []; if (match.length) { - // pinned year + // Pinned year if (curr.startsWith('@')) { acc.pinnedYear = parseInt(curr.substr(1), 10); } else { @@ -38,6 +36,13 @@ module.exports = (req, res, next) => { return acc; } + if (curr.startsWith('+')) { + acc.license = curr + .substr(1) + .toUpperCase(); + return acc; + } + acc.sha = curr; // not actually supported now - 2019-06-19 return acc; }, diff --git a/routes/get.js b/routes/get.js index 9a7447dd..120f7a26 100644 --- a/routes/get.js +++ b/routes/get.js @@ -58,7 +58,7 @@ module.exports = (req, res) => { const year = options.pinnedYear ? options.pinnedYear : [options.startYear, options.endYear].filter(Boolean).join('-'); - const license = (user.license || 'MIT').toUpperCase(); + const license = (options.license || user.license || 'MIT').toUpperCase(); const format = options.format || user.format || 'html'; const args = { From 784b4a9b6b1d5f93d6e4c06d314dd1eaa6cc6c3c Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Sun, 23 Jun 2019 14:33:27 +1200 Subject: [PATCH 42/53] fix: Remove unneeded htaccess rules and resolve invalid user as default Signed-off-by: Richie Bendall --- .htaccess | 18 +----------------- middleware/load-user.js | 6 ++++-- users/www.json | 5 +++++ 3 files changed, 10 insertions(+), 19 deletions(-) create mode 100644 users/www.json diff --git a/.htaccess b/.htaccess index 5f23f4fe..7e05dc99 100644 --- a/.htaccess +++ b/.htaccess @@ -1,21 +1,5 @@ - -# $Id: .htaccess,v 1.3 2006/11/09 09:08:14 remy Exp $ -Options +FollowSymLinks +ExecCGI -RewriteEngine On -RewriteBase / - -RewriteRule "(^|/)(CVS|\.svn|\.git)/" - [F] - -# strip www. from the domain +# Strip www from the domain RewriteCond %{HTTP_HOST} ^www\.mit-license\.org$ [NC] RewriteRule ^(.*)$ http://mit-license.org/$1 [R=301,L] - -# if the file or directory exists -RewriteCond %{REQUEST_FILENAME} -d [OR] -RewriteCond %{REQUEST_FILENAME} -f -RewriteRule .* - [L] - -# using 'index.php' because it forces a '/' request to the handler -RewriteRule ^(.*)$ index.php [QSA,L] diff --git a/middleware/load-user.js b/middleware/load-user.js index f16dbbc6..4ea1ec9d 100644 --- a/middleware/load-user.js +++ b/middleware/load-user.js @@ -22,8 +22,10 @@ module.exports = async (req, res, next) => { ); res.locals.user = {...res.locals.user, ...JSON.parse(data)}; } catch ({code, message}) { - res.code(500).send(`An internal error occurred - open an issue on https://github.com/remy/mit-license with the following information: ${message}`) - return; + if (code !== 'ENOENT') { + res.code(500).send(`An internal error occurred - open an issue on https://github.com/remy/mit-license with the following information: ${message}`) + return; + } } next(); diff --git a/users/www.json b/users/www.json new file mode 100644 index 00000000..c73870d8 --- /dev/null +++ b/users/www.json @@ -0,0 +1,5 @@ +{ + "//1": "Security holding user", + "//2": "This user is being locked because www is automatically stripped.", + "locked": true +} From 7ec3998144161ebb2d04e8b1b230fade7456e465 Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Sun, 23 Jun 2019 16:15:38 +1200 Subject: [PATCH 43/53] fix: Space after comma and allow string in array of objects Signed-off-by: Richie Bendall --- routes/get.js | 8 +++++--- users/richienb.json | 8 ++++++-- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/routes/get.js b/routes/get.js index 120f7a26..70bacef4 100644 --- a/routes/get.js +++ b/routes/get.js @@ -5,8 +5,8 @@ const { stripTags, escapeTags } = require('./utils'); function getCopyrightHTML(user, plain) { let html = ''; - const name = plain - ? user.name || user.copyright + const name = typeof user === "string" ? user + : plain ? user.name || user.copyright : escapeTags(user.name || user.copyright); if (user.url) { @@ -39,7 +39,9 @@ module.exports = (req, res) => { .map(_ => (options.format !== 'html' ? _ : escapeTags(_))) .join(', '); } else { - name = user.copyright.map(getCopyrightHTML); + name = user.copyright + .map(getCopyrightHTML) + .join(', '); } } diff --git a/users/richienb.json b/users/richienb.json index 45005d0c..c0361caa 100644 --- a/users/richienb.json +++ b/users/richienb.json @@ -1,8 +1,12 @@ { - "copyright": "Richie Bendall, https://www.richie-bendall.ml", + "copyright": [{ + "name": "Remy Sharp, https://remysharp.com", + "url": "https://remysharp.com", + "email": "remy@remysharp.com" + }, "Richie Bendall"], "url": "https://www.richie-bendall.ml", "email": "richiebendall@gmail.com", "format": "html", "gravatar": true, "theme": "material-indigo" -} \ No newline at end of file +} From fbef36d3b12bc348e95179228b7221730ac0cb67 Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Sun, 23 Jun 2019 16:16:17 +1200 Subject: [PATCH 44/53] chore: Roll back file changed while testing Signed-off-by: Richie Bendall --- users/richienb.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/users/richienb.json b/users/richienb.json index c0361caa..633f98f5 100644 --- a/users/richienb.json +++ b/users/richienb.json @@ -1,9 +1,5 @@ { - "copyright": [{ - "name": "Remy Sharp, https://remysharp.com", - "url": "https://remysharp.com", - "email": "remy@remysharp.com" - }, "Richie Bendall"], + "copyright": "Richie Bendall, https://www.richie-bendall.ml", "url": "https://www.richie-bendall.ml", "email": "richiebendall@gmail.com", "format": "html", From c3d5fae75f7f47ce26d8b8537694b5fbe14b052a Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Tue, 25 Jun 2019 16:27:55 +1200 Subject: [PATCH 45/53] chore: Update deps Signed-off-by: Richie Bendall --- yarn.lock | Bin 171511 -> 171640 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/yarn.lock b/yarn.lock index 7527ce61e4114516b0b7702ca98aa3ec1606edb9..1b35e1e476eceb11744efbc612ecc3b53fbb1bf3 100644 GIT binary patch delta 1660 zcmXYxJCNf@0ftLvuNIcz>TbE2Veh!wojV?dX2#u8x732Fqx>9O8hiYOk zW3s)n4R?mwo@|N6{XCkvO%}FX-r$)_Urc7Ui?f@ z)3-hp&XUKk;DsvRfs<5hYc`c+jF4(;StMBk$dM&RC59=n-Ry?7JL+4#-Uu{?Vbqqa!lVEhzbVA!s~xLGj#^j!!OEZY35KfZceE#;EQ-8w4=_-19 zdfPmdJo~eF`2LAdfAq%P`|#PRaP)=rN2+k1{`c!bR)9Oms_keTQyXAKWsW4<2-*M= zU@L?J=29YM*fTKc^G}4Mo*s+KmbFEdvKi5yvfiszbg6fm)keoLn!IntvgI2CGT*KH z<9*&7c1qoTL2p>y!KAxH6$U!e!t{4j#g-kUkJuG%-u~dLN$cAW4uAZHAiRJ0TUq$- zN6C{<&r;*Z!h7e^T}%iiU?bUKGS;X{u*0~5ZH#RqaS5x8xk%Npau0ggS(N>J-WwIC zI;00&d7s? z4~L>C_XrPWmg&dS!MJYLbC$K_#ncv1eF_QEq5rYtl{SgV delta 1587 zcmXYx%Wvei9mg@+Ae&Btw8bvG&THY#ZXU(h9#Rx3Dg}bh*z>k$BwNxvP9Z6Btns{O zJP+Lxw1>9nqODq}mlg<+Lvm}e2Lov@$$!ve4*}Bupgjc1F^YG=6UobmpC7;9@BWqj z_Mh3mAKbnL4{7}IJGpqA{ZSm;-pQx?!(~5uhy@ioFqjk)NKO<$AW%?RCWDYuU=hxs zMS1+e-i}}N{ig3rzp_2AmC1NDVJ%W%p}6Fe-rOv}7Kz|`G(J6B4COi`tz4saay|vU zMTcMZPsTR&>6Dr6Q!BSV?{-C0^NJ(9j^UHtCkHQ7?q;46e!Y7;{`B>q9z5g2&>)1% zltyQPKnewh2{AD-RRjVaSc-5M-0*SAxz}>nQLT%7ygGKfP}S-=X*Z6&;%up39O>(c zUzsce$GNEF_45m&S6hwh+%*}``EuSV2zy%y-BLKUukz)^Tzbp?lk+$J{9BEX*!jnP zyz?12B;>}NWd(YQ0S#qvOGn5uDTStP0Kf&-O>E#maudf6-0{uMdRdPstmf_F_;Tdr zfjRN*R>i$6_7)`My(VqVI!$lB8JyYC8R!ghr)6m2g<u44L0;G&YultQk|9@H>f*` zENpkRJu5)IA;$z6h2xF5vdk;eZFwTBNl$OJYgenOw{RAuy+P$5M6%41*$bK7Ywz96 z^Y?GT{k`jQIb*+{H2e^^BR4EmFOD10nQRoD#sHn=%x0@h zmV;S0w3f!CMtx7QcFnCjBTClePNn&j^YO1Tzxivtp!>=Afp$A-Jk)-&|5T&_pg~Q* znQjr7YNV+G6kxy!P>5qdfF-1!u$Q%ae)~k97LNxrmrN^O^W2M0*8ofm*Q}{rWK{JH zszlU6?TP2$Mw|L`Yq^;Mu)PdzNca z#pIKQc96W5*M1DhAxzgztdYVfU=~Lp9V|d1Fcid+rK5&a3NC&)6*2qxPCR|^oHuWG zXS&2;x1CdEnV;D9vRmJD`-9?$E{=@(Xi^EhR=-#@{qef7B-QzeX`!LMnpB}TTx`3& zY2E09wHl1wQVT9%)7Itn7eE_6cLy9Ahv>cR-rh>i7vW^Q_a;bw{}(Nve2BFj{pR)t z*$gwz$pNhL;1A%VC`D}YE5C?OP#|M2{sR~0|9$1Vs_)iSU0L!C zvg7~$=U$Q@YP*Rb8qUCY<=@X{7jk*9V#6z${Gy|kl8>0N!oI1#X54)EF4|xE!qNOH?$p*){o~5X#FITGJ!u!VSgaLPKk5H(qJM(aLieN(^PPYBm*J7l_`&y@3J$6sp1P0OE$W2Z`tyaAn r&MxLNC;9N_+P&o0Tg`pxM*5rC?A17&CC=Y6yUF8?mcIs(R( From 21ac30f351903ff23b399289cb4fdda05fb45f15 Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Tue, 25 Jun 2019 16:44:23 +1200 Subject: [PATCH 46/53] fix: Readd trailing whitespace at the end of user files Signed-off-by: Richie Bendall --- test.js | 2 +- users/1000ch.json | 2 +- users/10kb.json | 2 +- users/135yshr.json | 2 +- users/15minuteslate.json | 2 +- users/1natsu172.json | 2 +- users/1up.json | 2 +- users/2357gi.json | 2 +- users/284km.json | 2 +- users/2nate.json | 2 +- users/321maker.json | 2 +- users/360slider.json | 2 +- users/3846.json | 2 +- users/3846masa.json | 2 +- users/4soft.json | 2 +- users/4thace.json | 2 +- users/5310.json | 2 +- users/5509.json | 2 +- users/59.json | 2 +- users/59naga.json | 2 +- users/623hs.json | 2 +- users/6n38.json | 2 +- users/844196.json | 2 +- users/9joneg.json | 2 +- users/ArvinH.json | 2 +- users/BrentonCozby.json | 2 +- users/DanielArthurUK.json | 2 +- users/SITZ.json | 2 +- users/a-tech.json | 2 +- users/a.json | 2 +- users/aaaaaa.json | 2 +- users/aarjithn.json | 2 +- users/aaron.json | 2 +- users/aaroncaito.json | 2 +- users/aarontrostle.json | 2 +- users/aashutoshrathi.json | 2 +- users/aayush.json | 2 +- users/ab2d.json | 2 +- users/abas.json | 2 +- users/abensur.json | 2 +- users/abhisekp.json | 2 +- users/abhshkdz.json | 2 +- users/abitgone.json | 2 +- users/abnersajr.json | 2 +- users/abovethewater.json | 2 +- users/abrambleninja.json | 2 +- users/abs.json | 2 +- users/abuasmaa.json | 2 +- users/abulava.json | 2 +- users/ac.json | 2 +- users/acaua.json | 2 +- users/acenode.json | 2 +- users/achilles.json | 2 +- users/achun.json | 2 +- users/aclemen1.json | 2 +- users/acolchado.json | 2 +- users/acollington.json | 2 +- users/adafruit.json | 2 +- users/adam-lynch.json | 2 +- users/adam.json | 2 +- users/adamh.json | 2 +- users/adampritchard.json | 2 +- users/adamreeve.json | 2 +- users/adamroberts.json | 2 +- users/adi.json | 2 +- users/aditya.json | 2 +- users/adjohnson916.json | 2 +- users/adopi.json | 2 +- users/adr1enbe4udou1n.json | 2 +- users/adtaylor.json | 2 +- users/adthul.json | 2 +- users/adultlink.json | 2 +- users/ael.json | 2 +- users/aen.json | 2 +- users/aendrew.json | 2 +- users/aereal.json | 2 +- users/aergonaut.json | 2 +- users/aetheris.json | 2 +- users/af.json | 2 +- users/afein.json | 2 +- users/afghah.json | 2 +- users/afiore.json | 2 +- users/afonsof.json | 2 +- users/agentmilindu.json | 2 +- users/agnium.json | 2 +- users/ago6e.json | 2 +- users/ahaasler.json | 2 +- users/aheissenberger.json | 2 +- users/ahluntang.json | 2 +- users/ahmet.json | 2 +- users/ahsanhabib.json | 2 +- users/ai-create-team.json | 2 +- users/aike.json | 2 +- users/ailen0ada.json | 2 +- users/airtonix.json | 2 +- users/aj9.json | 2 +- users/ajay.json | 2 +- users/ajaykarwal.json | 2 +- users/ajenjo.json | 2 +- users/ajmal.json | 2 +- users/ajmichael.json | 2 +- users/ajsquared.json | 2 +- users/ak.json | 2 +- users/akash.json | 2 +- users/akervern.json | 2 +- users/akizor.json | 2 +- users/akkartik.json | 2 +- users/akky.json | 2 +- users/aknosis.json | 2 +- users/akshay.json | 2 +- users/akshaymhatre.json | 2 +- users/alberto.json | 2 +- users/albertofdzm.json | 2 +- users/albertogasparin.json | 2 +- users/alco.json | 2 +- users/alcore.json | 2 +- users/aldenquimby.json | 2 +- users/aldo.json | 2 +- users/aldoborrero.json | 2 +- users/ale.json | 2 +- users/aleksi.json | 2 +- users/alessioalex.json | 2 +- users/aleung.json | 2 +- users/alex.json | 2 +- users/alexaaronfrancisco.json | 2 +- users/alexander.json | 2 +- users/alexb.json | 2 +- users/alexgleason.json | 2 +- users/alexh.json | 2 +- users/alexluke.json | 2 +- users/alexowl.json | 2 +- users/ali-sdk.json | 2 +- users/ali.json | 2 +- users/alias.json | 2 +- users/alibabatajine.json | 2 +- users/aliel.json | 2 +- users/alimd.json | 2 +- users/alisch.json | 2 +- users/alisdair.json | 2 +- users/allthingssmitty.json | 2 +- users/almad.json | 2 +- users/alno.json | 2 +- users/alphawhy.json | 2 +- users/altun.json | 2 +- users/amaan.json | 2 +- users/amarlearning.json | 2 +- users/amiranda.json | 2 +- users/amitmerchant1990.json | 2 +- users/amjad.json | 2 +- users/analogj.json | 2 +- users/anant.json | 2 +- users/ancy.json | 2 +- users/and3k5.json | 2 +- users/andersonaguiar.json | 2 +- users/andre.json | 2 +- users/andreasonny.json | 2 +- users/andreif.json | 2 +- users/andreisebastianc.json | 2 +- users/andrel.json | 2 +- users/andreloureiro.json | 2 +- users/andrew.json | 2 +- users/andreyknupp.json | 2 +- users/andrezero.json | 2 +- users/androidnix.json | 2 +- users/andrsd.json | 2 +- users/andxyz.json | 2 +- users/andyedinborough.json | 2 +- users/andystubbs.json | 2 +- users/angrychimp.json | 2 +- users/angus.json | 2 +- users/angusm.json | 2 +- users/anish.json | 2 +- users/anishathalye.json | 2 +- users/ankur.json | 2 +- users/anmoljagetia.json | 2 +- users/anon.json | 2 +- users/anovsiradj.json | 2 +- users/anrodon.json | 2 +- users/anshul.json | 2 +- users/anthkris.json | 2 +- users/anthony.json | 2 +- users/antimatter15.json | 2 +- users/anton.json | 2 +- users/antonhalim.json | 2 +- users/antonholmgren.json | 2 +- users/antonio.json | 2 +- users/antonybailey.json | 2 +- users/anunay.json | 2 +- users/anuraj.json | 2 +- users/anwarjaved.json | 2 +- users/anze.json | 2 +- users/apnerve.json | 2 +- users/apollojustice.json | 2 +- users/aponxi.json | 2 +- users/apopelo.json | 2 +- users/appsattic.json | 2 +- users/apriendeau.json | 2 +- users/aps.json | 2 +- users/ar.json | 2 +- users/arashmilani.json | 2 +- users/ariporad.json | 2 +- users/arizzol.json | 2 +- users/arjun.json | 2 +- users/arlo.json | 2 +- users/armpit.json | 2 +- users/armujahid.json | 2 +- users/arnavroy.json | 2 +- users/arroxa.json | 2 +- users/artemave.json | 2 +- users/arthurfigueiredo.json | 2 +- users/arthurguy.json | 2 +- users/artnc.json | 2 +- users/aruhan.json | 2 +- users/arulrajnet.json | 2 +- users/arunoda.json | 2 +- users/arvid.json | 2 +- users/asante.json | 2 +- users/asbubam.json | 2 +- users/aschn.json | 2 +- users/asdbasjdbaskjd.json | 2 +- users/asdbjasbdja.json | 2 +- users/aseemk.json | 2 +- users/ashchan.json | 2 +- users/ashtonwar.json | 2 +- users/ask11.json | 2 +- users/askesian.json | 2 +- users/asolkar.json | 2 +- users/assefamaru.json | 2 +- users/astrocb.json | 2 +- users/ata.json | 2 +- users/atbox.json | 2 +- users/atelierbram.json | 2 +- users/atilafassina.json | 2 +- users/atran.json | 2 +- users/ats.json | 2 +- users/audreyr.json | 2 +- users/aus3ris.json | 2 +- users/aus3ys.json | 2 +- users/austegard.json | 2 +- users/austin.json | 2 +- users/avdaredevil.json | 2 +- users/avelino.json | 2 +- users/average-studios.json | 2 +- users/avidal.json | 2 +- users/avidenie.json | 2 +- users/avm99963.json | 2 +- users/awles.json | 2 +- users/axe312.json | 2 +- users/axelav.json | 2 +- users/axisthemes.json | 2 +- users/axot.json | 2 +- users/axross.json | 2 +- users/ayahya.json | 2 +- users/ayesh.json | 2 +- users/azamara.json | 2 +- users/azder.json | 2 +- users/azizur.json | 2 +- users/azlab.json | 2 +- users/azu.json | 2 +- users/b.json | 2 +- users/b4b4r07.json | 2 +- users/baenziger-hug.json | 2 +- users/bai.json | 2 +- users/baivong.json | 2 +- users/balbeko.json | 2 +- users/bamorim.json | 2 +- users/bankfacil.json | 2 +- users/banyan.json | 2 +- users/bardi.json | 2 +- users/barnik.json | 2 +- users/bartaz.json | 2 +- users/bat.json | 2 +- users/batu.json | 2 +- users/bauglir.json | 2 +- users/bazilio.json | 2 +- users/bbuecherl.json | 2 +- users/bcse.json | 2 +- users/bdukes.json | 2 +- users/bear.json | 2 +- users/becevka.json | 2 +- users/bee.json | 2 +- users/beedaan.json | 2 +- users/beingtomgreen.json | 2 +- users/beintoo.json | 2 +- users/belldandu.json | 2 +- users/beloi.json | 2 +- users/ben.json | 2 +- users/benatkin.json | 2 +- users/benbarber.json | 2 +- users/benizi.json | 2 +- users/benjie.json | 2 +- users/benniemosher.json | 2 +- users/bensarmiento.json | 2 +- users/benspotatoes.json | 2 +- users/berbaquero.json | 2 +- users/berngfilho.json | 2 +- users/bescott.json | 2 +- users/beshr.json | 2 +- users/besson.json | 2 +- users/bethanyr.json | 2 +- users/betomuniz.json | 2 +- users/beyondweb.json | 2 +- users/bezoerb.json | 2 +- users/bfoxwell.json | 2 +- users/bh.json | 2 +- users/bharath063.json | 2 +- users/bigab.json | 2 +- users/bih.json | 2 +- users/bilger.json | 2 +- users/biomassives.json | 2 +- users/bipbop.json | 2 +- users/birdi.json | 2 +- users/birkof.json | 2 +- users/bitbonsai.json | 2 +- users/bitmxittz.json | 2 +- users/bjeanes.json | 2 +- users/blacklite.json | 2 +- users/blahah.json | 2 +- users/blake.json | 2 +- users/blaulan.json | 2 +- users/blazeworx.json | 2 +- users/blim.json | 2 +- users/blitzkraft.json | 2 +- users/blueberrystream.json | 2 +- users/blueimp.json | 2 +- users/blunderboy.json | 2 +- users/bmaeser.json | 2 +- users/bmelton.json | 2 +- users/bmintz.json | 2 +- users/boardintelligence.json | 2 +- users/bobby-tables.json | 2 +- users/bobuk.json | 2 +- users/bobylito.json | 2 +- users/boj.json | 2 +- users/boldoutlook.json | 2 +- users/bookworm.json | 2 +- users/boopathi.json | 2 +- users/boska.json | 2 +- users/bottom.json | 2 +- users/bowsersenior.json | 2 +- users/bozd4g.json | 2 +- users/bracke.json | 2 +- users/brandon.json | 2 +- users/brandonhimpfen.json | 2 +- users/brandtleymcminn.json | 2 +- users/brasil-js.json | 2 +- users/braziljs.json | 2 +- users/bregor.json | 2 +- users/brendon.json | 2 +- users/brenopolanski.json | 2 +- users/bretonics.json | 2 +- users/brian.json | 2 +- users/briancarr.json | 2 +- users/brianmhunt.json | 2 +- users/briba.json | 2 +- users/bricebou.json | 2 +- users/briends.json | 2 +- users/bripkens.json | 2 +- users/bro.json | 2 +- users/brummelte.json | 2 +- users/brunowego.json | 2 +- users/brutalhonesty.json | 2 +- users/bryan.json | 2 +- users/bsilivestru.json | 2 +- users/bubblecubestudios.json | 2 +- users/bucho.json | 2 +- users/buell.json | 2 +- users/bugsnag.json | 2 +- users/building-blocks.json | 2 +- users/burriep.json | 2 +- users/buttsex.json | 2 +- users/buzzdecafe.json | 2 +- users/bwht.json | 2 +- users/byjml.json | 2 +- users/byscripts.json | 2 +- users/c.json | 2 +- users/c0nfus3d.json | 2 +- users/c3.json | 2 +- users/c9s.json | 2 +- users/cabforward.json | 2 +- users/cactusjs.json | 2 +- users/caedes.json | 2 +- users/caio-ribeiro-pereira.json | 2 +- users/caius.json | 2 +- users/caleb.json | 2 +- users/calvert.json | 2 +- users/camspiers.json | 2 +- users/cantino.json | 2 +- users/cap11235.json | 2 +- users/caprinova.json | 2 +- users/caraya.json | 2 +- users/carlesm.json | 2 +- users/carlton.json | 2 +- users/carvalho.json | 2 +- users/casdr.json | 2 +- users/casey.json | 2 +- users/caseybecking.json | 2 +- users/cassianomon.json | 2 +- users/cb.json | 2 +- users/cboone.json | 2 +- users/cccheng.json | 2 +- users/cdipietro.json | 2 +- users/cedric-luthi.json | 2 +- users/cedx.json | 2 +- users/ceej.json | 2 +- users/cel.json | 2 +- users/cendaeg.json | 2 +- users/centerified.json | 2 +- users/ceottaki.json | 2 +- users/cesardenis.json | 2 +- users/cfarajpour.json | 2 +- users/cfddream.json | 2 +- users/cgack.json | 2 +- users/cgm.json | 2 +- users/cgrinds.json | 2 +- users/cheeaun.json | 2 +- users/cheer.json | 2 +- users/chehsun.json | 2 +- users/chehsunliu.json | 2 +- users/chevron.json | 2 +- users/chezou.json | 2 +- users/chh.json | 2 +- users/chiastolite.json | 2 +- users/chiayu.json | 2 +- users/chibicode.json | 2 +- users/chick307.json | 2 +- users/chilijung.json | 2 +- users/chilts.json | 2 +- users/chintan.json | 2 +- users/chocoby.json | 2 +- users/choly.json | 2 +- users/chris.json | 2 +- users/chrisdasie.json | 2 +- users/chrisdigital.json | 2 +- users/chrismayer.json | 2 +- users/christianbundy.json | 2 +- users/christianwenzel.json | 2 +- users/christopher.json | 2 +- users/christophermanning.json | 2 +- users/christophersu.json | 2 +- users/chromy.json | 2 +- users/chuckcarpenter.json | 2 +- users/chute.json | 2 +- users/chuyeow.json | 2 +- users/ciarand.json | 2 +- users/cicloid.json | 2 +- users/cipherdevelopment.json | 2 +- users/cisneiros.json | 2 +- users/citrusui.json | 2 +- users/cjpatoilo.json | 2 +- users/ck.json | 2 +- users/ckaznocha.json | 2 +- users/ckuijjer.json | 2 +- users/clarkeash.json | 2 +- users/claudiosanches.json | 2 +- users/claudiosmweb.json | 2 +- users/clayallsopp.json | 2 +- users/claylo.json | 2 +- users/cleargifltd.json | 2 +- users/cleentfaar.json | 2 +- users/clemenst.json | 2 +- users/clemos.json | 2 +- users/clinton.json | 2 +- users/clkao.json | 2 +- users/cloudgenius.json | 2 +- users/clu.json | 2 +- users/clvrobj.json | 2 +- users/cmtoomey.json | 2 +- users/cnord.json | 2 +- users/co-sche.json | 2 +- users/co.json | 2 +- users/cocoanaut.json | 2 +- users/codecafe.json | 2 +- users/codeclarity-jquerytools.json | 2 +- users/codeclarity.json | 2 +- users/codeclaritytm.json | 2 +- users/codeflyer.json | 2 +- users/codekoala.json | 2 +- users/codemaster.json | 2 +- users/codemaxx.json | 2 +- users/codeout.json | 2 +- users/coderarity.json | 2 +- users/codespaces.json | 2 +- users/codesquire.json | 2 +- users/cogsy.json | 2 +- users/colingourlay.json | 2 +- users/colinmarshall.json | 2 +- users/colinodell.json | 2 +- users/colken.json | 2 +- users/collin.json | 2 +- users/colstrom.json | 2 +- users/conradk.json | 2 +- users/constellation.json | 2 +- users/cookieo9.json | 2 +- users/coredumpcat.json | 2 +- users/cork-labs.json | 2 +- users/corpix.json | 2 +- users/cos.json | 2 +- users/cotapreco.json | 2 +- users/cotorusso.json | 2 +- users/couac.json | 2 +- users/couch.json | 2 +- users/count0.json | 2 +- users/couto.json | 2 +- users/coyotevz.json | 2 +- users/cpage.json | 2 +- users/cptmashek.json | 2 +- users/craveytrain.json | 2 +- users/creador.json | 2 +- users/creativepunch.json | 2 +- users/crossjs.json | 2 +- users/crosspop.json | 2 +- users/crunch.json | 2 +- users/cruz.json | 2 +- users/cryptographics.json | 2 +- users/cs.json | 2 +- users/csmacnz.json | 2 +- users/cssgalore.json | 2 +- users/csu.json | 2 +- users/ctchen.json | 2 +- users/ctiml.json | 2 +- users/cushon.json | 2 +- users/cvan.json | 2 +- users/cyril.json | 2 +- users/cziemba.json | 2 +- users/d-ash.json | 2 +- users/d.json | 2 +- users/d10.json | 2 +- users/d1p.json | 2 +- users/d3fkon.json | 2 +- users/d41d8cd98f00b204e9800998ecf8427e.json | 2 +- users/dacbarbos.json | 2 +- users/daimatz.json | 2 +- users/daishihmr.json | 2 +- users/damonoehlman.json | 2 +- users/dan.json | 2 +- users/dan9186.json | 2 +- users/dana.json | 2 +- users/danherbert.json | 2 +- users/danidemi.json | 2 +- users/daniel.json | 2 +- users/danielfurze.json | 2 +- users/danielgbullido.json | 2 +- users/daniellamb.json | 2 +- users/danielleining.json | 2 +- users/daniellmb.json | 2 +- users/danielpataki.json | 2 +- users/danieltorres.json | 2 +- users/daniguardiola.json | 2 +- users/danijelj.json | 2 +- users/danilobjr.json | 2 +- users/danilovaz.json | 2 +- users/danjarvis.json | 2 +- users/danreeves.json | 2 +- users/danro.json | 2 +- users/daramkun.json | 2 +- users/darnley.json | 2 +- users/darrennoble.json | 2 +- users/darthsim.json | 2 +- users/dartokloning.json | 2 +- users/das.json | 2 +- users/datawraith.json | 2 +- users/davejustice.json | 2 +- users/daveross.json | 2 +- users/davestern.json | 2 +- users/david.json | 2 +- users/davidcmoulton.json | 2 +- users/davidgovea.json | 2 +- users/davidsonfellipe.json | 2 +- users/davidzitting.json | 2 +- users/daviesgeek.json | 2 +- users/davisonio.json | 2 +- users/davoclavo.json | 2 +- users/dawneraq.json | 2 +- users/daxlab.json | 2 +- users/dayflower.json | 2 +- users/dayvsonlima.json | 2 +- users/dbohdan.json | 2 +- users/dcgauld.json | 2 +- users/dch.json | 2 +- users/dcronkite.json | 2 +- users/dcunited001.json | 2 +- users/dd.json | 2 +- users/ddd.json | 2 +- users/ddeaguiar.json | 2 +- users/ddl1st.json | 2 +- users/ddproxy.json | 2 +- users/deacalion.json | 2 +- users/deanlandolt.json | 2 +- users/decached.json | 2 +- users/decklin.json | 2 +- users/deecewan.json | 2 +- users/deefour.json | 2 +- users/deepak.json | 2 +- users/deeplysimple.json | 2 +- users/definedcode.json | 2 +- users/degree9.json | 2 +- users/dehnavi.json | 2 +- users/deif.json | 2 +- users/deirdre.json | 2 +- users/dejal.json | 2 +- users/dejay.json | 2 +- users/delicatebits.json | 2 +- users/delorean.json | 2 +- users/delphidabbler.json | 2 +- users/denbuzze.json | 2 +- users/denis.json | 2 +- users/denji.json | 2 +- users/derek-palmer.json | 2 +- users/derekahmedzai.json | 2 +- users/desandro.json | 2 +- users/designa.json | 2 +- users/deuxhuithuit.json | 2 +- users/dev-dipesh.json | 2 +- users/dev.json | 2 +- users/devan.json | 2 +- users/devgru.json | 2 +- users/devin.json | 2 +- users/devinus.json | 2 +- users/devssay.json | 2 +- users/dexafree.json | 2 +- users/dexterind.json | 2 +- users/deyvisonrocha.json | 2 +- users/dgoodlad.json | 2 +- users/dgt.json | 2 +- users/dh.json | 2 +- users/dhainzl.json | 2 +- users/dhaval.json | 2 +- users/dhavalkapil.json | 2 +- users/dhawal.json | 2 +- users/dhuyy.json | 2 +- users/dhyegofernando.json | 2 +- users/diadatp.json | 2 +- users/diessica.json | 2 +- users/digipars.json | 2 +- users/digitalnatives.json | 2 +- users/dimakovalevskyi.json | 2 +- users/disposaboy.json | 2 +- users/dissimile.json | 2 +- users/diti.json | 2 +- users/divyanshu.json | 2 +- users/djakobik.json | 2 +- users/djalmaaraujo.json | 2 +- users/djdch.json | 2 +- users/djohnson.json | 2 +- users/dkiyatkin.json | 2 +- users/dlambert.json | 2 +- users/dlukov.json | 2 +- users/dmcclccam.json | 2 +- users/dmg.json | 2 +- users/dmk.json | 2 +- users/dmorrison42.json | 2 +- users/dn.json | 2 +- users/dobtco.json | 2 +- users/dochang.json | 2 +- users/dog2puppy.json | 2 +- users/dogan.json | 2 +- users/doiio.json | 2 +- users/don.json | 2 +- users/dongilbert.json | 2 +- users/donortega.json | 2 +- users/donoskaro.json | 2 +- users/doossy.json | 2 +- users/dopppler.json | 2 +- users/dorian.json | 2 +- users/dotamir.json | 2 +- users/dougborg.json | 2 +- users/dougneiner.json | 2 +- users/dragonfly.json | 2 +- users/dreams.json | 2 +- users/dreamysource.json | 2 +- users/druznek.json | 2 +- users/drzax.json | 2 +- users/ds82.json | 2 +- users/dsc.json | 2 +- users/dsernst.json | 2 +- users/dshaw.json | 2 +- users/ducky.json | 2 +- users/duncanmcdougall.json | 2 +- users/dusong.json | 2 +- users/dva.json | 2 +- users/dvni.json | 2 +- users/dvrein.json | 2 +- users/dwettstein.json | 2 +- users/dwradcliffe.json | 2 +- users/dydx.json | 2 +- users/dylanthomas.json | 2 +- users/dym.json | 2 +- users/earaujoassis.json | 2 +- users/ebith.json | 2 +- users/echo.json | 2 +- users/eddiemonge.json | 2 +- users/eddywashere.json | 2 +- users/ederribeiro.json | 2 +- users/ederssouza.json | 2 +- users/edferras.json | 2 +- users/editorconfig.json | 2 +- users/edmondmajoriii.json | 2 +- users/edsurge.json | 2 +- users/eduan.json | 2 +- users/eduardorabelo.json | 2 +- users/eduardostuart.json | 2 +- users/eduncan911.json | 2 +- users/edvinas.json | 2 +- users/eek.json | 2 +- users/eeleater.json | 2 +- users/ef-labs.json | 2 +- users/efrainc.json | 2 +- users/efrea2004k.json | 2 +- users/efreak.json | 2 +- users/efreak2004.json | 2 +- users/efries.json | 2 +- users/egeriis.json | 2 +- users/eggforsale.json | 2 +- users/egoist.json | 2 +- users/ehealthafrica.json | 2 +- users/ehecatl.json | 2 +- users/ehsan.json | 2 +- users/eib.json | 2 +- users/einaru.json | 2 +- users/ekamil.json | 2 +- users/ekin.json | 2 +- users/elegwance.json | 2 +- users/elektronaut.json | 2 +- users/eleven.json | 2 +- users/elgook.json | 2 +- users/elifiner.json | 2 +- users/elim.json | 2 +- users/elisaado.json | 2 +- users/ellekasai.json | 2 +- users/elliotec.json | 2 +- users/ellis.json | 2 +- users/elmer.json | 2 +- users/elsknerd.json | 2 +- users/elsmore.json | 2 +- users/emabrey.json | 2 +- users/emanuelpessoa.json | 2 +- users/emberads.json | 2 +- users/emd.json | 2 +- users/emir.json | 2 +- users/emiw.json | 2 +- users/emma.json | 2 +- users/emmanuel.json | 2 +- users/endel-test.json | 2 +- users/endel.json | 2 +- users/ender.json | 2 +- users/endorama.json | 2 +- users/enfos.json | 2 +- users/englishtown.json | 2 +- users/enigmaticflare.json | 2 +- users/enov.json | 2 +- users/entist.json | 2 +- users/eoc-lover.json | 2 +- users/eoin.json | 2 +- users/erbesharat.json | 2 +- users/erbridge.json | 2 +- users/ere.json | 2 +- users/erfan.json | 2 +- users/ericcristhiano.json | 2 +- users/ericdouglas.json | 2 +- users/eriklindebratt.json | 2 +- users/erikvorhes.json | 2 +- users/erkobridee.json | 2 +- users/errordeveloper.json | 2 +- users/estupendo.json | 2 +- users/ether.json | 2 +- users/ethercycle.json | 2 +- users/evan.json | 2 +- users/evansolomon.json | 2 +- users/evenchange4.json | 2 +- users/evenellie.json | 2 +- users/evertton.json | 2 +- users/ew.json | 2 +- users/ewafford.json | 2 +- users/ewerton-araujo.json | 2 +- users/example.json | 2 +- users/expbytes.json | 2 +- users/eyecatchup.json | 2 +- users/f.json | 2 +- users/fabdouglas.json | 2 +- users/fabian.json | 2 +- users/fabianbeiner.json | 2 +- users/fabianmoronzirfas.json | 2 +- users/fabianperez.json | 2 +- users/fabiantheblind.json | 2 +- users/fabien.json | 2 +- users/fabioluciano.json | 2 +- users/fabryz.json | 2 +- users/facundofarias.json | 2 +- users/faeliaso.json | 2 +- users/fancyguy.json | 2 +- users/fanestra.json | 2 +- users/fannheyward.json | 2 +- users/fauzism.json | 2 +- users/fd.json | 2 +- users/fdavidcl.json | 2 +- users/fefc.json | 2 +- users/felipe.json | 2 +- users/felipefialho.json | 2 +- users/felix-schuetz.json | 2 +- users/felix.json | 2 +- users/felixsanz.json | 2 +- users/fendi.json | 2 +- users/fengmk2.json | 2 +- users/fenris-studios.json | 2 +- users/feross.json | 2 +- users/ff.json | 2 +- users/ffljjqbqvsywxqakpvdbwyqqyt.json | 2 +- users/ffljjqbqvsywxqakpvdbwyqqytt.json | 2 +- users/fgsdhkdfjghdksfgjsg.json | 2 +- users/fh.json | 2 +- users/fiber-miniapp.json | 2 +- users/fiber.json | 2 +- users/fibo.json | 2 +- users/filepang.json | 2 +- users/filipebarros.json | 2 +- users/filosottile.json | 2 +- users/fireball.json | 2 +- users/firebase.json | 2 +- users/fireflies.json | 2 +- users/firejune.json | 2 +- users/fitjs.json | 2 +- users/fixate.json | 2 +- users/fjellerup.json | 2 +- users/fjorgemota.json | 2 +- users/fka.json | 2 +- users/flat.json | 2 +- users/flattr.json | 2 +- users/fleeting.json | 2 +- users/flesch.json | 2 +- users/fletc3her.json | 2 +- users/flexd.json | 2 +- users/floppy.json | 2 +- users/florian.json | 2 +- users/floydpink.json | 2 +- users/flyjs.json | 2 +- users/fm.json | 2 +- users/foak.json | 2 +- users/foat.json | 2 +- users/foobar.json | 2 +- users/ford.json | 2 +- users/forresty.json | 2 +- users/forsvikgroup.json | 2 +- users/foss-haas.json | 2 +- users/fov.json | 2 +- users/fp.json | 2 +- users/fpcs.json | 2 +- users/fr.json | 2 +- users/francisbesset.json | 2 +- users/frebro.json | 2 +- users/fredi.json | 2 +- users/fredrik.json | 2 +- users/fredwu.json | 2 +- users/freewheel.json | 2 +- users/freewizard.json | 2 +- users/fremy.json | 2 +- users/frendon.json | 2 +- users/freshbox.json | 2 +- users/freshmade.json | 2 +- users/frickreich.json | 2 +- users/friedcell.json | 2 +- users/fristonio.json | 2 +- users/frozenskys.json | 2 +- users/frozzare.json | 2 +- users/frwrdnet.json | 2 +- users/fs.json | 2 +- users/fuckthebitch.json | 2 +- users/fujieda.json | 2 +- users/fujimoto.json | 2 +- users/fullaf.json | 2 +- users/functioncallback.json | 2 +- users/fusco.json | 2 +- users/futoase.json | 2 +- users/fwolf.json | 2 +- users/fyhuang.json | 2 +- users/g0nh1n.json | 2 +- users/g0v.json | 2 +- users/gabev.json | 2 +- users/gableroux.json | 2 +- users/gabriel.json | 2 +- users/gabrielecanepa.json | 2 +- users/gabrielgfa.json | 2 +- users/gabrielgodoy.json | 2 +- users/gabrielizaias.json | 2 +- users/gabrieljmj.json | 2 +- users/gabrielrcouto.json | 2 +- users/gabskoro.json | 2 +- users/gae-tap.json | 2 +- users/gamajo.json | 2 +- users/gammasoft.json | 2 +- users/gao.json | 2 +- users/gasolwu.json | 2 +- users/gauntlt.json | 2 +- users/gaurav.json | 2 +- users/gautam.json | 2 +- users/gavin.json | 2 +- users/gavinhungry.json | 2 +- users/gb.json | 2 +- users/gbleux.json | 2 +- users/gdqyn.json | 2 +- users/geeky.json | 2 +- users/genesislive.json | 2 +- users/georapbox.json | 2 +- users/georgerogers42.json | 2 +- users/georgeyue.json | 2 +- users/geota.json | 2 +- users/geovation.json | 2 +- users/gep13.json | 2 +- users/ger.json | 2 +- users/gersonthiago.json | 2 +- users/geta6.json | 2 +- users/getify.json | 2 +- users/gfk.json | 2 +- users/gggkiller.json | 2 +- users/ghedo.json | 2 +- users/gherlein.json | 2 +- users/ghozylab.json | 2 +- users/giancarlovillena.json | 2 +- users/gianu.json | 2 +- users/gibsjose.json | 2 +- users/gigony.json | 2 +- users/gilmoreorless.json | 2 +- users/gine.json | 2 +- users/ginger.json | 2 +- users/girvo.json | 2 +- users/girvo2.json | 2 +- users/github.json | 2 +- users/gkatsev.json | 2 +- users/gkralik.json | 2 +- users/gld1982ltd.json | 2 +- users/glsee.json | 2 +- users/glynford.json | 2 +- users/gmanricks.json | 2 +- users/gmph.json | 2 +- users/gogoout.json | 2 +- users/goji.json | 2 +- users/gojigeje.json | 2 +- users/gokaygurcan.json | 2 +- users/gokhangunay.json | 2 +- users/gokmen.json | 2 +- users/goldsborough.json | 2 +- users/goodybag.json | 2 +- users/googledrivewpmedia.json | 2 +- users/gordondiggs.json | 2 +- users/gossi.json | 2 +- users/gphofficial.json | 2 +- users/gpl.json | 2 +- users/gplv2.json | 2 +- users/gplv3.json | 2 +- users/graham.json | 2 +- users/grapestack.json | 2 +- users/grapevine.json | 2 +- users/grawity.json | 2 +- users/gre.json | 2 +- users/greatwizard.json | 2 +- users/green.json | 2 +- users/greenify.json | 2 +- users/gregarmer.json | 2 +- users/grekko.json | 2 +- users/greweb.json | 2 +- users/greyhoundforty.json | 2 +- users/greystate.json | 2 +- users/groenewege.json | 2 +- users/grvcoelho.json | 2 +- users/gryftir.json | 2 +- users/gsimard.json | 2 +- users/gtierney.json | 2 +- users/gtomitsuka.json | 2 +- users/gtrrz-victor.json | 2 +- users/gugod.json | 2 +- users/guicheffer.json | 2 +- users/guidokessels.json | 2 +- users/guilhermemarconi.json | 2 +- users/guilhermeprates.json | 2 +- users/gunar.json | 2 +- users/gus.json | 2 +- users/gustavohenke.json | 2 +- users/gvv.json | 2 +- users/gyoshev.json | 2 +- users/h.json | 2 +- users/hadb.json | 2 +- users/hail2u.json | 2 +- users/halid.json | 2 +- users/halil.json | 2 +- users/halit.json | 2 +- users/hallme.json | 2 +- users/hamano.json | 2 +- users/hamidshavarean.json | 2 +- users/hanksudo.json | 2 +- users/haoxiong.json | 2 +- users/hardeep.json | 2 +- users/harold.json | 2 +- users/harry.json | 2 +- users/harryd.json | 2 +- users/harrydeluxe.json | 2 +- users/harshjain.json | 2 +- users/harshjv.json | 2 +- users/hashanp.json | 2 +- users/hashnuke.json | 2 +- users/hassankhan.json | 2 +- users/hassox.json | 2 +- users/hatena.json | 2 +- users/hatollint.json | 2 +- users/hbc.json | 2 +- users/hd.json | 2 +- users/he7d3r.json | 2 +- users/healthx.json | 2 +- users/hecticjeff.json | 2 +- users/hello.json | 2 +- users/hemersonvianna.json | 2 +- users/henrikbjorn.json | 2 +- users/henrikhodne.json | 2 +- users/henriquemoody.json | 2 +- users/henvic.json | 2 +- users/heppler.json | 2 +- users/herson.json | 2 +- users/heyday.json | 2 +- users/hfm.json | 2 +- users/hh.json | 2 +- users/hika69.json | 2 +- users/hildor.json | 2 +- users/hinassan.json | 2 +- users/hippiehacker.json | 2 +- users/hiremaga.json | 2 +- users/hirokiky.json | 2 +- users/hitode909.json | 2 +- users/hlfcoding.json | 2 +- users/hlomzik.json | 2 +- users/hmkz.json | 2 +- users/hobogrammer.json | 2 +- users/hokaccha.json | 2 +- users/hokypoky.json | 2 +- users/honyovk.json | 2 +- users/hoop33.json | 2 +- users/hope.json | 2 +- users/hor.json | 2 +- users/horacioibrahim.json | 2 +- users/horiuchi.json | 2 +- users/hotoo.json | 2 +- users/hotplate.json | 2 +- users/housetrip.json | 2 +- users/hpg.json | 2 +- users/hr.json | 2 +- users/hss.json | 2 +- users/hsyn.json | 2 +- users/htdvisser.json | 2 +- users/htjson.json | 2 +- users/hug.json | 2 +- users/hugorper.json | 2 +- users/husniadil.json | 2 +- users/hwthorn.json | 2 +- users/i.json | 2 +- users/iadvize.json | 2 +- users/iagodahlem.json | 2 +- users/iamale.json | 2 +- users/iamgabeortiz.json | 2 +- users/ian.json | 2 +- users/ianaya89.json | 2 +- users/ianfoo.json | 2 +- users/ianhammondcooper.json | 2 +- users/iantearle.json | 2 +- users/ianvaughan.json | 2 +- users/ianwang.json | 2 +- users/ianwinter.json | 2 +- users/ic.json | 2 +- users/ichizok.json | 2 +- users/icq4ever.json | 2 +- users/idkazuma.json | 2 +- users/idlua.json | 2 +- users/idomusha.json | 2 +- users/iet-ou.json | 2 +- users/if.json | 2 +- users/ifdattic.json | 2 +- users/igliu.json | 2 +- users/igneous.json | 2 +- users/ignitelabs.json | 2 +- users/igorcorradi.json | 2 +- users/igorprado.json | 2 +- users/iknew.json | 2 +- users/ilee.json | 2 +- users/imahmoodz.json | 2 +- users/imalliaros.json | 2 +- users/imjching.json | 2 +- users/immae.json | 2 +- users/imryan.json | 2 +- users/incertia.json | 2 +- users/indutny.json | 2 +- users/indy.json | 2 +- users/inetpeople.json | 2 +- users/instaphp.json | 2 +- users/intergrated.json | 2 +- users/inviz.json | 2 +- users/ionicabizau.json | 2 +- users/ionut.json | 2 +- users/irex.json | 2 +- users/is-uz.json | 2 +- users/isekaf.json | 2 +- users/isekivacenz.json | 2 +- users/ishands.json | 2 +- users/isle.json | 2 +- users/ismay.json | 2 +- users/isoden.json | 2 +- users/istanbulphp.json | 2 +- users/it-ony.json | 2 +- users/itacirgabral.json | 2 +- users/italoqueiroz.json | 2 +- users/ithings4u.json | 2 +- users/itscassa.json | 2 +- users/ivangaravito.json | 2 +- users/iwark.json | 2 +- users/izumin.json | 2 +- users/j.json | 2 +- users/ja.json | 2 +- users/jaanek.json | 2 +- users/jabbrwcky.json | 2 +- users/jackfischer.json | 2 +- users/jadn.json | 2 +- users/jaeckel.json | 2 +- users/jaequery.json | 2 +- users/jafnee.json | 2 +- users/jagregory.json | 2 +- users/jaimeneves.json | 2 +- users/jais.json | 2 +- users/jakebellacera.json | 2 +- users/jakejohnson.json | 2 +- users/jakemolnar.json | 2 +- users/jakschu.json | 2 +- users/jalanb.json | 2 +- users/james.json | 2 +- users/jameschen.json | 2 +- users/jamesclebio.json | 2 +- users/jameslawson.json | 2 +- users/jameswyse.json | 2 +- users/jamieh.json | 2 +- users/jamiemason.json | 2 +- users/jamiesonroberts.json | 2 +- users/jan.json | 2 +- users/jancbeck.json | 2 +- users/janders223.json | 2 +- users/jaredverdi.json | 2 +- users/jas0ncn.json | 2 +- users/jasl.json | 2 +- users/jasondavis.json | 2 +- users/jasondemeuse.json | 2 +- users/jasvir.json | 2 +- users/jaswinder.json | 2 +- users/jautero.json | 2 +- users/jay.json | 2 +- users/jaydson.json | 2 +- users/jaylynch.json | 2 +- users/jaymecd.json | 2 +- users/jballard.json | 2 +- users/jbb.json | 2 +- users/jbenet.json | 2 +- users/jbonnier.json | 2 +- users/jbradach.json | 2 +- users/jbrodriguez.json | 2 +- users/jbrooksuk.json | 2 +- users/jc.json | 2 +- users/jcarouth.json | 2 +- users/jcart1666.json | 2 +- users/jcfausto.json | 2 +- users/jcuri.json | 2 +- users/jczimm.json | 2 +- users/jd.json | 2 +- users/jdalton.json | 2 +- users/jdavis.json | 2 +- users/jden.json | 2 +- users/jdiamond.json | 2 +- users/jdrd.json | 2 +- users/jeanperez.json | 2 +- users/jeanpimentel.json | 2 +- users/jeff.json | 2 +- users/jeffdecola.json | 2 +- users/jeffmccoy.json | 2 +- users/jeffreymeng.json | 2 +- users/jefsama.json | 2 +- users/jellekralt.json | 2 +- users/jelmer.json | 2 +- users/jemos.json | 2 +- users/jenish.json | 2 +- users/jeremy.json | 2 +- users/jeremykendall.json | 2 +- users/jericho.json | 2 +- users/jermorin.json | 2 +- users/jeroenvisser.json | 2 +- users/jeroenvisser101.json | 2 +- users/jesseflorig.json | 2 +- users/jesusurrutia.json | 2 +- users/jet.json | 2 +- users/jetienne.json | 2 +- users/jfgodoy.json | 2 +- users/jfsiii.json | 2 +- users/jgrossi.json | 2 +- users/jhink.json | 2 +- users/ji.json | 2 +- users/jibreil.json | 2 +- users/jimeh.json | 2 +- users/jimjum.json | 2 +- users/jimmyking.json | 2 +- users/jin.json | 2 +- users/jinnovation.json | 2 +- users/jitinl.json | 2 +- users/jizoo.json | 2 +- users/jj1bdx.json | 2 +- users/jkeyes.json | 2 +- users/jkimbo.json | 2 +- users/jmazz.json | 2 +- users/jmblog.json | 2 +- users/jmendeth.json | 2 +- users/jmeosbn.json | 2 +- users/jmhodges.json | 2 +- users/jmiller.json | 2 +- users/jmm.json | 2 +- users/jmparsons.json | 2 +- users/jnf.json | 2 +- users/jnj.json | 2 +- users/jnjosh.json | 2 +- users/jnw.json | 2 +- users/joaos.json | 2 +- users/jobquest.json | 2 +- users/jody.json | 2 +- users/joe.json | 2 +- users/joelambert.json | 2 +- users/joelbladt.json | 2 +- users/joelpurra.json | 2 +- users/joelself.json | 2 +- users/joelwalters.json | 2 +- users/joeyblake.json | 2 +- users/joeyespo.json | 2 +- users/jogy.json | 2 +- users/johan.json | 2 +- users/johanekhager.json | 2 +- users/johanhalse.json | 2 +- users/john.json | 2 +- users/johnathanjenkins.json | 2 +- users/johndyer.json | 2 +- users/johnjensen.json | 2 +- users/johnmcc.json | 2 +- users/johnmdonahue.json | 2 +- users/johnny.json | 2 +- users/johnschult.json | 2 +- users/johnsullivan.json | 2 +- users/johntfoster.json | 2 +- users/jokliu.json | 2 +- users/jonas.json | 2 +- users/jonathanheaven.json | 2 +- users/jonathanwiesel.json | 2 +- users/jongretar.json | 2 +- users/jonmcpherson.json | 2 +- users/jonnung-grp.json | 2 +- users/jonscottclark.json | 2 +- users/jonstites.json | 2 +- users/joom.json | 2 +- users/joostlawerman.json | 2 +- users/jordimorillo.json | 2 +- users/joren.json | 2 +- users/jorge-matricali.json | 2 +- users/jorge.json | 2 +- users/joseandro.json | 2 +- users/josh.json | 2 +- users/joshboehm.json | 2 +- users/joshbuhler.json | 2 +- users/joshje.json | 2 +- users/joshua.json | 2 +- users/joshuacanfield.json | 2 +- users/joshuaptfan.json | 2 +- users/joslyn.json | 2 +- users/josue.json | 2 +- users/josuer.json | 2 +- users/josuerodriguez.json | 2 +- users/jotschi.json | 2 +- users/joyce.json | 2 +- users/joyceschan.json | 2 +- users/jp.json | 2 +- users/jprice.json | 2 +- users/jpsirois.json | 2 +- users/jquery-client.json | 2 +- users/jr.json | 2 +- users/jrattanpal.json | 2 +- users/jre.json | 2 +- users/jrudenstam.json | 2 +- users/jruhland.json | 2 +- users/jryans.json | 2 +- users/js.json | 2 +- users/jsbin.json | 2 +- users/jseppi.json | 2 +- users/jsumners.json | 2 +- users/jtb.json | 2 +- users/jtkendall.json | 2 +- users/jtr.json | 2 +- users/jtwalters.json | 2 +- users/jtyost2.json | 2 +- users/juanitofatas.json | 2 +- users/julesj.json | 2 +- users/julien-breux.json | 2 +- users/julienw.json | 2 +- users/junookyo.json | 2 +- users/justin.json | 2 +- users/justinian.json | 2 +- users/justinm.json | 2 +- users/justinrainbow.json | 2 +- users/justmarkup.json | 2 +- users/justmoon.json | 2 +- users/jwark.json | 2 +- users/jwathen.json | 2 +- users/jwehrman.json | 2 +- users/jwngr.json | 2 +- users/jxck.json | 2 +- users/jxson.json | 2 +- users/jylhis.json | 2 +- users/k-yoshida.json | 2 +- users/k2wanko.json | 2 +- users/k33nice.json | 2 +- users/ka2n.json | 2 +- users/kabuku-inc.json | 2 +- users/kabuku.json | 2 +- users/kafene.json | 2 +- users/kagee.json | 2 +- users/kai.json | 2 +- users/kaichop.json | 2 +- users/kakehashi.json | 2 +- users/kale.json | 2 +- users/kanade.json | 2 +- users/kandoi.json | 2 +- users/kaneel.json | 2 +- users/kaneshin.json | 2 +- users/kaos.json | 2 +- users/karami.json | 2 +- users/karbassi.json | 2 +- users/karimsa.json | 2 +- users/karl-sjogren.json | 2 +- users/karl.json | 2 +- users/karlc.json | 2 +- users/karlcoelho.json | 2 +- users/karteek.json | 2 +- users/karupanerura.json | 2 +- users/kataring.json | 2 +- users/katsuma.json | 2 +- users/katsyoshi.json | 2 +- users/kaukeb.json | 2 +- users/kawakawaritsuki.json | 2 +- users/kawanet.json | 2 +- users/kawaz.json | 2 +- users/kaxla.json | 2 +- users/kayframework.json | 2 +- users/kb.json | 2 +- users/kbond.json | 2 +- users/kcak11.json | 2 +- users/kcj.json | 2 +- users/kclarke.json | 2 +- users/kdy.json | 2 +- users/ke.json | 2 +- users/keegoid.json | 2 +- users/keifukuda.json | 2 +- users/keita.json | 2 +- users/keithamus.json | 2 +- users/keithcirkel.json | 2 +- users/kenjiyamamoto.json | 2 +- users/kenta.json | 2 +- users/kentaro.json | 2 +- users/kerem.json | 2 +- users/ketchum.json | 2 +- users/kevin.json | 2 +- users/kevinaloys.json | 2 +- users/kevinfling.json | 2 +- users/kevinmmarlow.json | 2 +- users/key.json | 2 +- users/keyup.json | 2 +- users/kezho.json | 2 +- users/kgarg.json | 2 +- users/kgisl.json | 2 +- users/khanio.json | 2 +- users/khushraj.json | 2 +- users/khuxkm.json | 2 +- users/kieranties.json | 2 +- users/kilian.json | 2 +- users/kilokahn.json | 2 +- users/kimiamania.json | 2 +- users/kindy.json | 2 +- users/kinetik.json | 2 +- users/kishorm23.json | 2 +- users/kit.json | 2 +- users/kitak.json | 2 +- users/kiwigrid.json | 2 +- users/kjirou.json | 2 +- users/kjohnston.json | 2 +- users/kkung.json | 2 +- users/kloptops.json | 2 +- users/kma.json | 2 +- users/kmix.json | 2 +- users/kmonsoor.json | 2 +- users/knagano.json | 2 +- users/knakayama.json | 2 +- users/knimon-software.json | 2 +- users/knockout-components.json | 2 +- users/knutwalker.json | 2 +- users/koba789.json | 2 +- users/koeberle.json | 2 +- users/kohenkatz.json | 2 +- users/kojiwakayama.json | 2 +- users/konsumer.json | 2 +- users/kopplin.json | 2 +- users/koshigoe.json | 2 +- users/kossnocorp.json | 2 +- users/kothawale.json | 2 +- users/koustuvs.json | 2 +- users/kozakky.json | 2 +- users/kpeatt.json | 2 +- users/kraga.json | 2 +- users/krinkle.json | 2 +- users/kris.json | 2 +- users/kristoffer.json | 2 +- users/kristopher.json | 2 +- users/kriwil.json | 2 +- users/kroisse.json | 2 +- users/krolow.json | 2 +- users/krrrr38.json | 2 +- users/ksomemo.json | 2 +- users/kswedberg.json | 2 +- users/kt3k.json | 2 +- users/ktat.json | 2 +- users/ktravis.json | 2 +- users/ktrysmt.json | 2 +- users/kucoe.json | 2 +- users/kuenishi.json | 2 +- users/kujohnln.json | 2 +- users/kumatch.json | 2 +- users/kuni-uec-takada-lab.json | 2 +- users/kuniwak.json | 2 +- users/kurmis.json | 2 +- users/kuronekomichael.json | 2 +- users/kvz.json | 2 +- users/kvz2.json | 2 +- users/kyanny.json | 2 +- users/kyle.json | 2 +- users/kylebaker.json | 2 +- users/kylebshr.json | 2 +- users/kylestev.json | 2 +- users/kylewelsby.json | 2 +- users/kyrias.json | 2 +- users/kyungw00k.json | 2 +- users/l04m33.json | 2 +- users/laka.json | 2 +- users/lalit.json | 2 +- users/laradic.json | 2 +- users/lareg.json | 2 +- users/larrybotha.json | 2 +- users/lars.json | 2 +- users/larste.json | 2 +- users/lavoie-sl.json | 2 +- users/layer7tech.json | 2 +- users/lbesson.json | 2 +- users/lbuell.json | 2 +- users/leandromatos.json | 2 +- users/leanix.json | 2 +- users/ledsun.json | 2 +- users/leeym.json | 2 +- users/leftlogic.json | 2 +- users/legato.json | 2 +- users/legraphista.json | 2 +- users/lehmannro.json | 2 +- users/lemieux.json | 2 +- users/lemolsoft.json | 2 +- users/lemurs.json | 2 +- users/len.json | 2 +- users/lenet.json | 2 +- users/leniglo.json | 2 +- users/lenilson.json | 2 +- users/leonardomerlin.json | 2 +- users/leonardorifeli.json | 2 +- users/leonardosoares.json | 2 +- users/lepture.json | 2 +- users/lequioscreative.json | 2 +- users/levelup.json | 2 +- users/lgalfaso.json | 2 +- users/lgn21st.json | 2 +- users/lh.json | 2 +- users/lhl.json | 2 +- users/li.json | 2 +- users/liam-kerr.json | 2 +- users/lidonghua.json | 2 +- users/likerrr.json | 2 +- users/lindsayevans.json | 2 +- users/lionel-m.json | 2 +- users/lira.json | 2 +- users/lishiyu.json | 2 +- users/litenjacob.json | 2 +- users/liuderchi.json | 2 +- users/livebreathedigital.json | 2 +- users/liz.json | 2 +- users/lizzie.json | 2 +- users/ljos.json | 2 +- users/llaraujo.json | 2 +- users/llun.json | 2 +- users/lmarburger.json | 2 +- users/lmullen.json | 2 +- users/lng.json | 2 +- users/lnmunhoz.json | 2 +- users/lo.json | 2 +- users/localhost.json | 2 +- users/localpcguy.json | 2 +- users/lolcat.json | 2 +- users/longsl.json | 2 +- users/loopj.json | 2 +- users/lorenz-lo-sauer.json | 2 +- users/louisremi.json | 2 +- users/louist.json | 2 +- users/lp.json | 2 +- users/lpa.json | 2 +- users/lpg.json | 2 +- users/lpghatguy.json | 2 +- users/lqez.json | 2 +- users/lqian.json | 2 +- users/lrenhrda.json | 2 +- users/lsauer.json | 2 +- users/lsh.json | 2 +- users/lsong.json | 2 +- users/ltej.json | 2 +- users/luanmuniz.json | 2 +- users/lucasgreen.json | 2 +- users/lucasmartins.json | 2 +- users/luis.json | 2 +- users/luisdalmolin.json | 2 +- users/luizbills.json | 2 +- users/luizpicolo.json | 2 +- users/luke.json | 2 +- users/lukeed.json | 2 +- users/lukew.json | 2 +- users/lukmdo.json | 2 +- users/lulalachen.json | 2 +- users/lussier.json | 2 +- users/luwes.json | 2 +- users/lvillani.json | 2 +- users/lynn.json | 2 +- users/lynnwallenstein.json | 2 +- users/m.json | 2 +- users/m0s.json | 2 +- users/m42e.json | 2 +- users/m4i.json | 2 +- users/ma.json | 2 +- users/ma124.json | 2 +- users/mach3.json | 2 +- users/maciejczyzewski.json | 2 +- users/macobo.json | 2 +- users/mactkg.json | 2 +- users/maddes.json | 2 +- users/madethemes.json | 2 +- users/madness.json | 2 +- users/madrona-labs.json | 2 +- users/magarcia-mail.json | 2 +- users/magarcia.json | 2 +- users/magicdawn.json | 2 +- users/magno.json | 2 +- users/magnus.json | 2 +- users/mahdaen.json | 2 +- users/majd.json | 2 +- users/majodev.json | 2 +- users/makenowjust.json | 2 +- users/makimoto.json | 2 +- users/malayaleecoder.json | 2 +- users/mallim.json | 2 +- users/mamund.json | 2 +- users/managenet.json | 2 +- users/mandre.json | 2 +- users/manish.json | 2 +- users/manparvesh.json | 2 +- users/manual.json | 2 +- users/manuel.json | 2 +- users/manuglez.json | 2 +- users/maoo.json | 2 +- users/mapjam.json | 2 +- users/mapjam1.json | 2 +- users/mapjam2.json | 2 +- users/maqina.json | 2 +- users/marc.json | 2 +- users/marcastel.json | 2 +- users/marceloboeira.json | 2 +- users/marcelobrito.json | 2 +- users/marco-loche.json | 2 +- users/marco.json | 2 +- users/marcoagner.json | 2 +- users/marcocanc.json | 2 +- users/marconi.json | 2 +- users/marcqualie.json | 2 +- users/marcroberts.json | 2 +- users/marcusw.json | 2 +- users/marebucks.json | 2 +- users/marek-saji.json | 2 +- users/marek.json | 2 +- users/marge.json | 2 +- users/mario-chavez.json | 2 +- users/mark.json | 2 +- users/markdalgleish.json | 2 +- users/marksteve.json | 2 +- users/marnulombard.json | 2 +- users/marshall.json | 2 +- users/martinblech.json | 2 +- users/marucc.json | 2 +- users/marvinede.json | 2 +- users/masch.json | 2 +- users/mashihua.json | 2 +- users/mast.json | 2 +- users/masutaka.json | 2 +- users/mateusortiz.json | 2 +- users/matheus.json | 2 +- users/mathias.json | 2 +- users/mathieu.json | 2 +- users/matin.json | 2 +- users/matsukaz.json | 2 +- users/matt-deacalion.json | 2 +- users/matt.json | 2 +- users/mattaimonetti.json | 2 +- users/mattcg.json | 2 +- users/mattclements.json | 2 +- users/mattetti.json | 2 +- users/mattgauf.json | 2 +- users/mattgoucher.json | 2 +- users/mattgross.json | 2 +- users/matth.json | 2 +- users/matthew-campbell.json | 2 +- users/matthew.json | 2 +- users/matthewdavies.json | 2 +- users/matthewmcvickar.json | 2 +- users/matthieuaussaguel.json | 2 +- users/mattn.json | 2 +- users/mattstevens.json | 2 +- users/mavidser.json | 2 +- users/max.json | 2 +- users/maximz.json | 2 +- users/maxmanders.json | 2 +- users/maxroecker.json | 2 +- users/maxwell.json | 2 +- users/maxx.json | 2 +- users/mayankjha.json | 2 +- users/mb.json | 2 +- users/mbasanta.json | 2 +- users/mbilbillee.json | 2 +- users/mbo.json | 2 +- users/mbs.json | 2 +- users/mc2.json | 2 +- users/mckamey.json | 2 +- users/mckay.json | 2 +- users/mckelvaney.json | 2 +- users/mckomo.json | 2 +- users/mdag.json | 2 +- users/mdd.json | 2 +- users/mdhheydari.json | 2 +- users/mdibaiee.json | 2 +- users/mdt.json | 2 +- users/meetparikh7.json | 2 +- users/meghprkh.json | 2 +- users/memega.json | 2 +- users/memph1s.json | 2 +- users/mestes.json | 2 +- users/mestrada.json | 2 +- users/mf.json | 2 +- users/mfah.json | 2 +- users/mfmer.json | 2 +- users/mgonto.json | 2 +- users/mhaidarh.json | 2 +- users/mheap.json | 2 +- users/mhenry.json | 2 +- users/mhm5000.json | 2 +- users/mhweiner.json | 2 +- users/mi-roh.json | 2 +- users/micaelbergeron.json | 2 +- users/micalevisk.json | 2 +- users/michael.json | 2 +- users/michaeldanilov.json | 2 +- users/michaelhsu.json | 2 +- users/michaelhsutw.json | 2 +- users/michaelobi.json | 2 +- users/michaelstanden.json | 2 +- users/michaeltaranto.json | 2 +- users/micromvc.json | 2 +- users/microsoft.json | 2 +- users/micxer.json | 2 +- users/midupuis.json | 2 +- users/mignev.json | 2 +- users/miguelfrde.json | 2 +- users/miguelmota.json | 2 +- users/mikael.json | 2 +- users/mikaeljorhult.json | 2 +- users/mike.json | 2 +- users/mike2duo.json | 2 +- users/mikeanthony.json | 2 +- users/mikejolley.json | 2 +- users/mikejolly.json | 2 +- users/mikelyons.json | 2 +- users/mikl.json | 2 +- users/mikuiro.json | 2 +- users/milosgavrilovic.json | 2 +- users/minhee.json | 2 +- users/minidfx.json | 2 +- users/miro.json | 2 +- users/mirrajabi.json | 2 +- users/mislav.json | 2 +- users/miszo.json | 2 +- users/mit-license.json | 6 +++--- users/mizzy.json | 2 +- users/mjf.json | 2 +- users/mk.json | 2 +- users/mk23.json | 2 +- users/mkhl.json | 2 +- users/mlxy.json | 2 +- users/mm.json | 2 +- users/mnicnc404.json | 2 +- users/moacirosa.json | 2 +- users/mohan.json | 2 +- users/mohayonao.json | 2 +- users/mohebifar.json | 2 +- users/mohnish.json | 2 +- users/mohsend.json | 2 +- users/mokemokechicken.json | 2 +- users/mollifier.json | 2 +- users/mongorito.json | 2 +- users/monkey.json | 2 +- users/monks.json | 2 +- users/monmon.json | 2 +- users/moongift.json | 2 +- users/moore.json | 2 +- users/mootoh.json | 2 +- users/moox.json | 2 +- users/mooyoul.json | 2 +- users/moqada.json | 2 +- users/moroshko.json | 2 +- users/mortdeus.json | 2 +- users/morteza.json | 2 +- users/mostly-magic.json | 2 +- users/motemen.json | 2 +- users/motss.json | 2 +- users/moyashiki.json | 2 +- users/mp.json | 2 +- users/mpd.json | 2 +- users/mpdreamz.json | 2 +- users/mpogoda.json | 2 +- users/mr-mostafa.json | 2 +- users/mressex.json | 2 +- users/mrgnrdrck.json | 2 +- users/mrinaljain17.json | 2 +- users/mrkn.json | 2 +- users/mrmarbles.json | 2 +- users/mrsiir.json | 2 +- users/mschaer.json | 2 +- users/mseri.json | 2 +- users/mshertzberg.json | 2 +- users/msmosso.json | 2 +- users/msmprojects.json | 2 +- users/mstade.json | 2 +- users/mstum.json | 2 +- users/msudgh.json | 2 +- users/mteckert.json | 2 +- users/mtsagias.json | 2 +- users/mtsmfm.json | 2 +- users/mturcotte.json | 2 +- users/muet.json | 2 +- users/mullen.json | 2 +- users/muratk.json | 2 +- users/muriel.json | 2 +- users/murphy.json | 2 +- users/musicgig.json | 2 +- users/mustafa.json | 2 +- users/mutedsolutions.json | 2 +- users/mutlicorp.json | 2 +- users/mutoso.json | 2 +- users/muyuu.json | 2 +- users/mvdnes.json | 2 +- users/mvr.json | 2 +- users/mw.json | 2 +- users/mway.json | 2 +- users/mwm.json | 2 +- users/mwmeyer.json | 2 +- users/mwmnj.json | 2 +- users/myles.json | 2 +- users/mynetx.json | 2 +- users/mysticatea.json | 2 +- users/n.json | 2 +- users/n0nick.json | 2 +- users/nacyot.json | 2 +- users/nadeemkhan.json | 2 +- users/nadi.json | 2 +- users/naereen.json | 2 +- users/nak2k.json | 2 +- users/nanahositento.json | 2 +- users/nanha.json | 2 +- users/nanotaboada.json | 2 +- users/naota.json | 2 +- users/nat.json | 2 +- users/nate.json | 2 +- users/natevw.json | 2 +- users/nathan.json | 2 +- users/nathan7.json | 2 +- users/nathanallen.json | 2 +- users/natzim.json | 2 +- users/naufraghi.json | 2 +- users/navarr.json | 2 +- users/nblackburn.json | 2 +- users/ncb000gt.json | 2 +- users/nctg.json | 2 +- users/ndw.json | 2 +- users/nectktar.json | 2 +- users/neil.json | 2 +- users/nemo.json | 2 +- users/neo.json | 2 +- users/neodevelop.json | 2 +- users/neos21.json | 2 +- users/nerdfiles.json | 2 +- users/nerdsec.json | 2 +- users/nergal.json | 2 +- users/nethru.json | 2 +- users/neutroncreations.json | 2 +- users/nevir.json | 2 +- users/newleaders.json | 2 +- users/nex.json | 2 +- users/nexzhu.json | 2 +- users/nfreear.json | 2 +- users/ngenerio.json | 2 +- users/ngoldman.json | 2 +- users/ngtk.json | 2 +- users/ngyuki.json | 2 +- users/nhan.json | 2 +- users/nhanderu.json | 2 +- users/nhayato.json | 2 +- users/nhoizey.json | 2 +- users/nichom.json | 2 +- users/nickmanos.json | 2 +- users/nicksp.json | 2 +- users/nico.json | 2 +- users/niftylettuce.json | 2 +- users/nightw.json | 2 +- users/nik.json | 2 +- users/nikbobo.json | 2 +- users/nikhilgohil11.json | 2 +- users/nikolay.json | 2 +- users/nil.json | 2 +- users/nilesh.json | 2 +- users/nilkesede.json | 2 +- users/nilswloka.json | 2 +- users/niltoncms.json | 2 +- users/nima.json | 2 +- users/nimbu.json | 2 +- users/nisargrthakkar.json | 2 +- users/nishanths.json | 2 +- users/nitori.json | 2 +- users/nitriques.json | 2 +- users/njordon.json | 2 +- users/nk.json | 2 +- users/nks.json | 2 +- users/nlr.json | 2 +- users/nm.json | 2 +- users/nmanos.json | 2 +- users/nnexus.json | 2 +- users/nntoan.json | 2 +- users/no.json | 2 +- users/nodaguti.json | 2 +- users/nodejsbrasil.json | 2 +- users/noeldavies.json | 2 +- users/nojb.json | 2 +- users/nooblad.json | 2 +- users/noodlehaus.json | 2 +- users/norcross.json | 2 +- users/noriaki.json | 2 +- users/noromanba.json | 2 +- users/norris.json | 2 +- users/noty.json | 2 +- users/novalagung.json | 2 +- users/nqngo.json | 2 +- users/nrakochy.json | 2 +- users/nrm.json | 2 +- users/ns.json | 2 +- users/nsisodiya.json | 2 +- users/null.json | 2 +- users/numediaweb.json | 2 +- users/nuri.json | 2 +- users/nv.json | 2 +- users/nvcnvn.json | 2 +- users/nyarla.json | 2 +- users/o.json | 2 +- users/oaeide.json | 2 +- users/obihann.json | 2 +- users/object505.json | 2 +- users/oc.json | 2 +- users/octavioturra.json | 2 +- users/odsod.json | 2 +- users/ofer-shaham.json | 2 +- users/ofer.json | 2 +- users/oguching.json | 2 +- users/ohtomi.json | 2 +- users/oidong1.json | 2 +- users/ojoaofernandes.json | 2 +- users/ok.json | 2 +- users/okeyaki.json | 2 +- users/ol.json | 2 +- users/olalonde.json | 2 +- users/olav.json | 2 +- users/olgabot.json | 2 +- users/oliciv.json | 2 +- users/olivere.json | 2 +- users/olivernn.json | 2 +- users/olivier.json | 2 +- users/ollej.json | 2 +- users/olly.json | 2 +- users/olmokramer.json | 2 +- users/omarithawi.json | 2 +- users/omg.json | 2 +- users/omi.json | 2 +- users/omidgharib.json | 2 +- users/omtinez.json | 2 +- users/onarray.json | 2 +- users/onecmf.json | 2 +- users/onedge.json | 2 +- users/onenorth.json | 2 +- users/oojs.json | 2 +- users/openjtalkgolang.json | 2 +- users/oppara.json | 2 +- users/opsworks-ruby.json | 2 +- users/orgachem.json | 2 +- users/origami-tower.json | 2 +- users/origamitower.json | 2 +- users/originalmachine.json | 2 +- users/orlin.json | 2 +- users/orzfly.json | 2 +- users/os0x.json | 2 +- users/oshida.json | 2 +- users/oswaldoacauan.json | 2 +- users/othree.json | 2 +- users/outline.json | 2 +- users/outsider.json | 2 +- users/owebboy.json | 2 +- users/owm.json | 2 +- users/oxguy3.json | 2 +- users/oxy.json | 2 +- users/ozh.json | 2 +- users/ozzyr.json | 2 +- users/pablodv.json | 2 +- users/pablojim.json | 2 +- users/pacbard.json | 2 +- users/padde.json | 2 +- users/pagoda.json | 2 +- users/pagodabox.json | 2 +- users/pahnin.json | 2 +- users/palleas.json | 2 +- users/panjiesw.json | 2 +- users/pankaj.json | 2 +- users/parker.json | 2 +- users/parkere.json | 2 +- users/parryc.json | 2 +- users/partkyle.json | 2 +- users/passcod.json | 2 +- users/passelin.json | 2 +- users/patrick.json | 2 +- users/patricmutwiri.json | 2 +- users/paul-vollmer.json | 2 +- users/paul.json | 2 +- users/paulcuth.json | 2 +- users/paulf.json | 2 +- users/paulmillr.json | 2 +- users/paulmoore.json | 2 +- users/paulredmond.json | 2 +- users/paulrobertlloyd.json | 2 +- users/payliu.json | 2 +- users/pb.json | 2 +- users/pci.json | 2 +- users/pcole.json | 2 +- users/pdfrod.json | 2 +- users/pdostal.json | 2 +- users/peatio.json | 2 +- users/peccu.json | 2 +- users/pedrolamas.json | 2 +- users/pelletier.json | 2 +- users/pemrouz.json | 2 +- users/penguin4games.json | 2 +- users/per.json | 2 +- users/petamoriken.json | 2 +- users/pete.json | 2 +- users/peter.json | 2 +- users/peterc.json | 2 +- users/petite.json | 2 +- users/petitviolet.json | 2 +- users/pf.json | 2 +- users/pfiled.json | 2 +- users/pg.json | 2 +- users/pgrenaud.json | 2 +- users/phakin.json | 2 +- users/phanimahesh.json | 2 +- users/phaserstudio.json | 2 +- users/phawk.json | 2 +- users/phgarcia.json | 2 +- users/phiber.json | 2 +- users/phibermit.json | 2 +- users/philippbosch.json | 2 +- users/philippwiddra.json | 2 +- users/philtr.json | 2 +- users/philworthington.json | 2 +- users/phlipper.json | 2 +- users/phlux.json | 2 +- users/phm.json | 2 +- users/phucnm.json | 2 +- users/phuu.json | 2 +- users/pid.json | 2 +- users/piecioshka.json | 2 +- users/pierre.json | 2 +- users/pietervanderwerff.json | 2 +- users/pigmon.json | 2 +- users/pikesley.json | 2 +- users/piksel.json | 2 +- users/pine.json | 2 +- users/pinjasaur.json | 2 +- users/pipwerks.json | 2 +- users/pirosikick.json | 2 +- users/pitomba.json | 2 +- users/piyush.json | 2 +- users/piyushvarshney.json | 2 +- users/pjbgf.json | 2 +- users/pjhampton.json | 2 +- users/plasticpanda.json | 2 +- users/pluma.json | 2 +- users/pluschnikow.json | 2 +- users/pm.json | 2 +- users/pm5.json | 2 +- users/pmac.json | 2 +- users/pmk.json | 2 +- users/pmowrer.json | 2 +- users/pmuellr.json | 2 +- users/poapfel.json | 2 +- users/polem.json | 2 +- users/polossk.json | 2 +- users/ponko2.json | 2 +- users/popomore.json | 2 +- users/popoway.json | 2 +- users/porada.json | 2 +- users/porras.json | 2 +- users/posa88.json | 2 +- users/pothibo.json | 2 +- users/pouya.json | 2 +- users/poying.json | 2 +- users/poyu.json | 2 +- users/pragai.json | 2 +- users/pragmaticivan.json | 2 +- users/prajankya.json | 2 +- users/pranavrajs.json | 2 +- users/pranay.json | 2 +- users/pranayt.json | 2 +- users/pranjal.json | 2 +- users/prankshaw.json | 2 +- users/prashant0598.json | 2 +- users/prashcr.json | 2 +- users/pratyk.json | 2 +- users/praveen.json | 2 +- users/pravj.json | 2 +- users/preco.json | 2 +- users/prescott.json | 2 +- users/preston.json | 2 +- users/probablywrong.json | 2 +- users/prodicus.json | 2 +- users/proudlygeek.json | 2 +- users/prsly.json | 2 +- users/pschlosser.json | 2 +- users/psykzz.json | 2 +- users/psyrendust.json | 2 +- users/pt.json | 2 +- users/pthangeda.json | 2 +- users/pti.json | 2 +- users/punkish.json | 2 +- users/purdy.json | 2 +- users/pushandplay.json | 2 +- users/pwmckenna.json | 2 +- users/pwn.json | 2 +- users/pwnall.json | 2 +- users/px.json | 2 +- users/pxc.json | 2 +- users/pxgamer.json | 2 +- users/pyyoshi.json | 2 +- users/qfox.json | 2 +- users/qing.json | 2 +- users/qix1986.json | 2 +- users/qorbani.json | 2 +- users/qrawl.json | 2 +- users/quantumgraph.json | 2 +- users/queryli.json | 2 +- users/questbeat.json | 2 +- users/qwertypants.json | 2 +- users/r15ch13.json | 2 +- users/raananw.json | 2 +- users/racklin.json | 2 +- users/radic.json | 2 +- users/radio-t.json | 2 +- users/raegen.json | 2 +- users/raf.json | 2 +- users/rafamello.json | 2 +- users/raindrop.json | 2 +- users/raja.json | 2 +- users/rajarshi.json | 2 +- users/rajeevkannav.json | 2 +- users/rajinwonderland.json | 2 +- users/ramanan.json | 2 +- users/ramin.json | 2 +- users/ramirio.json | 2 +- users/ramonpage.json | 2 +- users/ramsey.json | 2 +- users/random-rem.json | 2 +- users/randsonjs.json | 2 +- users/raphael.json | 2 +- users/raphaelbronsveld.json | 2 +- users/raphaelfabeni.json | 2 +- users/rappa.json | 2 +- users/rappasoft.json | 2 +- users/rapson.json | 2 +- users/rares.json | 2 +- users/rasch.json | 2 +- users/ravigehlot.json | 2 +- users/raw-engineering.json | 2 +- users/raweng.json | 2 +- users/rawengineering.json | 2 +- users/raypatterson.json | 2 +- users/rbardini.json | 2 +- users/rcpeters.json | 2 +- users/rcta.json | 2 +- users/readytalk.json | 2 +- users/recoye.json | 2 +- users/redpumpkin.json | 2 +- users/reedia.json | 2 +- users/reefaq.json | 2 +- users/rei.json | 2 +- users/rejack.json | 2 +- users/relequestual.json | 2 +- users/relu.json | 2 +- users/rem-test.json | 2 +- users/rem-test2.json | 2 +- users/rem.json | 2 +- users/rem123.json | 2 +- users/rematin.json | 2 +- users/reminisceme.json | 2 +- users/remybach.json | 2 +- users/remyg.json | 2 +- users/remz.json | 2 +- users/renatoargh.json | 2 +- users/rene.json | 2 +- users/ress.json | 2 +- users/ressendpanda.json | 2 +- users/return1.json | 2 +- users/revathskumar.json | 2 +- users/revi.json | 2 +- users/revolunet.json | 2 +- users/reza.json | 2 +- users/rflpazini.json | 2 +- users/rg.json | 2 +- users/rgoyard.json | 2 +- users/rhardih.json | 2 +- users/rhiokim.json | 2 +- users/rhlnair.json | 2 +- users/rhnvrm.json | 2 +- users/rhynl.json | 2 +- users/ri7nz.json | 2 +- users/riadloukili.json | 2 +- users/ribeiroevandro.json | 2 +- users/ricardo.json | 2 +- users/ricardogouveia3.json | 2 +- users/richardcooper.json | 2 +- users/richie-bendall.json | 2 +- users/richiebendall.json | 2 +- users/richo.json | 2 +- users/richsage.json | 2 +- users/rickary.json | 2 +- users/rictorres.json | 2 +- users/rigging.json | 2 +- users/riju.json | 2 +- users/rinaldi.json | 2 +- users/ringe.json | 2 +- users/rip.json | 2 +- users/river24.json | 2 +- users/rixius.json | 2 +- users/rizky.json | 2 +- users/rjw57.json | 2 +- users/rkh.json | 2 +- users/rkjun.json | 2 +- users/rko.json | 2 +- users/rl.json | 2 +- users/rloopteam.json | 2 +- users/rm.json | 2 +- users/rmartin.json | 2 +- users/rmf.json | 2 +- users/rmlewisuk.json | 2 +- users/rmm5t.json | 2 +- users/rmsubekti.json | 2 +- users/rmunn.json | 2 +- users/rnelson.json | 2 +- users/rob.json | 2 +- users/robario.json | 2 +- users/robdodson.json | 2 +- users/roberthernandez.json | 2 +- users/robertlucian.json | 2 +- users/robin.json | 2 +- users/robotblake.json | 2 +- users/robxu9.json | 2 +- users/rock.json | 2 +- users/rodchyn.json | 2 +- users/rogeriopradoj.json | 2 +- users/rogeriorc.json | 2 +- users/rohanc.json | 2 +- users/rohithasrk.json | 2 +- users/rok.json | 2 +- users/romac.json | 2 +- users/romain.json | 2 +- users/roman-boiko.json | 2 +- users/romanboiko.json | 2 +- users/romkey.json | 2 +- users/ron975test.json | 2 +- users/ronnchyran.json | 2 +- users/rootulp.json | 2 +- users/rosarior.json | 2 +- users/rosebudandmoon.json | 2 +- users/ross.json | 2 +- users/rossjones.json | 2 +- users/roy.json | 2 +- users/rpavlik.json | 2 +- users/rpetz.json | 2 +- users/rpetz1.json | 2 +- users/rpowis.json | 2 +- users/rubensfernandes.json | 2 +- users/rud.json | 2 +- users/ruedap.json | 2 +- users/ruhland.json | 2 +- users/rumpl.json | 2 +- users/runphp.json | 2 +- users/rur.json | 2 +- users/ruucm.json | 2 +- users/rverrips.json | 2 +- users/rx14.json | 2 +- users/ryan.json | 2 +- users/ryanjacobs.json | 2 +- users/ryanleland.json | 2 +- users/ryanmjacobs.json | 2 +- users/ryanscott.json | 2 +- users/ryanseddon.json | 2 +- users/ryanwu.json | 2 +- users/ryck.json | 2 +- users/ryepdx.json | 2 +- users/ryf.json | 2 +- users/rylee.json | 2 +- users/ryotahirano.json | 2 +- users/s-a.json | 2 +- users/s.json | 2 +- users/saas-ninja.json | 2 +- users/sachinjain.json | 2 +- users/sadko.json | 2 +- users/saeid.json | 2 +- users/sagru.json | 2 +- users/sails-spinnaker.json | 2 +- users/sails.json | 2 +- users/sailxjx.json | 2 +- users/sallar.json | 2 +- users/sam.json | 2 +- users/sambhav2612.json | 2 +- users/samirtalwar.json | 2 +- users/sammyt.json | 2 +- users/samsoffes.json | 2 +- users/samuel.json | 2 +- users/samuelstiles.json | 2 +- users/san.json | 2 +- users/sand.json | 2 +- users/sandeep.json | 2 +- users/sandropadin.json | 2 +- users/sanfyin.json | 2 +- users/sangliere.json | 2 +- users/santtu.json | 2 +- users/saravanan.json | 2 +- users/sarith.json | 2 +- users/sarkasper.json | 2 +- users/sascha.json | 2 +- users/saschame.json | 2 +- users/saschamzh.json | 2 +- users/sasha.json | 2 +- users/sashko.json | 2 +- users/sauerlo.json | 2 +- users/saulhardman.json | 2 +- users/sauravtom.json | 2 +- users/sbuzonas.json | 2 +- users/scarf.json | 2 +- users/schiff.json | 2 +- users/schjetne.json | 2 +- users/schlaus.json | 2 +- users/schoolapply.json | 2 +- users/scio.json | 2 +- users/scottrobertson.json | 2 +- users/scottsauyet.json | 2 +- users/scoundrels.json | 2 +- users/scr.json | 2 +- users/scribe.json | 2 +- users/scritt.json | 2 +- users/scrittit.json | 2 +- users/sdailey.json | 2 +- users/sdqali.json | 2 +- users/sean-vieira.json | 2 +- users/seanecoffey.json | 2 +- users/seanirby.json | 2 +- users/seb.json | 2 +- users/sebacruz.json | 2 +- users/sebelga.json | 2 +- users/secretery.json | 2 +- users/seikichi.json | 2 +- users/seiran.json | 2 +- users/selwin.json | 2 +- users/sendcloud.json | 2 +- users/senura.json | 2 +- users/senuraa.json | 2 +- users/serdar.json | 2 +- users/sergeibelov.json | 2 +- users/sergey.json | 2 +- users/serverside-boilerplate.json | 2 +- users/serversidetools.json | 2 +- users/sesser.json | 2 +- users/sevagf.json | 2 +- users/sevos.json | 2 +- users/sexyfishhorse.json | 2 +- users/seyedi.json | 2 +- users/sg.json | 2 +- users/sgehlich.json | 2 +- users/sgerrand.json | 2 +- users/sguidetti.json | 2 +- users/sha2nk.json | 2 +- users/shad0wcore.json | 2 +- users/shagen.json | 2 +- users/shagun.json | 2 +- users/shaieilat.json | 2 +- users/shaun.json | 2 +- users/shawnsi.json | 2 +- users/sheedy.json | 2 +- users/sheknows.json | 2 +- users/sheldonrupp.json | 2 +- users/shepjeng.json | 2 +- users/shibu.json | 2 +- users/shidhincr.json | 2 +- users/shiftkey.json | 2 +- users/shimizukawa.json | 2 +- users/shionryuu.json | 2 +- users/shirkey.json | 2 +- users/shivapoudel.json | 2 +- users/shldrs.json | 2 +- users/shps.json | 2 +- users/shreyas.json | 2 +- users/shumate.json | 2 +- users/shy.json | 2 +- users/siamak.json | 2 +- users/sid.json | 2 +- users/sidak.json | 2 +- users/sienikasvusto.json | 2 +- users/sigfried.json | 2 +- users/signicode.json | 2 +- users/sija.json | 2 +- users/sil.json | 2 +- users/sillysina.json | 2 +- users/silvers.json | 2 +- users/sim.json | 2 +- users/simbo.json | 2 +- users/simgeker.json | 2 +- users/simon.json | 2 +- users/simonkberg.json | 2 +- users/simonwalsh.json | 2 +- users/singh.json | 2 +- users/singingwolfboy.json | 2 +- users/siteware.json | 2 +- users/siutsin.json | 2 +- users/sivasankarnc.json | 2 +- users/siwatpru.json | 2 +- users/sjs.json | 2 +- users/sjwilliams.json | 2 +- users/skeletonframework.json | 2 +- users/sketchmore.json | 2 +- users/skidding.json | 2 +- users/skinofstars.json | 2 +- users/skip.json | 2 +- users/skwasha.json | 2 +- users/skymaiden.json | 2 +- users/slackit.json | 2 +- users/slashsbin.json | 2 +- users/sliceofcode.json | 2 +- users/slikts.json | 2 +- users/sloria.json | 2 +- users/sm.json | 2 +- users/smg.json | 2 +- users/smirking-ninja.json | 2 +- users/smly.json | 2 +- users/smt.json | 2 +- users/sndnvaps.json | 2 +- users/snhack.json | 2 +- users/snhackspace.json | 2 +- users/snig.json | 2 +- users/snwflake.json | 2 +- users/softcreatr.json | 2 +- users/softnayr.json | 2 +- users/softwave.json | 2 +- users/sohalt.json | 2 +- users/solid-constructs.json | 2 +- users/solidworx.json | 2 +- users/somya.json | 2 +- users/sonalraj.json | 2 +- users/songdu.json | 2 +- users/songmu.json | 2 +- users/sonnywebdesign.json | 2 +- users/soong.json | 2 +- users/sorairo.json | 2 +- users/soralv9.json | 2 +- users/soren121.json | 2 +- users/sotayamashita.json | 2 +- users/soulis.json | 2 +- users/souri.json | 2 +- users/specimen.json | 2 +- users/sphw.json | 2 +- users/spier.json | 2 +- users/spirited.json | 2 +- users/spockz.json | 2 +- users/spooky.json | 2 +- users/sputnik27.json | 2 +- users/sqneffect.json | 2 +- users/src-run.json | 2 +- users/srezic.json | 2 +- users/srivathsa.json | 2 +- users/srmor.json | 2 +- users/ss.json | 2 +- users/ssiefkas.json | 2 +- users/stacey.json | 2 +- users/stack72.json | 2 +- users/stakats.json | 2 +- users/stanzheng.json | 2 +- users/stefan.json | 2 +- users/stephdatu.json | 2 +- users/stephendavis89.json | 2 +- users/stephenhay.json | 2 +- users/steve.json | 2 +- users/stevegraham.json | 2 +- users/stevegrunwell.json | 2 +- users/stever.json | 2 +- users/stewart.json | 2 +- users/stoshiya.json | 2 +- users/strainno.json | 2 +- users/straub.json | 2 +- users/strawson.json | 2 +- users/streethub.json | 2 +- users/struktur.json | 2 +- users/stuart.json | 2 +- users/studer.json | 2 +- users/styleshare.json | 2 +- users/suaoc.json | 2 +- users/sublee.json | 2 +- users/subtub.json | 2 +- users/succhiello.json | 2 +- users/sudhq.json | 2 +- users/sue445.json | 2 +- users/sugarshin.json | 2 +- users/sun.json | 2 +- users/sungchi.json | 2 +- users/sunny.json | 2 +- users/sunoru.json | 2 +- users/superbil.json | 2 +- users/superdev.json | 2 +- users/surender.json | 2 +- users/suriyaakudo.json | 2 +- users/susheel.json | 2 +- users/swarnava.json | 2 +- users/swarnavabhattacharya.json | 2 +- users/swinton.json | 2 +- users/symphonycms.json | 2 +- users/synack.json | 2 +- users/synvox.json | 2 +- users/szelcsanyi.json | 2 +- users/szgal.json | 2 +- users/t-ashula.json | 2 +- users/t.json | 2 +- users/tad.json | 2 +- users/tadejm.json | 2 +- users/tadeo.json | 2 +- users/takano32.json | 2 +- users/takanopontaro.json | 2 +- users/takashi.json | 2 +- users/takashisite.json | 2 +- users/takuro.json | 2 +- users/talkative.json | 2 +- users/tam.json | 2 +- users/tamberg.json | 2 +- users/tameraydin.json | 2 +- users/tanel.json | 2 +- users/tangocoder.json | 2 +- users/tanja.json | 2 +- users/tantalor.json | 2 +- users/tap5.json | 2 +- users/tarcisio.json | 2 +- users/taschetto.json | 2 +- users/tastapod.json | 2 +- users/taye.json | 2 +- users/taylor.json | 2 +- users/taylorcc.json | 2 +- users/tbaltrushaitis.json | 2 +- users/tbekolay.json | 2 +- users/tbr.json | 2 +- users/tbrennan.json | 2 +- users/tc.json | 2 +- users/tchel.json | 2 +- users/tclh123.json | 2 +- users/tdsh.json | 2 +- users/tdue21.json | 2 +- users/teambition.json | 2 +- users/teamosc.json | 2 +- users/tec.json | 2 +- users/teenst.json | 2 +- users/tellnes.json | 2 +- users/tenacioushusky.json | 2 +- users/teppeis.json | 2 +- users/terkel.json | 2 +- users/test.json | 2 +- users/test12.json | 2 +- users/testdouble.json | 2 +- users/testermotherfucker.json | 2 +- users/tetwis.json | 2 +- users/texty.json | 2 +- users/texty1.json | 2 +- users/texty2.json | 2 +- users/tf.json | 2 +- users/th.json | 2 +- users/thangeda.json | 2 +- users/thasmo.json | 2 +- users/the-zumata-team.json | 2 +- users/theboshy.json | 2 +- users/thedersen.json | 2 +- users/theflow0360.json | 2 +- users/thehippo.json | 2 +- users/thehodge.json | 2 +- users/thekhenzie.json | 2 +- users/thelonelyghost.json | 2 +- users/theodi.json | 2 +- users/therebelrobot.json | 2 +- users/thescoundrels.json | 2 +- users/theuves.json | 2 +- users/thewebguy.json | 2 +- users/theyranos.json | 2 +- users/thi.json | 2 +- users/thiagohagy.json | 2 +- users/thibautd.json | 2 +- users/thingsinjars.json | 2 +- users/thj.json | 2 +- users/tholu.json | 2 +- users/thomas.json | 2 +- users/thomd.json | 2 +- users/thompsonemerson.json | 2 +- users/throger.json | 2 +- users/thulioph.json | 2 +- users/thypon.json | 2 +- users/tiaan.json | 2 +- users/tian.json | 2 +- users/ticking.json | 2 +- users/tigra.json | 2 +- users/tih.json | 2 +- users/tilgovi.json | 2 +- users/tim.json | 2 +- users/timjb.json | 2 +- users/timmolendijk.json | 2 +- users/timon-josh.json | 2 +- users/timothy.json | 2 +- users/timothyandrew.json | 2 +- users/timtjtim.json | 2 +- users/timuruski.json | 2 +- users/timzenner.json | 2 +- users/tiryoh.json | 2 +- users/tkahn.json | 2 +- users/tleb.json | 2 +- users/tloep.json | 2 +- users/tlvince.json | 2 +- users/tmn.json | 2 +- users/tmpvar.json | 2 +- users/tmw.json | 2 +- users/tnoda.json | 2 +- users/tnviking.json | 2 +- users/to4iki.json | 2 +- users/toblea.json | 2 +- users/tocttou.json | 2 +- users/todor.json | 2 +- users/toedter.json | 2 +- users/tokuhirom.json | 2 +- users/tolu.json | 2 +- users/tom.json | 2 +- users/tomalec.json | 2 +- users/tomasmcguinness.json | 2 +- users/tomass1996.json | 2 +- users/tombuildsstuff.json | 2 +- users/tomchentw.json | 2 +- users/tomdavies.json | 2 +- users/tommarshall.json | 2 +- users/tommy.json | 2 +- users/tomohiro.json | 2 +- users/tomoya.json | 2 +- users/tomraithel.json | 2 +- users/toneden.json | 2 +- users/tonekk.json | 2 +- users/tonivdv.json | 2 +- users/tony.json | 2 +- users/tonyb.json | 2 +- users/tonyb486.json | 2 +- users/tonypelletier.json | 2 +- users/tonyphelps.json | 2 +- users/tonyskn.json | 2 +- users/toolbear.json | 2 +- users/toomore.json | 2 +- users/toonketels.json | 2 +- users/torjue.json | 2 +- users/tornqvist.json | 2 +- users/towry.json | 2 +- users/tpojka.json | 2 +- users/tracking.json | 2 +- users/transrate.json | 2 +- users/tregusti.json | 2 +- users/trev.json | 2 +- users/trevorburnham.json | 2 +- users/trey.json | 2 +- users/trialtrialtrial.json | 2 +- users/triplein.json | 2 +- users/trisk.json | 2 +- users/tristancode.json | 2 +- users/troopjs.json | 2 +- users/troutowicz.json | 2 +- users/troy.json | 2 +- users/true.json | 2 +- users/trueserver.json | 2 +- users/trykickoff.json | 2 +- users/tschaub.json | 2 +- users/tscm.json | 2 +- users/tulos.json | 2 +- users/turnbullm.json | 2 +- users/tvsloot.json | 2 +- users/twada.json | 2 +- users/twotoasters.json | 2 +- users/tyabe.json | 2 +- users/tzi.json | 2 +- users/tzmartin.json | 2 +- users/uda.json | 2 +- users/udondokodoon.json | 2 +- users/udzura.json | 2 +- users/uec-azlab.json | 2 +- users/uersi.json | 2 +- users/uglybugger.json | 2 +- users/ugurceylan.json | 2 +- users/uiwwnw.json | 2 +- users/ulysse.json | 2 +- users/umaar.json | 2 +- users/umputun.json | 2 +- users/undozen.json | 2 +- users/unicodejs.json | 2 +- users/unisharp.json | 2 +- users/unmoremaster.json | 2 +- users/uservoice.json | 2 +- users/usuck.json | 2 +- users/utkarsh.json | 2 +- users/uu59.json | 2 +- users/uv.json | 2 +- users/uvd.json | 2 +- users/v.json | 2 +- users/vagnersantana.json | 2 +- users/vagnervjs.json | 2 +- users/vaibhavsingh97.json | 2 +- users/vakiliy.json | 2 +- users/vardy.json | 2 +- users/varundey.json | 2 +- users/varunkumar.json | 2 +- users/varzea.json | 2 +- users/vbalien.json | 2 +- users/ve.json | 2 +- users/venomvendor.json | 2 +- users/vevix.json | 2 +- users/vi3okryulfqjthl6.json | 2 +- users/via.json | 2 +- users/vicey.json | 2 +- users/vicnicius.json | 2 +- users/victor.json | 2 +- users/victordavydov.json | 2 +- users/victordieggo.json | 2 +- users/viditor.json | 2 +- users/vieiralucas.json | 2 +- users/vijayendra.json | 2 +- users/viktorbergehall.json | 2 +- users/viktort.json | 2 +- users/vineetdhanawat.json | 2 +- users/vinipalma.json | 2 +- users/vinnyguitar.json | 2 +- users/vinwz.json | 2 +- users/visav.json | 2 +- users/vishal.json | 2 +- users/visionmedia.json | 2 +- users/vitalk.json | 2 +- users/vito.json | 2 +- users/vitor.json | 2 +- users/vitorbal.json | 2 +- users/vitorbritto.json | 2 +- users/vitornogueira.json | 2 +- users/vjpr.json | 2 +- users/vko-online.json | 2 +- users/vmanot.json | 2 +- users/vnk.json | 2 +- users/vocksel.json | 2 +- users/voltdb.json | 2 +- users/voodootikigod.json | 2 +- users/voxpelli.json | 2 +- users/vsisk.json | 2 +- users/vsouza.json | 2 +- users/vsr.json | 2 +- users/vt47.json | 2 +- users/vtalbot.json | 2 +- users/vtence.json | 2 +- users/vulk.json | 2 +- users/vuquochuy.json | 2 +- users/vvakame.json | 2 +- users/vzool.json | 2 +- users/w.json | 2 +- users/wangbin.json | 2 +- users/wangchi.json | 2 +- users/wangeleile.json | 2 +- users/wanja.json | 2 +- users/warwick.json | 2 +- users/warwickmasson.json | 2 +- users/watchout.json | 2 +- users/wavell.json | 2 +- users/waynesan.json | 2 +- users/wbinnssmith.json | 2 +- users/wd.json | 2 +- users/web-xaser.json | 2 +- users/web.json | 2 +- users/webbson.json | 2 +- users/webcomponentsorg.json | 2 +- users/webdevrich.json | 2 +- users/webpro.json | 2 +- users/weejames.json | 2 +- users/wei.json | 2 +- users/weijunji.json | 2 +- users/werle.json | 2 +- users/wesbos.json | 2 +- users/wesley.json | 2 +- users/wesleydesouza.json | 2 +- users/weslly.json | 2 +- users/wfxr.json | 2 +- users/wglab.json | 2 +- users/whatsim.json | 2 +- users/whittle.json | 2 +- users/whizark.json | 2 +- users/whostolemyhat.json | 2 +- users/whym.json | 2 +- users/wickett.json | 2 +- users/widged.json | 2 +- users/widnyana.json | 2 +- users/wiesner.json | 2 +- users/wilddog.json | 2 +- users/will.json | 2 +- users/will3942.json | 2 +- users/william17.json | 2 +- users/willianduarte.json | 2 +- users/willin.json | 2 +- users/willpower.json | 2 +- users/wind4869.json | 2 +- users/witchard.json | 2 +- users/wjr3.json | 2 +- users/wmwragg.json | 2 +- users/wolfiezero.json | 2 +- users/wolflee.json | 2 +- users/wong2.json | 2 +- users/wordpresspokhara.json | 2 +- users/wouterjanson.json | 2 +- users/wozozo.json | 2 +- users/wp-blank-canvas-framework.json | 2 +- users/wp-freelancer-client-panel.json | 2 +- users/wp-uptimerobot-dashboard-widget.json | 2 +- users/wph.json | 2 +- users/wpk.json | 2 +- users/wpsitecare.json | 2 +- users/wraithan.json | 2 +- users/wrl.json | 2 +- users/wrong-entertainment.json | 2 +- users/wsmoak.json | 2 +- users/wtigert.json | 2 +- users/wttw.json | 2 +- users/wty.json | 2 +- users/wty21cn.json | 2 +- users/wuan.json | 2 +- users/wuthefwasthat.json | 2 +- users/ww24.json | 2 +- users/wwalker.json | 2 +- users/wwbrannon.json | 2 +- users/wy.json | 2 +- users/wychoe.json | 2 +- users/wytrivail.json | 2 +- users/xcuze.json | 2 +- users/xerula.json | 2 +- users/xffljjqbqvsywxqakpvdbwyqqyt.json | 2 +- users/xhh.json | 2 +- users/xiaods.json | 2 +- users/xight.json | 2 +- users/ximi.json | 2 +- users/xinuc.json | 2 +- users/xkerman.json | 2 +- users/xlab.json | 2 +- users/xlune.json | 2 +- users/xoebus.json | 2 +- users/xsc.json | 2 +- users/xtansia.json | 2 +- users/xuhong.json | 2 +- users/xuncheng.json | 2 +- users/xyc.json | 2 +- users/y3sh.json | 2 +- users/y6nH.json | 2 +- users/ya-ota.json | 2 +- users/yadavjpr.json | 2 +- users/yaler.json | 2 +- users/yantene.json | 2 +- users/yanyiwu.json | 2 +- users/yappo.json | 2 +- users/yarmomackenbach.json | 2 +- users/yaro.json | 2 +- users/yashar.json | 2 +- users/yasyf.json | 2 +- users/yatil.json | 2 +- users/yeltsin.json | 2 +- users/yhnavein.json | 2 +- users/yimengtianya.json | 2 +- users/yimengtianya1.json | 2 +- users/yimengtianya444.json | 2 +- users/yiramang.json | 2 +- users/ylrxeidx.json | 2 +- users/yoelp.json | 2 +- users/yogesh.json | 2 +- users/yoggy.json | 2 +- users/yoginth.json | 2 +- users/yoloconfessions.json | 2 +- users/yoruaki.json | 2 +- users/yoshuki.json | 2 +- users/yosida95.json | 2 +- users/yosugi.json | 2 +- users/yotpo.json | 2 +- users/youhide.json | 2 +- users/yousuf.json | 2 +- users/yousuf2.json | 2 +- users/yousuf3.json | 2 +- users/yrosen.json | 2 +- users/ysarbabi.json | 2 +- users/yshrsmz.json | 2 +- users/ysong.json | 2 +- users/ytaler.json | 2 +- users/yu-cheng-chuang.json | 2 +- users/yuanyan.json | 2 +- users/yuchi.json | 2 +- users/yudoufu.json | 2 +- users/yudppp.json | 2 +- users/yuhki50.json | 2 +- users/yulun.json | 2 +- users/yungsang.json | 2 +- users/yuniorusop.json | 2 +- users/yuriel.json | 2 +- users/yuriy.json | 2 +- users/yurrriq.json | 2 +- users/yusuke.json | 2 +- users/yzlow.json | 2 +- users/z.json | 2 +- users/zachary.json | 2 +- users/zaki-yama.json | 2 +- users/zander.json | 2 +- users/zaploink.json | 2 +- users/zaurus.json | 2 +- users/zaz600.json | 2 +- users/zdwolfe.json | 2 +- users/zebmccorkle.json | 2 +- users/zellio.json | 2 +- users/zen.json | 2 +- users/zenjoy.json | 2 +- users/zenorocha.json | 2 +- users/zenry.json | 2 +- users/zhengyi.json | 2 +- users/zhiyuan.json | 2 +- users/zhiyuanshi.json | 2 +- users/ziloi.json | 2 +- users/zimozito.json | 2 +- users/zimp.json | 2 +- users/zinc.json | 2 +- users/znck.json | 2 +- users/zonble.json | 2 +- users/zzeris.json | 2 +- users/zzimbler.json | 2 +- users/zzzzbov.json | 2 +- 2883 files changed, 2885 insertions(+), 2885 deletions(-) diff --git a/test.js b/test.js index 957dbd5c..111c35df 100644 --- a/test.js +++ b/test.js @@ -29,7 +29,7 @@ function report(content, fix) { try { const u = JSON.parse(data); if (!u.locked && !u.copyright) report(`Copyright not specified in ${user}`) - const stringified = JSON.stringify(u, 0, 2) + const stringified = `${JSON.stringify(u, 0, 2)}\n` if (data !== stringified) report(`Non-regular formatting in ${user}`, () => fs.writeFile(path.join('users', user), stringified, () => {})) } catch ({ message diff --git a/users/1000ch.json b/users/1000ch.json index 7c99833c..e9f811bf 100644 --- a/users/1000ch.json +++ b/users/1000ch.json @@ -2,4 +2,4 @@ "copyright": "Shogo Sensui", "url": "http://1000ch.net", "email": "shogo.sensui@gmail.com" -} \ No newline at end of file +} diff --git a/users/10kb.json b/users/10kb.json index 9ab9dd2c..7d316307 100644 --- a/users/10kb.json +++ b/users/10kb.json @@ -3,4 +3,4 @@ "url": "http://10kb.nl", "email": "info@10kb.nl", "gravatar": true -} \ No newline at end of file +} diff --git a/users/135yshr.json b/users/135yshr.json index ac79e2e6..ccbbc566 100644 --- a/users/135yshr.json +++ b/users/135yshr.json @@ -5,4 +5,4 @@ "format": "html", "theme": "double-windsor", "gravatar": true -} \ No newline at end of file +} diff --git a/users/15minuteslate.json b/users/15minuteslate.json index 7e08963f..2c4e527d 100644 --- a/users/15minuteslate.json +++ b/users/15minuteslate.json @@ -4,4 +4,4 @@ "email": "hi@15minuteslate.net", "format": "html", "theme": "afterdark" -} \ No newline at end of file +} diff --git a/users/1natsu172.json b/users/1natsu172.json index 5ab10754..59cbd0bb 100644 --- a/users/1natsu172.json +++ b/users/1natsu172.json @@ -4,4 +4,4 @@ "email": "1natsummer+mitlicenseorg@gmail.com", "theme": "material-grey", "gravatar": true -} \ No newline at end of file +} diff --git a/users/1up.json b/users/1up.json index c3c5e958..8048194c 100644 --- a/users/1up.json +++ b/users/1up.json @@ -3,4 +3,4 @@ "url": "http://1upnote.com", "email": "1up@1upz.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/2357gi.json b/users/2357gi.json index 90d9a8f0..0dd555c6 100644 --- a/users/2357gi.json +++ b/users/2357gi.json @@ -3,4 +3,4 @@ "url": "https://2357gi.com/", "format": "txt", "email": "2357.gi@gmail.com" -} \ No newline at end of file +} diff --git a/users/284km.json b/users/284km.json index ed1cefb8..4e661d15 100644 --- a/users/284km.json +++ b/users/284km.json @@ -2,4 +2,4 @@ "copyright": "284km", "email": "k.furuhashi10@gmail.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/2nate.json b/users/2nate.json index fd3af818..674a195b 100644 --- a/users/2nate.json +++ b/users/2nate.json @@ -3,4 +3,4 @@ "url": "http://2nate.com", "email": "post@2nate.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/321maker.json b/users/321maker.json index 793d4f78..dd1d937a 100644 --- a/users/321maker.json +++ b/users/321maker.json @@ -3,4 +3,4 @@ "url": "http://321maker.com", "email": "maker@321maker.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/360slider.json b/users/360slider.json index 290abad3..85e067d0 100644 --- a/users/360slider.json +++ b/users/360slider.json @@ -3,4 +3,4 @@ "url": "http://360slider.com", "email": "gaurav@jassal.me", "format": "txt" -} \ No newline at end of file +} diff --git a/users/3846.json b/users/3846.json index 53c2785c..fa510d7d 100644 --- a/users/3846.json +++ b/users/3846.json @@ -1,4 +1,4 @@ { "copyright": "3846masa", "url": "https://github.com/3846masa" -} \ No newline at end of file +} diff --git a/users/3846masa.json b/users/3846masa.json index 53c2785c..fa510d7d 100644 --- a/users/3846masa.json +++ b/users/3846masa.json @@ -1,4 +1,4 @@ { "copyright": "3846masa", "url": "https://github.com/3846masa" -} \ No newline at end of file +} diff --git a/users/4soft.json b/users/4soft.json index 1ee8e7cb..e2ab35a4 100644 --- a/users/4soft.json +++ b/users/4soft.json @@ -1,3 +1,3 @@ { "copyright": "4Soft" -} \ No newline at end of file +} diff --git a/users/4thace.json b/users/4thace.json index 54aba95d..51212ac0 100644 --- a/users/4thace.json +++ b/users/4thace.json @@ -3,4 +3,4 @@ "url": "https://magahiz.com", "email": "frabdango@magahiz.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/5310.json b/users/5310.json index 932c799f..b119e8a1 100644 --- a/users/5310.json +++ b/users/5310.json @@ -4,4 +4,4 @@ "email": "sayantan.chaudhuri@gmail.com", "theme": "plaintext", "gravatar": true -} \ No newline at end of file +} diff --git a/users/5509.json b/users/5509.json index 162a08c6..5202c363 100644 --- a/users/5509.json +++ b/users/5509.json @@ -2,4 +2,4 @@ "copyright": "Kazunori Tokuda, http://5509.me", "url": "http://5509.me", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/59.json b/users/59.json index d7c52c88..6ce5a758 100644 --- a/users/59.json +++ b/users/59.json @@ -2,4 +2,4 @@ "copyright": "59", "url": "http://berabou.me", "theme": "afterdark" -} \ No newline at end of file +} diff --git a/users/59naga.json b/users/59naga.json index 19bfa31a..9e630cab 100644 --- a/users/59naga.json +++ b/users/59naga.json @@ -1,4 +1,4 @@ { "copyright": "59naga", "url": "http://berabou.me" -} \ No newline at end of file +} diff --git a/users/623hs.json b/users/623hs.json index b029ced2..852ba7b1 100644 --- a/users/623hs.json +++ b/users/623hs.json @@ -2,4 +2,4 @@ "copyright": "623HS", "email": "z.tar.gz@gmail.com", "theme": "afterdark" -} \ No newline at end of file +} diff --git a/users/6n38.json b/users/6n38.json index d48bd623..08dac878 100644 --- a/users/6n38.json +++ b/users/6n38.json @@ -3,4 +3,4 @@ "URL": "http://6n38.jp", "format": "html", "theme": "material-light-blue" -} \ No newline at end of file +} diff --git a/users/844196.json b/users/844196.json index 922f2836..49c39372 100644 --- a/users/844196.json +++ b/users/844196.json @@ -1,4 +1,4 @@ { "copyright": "Masaya Tk", "url": "http://104.844196.com/" -} \ No newline at end of file +} diff --git a/users/9joneg.json b/users/9joneg.json index 98e48917..4c461429 100644 --- a/users/9joneg.json +++ b/users/9joneg.json @@ -1,3 +1,3 @@ { "copyright": "9joneg" -} \ No newline at end of file +} diff --git a/users/ArvinH.json b/users/ArvinH.json index dcca0490..ef35a4a4 100644 --- a/users/ArvinH.json +++ b/users/ArvinH.json @@ -4,4 +4,4 @@ "email": "arvin0731@gmail.com", "gravatar": true, "theme": "dusk" -} \ No newline at end of file +} diff --git a/users/BrentonCozby.json b/users/BrentonCozby.json index 705723c8..e35f5e1a 100644 --- a/users/BrentonCozby.json +++ b/users/BrentonCozby.json @@ -5,4 +5,4 @@ "email": "brenton.cozby@gmail.com", "gravatar": true, "theme": "default" -} \ No newline at end of file +} diff --git a/users/DanielArthurUK.json b/users/DanielArthurUK.json index 2a8f7fdc..7178821a 100644 --- a/users/DanielArthurUK.json +++ b/users/DanielArthurUK.json @@ -3,4 +3,4 @@ "url": "https://danielarthur.uk", "email": "me@danielarthur.uk", "gravatar": "true" -} \ No newline at end of file +} diff --git a/users/SITZ.json b/users/SITZ.json index 100ca1b8..4b33865e 100644 --- a/users/SITZ.json +++ b/users/SITZ.json @@ -5,4 +5,4 @@ "format": "html", "theme": "default", "gravatar": true -} \ No newline at end of file +} diff --git a/users/a-tech.json b/users/a-tech.json index 18365894..1b9f0355 100644 --- a/users/a-tech.json +++ b/users/a-tech.json @@ -1,3 +1,3 @@ { "copyright": "Alplax Technologies" -} \ No newline at end of file +} diff --git a/users/a.json b/users/a.json index 4b343c00..80389da7 100644 --- a/users/a.json +++ b/users/a.json @@ -3,4 +3,4 @@ "url": "http://austinpray.com.com", "email": "austin@austinpray.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/aaaaaa.json b/users/aaaaaa.json index a5e96ffe..61109e89 100644 --- a/users/aaaaaa.json +++ b/users/aaaaaa.json @@ -3,4 +3,4 @@ "url": "http://aaaaa.com", "email": "me@mysite.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/aarjithn.json b/users/aarjithn.json index c69db9f9..97b41eeb 100644 --- a/users/aarjithn.json +++ b/users/aarjithn.json @@ -3,4 +3,4 @@ "url": "http://aarjithn.github.io", "email": "aarjithn[at]gmail.com", "gravatar": "true" -} \ No newline at end of file +} diff --git a/users/aaron.json b/users/aaron.json index 591bbcab..2d73997f 100644 --- a/users/aaron.json +++ b/users/aaron.json @@ -1,3 +1,3 @@ { "copyright": "Aaron Bassett, http://aaronbassett.com" -} \ No newline at end of file +} diff --git a/users/aaroncaito.json b/users/aaroncaito.json index fb24bf52..a95dcb7f 100644 --- a/users/aaroncaito.json +++ b/users/aaroncaito.json @@ -3,4 +3,4 @@ "url": "http://csw.io", "email": "aaron@csw.io", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/aarontrostle.json b/users/aarontrostle.json index 6fdd2490..dd9fb553 100644 --- a/users/aarontrostle.json +++ b/users/aarontrostle.json @@ -4,4 +4,4 @@ "email": "aaron.trostle@gmail.com", "format": "txt", "theme": "plaintext" -} \ No newline at end of file +} diff --git a/users/aashutoshrathi.json b/users/aashutoshrathi.json index e21c0808..2573ae67 100644 --- a/users/aashutoshrathi.json +++ b/users/aashutoshrathi.json @@ -4,4 +4,4 @@ "email": "aashutoshrathi@gmail.com", "format": "txt", "theme": "dusk" -} \ No newline at end of file +} diff --git a/users/aayush.json b/users/aayush.json index fea08f15..19f85ef3 100644 --- a/users/aayush.json +++ b/users/aayush.json @@ -3,4 +3,4 @@ "email": "aayush.2896@gmail.com", "gravatar": true, "theme": "dusk" -} \ No newline at end of file +} diff --git a/users/ab2d.json b/users/ab2d.json index b7f1779e..a182d4d2 100644 --- a/users/ab2d.json +++ b/users/ab2d.json @@ -1,3 +1,3 @@ { "copyright": "Remy Sharp A" -} \ No newline at end of file +} diff --git a/users/abas.json b/users/abas.json index 0eea856d..ebb90a16 100644 --- a/users/abas.json +++ b/users/abas.json @@ -5,4 +5,4 @@ "email": "omidgharib@yahoo.com", "gravatar": true, "theme": "default" -} \ No newline at end of file +} diff --git a/users/abensur.json b/users/abensur.json index fbad5222..e473c246 100644 --- a/users/abensur.json +++ b/users/abensur.json @@ -2,4 +2,4 @@ "copyright": "Rafael Abensur, http://abensur.net", "url": "http://abensur.net", "email": "rafael@abensur.net" -} \ No newline at end of file +} diff --git a/users/abhisekp.json b/users/abhisekp.json index 5ca1fae7..2818aab4 100644 --- a/users/abhisekp.json +++ b/users/abhisekp.json @@ -3,4 +3,4 @@ "url": "https://about.me/abhisekp", "email": "abhisekp@engineer.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/abhshkdz.json b/users/abhshkdz.json index 276f2530..ddc202e5 100644 --- a/users/abhshkdz.json +++ b/users/abhshkdz.json @@ -3,4 +3,4 @@ "url": "http://abhishekdas.com", "email": "das.abhshk@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/abitgone.json b/users/abitgone.json index 84a16da5..c8fe9289 100644 --- a/users/abitgone.json +++ b/users/abitgone.json @@ -4,4 +4,4 @@ "email": "anthony@abitgone.co.uk", "format": "html", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/abnersajr.json b/users/abnersajr.json index a1015a75..973f477e 100644 --- a/users/abnersajr.json +++ b/users/abnersajr.json @@ -3,4 +3,4 @@ "url": "http://abnersajr.net", "email": "me@abnersajr.net", "format": "html" -} \ No newline at end of file +} diff --git a/users/abovethewater.json b/users/abovethewater.json index 8cfdaace..83561ef8 100644 --- a/users/abovethewater.json +++ b/users/abovethewater.json @@ -3,4 +3,4 @@ "url": "http://abovethewater.co.uk", "email": "joe@abovethewater.co.uk", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/abrambleninja.json b/users/abrambleninja.json index 5291b575..08989764 100644 --- a/users/abrambleninja.json +++ b/users/abrambleninja.json @@ -1,4 +1,4 @@ { "copyright": "ABrambleNinja", "url": "http://boj.cc" -} \ No newline at end of file +} diff --git a/users/abs.json b/users/abs.json index 4d05d2ed..1e38b3ab 100644 --- a/users/abs.json +++ b/users/abs.json @@ -3,4 +3,4 @@ "url": "https://abs.ec", "email": "dizzy@wow.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/abuasmaa.json b/users/abuasmaa.json index 76a6cf14..effb9f65 100644 --- a/users/abuasmaa.json +++ b/users/abuasmaa.json @@ -1,3 +1,3 @@ { "copyright": "Abd Al-Ala Camara" -} \ No newline at end of file +} diff --git a/users/abulava.json b/users/abulava.json index 4fded70e..a85625e6 100644 --- a/users/abulava.json +++ b/users/abulava.json @@ -3,4 +3,4 @@ "email": "abulava@gmail.com", "gravatar": true, "theme": "material-indigo" -} \ No newline at end of file +} diff --git a/users/ac.json b/users/ac.json index be467ef7..f3a4d86a 100644 --- a/users/ac.json +++ b/users/ac.json @@ -2,4 +2,4 @@ "copyright": "Alan Cohen", "url": "https://twitter.com/alan_mit", "email": "alan.mit@gmail.com" -} \ No newline at end of file +} diff --git a/users/acaua.json b/users/acaua.json index 50da51a1..0a397b6e 100644 --- a/users/acaua.json +++ b/users/acaua.json @@ -2,4 +2,4 @@ "copyright": "Acauã Montiel", "url": "http://acauamontiel.com.br", "email": "contato@acauamontiel.com.br" -} \ No newline at end of file +} diff --git a/users/acenode.json b/users/acenode.json index 44fed8cc..d5dbdc2c 100644 --- a/users/acenode.json +++ b/users/acenode.json @@ -3,4 +3,4 @@ "url": "http://acenode.com https://github.com/acenode", "email": "open@acenode.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/achilles.json b/users/achilles.json index 37d85d78..dcc74cf3 100644 --- a/users/achilles.json +++ b/users/achilles.json @@ -3,4 +3,4 @@ "url": "http://humbuckercode.co.uk/licks/", "email": "ac@humbuckercode.co.uk", "format": "txt" -} \ No newline at end of file +} diff --git a/users/achun.json b/users/achun.json index 9a3b1c75..dbad66ee 100644 --- a/users/achun.json +++ b/users/achun.json @@ -1,3 +1,3 @@ { "copyright": "achun, achun.shx@qq.com" -} \ No newline at end of file +} diff --git a/users/aclemen1.json b/users/aclemen1.json index 38d4aa8a..00dc229c 100644 --- a/users/aclemen1.json +++ b/users/aclemen1.json @@ -3,4 +3,4 @@ "email": "alain.clement-pavon@unil.ch", "format": "txt", "gravatar": true -} \ No newline at end of file +} diff --git a/users/acolchado.json b/users/acolchado.json index 26760ab2..f899d99d 100644 --- a/users/acolchado.json +++ b/users/acolchado.json @@ -1,3 +1,3 @@ { "copyright": "Agustin Colchado" -} \ No newline at end of file +} diff --git a/users/acollington.json b/users/acollington.json index b3e050cf..610d56f9 100644 --- a/users/acollington.json +++ b/users/acollington.json @@ -3,4 +3,4 @@ "url": "http://www.amnuts.com/", "email": "andy@amnuts.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/adafruit.json b/users/adafruit.json index 4dc8174c..ad719628 100644 --- a/users/adafruit.json +++ b/users/adafruit.json @@ -1,3 +1,3 @@ { "copyright": "Adafruit" -} \ No newline at end of file +} diff --git a/users/adam-lynch.json b/users/adam-lynch.json index b15731f9..32c4fd77 100644 --- a/users/adam-lynch.json +++ b/users/adam-lynch.json @@ -3,4 +3,4 @@ "url": "http://adamlynch.ie", "email": "contact@adamlynch.ie", "format": "txt" -} \ No newline at end of file +} diff --git a/users/adam.json b/users/adam.json index 1255bb21..782e162b 100644 --- a/users/adam.json +++ b/users/adam.json @@ -4,4 +4,4 @@ "email": "adam@hbang.ws", "gravatar": true, "theme": "solarized" -} \ No newline at end of file +} diff --git a/users/adamh.json b/users/adamh.json index b7b83cab..d56b2fce 100644 --- a/users/adamh.json +++ b/users/adamh.json @@ -1,4 +1,4 @@ { "copyright": "Adam Holt", "url": "http://adamholt.co.uk/" -} \ No newline at end of file +} diff --git a/users/adampritchard.json b/users/adampritchard.json index e7c36d36..ff6a204e 100644 --- a/users/adampritchard.json +++ b/users/adampritchard.json @@ -1,3 +1,3 @@ { "copyright": "Adam Pritchard" -} \ No newline at end of file +} diff --git a/users/adamreeve.json b/users/adamreeve.json index 79548654..cef53082 100644 --- a/users/adamreeve.json +++ b/users/adamreeve.json @@ -2,4 +2,4 @@ "copyright": "Adam Reeve, http://adamreeve.com", "url": "http://adamreeve.com", "theme": "friendly" -} \ No newline at end of file +} diff --git a/users/adamroberts.json b/users/adamroberts.json index 7d7b28ec..b525471c 100644 --- a/users/adamroberts.json +++ b/users/adamroberts.json @@ -1,3 +1,3 @@ { "copyright": "Adam Roberts" -} \ No newline at end of file +} diff --git a/users/adi.json b/users/adi.json index 3a58e0f0..44e69986 100644 --- a/users/adi.json +++ b/users/adi.json @@ -1,4 +1,4 @@ { "copyright": "Adrian Mester, http://adrianmester.com", "url": "http://adrianmester.com" -} \ No newline at end of file +} diff --git a/users/aditya.json b/users/aditya.json index f39dff16..d1084a11 100644 --- a/users/aditya.json +++ b/users/aditya.json @@ -3,4 +3,4 @@ "url": "http://adityaprakash.in", "email": "me@adityaprakash.in", "format": "html" -} \ No newline at end of file +} diff --git a/users/adjohnson916.json b/users/adjohnson916.json index 3c6903e3..c002ae60 100644 --- a/users/adjohnson916.json +++ b/users/adjohnson916.json @@ -1,4 +1,4 @@ { "copyright": "Anders D. Johnson, http://andrz.me", "url": "http://andrz.me" -} \ No newline at end of file +} diff --git a/users/adopi.json b/users/adopi.json index 19b0445b..6726872e 100644 --- a/users/adopi.json +++ b/users/adopi.json @@ -2,4 +2,4 @@ "copyright": "Adonis Najimi", "email": "adopi.naj@gmail.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/adr1enbe4udou1n.json b/users/adr1enbe4udou1n.json index 51b2f242..2a70655e 100644 --- a/users/adr1enbe4udou1n.json +++ b/users/adr1enbe4udou1n.json @@ -3,4 +3,4 @@ "email": "adrien.beaudouin@outlook.com", "gravatar": true, "theme": "material-teal" -} \ No newline at end of file +} diff --git a/users/adtaylor.json b/users/adtaylor.json index dce3abb5..afb2a03d 100644 --- a/users/adtaylor.json +++ b/users/adtaylor.json @@ -1,4 +1,4 @@ { "copyright": "Adam Taylor, http://adtaylor.co.uk", "url": "http://adtaylor.co.uk" -} \ No newline at end of file +} diff --git a/users/adthul.json b/users/adthul.json index 125b3b33..c0dc0a9f 100644 --- a/users/adthul.json +++ b/users/adthul.json @@ -3,4 +3,4 @@ "email": "thul.andy@gmail.com", "gravatar": true, "theme": "xtansia" -} \ No newline at end of file +} diff --git a/users/adultlink.json b/users/adultlink.json index f39cea71..dc418e96 100644 --- a/users/adultlink.json +++ b/users/adultlink.json @@ -3,4 +3,4 @@ "email": "ved.adultlink@gmail.com", "gravatar": true, "theme": "material-green" -} \ No newline at end of file +} diff --git a/users/ael.json b/users/ael.json index f51ffb28..3bb31e99 100644 --- a/users/ael.json +++ b/users/ael.json @@ -1,4 +1,4 @@ { "copyright": "Futoshi Takeo", "url": "http://ael.aquilegia.info/" -} \ No newline at end of file +} diff --git a/users/aen.json b/users/aen.json index 1d406e99..19631cb8 100644 --- a/users/aen.json +++ b/users/aen.json @@ -1,3 +1,3 @@ { "copyright": "Aen Tan" -} \ No newline at end of file +} diff --git a/users/aendrew.json b/users/aendrew.json index ece4f63c..06d7a397 100644 --- a/users/aendrew.json +++ b/users/aendrew.json @@ -2,4 +2,4 @@ "copyright": "Ændrew Rininsland", "url": "http://aendrew.com", "email": "aendrew@aendrew.com" -} \ No newline at end of file +} diff --git a/users/aereal.json b/users/aereal.json index 4c59241a..6e5690d0 100644 --- a/users/aereal.json +++ b/users/aereal.json @@ -2,4 +2,4 @@ "copyright": "Hanae Aoki, kerare.org", "url": "http://kerare.org/", "theme": "afterdark" -} \ No newline at end of file +} diff --git a/users/aergonaut.json b/users/aergonaut.json index eed9b4c8..6d915aaf 100644 --- a/users/aergonaut.json +++ b/users/aergonaut.json @@ -1,4 +1,4 @@ { "copyright": "Chris Fung", "url": "https://github.com/aergonaut" -} \ No newline at end of file +} diff --git a/users/aetheris.json b/users/aetheris.json index 3599cc8a..6f737cfd 100644 --- a/users/aetheris.json +++ b/users/aetheris.json @@ -1,4 +1,4 @@ { "copyright": "Alex Cai", "email": "alex.cai@uwaterloo.ca" -} \ No newline at end of file +} diff --git a/users/af.json b/users/af.json index 46964949..a0c6e80d 100644 --- a/users/af.json +++ b/users/af.json @@ -4,4 +4,4 @@ "email": "af@0xAF.org", "gravatar": true, "theme": "dusk" -} \ No newline at end of file +} diff --git a/users/afein.json b/users/afein.json index 19281fc8..eb304d76 100644 --- a/users/afein.json +++ b/users/afein.json @@ -1,4 +1,4 @@ { "copyright": "Alex Mavrogiannis", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/afghah.json b/users/afghah.json index 55275258..2a944b68 100644 --- a/users/afghah.json +++ b/users/afghah.json @@ -1,3 +1,3 @@ { "copyright": "Ali Afghah" -} \ No newline at end of file +} diff --git a/users/afiore.json b/users/afiore.json index 3ece5d93..d7b6cbbf 100644 --- a/users/afiore.json +++ b/users/afiore.json @@ -1,3 +1,3 @@ { "copyright": "Andrea Fiore" -} \ No newline at end of file +} diff --git a/users/afonsof.json b/users/afonsof.json index 0bba0978..f807d5e7 100644 --- a/users/afonsof.json +++ b/users/afonsof.json @@ -4,4 +4,4 @@ "email": "me@afonsof.com", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/agentmilindu.json b/users/agentmilindu.json index 379b39d2..5e5b38f5 100644 --- a/users/agentmilindu.json +++ b/users/agentmilindu.json @@ -4,4 +4,4 @@ "email": "agentmilindu@gmail.com", "gravatar": true, "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/agnium.json b/users/agnium.json index 219bb60d..5e453941 100644 --- a/users/agnium.json +++ b/users/agnium.json @@ -4,4 +4,4 @@ "email": "info@agnium.co.id", "theme": "material-red", "gravatar": true -} \ No newline at end of file +} diff --git a/users/ago6e.json b/users/ago6e.json index fff119b9..c0faaa37 100644 --- a/users/ago6e.json +++ b/users/ago6e.json @@ -2,4 +2,4 @@ "copyright": "Futoshi Takeo", "url": "http://code.google.com/p/ago6e-libraries/", "format": "txt" -} \ No newline at end of file +} diff --git a/users/ahaasler.json b/users/ahaasler.json index b82ae8f8..8e9ebdf8 100644 --- a/users/ahaasler.json +++ b/users/ahaasler.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "material-blue" -} \ No newline at end of file +} diff --git a/users/aheissenberger.json b/users/aheissenberger.json index a06061b1..2ccd0fd7 100644 --- a/users/aheissenberger.json +++ b/users/aheissenberger.json @@ -1,3 +1,3 @@ { "copyright": "Andreas Heissenberger" -} \ No newline at end of file +} diff --git a/users/ahluntang.json b/users/ahluntang.json index 15d4715e..07a284e5 100644 --- a/users/ahluntang.json +++ b/users/ahluntang.json @@ -3,4 +3,4 @@ "url": "http://ahlun.be", "email": "tang@ahlun.be", "format": "txt" -} \ No newline at end of file +} diff --git a/users/ahmet.json b/users/ahmet.json index 528b37d0..b1fbdff2 100644 --- a/users/ahmet.json +++ b/users/ahmet.json @@ -2,4 +2,4 @@ "copyright": "Ahmet AYGUN", "url": "http://github.com/ahmet", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/ahsanhabib.json b/users/ahsanhabib.json index 6efd81c3..3c60afc3 100644 --- a/users/ahsanhabib.json +++ b/users/ahsanhabib.json @@ -1,3 +1,3 @@ { "copyright": "Ahsan Habib" -} \ No newline at end of file +} diff --git a/users/ai-create-team.json b/users/ai-create-team.json index baaa4ca3..3e0d259e 100644 --- a/users/ai-create-team.json +++ b/users/ai-create-team.json @@ -2,4 +2,4 @@ "copyright": "AI Create team", "url": "https://github.com/AI-create-team/", "email": "ai.create.team@gmail.com" -} \ No newline at end of file +} diff --git a/users/aike.json b/users/aike.json index e757cbbc..cfe17497 100644 --- a/users/aike.json +++ b/users/aike.json @@ -1,4 +1,4 @@ { "copyright": "aike", "url": "https://github.com/aike" -} \ No newline at end of file +} diff --git a/users/ailen0ada.json b/users/ailen0ada.json index 3917bd94..c4d21bb2 100644 --- a/users/ailen0ada.json +++ b/users/ailen0ada.json @@ -1,4 +1,4 @@ { "copyright": "Tsubasa HIRANO", "url": "https://github.com/ailen0ada" -} \ No newline at end of file +} diff --git a/users/airtonix.json b/users/airtonix.json index 56acb1a4..3071107d 100644 --- a/users/airtonix.json +++ b/users/airtonix.json @@ -3,4 +3,4 @@ "url": "http://airtonix.net", "email": "airtonix@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/aj9.json b/users/aj9.json index 8277b92c..7353a491 100644 --- a/users/aj9.json +++ b/users/aj9.json @@ -1,4 +1,4 @@ { "copyright": "Adam Gask", "url": "http://aj9.github.io" -} \ No newline at end of file +} diff --git a/users/ajay.json b/users/ajay.json index 2445c62b..7821f60a 100644 --- a/users/ajay.json +++ b/users/ajay.json @@ -1,3 +1,3 @@ { "copyright": "Ajay Raj" -} \ No newline at end of file +} diff --git a/users/ajaykarwal.json b/users/ajaykarwal.json index a4a6c8e4..2c7b0f8e 100644 --- a/users/ajaykarwal.json +++ b/users/ajaykarwal.json @@ -3,4 +3,4 @@ "url": "http://ajaykarwal.com", "email": "ajaykarwal@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/ajenjo.json b/users/ajenjo.json index 4aeeb365..94a07040 100644 --- a/users/ajenjo.json +++ b/users/ajenjo.json @@ -4,4 +4,4 @@ "email": "ajenjo@jon.soy", "theme": "xtansia", "gravatar": true -} \ No newline at end of file +} diff --git a/users/ajmal.json b/users/ajmal.json index 75ac4edc..0da2835a 100644 --- a/users/ajmal.json +++ b/users/ajmal.json @@ -1,4 +1,4 @@ { "copyright": "Ajmal Eylia", "url": "http://ajmaleylia.com" -} \ No newline at end of file +} diff --git a/users/ajmichael.json b/users/ajmichael.json index f5f6f607..4b5344f1 100644 --- a/users/ajmichael.json +++ b/users/ajmichael.json @@ -1,4 +1,4 @@ { "copyright": "Adam Michael", "email": "adam@ajmichael.net" -} \ No newline at end of file +} diff --git a/users/ajsquared.json b/users/ajsquared.json index 5a009439..b1885b44 100644 --- a/users/ajsquared.json +++ b/users/ajsquared.json @@ -3,4 +3,4 @@ "url": "http://andrewjamesjohnson.com", "email": "andrew@andrewjamesjohnson.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/ak.json b/users/ak.json index 119ee121..289ec8af 100644 --- a/users/ak.json +++ b/users/ak.json @@ -1,3 +1,3 @@ { "copyright": "Abhishek Kandoi" -} \ No newline at end of file +} diff --git a/users/akash.json b/users/akash.json index 637300bf..7d5f93c3 100644 --- a/users/akash.json +++ b/users/akash.json @@ -3,4 +3,4 @@ "url": "https://decached.com", "email": "akash@decached.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/akervern.json b/users/akervern.json index ba0aa9c5..4b0ae7ab 100644 --- a/users/akervern.json +++ b/users/akervern.json @@ -1,3 +1,3 @@ { "copyright": "Arnaud Kervern" -} \ No newline at end of file +} diff --git a/users/akizor.json b/users/akizor.json index 01639d2d..69e50f91 100644 --- a/users/akizor.json +++ b/users/akizor.json @@ -4,4 +4,4 @@ "email": "daniel@artgames.ro", "gravatar": true, "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/akkartik.json b/users/akkartik.json index 4d420cd7..52d45821 100644 --- a/users/akkartik.json +++ b/users/akkartik.json @@ -1,3 +1,3 @@ { "copyright": "Kartik Agaram" -} \ No newline at end of file +} diff --git a/users/akky.json b/users/akky.json index 7d56b8fe..c8514f52 100644 --- a/users/akky.json +++ b/users/akky.json @@ -1,3 +1,3 @@ { "copyright": "Akky AKIMOTO" -} \ No newline at end of file +} diff --git a/users/aknosis.json b/users/aknosis.json index 93e63620..e674427a 100644 --- a/users/aknosis.json +++ b/users/aknosis.json @@ -1,4 +1,4 @@ { "copyright": "Paul Giberson", "url": "http://aknosis.com" -} \ No newline at end of file +} diff --git a/users/akshay.json b/users/akshay.json index a66b7b6f..3c1c2790 100644 --- a/users/akshay.json +++ b/users/akshay.json @@ -1,3 +1,3 @@ { "copyright": "Akshay Mhatre" -} \ No newline at end of file +} diff --git a/users/akshaymhatre.json b/users/akshaymhatre.json index a66b7b6f..3c1c2790 100644 --- a/users/akshaymhatre.json +++ b/users/akshaymhatre.json @@ -1,3 +1,3 @@ { "copyright": "Akshay Mhatre" -} \ No newline at end of file +} diff --git a/users/alberto.json b/users/alberto.json index b2bbf0a2..99d6bdcc 100644 --- a/users/alberto.json +++ b/users/alberto.json @@ -4,4 +4,4 @@ "email": "achvaicer@gmail.com", "gravatar": true, "theme": "orange" -} \ No newline at end of file +} diff --git a/users/albertofdzm.json b/users/albertofdzm.json index a163f09d..10f38ced 100644 --- a/users/albertofdzm.json +++ b/users/albertofdzm.json @@ -4,4 +4,4 @@ "email": "albertofdzm@gmail.com", "gravatar": true, "theme": "black-beauty" -} \ No newline at end of file +} diff --git a/users/albertogasparin.json b/users/albertogasparin.json index 3b787161..3c6bf140 100644 --- a/users/albertogasparin.json +++ b/users/albertogasparin.json @@ -1,3 +1,3 @@ { "copyright": "Alberto Gasparin" -} \ No newline at end of file +} diff --git a/users/alco.json b/users/alco.json index ac086e3b..32ea8205 100644 --- a/users/alco.json +++ b/users/alco.json @@ -1,3 +1,3 @@ { "copyright": "Ricardo Alcocer" -} \ No newline at end of file +} diff --git a/users/alcore.json b/users/alcore.json index 441da242..10444736 100644 --- a/users/alcore.json +++ b/users/alcore.json @@ -5,4 +5,4 @@ "format": "html", "theme": "flesch", "gravatar": true -} \ No newline at end of file +} diff --git a/users/aldenquimby.json b/users/aldenquimby.json index 9d534f3c..a4b5c5e9 100644 --- a/users/aldenquimby.json +++ b/users/aldenquimby.json @@ -3,4 +3,4 @@ "url": "http://www.aldenquimby.com", "email": "aldenquimby@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/aldo.json b/users/aldo.json index 8c4d89ea..e9909abe 100644 --- a/users/aldo.json +++ b/users/aldo.json @@ -3,4 +3,4 @@ "url": "http://aldo.io", "email": "mail@aldo.io", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/aldoborrero.json b/users/aldoborrero.json index bdc3a8d5..0bb983bc 100644 --- a/users/aldoborrero.json +++ b/users/aldoborrero.json @@ -1,3 +1,3 @@ { "copyright": "Aldo Borrero" -} \ No newline at end of file +} diff --git a/users/ale.json b/users/ale.json index ecae2267..0dc69262 100644 --- a/users/ale.json +++ b/users/ale.json @@ -3,4 +3,4 @@ "url": "http://alejandromorales.co.cc", "email": "alejandro@numbus.co", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/aleksi.json b/users/aleksi.json index e806c1b0..f6660e1b 100644 --- a/users/aleksi.json +++ b/users/aleksi.json @@ -1,3 +1,3 @@ { "copyright": "Alexey Palazhchenko" -} \ No newline at end of file +} diff --git a/users/alessioalex.json b/users/alessioalex.json index f7941e8d..22973ae5 100644 --- a/users/alessioalex.json +++ b/users/alessioalex.json @@ -2,4 +2,4 @@ "copyright": "Alexandru Vladutu", "email": "alexandru.vladutu@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/aleung.json b/users/aleung.json index eecf6e96..2735e71e 100644 --- a/users/aleung.json +++ b/users/aleung.json @@ -2,4 +2,4 @@ "copyright": "Leo Liang", "url": "https://github.com/aleung", "email": "leoliang@gmail.com" -} \ No newline at end of file +} diff --git a/users/alex.json b/users/alex.json index 632827ab..ad8c062e 100644 --- a/users/alex.json +++ b/users/alex.json @@ -1,3 +1,3 @@ { "copyright": "Alex Peattie" -} \ No newline at end of file +} diff --git a/users/alexaaronfrancisco.json b/users/alexaaronfrancisco.json index 28aa3b57..b0ae5777 100644 --- a/users/alexaaronfrancisco.json +++ b/users/alexaaronfrancisco.json @@ -1,3 +1,3 @@ { "copyright": "Alexander Aaron Francisco" -} \ No newline at end of file +} diff --git a/users/alexander.json b/users/alexander.json index 45fd3bec..1534199e 100644 --- a/users/alexander.json +++ b/users/alexander.json @@ -2,4 +2,4 @@ "copyright": "Alexander Shpilkin", "url": "http://about.me/alex.shpilkin", "email": "ashpilkin@gmail.com" -} \ No newline at end of file +} diff --git a/users/alexb.json b/users/alexb.json index 6017c9d9..00109ac8 100644 --- a/users/alexb.json +++ b/users/alexb.json @@ -2,4 +2,4 @@ "copyright": "Alex Bierwagen", "url": "http://alexb.ninja", "email": "me@alexb.ninja" -} \ No newline at end of file +} diff --git a/users/alexgleason.json b/users/alexgleason.json index 1d279ec8..9e950c2e 100644 --- a/users/alexgleason.json +++ b/users/alexgleason.json @@ -1,3 +1,3 @@ { "copyright": "Alex Gleason" -} \ No newline at end of file +} diff --git a/users/alexh.json b/users/alexh.json index 0a614688..5dab7834 100644 --- a/users/alexh.json +++ b/users/alexh.json @@ -3,4 +3,4 @@ "url": "https://hmltn.me", "email": "github@aehmlo.me", "gravatar": true -} \ No newline at end of file +} diff --git a/users/alexluke.json b/users/alexluke.json index d9f9d362..7afff8c9 100644 --- a/users/alexluke.json +++ b/users/alexluke.json @@ -2,4 +2,4 @@ "copyright": "Alex Luke", "url": "http://alexluke.me", "email": "alex@alexluke.me" -} \ No newline at end of file +} diff --git a/users/alexowl.json b/users/alexowl.json index d4a4a940..a9b75e6a 100644 --- a/users/alexowl.json +++ b/users/alexowl.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "material-red" -} \ No newline at end of file +} diff --git a/users/ali-sdk.json b/users/ali-sdk.json index 13648b0a..e22b03e8 100644 --- a/users/ali-sdk.json +++ b/users/ali-sdk.json @@ -3,4 +3,4 @@ "url": "https://github.com/ali-sdk", "email": "m@fengmk2.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/ali.json b/users/ali.json index 8ce407d5..7f507581 100644 --- a/users/ali.json +++ b/users/ali.json @@ -3,4 +3,4 @@ "url": "http://aliel.herokuapp.com", "email": "ali.elashram@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/alias.json b/users/alias.json index 190b9459..c10fe11e 100644 --- a/users/alias.json +++ b/users/alias.json @@ -3,4 +3,4 @@ "url": "http://www.alias4bb.com", "email": "yygggg@foxmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/alibabatajine.json b/users/alibabatajine.json index dda8119c..b1cd5916 100644 --- a/users/alibabatajine.json +++ b/users/alibabatajine.json @@ -3,4 +3,4 @@ "url": "http://www.tajine.de", "email": "mit@tajine.de", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/aliel.json b/users/aliel.json index 282d55c0..51c4f230 100644 --- a/users/aliel.json +++ b/users/aliel.json @@ -3,4 +3,4 @@ "url": "http://aliel.herokuapp.com", "email": "ali.elashram@gmail.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/alimd.json b/users/alimd.json index dc2454c0..a60108c4 100644 --- a/users/alimd.json +++ b/users/alimd.json @@ -4,4 +4,4 @@ "email": "i@ali.md", "theme": "flesch", "gravatar": true -} \ No newline at end of file +} diff --git a/users/alisch.json b/users/alisch.json index 5a0dc297..2b462a9f 100644 --- a/users/alisch.json +++ b/users/alisch.json @@ -3,4 +3,4 @@ "url": "https://alisch.me/", "email": "mail@alisch.me", "format": "txt" -} \ No newline at end of file +} diff --git a/users/alisdair.json b/users/alisdair.json index d9708672..367527e8 100644 --- a/users/alisdair.json +++ b/users/alisdair.json @@ -1,3 +1,3 @@ { "copyright": "Alisdair McDiarmid" -} \ No newline at end of file +} diff --git a/users/allthingssmitty.json b/users/allthingssmitty.json index ad3e15e7..1f10cb1d 100644 --- a/users/allthingssmitty.json +++ b/users/allthingssmitty.json @@ -3,4 +3,4 @@ "url": "https://github.com/AllThingsSmitty", "theme": "default", "gravatar": true -} \ No newline at end of file +} diff --git a/users/almad.json b/users/almad.json index 1911dced..c13dbc4f 100644 --- a/users/almad.json +++ b/users/almad.json @@ -4,4 +4,4 @@ "email": "bugs@almad.net", "format": "html", "theme": "eula-modern" -} \ No newline at end of file +} diff --git a/users/alno.json b/users/alno.json index 061928a1..75cbd627 100644 --- a/users/alno.json +++ b/users/alno.json @@ -2,4 +2,4 @@ "copyright": "Alexey Noskov", "url": "http://alno.name/", "email": "alexey.noskov@gmail.com" -} \ No newline at end of file +} diff --git a/users/alphawhy.json b/users/alphawhy.json index 19433cfb..f5d30d5f 100644 --- a/users/alphawhy.json +++ b/users/alphawhy.json @@ -1,3 +1,3 @@ { "copyright": "Alpha Why" -} \ No newline at end of file +} diff --git a/users/altun.json b/users/altun.json index 7ba378c8..ed461650 100644 --- a/users/altun.json +++ b/users/altun.json @@ -3,4 +3,4 @@ "url": "http://mustafaaltun.com", "email": "gmail@mustafaaltun.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/amaan.json b/users/amaan.json index dc4d0502..0e168904 100644 --- a/users/amaan.json +++ b/users/amaan.json @@ -1,3 +1,3 @@ { "copyright": "Amaan Cheval" -} \ No newline at end of file +} diff --git a/users/amarlearning.json b/users/amarlearning.json index 83ba8021..0c91a7e2 100644 --- a/users/amarlearning.json +++ b/users/amarlearning.json @@ -4,4 +4,4 @@ "email": "amar.om1994@gmail.com", "theme": "material-pink", "gravatar": true -} \ No newline at end of file +} diff --git a/users/amiranda.json b/users/amiranda.json index dc94686b..056f1876 100644 --- a/users/amiranda.json +++ b/users/amiranda.json @@ -1,3 +1,3 @@ { "copyright": "Alex Miranda" -} \ No newline at end of file +} diff --git a/users/amitmerchant1990.json b/users/amitmerchant1990.json index 0a6e9249..91bcf0d0 100644 --- a/users/amitmerchant1990.json +++ b/users/amitmerchant1990.json @@ -3,4 +3,4 @@ "url": "https://github.com/amitmerchant1990", "email": "bullredeyes@gmail.com", "theme": "cherry" -} \ No newline at end of file +} diff --git a/users/amjad.json b/users/amjad.json index 89071537..4edd0f73 100644 --- a/users/amjad.json +++ b/users/amjad.json @@ -4,4 +4,4 @@ "email": "amjad.4@gmail.com", "gravatar": true, "theme": "black-beauty" -} \ No newline at end of file +} diff --git a/users/analogj.json b/users/analogj.json index 24334b28..6208ad55 100644 --- a/users/analogj.json +++ b/users/analogj.json @@ -1,3 +1,3 @@ { "copyright": "Jason Kulatunga" -} \ No newline at end of file +} diff --git a/users/anant.json b/users/anant.json index ab3bc458..bc25b05b 100644 --- a/users/anant.json +++ b/users/anant.json @@ -1,3 +1,3 @@ { "copyright": "Anant Jain" -} \ No newline at end of file +} diff --git a/users/ancy.json b/users/ancy.json index fac3a809..f9aca67a 100644 --- a/users/ancy.json +++ b/users/ancy.json @@ -2,4 +2,4 @@ "copyright": "Ancy , http://lazulirose.com", "url": "http://lazulirose.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/and3k5.json b/users/and3k5.json index 55302a6d..d57587c7 100644 --- a/users/and3k5.json +++ b/users/and3k5.json @@ -1,3 +1,3 @@ { "copyright": "Anders Kjeldsen" -} \ No newline at end of file +} diff --git a/users/andersonaguiar.json b/users/andersonaguiar.json index 45266f95..ec49930b 100644 --- a/users/andersonaguiar.json +++ b/users/andersonaguiar.json @@ -2,4 +2,4 @@ "copyright": "Anderson Aguiar", "url": "http://andersonaguiar.com.br", "email": "andersonaguiar.web@gmail.com" -} \ No newline at end of file +} diff --git a/users/andre.json b/users/andre.json index 4c5342f7..798ec52e 100644 --- a/users/andre.json +++ b/users/andre.json @@ -1,3 +1,3 @@ { "copyright": "André Braga" -} \ No newline at end of file +} diff --git a/users/andreasonny.json b/users/andreasonny.json index 541d543b..8fd34221 100644 --- a/users/andreasonny.json +++ b/users/andreasonny.json @@ -4,4 +4,4 @@ "email": "andreasonny83@gmail.com", "gravatar": true, "theme": "material-teal" -} \ No newline at end of file +} diff --git a/users/andreif.json b/users/andreif.json index eacaa97a..6a38214b 100644 --- a/users/andreif.json +++ b/users/andreif.json @@ -2,4 +2,4 @@ "copyright": "Andrei Fokau", "email": "fokau@kth.se", "url": "https://github.com/andreif" -} \ No newline at end of file +} diff --git a/users/andreisebastianc.json b/users/andreisebastianc.json index 2f54583d..d38037f4 100644 --- a/users/andreisebastianc.json +++ b/users/andreisebastianc.json @@ -2,4 +2,4 @@ "copyright": "Andrei Sebastian Cîmpean", "email": "andreisebastianc@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/andrel.json b/users/andrel.json index f260884c..ed427ae4 100644 --- a/users/andrel.json +++ b/users/andrel.json @@ -4,4 +4,4 @@ "email": "hi@andrel.me", "gravatar": true, "theme": "opensans" -} \ No newline at end of file +} diff --git a/users/andreloureiro.json b/users/andreloureiro.json index f22e3fff..33d7949a 100644 --- a/users/andreloureiro.json +++ b/users/andreloureiro.json @@ -3,4 +3,4 @@ "url": "http://andrel.me", "email": "andreloureiroo@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/andrew.json b/users/andrew.json index 2d05c0b6..13bda5b9 100644 --- a/users/andrew.json +++ b/users/andrew.json @@ -2,4 +2,4 @@ "copyright": "Andrew Fischer", "email": "afischer15@mac.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/andreyknupp.json b/users/andreyknupp.json index 07a58379..58979fd9 100644 --- a/users/andreyknupp.json +++ b/users/andreyknupp.json @@ -3,4 +3,4 @@ "url": "http://github.com/andreyknupp", "email": "andreykvital@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/andrezero.json b/users/andrezero.json index 8f5652d2..fbb2af8b 100644 --- a/users/andrezero.json +++ b/users/andrezero.json @@ -3,4 +3,4 @@ "url": "http://andretorgal.com", "email": "andre.torgal@gmail.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/androidnix.json b/users/androidnix.json index 2e648b32..adfeebfa 100644 --- a/users/androidnix.json +++ b/users/androidnix.json @@ -3,4 +3,4 @@ "theme": "flesch", "email": "support@icodeclarity.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/andrsd.json b/users/andrsd.json index 2d2a01fb..34d6fa93 100644 --- a/users/andrsd.json +++ b/users/andrsd.json @@ -4,4 +4,4 @@ "email": "andrsd@gmail.com", "gravatar": true, "theme": "material-blue" -} \ No newline at end of file +} diff --git a/users/andxyz.json b/users/andxyz.json index a8353e20..cae89088 100644 --- a/users/andxyz.json +++ b/users/andxyz.json @@ -3,4 +3,4 @@ "url": "http://andxyz.com", "email": "andy@andxyz.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/andyedinborough.json b/users/andyedinborough.json index 381d2dce..f3719ec0 100644 --- a/users/andyedinborough.json +++ b/users/andyedinborough.json @@ -1,3 +1,3 @@ { "copyright": "Andy Edinborough" -} \ No newline at end of file +} diff --git a/users/andystubbs.json b/users/andystubbs.json index b1164b45..76f609f3 100644 --- a/users/andystubbs.json +++ b/users/andystubbs.json @@ -1,3 +1,3 @@ { "copyright": "Andy Stubbs" -} \ No newline at end of file +} diff --git a/users/angrychimp.json b/users/angrychimp.json index 25009899..32ed0965 100644 --- a/users/angrychimp.json +++ b/users/angrychimp.json @@ -4,4 +4,4 @@ "email": "rkahler@gmail.com", "gravatar": true, "theme": "material-teal" -} \ No newline at end of file +} diff --git a/users/angus.json b/users/angus.json index f16b23c1..3e1475ab 100644 --- a/users/angus.json +++ b/users/angus.json @@ -1,3 +1,3 @@ { "copyright": "Angus Thomsen" -} \ No newline at end of file +} diff --git a/users/angusm.json b/users/angusm.json index 33b0d090..ee2b946b 100644 --- a/users/angusm.json +++ b/users/angusm.json @@ -1,3 +1,3 @@ { "copyright": "Angus McIntyre" -} \ No newline at end of file +} diff --git a/users/anish.json b/users/anish.json index 99a78a5a..56f223c4 100644 --- a/users/anish.json +++ b/users/anish.json @@ -3,4 +3,4 @@ "email": "anish-foss@mit.edu", "gravatar": true, "theme": "xtansia" -} \ No newline at end of file +} diff --git a/users/anishathalye.json b/users/anishathalye.json index 99a78a5a..56f223c4 100644 --- a/users/anishathalye.json +++ b/users/anishathalye.json @@ -3,4 +3,4 @@ "email": "anish-foss@mit.edu", "gravatar": true, "theme": "xtansia" -} \ No newline at end of file +} diff --git a/users/ankur.json b/users/ankur.json index c637fbe8..2dd486c0 100644 --- a/users/ankur.json +++ b/users/ankur.json @@ -4,4 +4,4 @@ "theme": "dusk", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/anmoljagetia.json b/users/anmoljagetia.json index 45b6d9f3..de2b6233 100644 --- a/users/anmoljagetia.json +++ b/users/anmoljagetia.json @@ -3,4 +3,4 @@ "url": "http://anmoljagetia.me", "email": "anmoljagetia@gmail.com", "theme": "solarized" -} \ No newline at end of file +} diff --git a/users/anon.json b/users/anon.json index 252e9dce..19a649b9 100644 --- a/users/anon.json +++ b/users/anon.json @@ -5,4 +5,4 @@ "format": "html", "theme": "eula-modern", "gravatar": true -} \ No newline at end of file +} diff --git a/users/anovsiradj.json b/users/anovsiradj.json index 76a72b1d..c35630c2 100644 --- a/users/anovsiradj.json +++ b/users/anovsiradj.json @@ -3,4 +3,4 @@ "email": "anov.siradj(22@(gmail|live).com|@gin.co.id)", "url": "http://ne-a-r.blogspot.com/ncr", "format": "txt" -} \ No newline at end of file +} diff --git a/users/anrodon.json b/users/anrodon.json index ccbf5953..6b5c696e 100644 --- a/users/anrodon.json +++ b/users/anrodon.json @@ -3,4 +3,4 @@ "url": "http://arodriguezdonaire.com", "email": "arodriguezdonaire@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/anshul.json b/users/anshul.json index f780c37e..fabc4492 100644 --- a/users/anshul.json +++ b/users/anshul.json @@ -1,4 +1,4 @@ { "copyright": "Anshul Shah", "email": "anshulshah96@gmail.com" -} \ No newline at end of file +} diff --git a/users/anthkris.json b/users/anthkris.json index 82cd35b7..5ebbcbd6 100644 --- a/users/anthkris.json +++ b/users/anthkris.json @@ -4,4 +4,4 @@ "email": "kristin@knanthony.com", "format": "html", "theme": "mitserrat" -} \ No newline at end of file +} diff --git a/users/anthony.json b/users/anthony.json index 83c7b6d7..9d5fa5ac 100644 --- a/users/anthony.json +++ b/users/anthony.json @@ -4,4 +4,4 @@ "email": "rappa819@gmail.com", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/antimatter15.json b/users/antimatter15.json index 58547cba..7a7d17f4 100644 --- a/users/antimatter15.json +++ b/users/antimatter15.json @@ -2,4 +2,4 @@ "copyright": "Kevin Kwok", "url": "http://antimatter15.com", "email": "antimatter15@gmail.com" -} \ No newline at end of file +} diff --git a/users/anton.json b/users/anton.json index 9440d5b0..f08402ad 100644 --- a/users/anton.json +++ b/users/anton.json @@ -1,3 +1,3 @@ { "copyright": "Anton Piatek" -} \ No newline at end of file +} diff --git a/users/antonhalim.json b/users/antonhalim.json index 110f64bb..e6a2978b 100644 --- a/users/antonhalim.json +++ b/users/antonhalim.json @@ -3,4 +3,4 @@ "url": "antonhalim.me", "email": "anton@antonhalim.me", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/antonholmgren.json b/users/antonholmgren.json index 4343b16c..366bcc55 100644 --- a/users/antonholmgren.json +++ b/users/antonholmgren.json @@ -3,4 +3,4 @@ "url": "http://antonholmgren.com", "email": "me@antonholmgren.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/antonio.json b/users/antonio.json index 64973a25..e2291b4f 100644 --- a/users/antonio.json +++ b/users/antonio.json @@ -1,4 +1,4 @@ { "copyright": "Antonio Santos", "theme": "afterdark" -} \ No newline at end of file +} diff --git a/users/antonybailey.json b/users/antonybailey.json index 1a14a4f1..06398c10 100644 --- a/users/antonybailey.json +++ b/users/antonybailey.json @@ -3,4 +3,4 @@ "url": "http://www.antonybailey.net", "email": "support@antonybailey.net", "format": "txt" -} \ No newline at end of file +} diff --git a/users/anunay.json b/users/anunay.json index 805d7f24..19042247 100644 --- a/users/anunay.json +++ b/users/anunay.json @@ -3,4 +3,4 @@ "url": "http://anunaydahal.com", "email": "anunay.dahal@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/anuraj.json b/users/anuraj.json index 9fef2aae..07754edd 100644 --- a/users/anuraj.json +++ b/users/anuraj.json @@ -3,4 +3,4 @@ "url": "https://dotnetthoughts.net", "email": "me@dotnetthoughts.net", "format": "html" -} \ No newline at end of file +} diff --git a/users/anwarjaved.json b/users/anwarjaved.json index 5b34c143..0acf685a 100644 --- a/users/anwarjaved.json +++ b/users/anwarjaved.json @@ -4,4 +4,4 @@ "format": "html", "gravatar": true, "theme": "default-dark" -} \ No newline at end of file +} diff --git a/users/anze.json b/users/anze.json index abbd7ea4..bc7963e3 100644 --- a/users/anze.json +++ b/users/anze.json @@ -3,4 +3,4 @@ "url": "http://anzellotti.cu.cc", "email": "alberto.anzellotti@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/apnerve.json b/users/apnerve.json index 1ad4ba37..3c228c18 100644 --- a/users/apnerve.json +++ b/users/apnerve.json @@ -1,3 +1,3 @@ { "copyright": "Praveen Kumar" -} \ No newline at end of file +} diff --git a/users/apollojustice.json b/users/apollojustice.json index 18adb1d6..8d1a34d0 100644 --- a/users/apollojustice.json +++ b/users/apollojustice.json @@ -4,4 +4,4 @@ "email": "me@apollo.pw", "theme": "material-indigo", "gravatar": true -} \ No newline at end of file +} diff --git a/users/aponxi.json b/users/aponxi.json index 5ea47d11..0fb52255 100644 --- a/users/aponxi.json +++ b/users/aponxi.json @@ -4,4 +4,4 @@ "email": "aponxi@weaponxi.com", "format": "html", "theme": "blackwood" -} \ No newline at end of file +} diff --git a/users/apopelo.json b/users/apopelo.json index 54f3d563..fb8dde11 100644 --- a/users/apopelo.json +++ b/users/apopelo.json @@ -1,3 +1,3 @@ { "copyright": "Andrey Popelo" -} \ No newline at end of file +} diff --git a/users/appsattic.json b/users/appsattic.json index fe8ef433..56d330f2 100644 --- a/users/appsattic.json +++ b/users/appsattic.json @@ -2,4 +2,4 @@ "copyright": "AppsAttic Ltd", "url": "http://appsattic.com/", "email": "chilts@appsattic.com" -} \ No newline at end of file +} diff --git a/users/apriendeau.json b/users/apriendeau.json index bbeb0cb2..8b187bbc 100644 --- a/users/apriendeau.json +++ b/users/apriendeau.json @@ -2,4 +2,4 @@ "copyright": "Austin Riendeau", "url": "http://apriendeau.com", "email": "austin@apriendeau.com" -} \ No newline at end of file +} diff --git a/users/aps.json b/users/aps.json index 77b8fea9..74bfda98 100644 --- a/users/aps.json +++ b/users/aps.json @@ -3,4 +3,4 @@ "url": "http://amanpratapsingh.in", "email": "amanprtpsingh@gmail.com", "theme": "material-pink" -} \ No newline at end of file +} diff --git a/users/ar.json b/users/ar.json index 0439f4c4..92c31b39 100644 --- a/users/ar.json +++ b/users/ar.json @@ -1,3 +1,3 @@ { "copyright": "Alexander Rosolko" -} \ No newline at end of file +} diff --git a/users/arashmilani.json b/users/arashmilani.json index cf895342..cafc65a6 100644 --- a/users/arashmilani.json +++ b/users/arashmilani.json @@ -4,4 +4,4 @@ "email": "me@arashmilani.com", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/ariporad.json b/users/ariporad.json index 100fa462..bf0a3169 100644 --- a/users/ariporad.json +++ b/users/ariporad.json @@ -3,4 +3,4 @@ "url": "http: //ariporad.com", "email": "ari@ariporad.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/arizzol.json b/users/arizzol.json index e3e5f52a..f532bdd6 100644 --- a/users/arizzol.json +++ b/users/arizzol.json @@ -1,3 +1,3 @@ { "copyright": "Arier Filizzola" -} \ No newline at end of file +} diff --git a/users/arjun.json b/users/arjun.json index c39c8290..2d0bba25 100644 --- a/users/arjun.json +++ b/users/arjun.json @@ -2,4 +2,4 @@ "copyright": "Arjun Rao", "url": "https://arjun.fyi", "email": "contact@arjun.fyi" -} \ No newline at end of file +} diff --git a/users/arlo.json b/users/arlo.json index 83c50ca1..49ca7587 100644 --- a/users/arlo.json +++ b/users/arlo.json @@ -1,4 +1,4 @@ { "copyright": "Arlo Carreon, http://arlocarreon.com", "url": "http://arlocarreon.com" -} \ No newline at end of file +} diff --git a/users/armpit.json b/users/armpit.json index 70666924..c9eaddd6 100644 --- a/users/armpit.json +++ b/users/armpit.json @@ -1,3 +1,3 @@ { "copyright": "Shane Holding" -} \ No newline at end of file +} diff --git a/users/armujahid.json b/users/armujahid.json index ae4fb4d9..7edcfc19 100644 --- a/users/armujahid.json +++ b/users/armujahid.json @@ -4,4 +4,4 @@ "email": "abdulraufmujahid@gmail.com", "theme": "material", "gravatar": true -} \ No newline at end of file +} diff --git a/users/arnavroy.json b/users/arnavroy.json index c6c236c4..044df008 100644 --- a/users/arnavroy.json +++ b/users/arnavroy.json @@ -3,4 +3,4 @@ "url": "http://www.arnavroy.com", "email": "roy.arnav@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/arroxa.json b/users/arroxa.json index 3853f39b..8824502d 100644 --- a/users/arroxa.json +++ b/users/arroxa.json @@ -1,4 +1,4 @@ { "copyright": "Arroxa", "theme": "eula-modern" -} \ No newline at end of file +} diff --git a/users/artemave.json b/users/artemave.json index 47612906..b8ad52ae 100644 --- a/users/artemave.json +++ b/users/artemave.json @@ -1,3 +1,3 @@ { "copyright": "Artem Avetisyan" -} \ No newline at end of file +} diff --git a/users/arthurfigueiredo.json b/users/arthurfigueiredo.json index 0dbd96ec..7b5683db 100644 --- a/users/arthurfigueiredo.json +++ b/users/arthurfigueiredo.json @@ -3,4 +3,4 @@ "url": "http://www.arthurfigueiredo.com.br", "email": "arthurfn.webdev@gmail.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/arthurguy.json b/users/arthurguy.json index a8839ef0..74e1548d 100644 --- a/users/arthurguy.json +++ b/users/arthurguy.json @@ -1,3 +1,3 @@ { "copyright": "Arthur Guy" -} \ No newline at end of file +} diff --git a/users/artnc.json b/users/artnc.json index ada7b072..e7931fe2 100644 --- a/users/artnc.json +++ b/users/artnc.json @@ -1,3 +1,3 @@ { "copyright": "Art Chaidarun" -} \ No newline at end of file +} diff --git a/users/aruhan.json b/users/aruhan.json index aedf609a..08d758d4 100644 --- a/users/aruhan.json +++ b/users/aruhan.json @@ -1,3 +1,3 @@ { "copyright": "Takashi Harada" -} \ No newline at end of file +} diff --git a/users/arulrajnet.json b/users/arulrajnet.json index 0a7efd28..72c57912 100644 --- a/users/arulrajnet.json +++ b/users/arulrajnet.json @@ -3,4 +3,4 @@ "url": "http://arulraj.net", "email": "me@arulraj.net", "gravatar": true -} \ No newline at end of file +} diff --git a/users/arunoda.json b/users/arunoda.json index 39183d02..7371facc 100644 --- a/users/arunoda.json +++ b/users/arunoda.json @@ -1,3 +1,3 @@ { "copyright": "Arunoda Susiripala" -} \ No newline at end of file +} diff --git a/users/arvid.json b/users/arvid.json index 5def2348..f8681214 100644 --- a/users/arvid.json +++ b/users/arvid.json @@ -1,4 +1,4 @@ { "copyright": "Arvid Björkström", "email": "arvid@bjorkstrom.se" -} \ No newline at end of file +} diff --git a/users/asante.json b/users/asante.json index 3be6ef01..53dec2a4 100644 --- a/users/asante.json +++ b/users/asante.json @@ -1,3 +1,3 @@ { "copyright": "Alexander Sante" -} \ No newline at end of file +} diff --git a/users/asbubam.json b/users/asbubam.json index 0bf7bbc7..d4cecfeb 100644 --- a/users/asbubam.json +++ b/users/asbubam.json @@ -3,4 +3,4 @@ "url": "http://blog.2dal.com", "email": "asbubam@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/aschn.json b/users/aschn.json index e5c0d61b..c9eca8e5 100644 --- a/users/aschn.json +++ b/users/aschn.json @@ -1,3 +1,3 @@ { "copyright": "Anna Schneider" -} \ No newline at end of file +} diff --git a/users/asdbasjdbaskjd.json b/users/asdbasjdbaskjd.json index 0d246a78..15576578 100644 --- a/users/asdbasjdbaskjd.json +++ b/users/asdbasjdbaskjd.json @@ -1,3 +1,3 @@ { "copyright": "Lucas Galfasó" -} \ No newline at end of file +} diff --git a/users/asdbjasbdja.json b/users/asdbjasbdja.json index 30511a5e..5fb9ab49 100644 --- a/users/asdbjasbdja.json +++ b/users/asdbjasbdja.json @@ -1,3 +1,3 @@ { "copyright": "ajsdhbjabsdh" -} \ No newline at end of file +} diff --git a/users/aseemk.json b/users/aseemk.json index d577bf10..ce206a17 100644 --- a/users/aseemk.json +++ b/users/aseemk.json @@ -2,4 +2,4 @@ "copyright": "Aseem Kishore", "url": "http://aseemk.com/", "email": "aseem.kishore@gmail.com" -} \ No newline at end of file +} diff --git a/users/ashchan.json b/users/ashchan.json index 9ad2d379..87c3c718 100644 --- a/users/ashchan.json +++ b/users/ashchan.json @@ -2,4 +2,4 @@ "copyright": "James Chen", "url": "http://ashchan.com", "email": "ashchan@gmail.com" -} \ No newline at end of file +} diff --git a/users/ashtonwar.json b/users/ashtonwar.json index 3d651099..96c3d735 100644 --- a/users/ashtonwar.json +++ b/users/ashtonwar.json @@ -1,3 +1,3 @@ { "copyright": "Ashton War" -} \ No newline at end of file +} diff --git a/users/ask11.json b/users/ask11.json index 6efcde9c..dfffc20a 100644 --- a/users/ask11.json +++ b/users/ask11.json @@ -2,4 +2,4 @@ "copyright": "Aleksey Kulikov", "email": "alekseys.kulikov@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/askesian.json b/users/askesian.json index 79ab2022..ccc4ffad 100644 --- a/users/askesian.json +++ b/users/askesian.json @@ -2,4 +2,4 @@ "copyright": "askesian", "url": "http://askesian.com", "email": "askesian@outlook.com" -} \ No newline at end of file +} diff --git a/users/asolkar.json b/users/asolkar.json index af074ed7..0284303e 100644 --- a/users/asolkar.json +++ b/users/asolkar.json @@ -2,4 +2,4 @@ "copyright": "Mahesh Asolkar", "url": "http://mahesha.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/assefamaru.json b/users/assefamaru.json index fc261a0e..48827316 100644 --- a/users/assefamaru.json +++ b/users/assefamaru.json @@ -5,4 +5,4 @@ "format": "txt", "gravatar": true, "theme": "plaintext" -} \ No newline at end of file +} diff --git a/users/astrocb.json b/users/astrocb.json index e401c2e0..638d1c9e 100644 --- a/users/astrocb.json +++ b/users/astrocb.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "black-beauty" -} \ No newline at end of file +} diff --git a/users/ata.json b/users/ata.json index 99a028ca..a700477a 100644 --- a/users/ata.json +++ b/users/ata.json @@ -2,4 +2,4 @@ "copyright": "Andrew Amis, http://geeklob.wordpress.com", "url": "http://geeklob.wordpress.com", "email": "atamiser@gmail.com" -} \ No newline at end of file +} diff --git a/users/atbox.json b/users/atbox.json index 978e7380..36ecfaf2 100644 --- a/users/atbox.json +++ b/users/atbox.json @@ -5,4 +5,4 @@ "email": "info@atbox.io", "gravatar": true, "theme": "opensans" -} \ No newline at end of file +} diff --git a/users/atelierbram.json b/users/atelierbram.json index 0fbd6e11..d4f2834b 100644 --- a/users/atelierbram.json +++ b/users/atelierbram.json @@ -2,4 +2,4 @@ "copyright": "Bram de Haan, http://atelierbramdehaan.nl", "url": "http://atelierbramdehaan.nl", "theme": "black-beauty" -} \ No newline at end of file +} diff --git a/users/atilafassina.json b/users/atilafassina.json index 80733683..786859da 100644 --- a/users/atilafassina.json +++ b/users/atilafassina.json @@ -4,4 +4,4 @@ "email": "hey@atilafassina.com", "theme": "material-teal", "gravatar": true -} \ No newline at end of file +} diff --git a/users/atran.json b/users/atran.json index e9af3d69..33d45e1a 100644 --- a/users/atran.json +++ b/users/atran.json @@ -1,4 +1,4 @@ { "copyright": "Anthony Tran", "url": "http://anthonytran.info" -} \ No newline at end of file +} diff --git a/users/ats.json b/users/ats.json index 84fecb04..f0234e06 100644 --- a/users/ats.json +++ b/users/ats.json @@ -1,3 +1,3 @@ { "copyright": "ActBlue Technical Services" -} \ No newline at end of file +} diff --git a/users/audreyr.json b/users/audreyr.json index 283b42ff..c23f060c 100644 --- a/users/audreyr.json +++ b/users/audreyr.json @@ -3,4 +3,4 @@ "url": "http://www.audreymroy.com", "email": "audreyr@cartwheelweb.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/aus3ris.json b/users/aus3ris.json index e706550c..3a2566c7 100644 --- a/users/aus3ris.json +++ b/users/aus3ris.json @@ -3,4 +3,4 @@ "url": "http://chevron.lv", "email": "austris@chevron.lv", "format": "txt" -} \ No newline at end of file +} diff --git a/users/aus3ys.json b/users/aus3ys.json index 81863e40..16625e93 100644 --- a/users/aus3ys.json +++ b/users/aus3ys.json @@ -1,4 +1,4 @@ { "copyright": "Austris Landmanis", "email": "aus3ys@gmail.com" -} \ No newline at end of file +} diff --git a/users/austegard.json b/users/austegard.json index d59e8335..2cd2c40d 100644 --- a/users/austegard.json +++ b/users/austegard.json @@ -2,4 +2,4 @@ "copyright": "Oskar Austegard, http://austegard.com", "url": "http://austegard.com", "email": "me@austegard.com" -} \ No newline at end of file +} diff --git a/users/austin.json b/users/austin.json index 5d135e83..9c77b2f7 100644 --- a/users/austin.json +++ b/users/austin.json @@ -3,4 +3,4 @@ "url": "http://apriendeau.com", "email": "austin@apriendeau.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/avdaredevil.json b/users/avdaredevil.json index 7ae12a29..67911a9e 100644 --- a/users/avdaredevil.json +++ b/users/avdaredevil.json @@ -4,4 +4,4 @@ "email": "avdaredevil@gmail.com", "format": "txt", "gravatar": true -} \ No newline at end of file +} diff --git a/users/avelino.json b/users/avelino.json index dbb1fbbd..2a29f50d 100644 --- a/users/avelino.json +++ b/users/avelino.json @@ -3,4 +3,4 @@ "url": "http://avelino.xxx", "email": "thiago@avelino.xxx", "gravatar": true -} \ No newline at end of file +} diff --git a/users/average-studios.json b/users/average-studios.json index 069c9df2..bbf2da89 100644 --- a/users/average-studios.json +++ b/users/average-studios.json @@ -1,3 +1,3 @@ { "copyright": "Andrew Stewart" -} \ No newline at end of file +} diff --git a/users/avidal.json b/users/avidal.json index c5b356cb..11a43586 100644 --- a/users/avidal.json +++ b/users/avidal.json @@ -3,4 +3,4 @@ "url": "https://github.com/avidal", "email": "alex.vidal@gmail.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/avidenie.json b/users/avidenie.json index 493eb3f0..8896db5c 100644 --- a/users/avidenie.json +++ b/users/avidenie.json @@ -3,4 +3,4 @@ "url": "http://web.expectations.ro", "email": "avidenie@gmail.com", "theme": "eula-modern" -} \ No newline at end of file +} diff --git a/users/avm99963.json b/users/avm99963.json index befae28e..d7961f8a 100644 --- a/users/avm99963.json +++ b/users/avm99963.json @@ -4,4 +4,4 @@ "email": "me@avm99963.tk", "gravatar": true, "theme": "material-indigo" -} \ No newline at end of file +} diff --git a/users/awles.json b/users/awles.json index f1ada7b0..d0dccaf9 100644 --- a/users/awles.json +++ b/users/awles.json @@ -4,4 +4,4 @@ "format": "txt", "email": "hello@alessiomalu.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/axe312.json b/users/axe312.json index b8f4700c..3c42a4ce 100644 --- a/users/axe312.json +++ b/users/axe312.json @@ -1,3 +1,3 @@ { "copyright": "Benedikt Rötsch" -} \ No newline at end of file +} diff --git a/users/axelav.json b/users/axelav.json index 429e9e6e..c1abe97d 100644 --- a/users/axelav.json +++ b/users/axelav.json @@ -3,4 +3,4 @@ "url": "http://axelav.com", "email": "axelav@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/axisthemes.json b/users/axisthemes.json index 490873b6..98399aea 100644 --- a/users/axisthemes.json +++ b/users/axisthemes.json @@ -2,4 +2,4 @@ "copyright": "AxisThemes", "url": "http://axisthemes.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/axot.json b/users/axot.json index f920a646..49dbb50a 100644 --- a/users/axot.json +++ b/users/axot.json @@ -3,4 +3,4 @@ "url": "http://www.axot.org", "email": "imaxot@gmail.com", "theme": "blackwood" -} \ No newline at end of file +} diff --git a/users/axross.json b/users/axross.json index a49a5135..5647be9f 100644 --- a/users/axross.json +++ b/users/axross.json @@ -4,4 +4,4 @@ "email": "me@axross.io", "format": "txt", "gravatar": true -} \ No newline at end of file +} diff --git a/users/ayahya.json b/users/ayahya.json index 22324e49..8432afe7 100644 --- a/users/ayahya.json +++ b/users/ayahya.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "material" -} \ No newline at end of file +} diff --git a/users/ayesh.json b/users/ayesh.json index 3c53d0df..89ae282c 100644 --- a/users/ayesh.json +++ b/users/ayesh.json @@ -1,4 +1,4 @@ { "copyright": "Ayesh Karunaratne", "url": "http://ayesh.me" -} \ No newline at end of file +} diff --git a/users/azamara.json b/users/azamara.json index 7ca2af7f..0e3bd237 100644 --- a/users/azamara.json +++ b/users/azamara.json @@ -1,4 +1,4 @@ { "copyright": "William Kim, http://azamara.io/", "url": "http://azamara.io/" -} \ No newline at end of file +} diff --git a/users/azder.json b/users/azder.json index 55c76ed6..8fda510b 100644 --- a/users/azder.json +++ b/users/azder.json @@ -2,4 +2,4 @@ "copyright": "Goran Peoski", "email": "azhder@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/azizur.json b/users/azizur.json index 65589fbe..e1b60d17 100644 --- a/users/azizur.json +++ b/users/azizur.json @@ -1,3 +1,3 @@ { "copyright": "Azizur Rahman" -} \ No newline at end of file +} diff --git a/users/azlab.json b/users/azlab.json index 13418fb8..aa40701e 100644 --- a/users/azlab.json +++ b/users/azlab.json @@ -1,3 +1,3 @@ { "copyright": "AnZen-Lab (UEC, Tokyo)" -} \ No newline at end of file +} diff --git a/users/azu.json b/users/azu.json index 922063d4..3fead3f3 100644 --- a/users/azu.json +++ b/users/azu.json @@ -1,4 +1,4 @@ { "copyright": "azu", "url": "http://efcl.info/" -} \ No newline at end of file +} diff --git a/users/b.json b/users/b.json index 5d5eea25..3695b0c7 100644 --- a/users/b.json +++ b/users/b.json @@ -2,4 +2,4 @@ "copyright": "Brian Seward, http://brianseward.com", "url": "http://brianseward.com", "theme": "default" -} \ No newline at end of file +} diff --git a/users/b4b4r07.json b/users/b4b4r07.json index c656b55e..67b11d69 100644 --- a/users/b4b4r07.json +++ b/users/b4b4r07.json @@ -3,4 +3,4 @@ "url": "http://b4b4r07.com", "email": "b4b4r07@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/baenziger-hug.json b/users/baenziger-hug.json index d449fb99..117e146e 100644 --- a/users/baenziger-hug.json +++ b/users/baenziger-hug.json @@ -3,4 +3,4 @@ "url": "http://baenziger-hug.com", "email": "oh@baenziger-hug.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/bai.json b/users/bai.json index 4ddb76ff..df524d3e 100644 --- a/users/bai.json +++ b/users/bai.json @@ -1,4 +1,4 @@ { "copyright": "Vlad Gorodetsky", "email": "v@gor.io" -} \ No newline at end of file +} diff --git a/users/baivong.json b/users/baivong.json index 7dbbaa41..da692309 100644 --- a/users/baivong.json +++ b/users/baivong.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "material-teal" -} \ No newline at end of file +} diff --git a/users/balbeko.json b/users/balbeko.json index 77bfbd08..98adf645 100644 --- a/users/balbeko.json +++ b/users/balbeko.json @@ -3,4 +3,4 @@ "email": "sergey@balbeko.com", "url": "http://balbeko.com/", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/bamorim.json b/users/bamorim.json index 00d46764..a66f831a 100644 --- a/users/bamorim.json +++ b/users/bamorim.json @@ -3,4 +3,4 @@ "url": "http://bamorim.com", "email": "contato@bamorim.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/bankfacil.json b/users/bankfacil.json index c1d26f6c..ba90a5d8 100644 --- a/users/bankfacil.json +++ b/users/bankfacil.json @@ -1,4 +1,4 @@ { "copyright": "BankFacil, http://bankfacil.com.br", "url": "http://bankfacil.com.br" -} \ No newline at end of file +} diff --git a/users/banyan.json b/users/banyan.json index fbcafa2d..87d3f1ca 100644 --- a/users/banyan.json +++ b/users/banyan.json @@ -3,4 +3,4 @@ "url": "https://github.com/banyan", "email": "ameutau@gmail.com", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/bardi.json b/users/bardi.json index ee487db7..df252a8d 100644 --- a/users/bardi.json +++ b/users/bardi.json @@ -3,4 +3,4 @@ "url": "https://www.bardiharborow.com", "email": "bardi@bardiharborow.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/barnik.json b/users/barnik.json index 433fc979..c1fbce8b 100644 --- a/users/barnik.json +++ b/users/barnik.json @@ -1,4 +1,4 @@ { "copyright": "Barnik Ray", "email": "barnikray@live.com" -} \ No newline at end of file +} diff --git a/users/bartaz.json b/users/bartaz.json index 74fffbdc..f4071dc4 100644 --- a/users/bartaz.json +++ b/users/bartaz.json @@ -1,3 +1,3 @@ { "copyright": "Bartek Szopka" -} \ No newline at end of file +} diff --git a/users/bat.json b/users/bat.json index 6d8adb1c..89401f24 100644 --- a/users/bat.json +++ b/users/bat.json @@ -1,3 +1,3 @@ { "copyright": "Ben Atkin" -} \ No newline at end of file +} diff --git a/users/batu.json b/users/batu.json index 3b2307ca..e4cc2882 100644 --- a/users/batu.json +++ b/users/batu.json @@ -2,4 +2,4 @@ "copyright": "Batuhan Icoz, http://batu.me/1", "url": "http://batu.me/1", "email": "i@batu.me" -} \ No newline at end of file +} diff --git a/users/bauglir.json b/users/bauglir.json index 5526a46d..7a67a421 100644 --- a/users/bauglir.json +++ b/users/bauglir.json @@ -3,4 +3,4 @@ "url": "https://majorfail.com", "email": "joris@majorfail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/bazilio.json b/users/bazilio.json index 6bbb5623..c72e2817 100644 --- a/users/bazilio.json +++ b/users/bazilio.json @@ -4,4 +4,4 @@ "format": "txt", "gravatar": false, "theme": "plaintext" -} \ No newline at end of file +} diff --git a/users/bbuecherl.json b/users/bbuecherl.json index 4c0fa1e7..1853bb29 100644 --- a/users/bbuecherl.json +++ b/users/bbuecherl.json @@ -4,4 +4,4 @@ "email": "bernhard.buecherl@gmail.com", "theme": "friendly", "gravatar": true -} \ No newline at end of file +} diff --git a/users/bcse.json b/users/bcse.json index c0be33a8..d991f2ee 100644 --- a/users/bcse.json +++ b/users/bcse.json @@ -2,4 +2,4 @@ "copyright": "Grey Lee, http://bcse.tw", "url": "http://bcse.tw", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/bdukes.json b/users/bdukes.json index 7dcfa674..0fb42517 100644 --- a/users/bdukes.json +++ b/users/bdukes.json @@ -1,4 +1,4 @@ { "copyright": "Brian Dukes", "email": "dukes.brian@gmail.com" -} \ No newline at end of file +} diff --git a/users/bear.json b/users/bear.json index eb02d171..bf47317a 100644 --- a/users/bear.json +++ b/users/bear.json @@ -3,4 +3,4 @@ "url": "http://www.bearbin.net", "email": "bearbin@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/becevka.json b/users/becevka.json index 17a72e88..f220bc17 100644 --- a/users/becevka.json +++ b/users/becevka.json @@ -4,4 +4,4 @@ "email": "wolf@becevka.com", "gravatar": true, "theme": "dusk" -} \ No newline at end of file +} diff --git a/users/bee.json b/users/bee.json index aa175102..ff0afbf5 100644 --- a/users/bee.json +++ b/users/bee.json @@ -2,4 +2,4 @@ "copyright": "Songbee", "url": "http://songbee.net", "email": "hi@songbee.net" -} \ No newline at end of file +} diff --git a/users/beedaan.json b/users/beedaan.json index e5856267..d369bf9a 100644 --- a/users/beedaan.json +++ b/users/beedaan.json @@ -3,4 +3,4 @@ "url": "http://bheussler.name", "email": "bheussler@gmail.com", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/beingtomgreen.json b/users/beingtomgreen.json index f1e354e2..64a877a6 100644 --- a/users/beingtomgreen.json +++ b/users/beingtomgreen.json @@ -3,4 +3,4 @@ "url": "http://beingtomgreen.com", "email": "tom@beingtomgreen.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/beintoo.json b/users/beintoo.json index 84741cd1..591ae64c 100644 --- a/users/beintoo.json +++ b/users/beintoo.json @@ -2,4 +2,4 @@ "copyright": "Beintoo", "url": "http://www.beintoo.com/", "theme": "material-light-green" -} \ No newline at end of file +} diff --git a/users/belldandu.json b/users/belldandu.json index 63fc91a7..561ebfb3 100644 --- a/users/belldandu.json +++ b/users/belldandu.json @@ -3,4 +3,4 @@ "url": "http://ilp.moe", "email": "kami@ilp.moe", "format": "html" -} \ No newline at end of file +} diff --git a/users/beloi.json b/users/beloi.json index 019a3cc5..9e1a5be1 100644 --- a/users/beloi.json +++ b/users/beloi.json @@ -1,4 +1,4 @@ { "copyright": "Beloi Ignacio", "format": "txt" -} \ No newline at end of file +} diff --git a/users/ben.json b/users/ben.json index 05b52a49..e2a67f0c 100644 --- a/users/ben.json +++ b/users/ben.json @@ -1,3 +1,3 @@ { "copyright": "Ben Smithett" -} \ No newline at end of file +} diff --git a/users/benatkin.json b/users/benatkin.json index 6d8adb1c..89401f24 100644 --- a/users/benatkin.json +++ b/users/benatkin.json @@ -1,3 +1,3 @@ { "copyright": "Ben Atkin" -} \ No newline at end of file +} diff --git a/users/benbarber.json b/users/benbarber.json index 7aec9f7e..b90fac7f 100644 --- a/users/benbarber.json +++ b/users/benbarber.json @@ -1,4 +1,4 @@ { "copyright": "Benjamin Barber", "theme": "plaintext" -} \ No newline at end of file +} diff --git a/users/benizi.json b/users/benizi.json index 153fbb33..f32f8b5a 100644 --- a/users/benizi.json +++ b/users/benizi.json @@ -1,4 +1,4 @@ { "copyright": "Benjamin R. Haskell", "email": "mit-license@benizi.com" -} \ No newline at end of file +} diff --git a/users/benjie.json b/users/benjie.json index 42566e77..9515e1d7 100644 --- a/users/benjie.json +++ b/users/benjie.json @@ -1,3 +1,3 @@ { "copyright": "Benjie Gillam" -} \ No newline at end of file +} diff --git a/users/benniemosher.json b/users/benniemosher.json index 43e1b0a3..5692e8f4 100644 --- a/users/benniemosher.json +++ b/users/benniemosher.json @@ -1,3 +1,3 @@ { "copyright": "Bennie Mosher" -} \ No newline at end of file +} diff --git a/users/bensarmiento.json b/users/bensarmiento.json index 4681a5dd..2275fad9 100644 --- a/users/bensarmiento.json +++ b/users/bensarmiento.json @@ -3,4 +3,4 @@ "url": "http://bensarmiento.com", "email": "me@bensarmiento.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/benspotatoes.json b/users/benspotatoes.json index 0b855c77..79a6caee 100644 --- a/users/benspotatoes.json +++ b/users/benspotatoes.json @@ -3,4 +3,4 @@ "url": "http://benspotatoes.com", "email": "benspotatoes@gmail.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/berbaquero.json b/users/berbaquero.json index fd9ce0bd..07f0c704 100644 --- a/users/berbaquero.json +++ b/users/berbaquero.json @@ -1,3 +1,3 @@ { "copyright": "Bernardo Baquero Stand" -} \ No newline at end of file +} diff --git a/users/berngfilho.json b/users/berngfilho.json index 7eec071c..71dc55bd 100644 --- a/users/berngfilho.json +++ b/users/berngfilho.json @@ -3,4 +3,4 @@ "url": "http://bernardogfilho.github.io", "email": "bernardogfilho@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/bescott.json b/users/bescott.json index 1a03452f..914ee0ab 100644 --- a/users/bescott.json +++ b/users/bescott.json @@ -3,4 +3,4 @@ "url": "http://bescott.org", "email": "bescott@andrew.cmu.edu", "theme": "default-dark" -} \ No newline at end of file +} diff --git a/users/beshr.json b/users/beshr.json index e40d2034..e8dd2c02 100644 --- a/users/beshr.json +++ b/users/beshr.json @@ -2,4 +2,4 @@ "copyright": "Beshr Kayali, http://beshr.com", "url": "http://beshr.com", "email": "me@beshr.com" -} \ No newline at end of file +} diff --git a/users/besson.json b/users/besson.json index e7952e8c..08f0e10f 100644 --- a/users/besson.json +++ b/users/besson.json @@ -4,4 +4,4 @@ "email": "besson at crans dot org", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/bethanyr.json b/users/bethanyr.json index 1dc1fba3..dec54b69 100644 --- a/users/bethanyr.json +++ b/users/bethanyr.json @@ -3,4 +3,4 @@ "url": "http:http://www.bethanyrentz.com", "email": "bethany.rentz@hotmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/betomuniz.json b/users/betomuniz.json index 01a88f42..45a70c00 100644 --- a/users/betomuniz.json +++ b/users/betomuniz.json @@ -1,3 +1,3 @@ { "copyright": "Beto Muniz" -} \ No newline at end of file +} diff --git a/users/beyondweb.json b/users/beyondweb.json index 8e7199ad..a03bb3b7 100644 --- a/users/beyondweb.json +++ b/users/beyondweb.json @@ -1,4 +1,4 @@ { "copyright": "BeyondWEB", "url": "http://beyondweb.co.za" -} \ No newline at end of file +} diff --git a/users/bezoerb.json b/users/bezoerb.json index 189cb734..235a236f 100644 --- a/users/bezoerb.json +++ b/users/bezoerb.json @@ -1,4 +1,4 @@ { "copyright": "Ben Zörb", "email": "ben@sommerlaune.com" -} \ No newline at end of file +} diff --git a/users/bfoxwell.json b/users/bfoxwell.json index 029ebf72..85109428 100644 --- a/users/bfoxwell.json +++ b/users/bfoxwell.json @@ -1,3 +1,3 @@ { "copyright": "Brian Foxwell" -} \ No newline at end of file +} diff --git a/users/bh.json b/users/bh.json index 218eb664..ece8dbd0 100644 --- a/users/bh.json +++ b/users/bh.json @@ -3,4 +3,4 @@ "url": "http://baenziger-hug.com", "email": "oh@baenziger-hug.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/bharath063.json b/users/bharath063.json index 3b9b8c05..c988dada 100644 --- a/users/bharath063.json +++ b/users/bharath063.json @@ -1,3 +1,3 @@ { "copyright": "Bharath Balan" -} \ No newline at end of file +} diff --git a/users/bigab.json b/users/bigab.json index 2f36b329..81e6c42e 100644 --- a/users/bigab.json +++ b/users/bigab.json @@ -1,3 +1,3 @@ { "copyright": "Adam Barrett" -} \ No newline at end of file +} diff --git a/users/bih.json b/users/bih.json index a7c74e25..b4f5fde4 100644 --- a/users/bih.json +++ b/users/bih.json @@ -2,4 +2,4 @@ "copyright": "Bilawal Hameed", "url": "http://bilaw.al", "email": "me@bilaw.al" -} \ No newline at end of file +} diff --git a/users/bilger.json b/users/bilger.json index 1e2b4b68..fa2686ac 100644 --- a/users/bilger.json +++ b/users/bilger.json @@ -3,4 +3,4 @@ "url": "http://bilger.info", "email": "matthias@bilger.info", "format": "txt" -} \ No newline at end of file +} diff --git a/users/biomassives.json b/users/biomassives.json index 455d9e56..d8e0e63d 100644 --- a/users/biomassives.json +++ b/users/biomassives.json @@ -1,3 +1,3 @@ { "copyright": "Biomassives Group Ltd." -} \ No newline at end of file +} diff --git a/users/bipbop.json b/users/bipbop.json index 00b77e18..7c35b216 100644 --- a/users/bipbop.json +++ b/users/bipbop.json @@ -3,4 +3,4 @@ "url": "http://www.bipbop.com.br/", "email": "contato@bipbop.com.br", "format": "txt" -} \ No newline at end of file +} diff --git a/users/birdi.json b/users/birdi.json index d1a6345d..c147b8e9 100644 --- a/users/birdi.json +++ b/users/birdi.json @@ -4,4 +4,4 @@ "email": "birdicode@gmail.com", "format": "html", "theme": "xtansia" -} \ No newline at end of file +} diff --git a/users/birkof.json b/users/birkof.json index 389f3ae7..67279b4c 100644 --- a/users/birkof.json +++ b/users/birkof.json @@ -5,4 +5,4 @@ "email": "birkof@birkof.ro", "gravatar": true, "format": "html" -} \ No newline at end of file +} diff --git a/users/bitbonsai.json b/users/bitbonsai.json index 48aa74cf..b0b6ca7f 100644 --- a/users/bitbonsai.json +++ b/users/bitbonsai.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/bitmxittz.json b/users/bitmxittz.json index 82c0ba1c..1aacc32d 100644 --- a/users/bitmxittz.json +++ b/users/bitmxittz.json @@ -4,4 +4,4 @@ "email": "contact@bitmxittz.com", "theme": "flesch", "gravatar": true -} \ No newline at end of file +} diff --git a/users/bjeanes.json b/users/bjeanes.json index 20f3ad9b..994e6ad5 100644 --- a/users/bjeanes.json +++ b/users/bjeanes.json @@ -3,4 +3,4 @@ "url": "http://bjeanes.com", "email": "me@bjeanes.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/blacklite.json b/users/blacklite.json index 1724d244..37003046 100644 --- a/users/blacklite.json +++ b/users/blacklite.json @@ -4,4 +4,4 @@ "email": "david@blacklite.ca", "gravatar": true, "theme": "opensans" -} \ No newline at end of file +} diff --git a/users/blahah.json b/users/blahah.json index be9c57c1..ef7704ac 100644 --- a/users/blahah.json +++ b/users/blahah.json @@ -1,3 +1,3 @@ { "copyright": "Richard Smith-Unna" -} \ No newline at end of file +} diff --git a/users/blake.json b/users/blake.json index 2a332e55..e4e90246 100644 --- a/users/blake.json +++ b/users/blake.json @@ -3,4 +3,4 @@ "url": "http://blakeowens.com", "email": "blake@blakeowens.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/blaulan.json b/users/blaulan.json index 440882a2..ce968754 100644 --- a/users/blaulan.json +++ b/users/blaulan.json @@ -3,4 +3,4 @@ "url": "http://blaulan.com", "email": "me@blaulan.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/blazeworx.json b/users/blazeworx.json index 47eaf32b..35d68e94 100644 --- a/users/blazeworx.json +++ b/users/blazeworx.json @@ -3,4 +3,4 @@ "url": "http://blazeworx.com", "email": "alex@blazeworx.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/blim.json b/users/blim.json index 72f9c4f6..3e944450 100644 --- a/users/blim.json +++ b/users/blim.json @@ -1,3 +1,3 @@ { "copyright": "Koo Chi Hoon, http://i-blim.com/" -} \ No newline at end of file +} diff --git a/users/blitzkraft.json b/users/blitzkraft.json index 6d3df4db..b53c02af 100644 --- a/users/blitzkraft.json +++ b/users/blitzkraft.json @@ -3,4 +3,4 @@ "url": "http://blitzkraft.me", "email": "bk@blitzkraft.me", "theme": "default-dark" -} \ No newline at end of file +} diff --git a/users/blueberrystream.json b/users/blueberrystream.json index a5277d88..ac6270bb 100644 --- a/users/blueberrystream.json +++ b/users/blueberrystream.json @@ -4,4 +4,4 @@ "format": "html", "theme": "opensans", "gravatar": true -} \ No newline at end of file +} diff --git a/users/blueimp.json b/users/blueimp.json index f3325009..d687cd62 100644 --- a/users/blueimp.json +++ b/users/blueimp.json @@ -1,4 +1,4 @@ { "copyright": "Sebastian Tschan", "url": "https://blueimp.net" -} \ No newline at end of file +} diff --git a/users/blunderboy.json b/users/blunderboy.json index f9970127..84ba04f0 100644 --- a/users/blunderboy.json +++ b/users/blunderboy.json @@ -3,4 +3,4 @@ "email": "sachinjain024@gmail.com", "theme": "cherry", "format": "txt" -} \ No newline at end of file +} diff --git a/users/bmaeser.json b/users/bmaeser.json index 066cb2dd..8342dfc1 100644 --- a/users/bmaeser.json +++ b/users/bmaeser.json @@ -1,4 +1,4 @@ { "copyright": "Bernhard Mäser, http://bmaeser.io", "url": "http://bmaeser.io" -} \ No newline at end of file +} diff --git a/users/bmelton.json b/users/bmelton.json index 8fae896f..64c8926a 100644 --- a/users/bmelton.json +++ b/users/bmelton.json @@ -1,3 +1,3 @@ { "copyright": "Barry Melton" -} \ No newline at end of file +} diff --git a/users/bmintz.json b/users/bmintz.json index 1c49330d..85806c45 100644 --- a/users/bmintz.json +++ b/users/bmintz.json @@ -1,4 +1,4 @@ { "copyright": "Benjamin Mintz", "theme": "black-beauty" -} \ No newline at end of file +} diff --git a/users/boardintelligence.json b/users/boardintelligence.json index 4f42c6b1..126eefec 100644 --- a/users/boardintelligence.json +++ b/users/boardintelligence.json @@ -2,4 +2,4 @@ "copyright": "Board Intelligence", "url": "http://boardintelligence.co.uk", "email": "boardiq@boardintelligence.co.uk" -} \ No newline at end of file +} diff --git a/users/bobby-tables.json b/users/bobby-tables.json index 9b802cf3..d8340fb5 100644 --- a/users/bobby-tables.json +++ b/users/bobby-tables.json @@ -1,4 +1,4 @@ { "copyright": "Bobby Tables", "email": "bobby.tables@mailinator.com\">Little Bobby Tables" -} \ No newline at end of file +} diff --git a/users/davejustice.json b/users/davejustice.json index 7afbd8d7..bfd1527d 100644 --- a/users/davejustice.json +++ b/users/davejustice.json @@ -3,4 +3,4 @@ "url": "http://davejustice.com", "email": "davejustishh@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/daveross.json b/users/daveross.json index 257ab099..d434688c 100644 --- a/users/daveross.json +++ b/users/daveross.json @@ -3,4 +3,4 @@ "url": "http://davidmichaelross.com", "email": "dave@davidmichaelross.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/davestern.json b/users/davestern.json index 493aca2d..3156798b 100644 --- a/users/davestern.json +++ b/users/davestern.json @@ -3,4 +3,4 @@ "url": "https://github.com/davestern", "email": "dave@davestern.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/david.json b/users/david.json index 282039e7..9ac2e54b 100644 --- a/users/david.json +++ b/users/david.json @@ -1,3 +1,3 @@ { "copyright": "David Pennington " -} \ No newline at end of file +} diff --git a/users/davidcmoulton.json b/users/davidcmoulton.json index 5e480f02..476eaab4 100644 --- a/users/davidcmoulton.json +++ b/users/davidcmoulton.json @@ -1,4 +1,4 @@ { "copyright": "David Moulton", "theme": "afterdark" -} \ No newline at end of file +} diff --git a/users/davidgovea.json b/users/davidgovea.json index 7aa312e5..a095db33 100644 --- a/users/davidgovea.json +++ b/users/davidgovea.json @@ -3,4 +3,4 @@ "url": "https://github.com/davidgovea", "email": "govea.d@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/davidsonfellipe.json b/users/davidsonfellipe.json index ca679558..0439e08e 100644 --- a/users/davidsonfellipe.json +++ b/users/davidsonfellipe.json @@ -2,4 +2,4 @@ "copyright": "Davidson Fellipe", "url": "http://fellipe.com", "email": "email@fellipe.com" -} \ No newline at end of file +} diff --git a/users/davidzitting.json b/users/davidzitting.json index 9ead1b79..3774dbf2 100644 --- a/users/davidzitting.json +++ b/users/davidzitting.json @@ -4,4 +4,4 @@ "format": "html", "email": "davidzittingaccts1@gmail.com", "theme": "default" -} \ No newline at end of file +} diff --git a/users/daviesgeek.json b/users/daviesgeek.json index 20211abb..641d33c6 100644 --- a/users/daviesgeek.json +++ b/users/daviesgeek.json @@ -4,4 +4,4 @@ "theme": "double-windsor", "email": "matthew@daviesgeek.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/davisonio.json b/users/davisonio.json index 0a431d38..c95d4ded 100644 --- a/users/davisonio.json +++ b/users/davisonio.json @@ -3,4 +3,4 @@ "url": "https://davison.io", "email": "craig@davison.io", "format": "txt" -} \ No newline at end of file +} diff --git a/users/davoclavo.json b/users/davoclavo.json index 2996e07c..c11bd0be 100644 --- a/users/davoclavo.json +++ b/users/davoclavo.json @@ -1,3 +1,3 @@ { "copyright": "David Gómez Urquiza" -} \ No newline at end of file +} diff --git a/users/dawneraq.json b/users/dawneraq.json index ba6cbdf0..5af517e5 100644 --- a/users/dawneraq.json +++ b/users/dawneraq.json @@ -3,4 +3,4 @@ "url": "https://dawneraq.github.io", "email": "dawneraq@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/daxlab.json b/users/daxlab.json index 1620a85c..aae44d2d 100644 --- a/users/daxlab.json +++ b/users/daxlab.json @@ -4,4 +4,4 @@ "email": "mandeep25894@gmail.com", "theme": "material-green", "gravatar": true -} \ No newline at end of file +} diff --git a/users/dayflower.json b/users/dayflower.json index c6a73958..cc2a78d9 100644 --- a/users/dayflower.json +++ b/users/dayflower.json @@ -1,4 +1,4 @@ { "copyright": "dayflower", "gravatar": "true" -} \ No newline at end of file +} diff --git a/users/dayvsonlima.json b/users/dayvsonlima.json index 04d01e47..7332614b 100644 --- a/users/dayvsonlima.json +++ b/users/dayvsonlima.json @@ -2,4 +2,4 @@ "copyright": "Dayvson Lima", "email": "dayvsonlima31@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/dbohdan.json b/users/dbohdan.json index 90b9a321..f306803f 100644 --- a/users/dbohdan.json +++ b/users/dbohdan.json @@ -1,3 +1,3 @@ { "copyright": "Danyil Bohdan" -} \ No newline at end of file +} diff --git a/users/dcgauld.json b/users/dcgauld.json index a6f18dd3..0f465105 100644 --- a/users/dcgauld.json +++ b/users/dcgauld.json @@ -1,3 +1,3 @@ { "copyright": "David Gauld" -} \ No newline at end of file +} diff --git a/users/dch.json b/users/dch.json index 1108befc..f5f8fd16 100644 --- a/users/dch.json +++ b/users/dch.json @@ -3,4 +3,4 @@ "url": "http://jsonified.com", "email": "dch@jsonified.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/dcronkite.json b/users/dcronkite.json index f70409ee..8ea31b88 100644 --- a/users/dcronkite.json +++ b/users/dcronkite.json @@ -1,4 +1,4 @@ { "copyright": "David Cronkite", "format": "txt" -} \ No newline at end of file +} diff --git a/users/dcunited001.json b/users/dcunited001.json index 20c729e2..d1f40b59 100644 --- a/users/dcunited001.json +++ b/users/dcunited001.json @@ -5,4 +5,4 @@ "gravatar": "true", "url": "http://te.xel.io", "theme": "opensans" -} \ No newline at end of file +} diff --git a/users/dd.json b/users/dd.json index f03601ae..fab02452 100644 --- a/users/dd.json +++ b/users/dd.json @@ -1,3 +1,3 @@ { "copyright": "Dave Della Costa" -} \ No newline at end of file +} diff --git a/users/ddd.json b/users/ddd.json index dfd69c53..941ed326 100644 --- a/users/ddd.json +++ b/users/ddd.json @@ -3,4 +3,4 @@ "url": "http://deryldowney.com", "email": "ddd@deryldowney.com", "theme": "eula-modern" -} \ No newline at end of file +} diff --git a/users/ddeaguiar.json b/users/ddeaguiar.json index b5930fa0..005c2029 100644 --- a/users/ddeaguiar.json +++ b/users/ddeaguiar.json @@ -1,4 +1,4 @@ { "copyright": "Daniel De Aguiar", "format": "txt" -} \ No newline at end of file +} diff --git a/users/ddl1st.json b/users/ddl1st.json index d6a6f6c5..d674974f 100644 --- a/users/ddl1st.json +++ b/users/ddl1st.json @@ -3,4 +3,4 @@ "url": "http://ddl1st.github.com", "email": "looooooooooooooooooooooooooops@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/ddproxy.json b/users/ddproxy.json index d157dd95..cc0c96ac 100644 --- a/users/ddproxy.json +++ b/users/ddproxy.json @@ -3,4 +3,4 @@ "email": "ddproxy@gmail.com", "format": "html", "theme": "material-blue" -} \ No newline at end of file +} diff --git a/users/deacalion.json b/users/deacalion.json index 5068933f..73b0f620 100644 --- a/users/deacalion.json +++ b/users/deacalion.json @@ -4,4 +4,4 @@ "email": "matt@dirtymonkey.co.uk", "gravatar": true, "theme": "default dark" -} \ No newline at end of file +} diff --git a/users/deanlandolt.json b/users/deanlandolt.json index 7ae24946..3d7d94fe 100644 --- a/users/deanlandolt.json +++ b/users/deanlandolt.json @@ -3,4 +3,4 @@ "url": "http://deanlandolt.com", "email": "dean@deanlandolt.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/decached.json b/users/decached.json index 63b66a64..b01b90ea 100644 --- a/users/decached.json +++ b/users/decached.json @@ -1,3 +1,3 @@ { "copyright": "Akash Kothawale" -} \ No newline at end of file +} diff --git a/users/decklin.json b/users/decklin.json index f5dd8003..42afbbdd 100644 --- a/users/decklin.json +++ b/users/decklin.json @@ -1,3 +1,3 @@ { "copyright": "Decklin Foster" -} \ No newline at end of file +} diff --git a/users/deecewan.json b/users/deecewan.json index 0894e433..4bdc1aba 100644 --- a/users/deecewan.json +++ b/users/deecewan.json @@ -3,4 +3,4 @@ "email": "david.buchanswanson@gmail.com", "theme": "material-light-blue", "gravatar": true -} \ No newline at end of file +} diff --git a/users/deefour.json b/users/deefour.json index 76a9d472..96fecf2c 100644 --- a/users/deefour.json +++ b/users/deefour.json @@ -5,4 +5,4 @@ "format": "html", "gravater": true, "theme": "plaintext" -} \ No newline at end of file +} diff --git a/users/deepak.json b/users/deepak.json index 78ccf561..fd64720c 100644 --- a/users/deepak.json +++ b/users/deepak.json @@ -3,4 +3,4 @@ "url": "http://www.stramaxon.com/", "email": "depy45631@gmail.com", "theme": "solarized" -} \ No newline at end of file +} diff --git a/users/deeplysimple.json b/users/deeplysimple.json index a3c84866..f01b5ed7 100644 --- a/users/deeplysimple.json +++ b/users/deeplysimple.json @@ -2,4 +2,4 @@ "copyright": "Deeplysimple", "url": "http://deeplysimple.com", "email": "hello@deeplysimple.com" -} \ No newline at end of file +} diff --git a/users/definedcode.json b/users/definedcode.json index f1ee3cab..fcf3ef91 100644 --- a/users/definedcode.json +++ b/users/definedcode.json @@ -3,4 +3,4 @@ "url": "http://serverctrl.io", "email": "mail@definedcode.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/degree9.json b/users/degree9.json index cae5ec0d..fcab76b6 100644 --- a/users/degree9.json +++ b/users/degree9.json @@ -1,3 +1,3 @@ { "copyright": "Matthew Ratzke" -} \ No newline at end of file +} diff --git a/users/dehnavi.json b/users/dehnavi.json index e1eab0e9..8fc97c6c 100644 --- a/users/dehnavi.json +++ b/users/dehnavi.json @@ -4,4 +4,4 @@ "email": "hossein.dehnavy@gmail.com", "theme": "open-sans", "gravatar": true -} \ No newline at end of file +} diff --git a/users/deif.json b/users/deif.json index 35622a98..c34937aa 100644 --- a/users/deif.json +++ b/users/deif.json @@ -1,4 +1,4 @@ { "copyright": "David Fisher-Moreau", "email": "deiform87@gmail.com" -} \ No newline at end of file +} diff --git a/users/deirdre.json b/users/deirdre.json index bd7f0a3b..a23bde4f 100644 --- a/users/deirdre.json +++ b/users/deirdre.json @@ -3,4 +3,4 @@ "url": "http://deirdreallison.com", "email": "deirdre9@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/dejal.json b/users/dejal.json index 019a5248..519d6f1a 100644 --- a/users/dejal.json +++ b/users/dejal.json @@ -1,4 +1,4 @@ { "copyright": "Dejal Systems, LLC, http://www.dejal.com/developer/", "url": "http://www.dejal.com/developer/" -} \ No newline at end of file +} diff --git a/users/dejay.json b/users/dejay.json index 428e4717..692ed4d6 100644 --- a/users/dejay.json +++ b/users/dejay.json @@ -2,4 +2,4 @@ "copyright": "David Heaney", "url": "http://dejayheaney.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/delicatebits.json b/users/delicatebits.json index 91611e78..6606fb15 100644 --- a/users/delicatebits.json +++ b/users/delicatebits.json @@ -2,4 +2,4 @@ "copyright": "delicatebits", "url": "https://github.com/delicatebits", "theme": "xtansia" -} \ No newline at end of file +} diff --git a/users/delorean.json b/users/delorean.json index 3d1a8db4..f14ab902 100644 --- a/users/delorean.json +++ b/users/delorean.json @@ -3,4 +3,4 @@ "url": "http://deloreanjs.org", "email": "fka@fatihak.in", "format": "txt" -} \ No newline at end of file +} diff --git a/users/delphidabbler.json b/users/delphidabbler.json index f6e19003..19615012 100644 --- a/users/delphidabbler.json +++ b/users/delphidabbler.json @@ -3,4 +3,4 @@ "url": "http://delphidabbler.com/", "format": "text", "version": "fdcf640" -} \ No newline at end of file +} diff --git a/users/denbuzze.json b/users/denbuzze.json index 92c85455..31df92f0 100644 --- a/users/denbuzze.json +++ b/users/denbuzze.json @@ -1,3 +1,3 @@ { "copyright": "Christian Vuerings" -} \ No newline at end of file +} diff --git a/users/denis.json b/users/denis.json index 6551e8ed..017a90be 100644 --- a/users/denis.json +++ b/users/denis.json @@ -1,3 +1,3 @@ { "copyright": "Denis Ciccale" -} \ No newline at end of file +} diff --git a/users/denji.json b/users/denji.json index 52c91fcb..e1e5e06a 100644 --- a/users/denji.json +++ b/users/denji.json @@ -5,4 +5,4 @@ "gravatar": true, "theme": "opensans", "url": "https://github.com/denji" -} \ No newline at end of file +} diff --git a/users/derek-palmer.json b/users/derek-palmer.json index a7fe52a0..455f21e1 100644 --- a/users/derek-palmer.json +++ b/users/derek-palmer.json @@ -4,4 +4,4 @@ "theme": "material-light-blue", "email": "dpalmerdev@gmail.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/derekahmedzai.json b/users/derekahmedzai.json index d42151fe..82a78fad 100644 --- a/users/derekahmedzai.json +++ b/users/derekahmedzai.json @@ -2,4 +2,4 @@ "copyright": "Derek Ahmedzai", "url": "http://www.sharpshooter.org", "email": "derek@sharpshooter.org" -} \ No newline at end of file +} diff --git a/users/desandro.json b/users/desandro.json index a10eab0d..a710adad 100644 --- a/users/desandro.json +++ b/users/desandro.json @@ -2,4 +2,4 @@ "copyright": "David DeSandro", "url": "http://desandro.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/designa.json b/users/designa.json index 754736c5..9be35abd 100644 --- a/users/designa.json +++ b/users/designa.json @@ -3,4 +3,4 @@ "url": "http://designa.com.br", "email": "contato@designa.com.br", "format": "txt" -} \ No newline at end of file +} diff --git a/users/deuxhuithuit.json b/users/deuxhuithuit.json index ab97d280..0084ab49 100644 --- a/users/deuxhuithuit.json +++ b/users/deuxhuithuit.json @@ -3,4 +3,4 @@ "url": "https://deuxhuithuit.com", "theme": "flesch", "gravatar": true -} \ No newline at end of file +} diff --git a/users/dev-dipesh.json b/users/dev-dipesh.json index 2ae60c46..e581f663 100644 --- a/users/dev-dipesh.json +++ b/users/dev-dipesh.json @@ -4,4 +4,4 @@ "url": "http://in.linkedin.com/in/devdipesh/", "theme": "silver-style", "gravatar": true -} \ No newline at end of file +} diff --git a/users/dev.json b/users/dev.json index f7bc4359..bcbe9712 100644 --- a/users/dev.json +++ b/users/dev.json @@ -2,4 +2,4 @@ "copyright": "Koło Naukowe >DEV", "url": "http://dev.uek.krakow.pl", "email": "dev@uek.krakow.pl" -} \ No newline at end of file +} diff --git a/users/devan.json b/users/devan.json index ba5880ce..c46d651f 100644 --- a/users/devan.json +++ b/users/devan.json @@ -1,4 +1,4 @@ { "copyright": "Devan Carpenter", "email": "devanc@gmail.com" -} \ No newline at end of file +} diff --git a/users/devgru.json b/users/devgru.json index 73ebaeb9..e70eb4ad 100644 --- a/users/devgru.json +++ b/users/devgru.json @@ -2,4 +2,4 @@ "copyright": "Dmitriy Semyushkin, https://devg.ru", "url": "https://devg.ru", "email": "git@devg.ru" -} \ No newline at end of file +} diff --git a/users/devin.json b/users/devin.json index c5ced2fb..a7610d1a 100644 --- a/users/devin.json +++ b/users/devin.json @@ -2,4 +2,4 @@ "copyright": "Devin Smith", "url": "http://devinrsmith.com", "email": "devinrsmith@protonmail.com" -} \ No newline at end of file +} diff --git a/users/devinus.json b/users/devinus.json index 26c45941..ae9521ad 100644 --- a/users/devinus.json +++ b/users/devinus.json @@ -3,4 +3,4 @@ "url": "http://devintorr.es/", "email": "devin@devintorr.es", "format": "txt" -} \ No newline at end of file +} diff --git a/users/devssay.json b/users/devssay.json index b8c6c178..259fc38c 100644 --- a/users/devssay.json +++ b/users/devssay.json @@ -2,4 +2,4 @@ "copyright": "Seokmoon Jang, http://drssay.com/", "url": "http://drssay.com", "theme": "afterdark" -} \ No newline at end of file +} diff --git a/users/dexafree.json b/users/dexafree.json index 1a4fb20b..a02109b2 100644 --- a/users/dexafree.json +++ b/users/dexafree.json @@ -1,3 +1,3 @@ { "copyright": "Dexafree" -} \ No newline at end of file +} diff --git a/users/dexterind.json b/users/dexterind.json index d29184d9..5aecbe1d 100644 --- a/users/dexterind.json +++ b/users/dexterind.json @@ -3,4 +3,4 @@ "url": "https://dexterindustries.com", "email": "support@dexterindustries.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/deyvisonrocha.json b/users/deyvisonrocha.json index af07b74d..56c97a25 100644 --- a/users/deyvisonrocha.json +++ b/users/deyvisonrocha.json @@ -2,4 +2,4 @@ "copyright": "Deyvison Rocha", "url": "http://deyvison.me", "email": "deyvison@gmail.com" -} \ No newline at end of file +} diff --git a/users/dgoodlad.json b/users/dgoodlad.json index ca6916c3..6e46d73c 100644 --- a/users/dgoodlad.json +++ b/users/dgoodlad.json @@ -2,4 +2,4 @@ "copyright": "David Goodlad", "url": "http://d.goodlad.net/", "email": "david@goodlad.net" -} \ No newline at end of file +} diff --git a/users/dgt.json b/users/dgt.json index a08ca7c1..f621db94 100644 --- a/users/dgt.json +++ b/users/dgt.json @@ -3,4 +3,4 @@ "email": "danielgtaylor@gmail.com", "gravatar": true, "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/dh.json b/users/dh.json index e11c707d..6807c143 100644 --- a/users/dh.json +++ b/users/dh.json @@ -3,4 +3,4 @@ "url": "http://danielhonies.me", "email": "daniel.honies@gmail.com", "theme": "material-red" -} \ No newline at end of file +} diff --git a/users/dhainzl.json b/users/dhainzl.json index 62fff2b8..e468ae50 100644 --- a/users/dhainzl.json +++ b/users/dhainzl.json @@ -4,4 +4,4 @@ "email": "david@dhainzl.at", "gravatar": true, "theme": "material-deep-orange" -} \ No newline at end of file +} diff --git a/users/dhaval.json b/users/dhaval.json index 6cd9d695..541960bb 100644 --- a/users/dhaval.json +++ b/users/dhaval.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "rokkitt" -} \ No newline at end of file +} diff --git a/users/dhavalkapil.json b/users/dhavalkapil.json index 6cd9d695..541960bb 100644 --- a/users/dhavalkapil.json +++ b/users/dhavalkapil.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "rokkitt" -} \ No newline at end of file +} diff --git a/users/dhawal.json b/users/dhawal.json index cfd8a7e2..d6bfd23c 100644 --- a/users/dhawal.json +++ b/users/dhawal.json @@ -5,4 +5,4 @@ "gravatar": true, "format": "html", "theme": "dusk" -} \ No newline at end of file +} diff --git a/users/dhuyy.json b/users/dhuyy.json index ab8835ae..9ae55c57 100644 --- a/users/dhuyy.json +++ b/users/dhuyy.json @@ -2,4 +2,4 @@ "copyright": "Vandhuy Martins", "url": "http://dhuymartins.com.br", "email": "vandhuy@gmail.com" -} \ No newline at end of file +} diff --git a/users/dhyegofernando.json b/users/dhyegofernando.json index 31f478a8..6894ea98 100644 --- a/users/dhyegofernando.json +++ b/users/dhyegofernando.json @@ -4,4 +4,4 @@ "email": "dhyegofernando@gmail.com", "gravatar": true, "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/diadatp.json b/users/diadatp.json index 7a902c93..f0ad7f12 100644 --- a/users/diadatp.json +++ b/users/diadatp.json @@ -2,4 +2,4 @@ "copyright": "Bittu N", "url": "http://diadatp.com", "email": "admin@diadatp.com" -} \ No newline at end of file +} diff --git a/users/diessica.json b/users/diessica.json index e0fd5a0d..e71dfe4d 100644 --- a/users/diessica.json +++ b/users/diessica.json @@ -4,4 +4,4 @@ "email": "diessicode@gmail.com", "theme": "double-windsor", "gravatar": true -} \ No newline at end of file +} diff --git a/users/digipars.json b/users/digipars.json index 602b170f..beb43adc 100644 --- a/users/digipars.json +++ b/users/digipars.json @@ -4,4 +4,4 @@ "format": "html", "gravatar": false, "theme": "plaintext" -} \ No newline at end of file +} diff --git a/users/digitalnatives.json b/users/digitalnatives.json index 35a4ffad..0a67e6ff 100644 --- a/users/digitalnatives.json +++ b/users/digitalnatives.json @@ -1,4 +1,4 @@ { "copyright": "Digital Natives", "url": "http://digitalnatives.hu/" -} \ No newline at end of file +} diff --git a/users/dimakovalevskyi.json b/users/dimakovalevskyi.json index 0b8e8a4e..54de8412 100644 --- a/users/dimakovalevskyi.json +++ b/users/dimakovalevskyi.json @@ -4,4 +4,4 @@ "url": "https://dimakovalevskyi.github.io", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/disposaboy.json b/users/disposaboy.json index 76790f14..8b0eeded 100644 --- a/users/disposaboy.json +++ b/users/disposaboy.json @@ -3,4 +3,4 @@ "url": "http://gosublime.org/", "email": "disposaboy@dby.me", "format": "txt" -} \ No newline at end of file +} diff --git a/users/dissimile.json b/users/dissimile.json index 7be01e2e..58a15188 100644 --- a/users/dissimile.json +++ b/users/dissimile.json @@ -3,4 +3,4 @@ "url": "http://www.thisishugo.com", "email": "me@thisishugo.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/diti.json b/users/diti.json index 4e81180a..c12f05be 100644 --- a/users/diti.json +++ b/users/diti.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "hipster-gray" -} \ No newline at end of file +} diff --git a/users/divyanshu.json b/users/divyanshu.json index a6de46d0..9c1f9b0c 100644 --- a/users/divyanshu.json +++ b/users/divyanshu.json @@ -5,4 +5,4 @@ "gravatar": true, "theme": "material-deep-orange", "format": "html" -} \ No newline at end of file +} diff --git a/users/djakobik.json b/users/djakobik.json index 20a047f6..1ef4013f 100644 --- a/users/djakobik.json +++ b/users/djakobik.json @@ -1,3 +1,3 @@ { "copyright": "David Jakobik" -} \ No newline at end of file +} diff --git a/users/djalmaaraujo.json b/users/djalmaaraujo.json index 72ad0fb6..f612bdb0 100644 --- a/users/djalmaaraujo.json +++ b/users/djalmaaraujo.json @@ -3,4 +3,4 @@ "url": "http://djalmaaraujo.github.io/", "email": "djalma.araujo@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/djdch.json b/users/djdch.json index 39460e10..17be6531 100644 --- a/users/djdch.json +++ b/users/djdch.json @@ -2,4 +2,4 @@ "copyright": "DjDCH", "url": "http://djdch.com/", "email": "coding@djdch.com" -} \ No newline at end of file +} diff --git a/users/djohnson.json b/users/djohnson.json index 3e88c423..5f18639a 100644 --- a/users/djohnson.json +++ b/users/djohnson.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": "true", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/dkiyatkin.json b/users/dkiyatkin.json index 64e1b8b4..47d6ca22 100644 --- a/users/dkiyatkin.json +++ b/users/dkiyatkin.json @@ -4,4 +4,4 @@ "email": "info@dkiyatkin.com", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/dlambert.json b/users/dlambert.json index ad552802..a17a6866 100644 --- a/users/dlambert.json +++ b/users/dlambert.json @@ -2,4 +2,4 @@ "copyright": "Derek J. Lambert", "url": "http://dereklambert.com", "email": "dlambert@dereklambert.com" -} \ No newline at end of file +} diff --git a/users/dlukov.json b/users/dlukov.json index 4ff1e896..2d746150 100644 --- a/users/dlukov.json +++ b/users/dlukov.json @@ -3,4 +3,4 @@ "url": "http://github.com/NeXTs", "email": "denismassters@gmail.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/dmcclccam.json b/users/dmcclccam.json index caa901eb..899cde0a 100644 --- a/users/dmcclccam.json +++ b/users/dmcclccam.json @@ -3,4 +3,4 @@ "url": "http://dmcclccam.com.br", "email": "danilo.moreira94@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/dmg.json b/users/dmg.json index 05bde92f..4ebca769 100644 --- a/users/dmg.json +++ b/users/dmg.json @@ -1,4 +1,4 @@ { "copyright": "Daniel M. Gehrlein", "url": "http://dmglab.de" -} \ No newline at end of file +} diff --git a/users/dmk.json b/users/dmk.json index e5af6b37..45e80b71 100644 --- a/users/dmk.json +++ b/users/dmk.json @@ -1,3 +1,3 @@ { "copyright": "Dominik Kukacka" -} \ No newline at end of file +} diff --git a/users/dmorrison42.json b/users/dmorrison42.json index 4d562d88..6388cc5c 100644 --- a/users/dmorrison42.json +++ b/users/dmorrison42.json @@ -1,3 +1,3 @@ { "copyright": "Daniel Morrison" -} \ No newline at end of file +} diff --git a/users/dn.json b/users/dn.json index 60364c7a..df1a8fb0 100644 --- a/users/dn.json +++ b/users/dn.json @@ -3,4 +3,4 @@ "format": "txt", "email": "davidjndev@gmail.com", "theme": "default" -} \ No newline at end of file +} diff --git a/users/dobtco.json b/users/dobtco.json index e010243b..a9c7e5a2 100644 --- a/users/dobtco.json +++ b/users/dobtco.json @@ -1,3 +1,3 @@ { "copyright": "Department of Better Technology" -} \ No newline at end of file +} diff --git a/users/dochang.json b/users/dochang.json index 5b37d9c8..b93f8c6d 100644 --- a/users/dochang.json +++ b/users/dochang.json @@ -2,4 +2,4 @@ "copyright": "ZHANG Weiyi", "url": "https://github.com/dochang", "email": "dochang@gmail.com" -} \ No newline at end of file +} diff --git a/users/dog2puppy.json b/users/dog2puppy.json index 2432162a..887fdc2d 100644 --- a/users/dog2puppy.json +++ b/users/dog2puppy.json @@ -5,4 +5,4 @@ "format": "html", "theme": "material-light-blue", "gravatar": true -} \ No newline at end of file +} diff --git a/users/dogan.json b/users/dogan.json index 8c76912e..401f6582 100644 --- a/users/dogan.json +++ b/users/dogan.json @@ -1,3 +1,3 @@ { "copyright": "Wojciech Dogan Doganowski" -} \ No newline at end of file +} diff --git a/users/doiio.json b/users/doiio.json index 4e81c969..21e3d4b3 100644 --- a/users/doiio.json +++ b/users/doiio.json @@ -1,3 +1,3 @@ { "copyright": "Open Access Dojo" -} \ No newline at end of file +} diff --git a/users/don.json b/users/don.json index c53cc5f5..3322911c 100644 --- a/users/don.json +++ b/users/don.json @@ -1,3 +1,3 @@ { "copyright": "Don Chea" -} \ No newline at end of file +} diff --git a/users/dongilbert.json b/users/dongilbert.json index 17a21735..28e58dbc 100644 --- a/users/dongilbert.json +++ b/users/dongilbert.json @@ -3,4 +3,4 @@ "url": "http://dongilbert.net", "email": "don@dongilbert.net", "format": "txt" -} \ No newline at end of file +} diff --git a/users/donortega.json b/users/donortega.json index e70684a3..ad832dff 100644 --- a/users/donortega.json +++ b/users/donortega.json @@ -1,4 +1,4 @@ { "copyright": "Don Ortega", "url": "http://donortega.com" -} \ No newline at end of file +} diff --git a/users/donoskaro.json b/users/donoskaro.json index d5d60ff6..b74cbfeb 100644 --- a/users/donoskaro.json +++ b/users/donoskaro.json @@ -5,4 +5,4 @@ "format": "html", "theme": "material-blue", "gravatar": true -} \ No newline at end of file +} diff --git a/users/doossy.json b/users/doossy.json index 1e13abeb..faf95ffe 100644 --- a/users/doossy.json +++ b/users/doossy.json @@ -3,4 +3,4 @@ "url": "http://www.doossy.com", "email": "it@doossy.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/dopppler.json b/users/dopppler.json index ec246b79..6c9cdb61 100644 --- a/users/dopppler.json +++ b/users/dopppler.json @@ -2,4 +2,4 @@ "copyright": "dopppler", "url": "https://github.com/dopppler", "email": "dopppler@foxmail.com" -} \ No newline at end of file +} diff --git a/users/dorian.json b/users/dorian.json index e5a06e04..a570e5e7 100644 --- a/users/dorian.json +++ b/users/dorian.json @@ -1,3 +1,3 @@ { "copyright": "Dorian Marié" -} \ No newline at end of file +} diff --git a/users/dotamir.json b/users/dotamir.json index 16734231..5d86dacc 100644 --- a/users/dotamir.json +++ b/users/dotamir.json @@ -3,4 +3,4 @@ "url": "http://dotam.ir", "email": "eslami.amir76@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/dougborg.json b/users/dougborg.json index 54b52a93..a67a2eb6 100644 --- a/users/dougborg.json +++ b/users/dougborg.json @@ -3,4 +3,4 @@ "url": "http://dougborg.org", "email": "dougborg@dougborg.org", "gravatar": true -} \ No newline at end of file +} diff --git a/users/dougneiner.json b/users/dougneiner.json index b2495e7e..2e94531e 100644 --- a/users/dougneiner.json +++ b/users/dougneiner.json @@ -1,4 +1,4 @@ { "copyright": "Doug Neiner, http://dougneiner.com", "url": "http://dougneiner.com" -} \ No newline at end of file +} diff --git a/users/dragonfly.json b/users/dragonfly.json index 67a7a8d6..bc4dcc40 100644 --- a/users/dragonfly.json +++ b/users/dragonfly.json @@ -1,3 +1,3 @@ { "copyright": "ISLE Consultants & the Dragonfly project" -} \ No newline at end of file +} diff --git a/users/dreams.json b/users/dreams.json index 513a13a3..c65c846f 100644 --- a/users/dreams.json +++ b/users/dreams.json @@ -1,4 +1,4 @@ { "copyright": "Dreams of .NET, http://www.dreamsof.net", "url": "http://www.dreamsof.net" -} \ No newline at end of file +} diff --git a/users/dreamysource.json b/users/dreamysource.json index 5181d71f..44c5707f 100644 --- a/users/dreamysource.json +++ b/users/dreamysource.json @@ -4,4 +4,4 @@ "email": "contact@dreamysource.fr", "gravatar": true, "theme": "friendly" -} \ No newline at end of file +} diff --git a/users/druznek.json b/users/druznek.json index 17f01cff..3015a186 100644 --- a/users/druznek.json +++ b/users/druznek.json @@ -1,4 +1,4 @@ { "copyright": "druzn3k", "format": "txt" -} \ No newline at end of file +} diff --git a/users/drzax.json b/users/drzax.json index 2acbe254..1936adec 100644 --- a/users/drzax.json +++ b/users/drzax.json @@ -3,4 +3,4 @@ "url": "http://elvery.net", "email": "simon@elvery.net", "format": "txt" -} \ No newline at end of file +} diff --git a/users/ds82.json b/users/ds82.json index 85aa1e62..2ba25db7 100644 --- a/users/ds82.json +++ b/users/ds82.json @@ -3,4 +3,4 @@ "url": "http://dennis.io", "email": "mit-license@mail.ds82.de", "format": "txt" -} \ No newline at end of file +} diff --git a/users/dsc.json b/users/dsc.json index 2ac8ec42..ed303af4 100644 --- a/users/dsc.json +++ b/users/dsc.json @@ -1,3 +1,3 @@ { "copyright": "David Alan Schoonover" -} \ No newline at end of file +} diff --git a/users/dsernst.json b/users/dsernst.json index 3687fac8..bb49253d 100644 --- a/users/dsernst.json +++ b/users/dsernst.json @@ -2,4 +2,4 @@ "copyright": "David Ernst", "url": "http://dsernst.com", "email": "david@dsernst.com" -} \ No newline at end of file +} diff --git a/users/dshaw.json b/users/dshaw.json index 919c9371..5f88d5a8 100644 --- a/users/dshaw.json +++ b/users/dshaw.json @@ -1,4 +1,4 @@ { "copyright": "Daniel D. Shaw", "url": "http://dshaw.com" -} \ No newline at end of file +} diff --git a/users/ducky.json b/users/ducky.json index a3bf11b0..ea71182d 100644 --- a/users/ducky.json +++ b/users/ducky.json @@ -4,4 +4,4 @@ "email": "ducky.vexton@outlook.com", "gravatar": true, "theme": "default" -} \ No newline at end of file +} diff --git a/users/duncanmcdougall.json b/users/duncanmcdougall.json index dfd18b4e..d8d7a857 100644 --- a/users/duncanmcdougall.json +++ b/users/duncanmcdougall.json @@ -3,4 +3,4 @@ "url": "http://www.duncanmcdougall.co.uk", "format": "html", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/dusong.json b/users/dusong.json index 256cdaa4..ab403a6d 100644 --- a/users/dusong.json +++ b/users/dusong.json @@ -3,4 +3,4 @@ "url": "http://rollingcode.org", "email": "freewizard@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/dva.json b/users/dva.json index 7a8f6105..37fe6192 100644 --- a/users/dva.json +++ b/users/dva.json @@ -3,4 +3,4 @@ "url": "http://2citizen.com", "email": "denisva@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/dvni.json b/users/dvni.json index d85f6183..e9ae623c 100644 --- a/users/dvni.json +++ b/users/dvni.json @@ -2,4 +2,4 @@ "copyright": "Daniel Pérez", "format": "html", "theme": "material-indigo" -} \ No newline at end of file +} diff --git a/users/dvrein.json b/users/dvrein.json index 29624ae5..757dd391 100644 --- a/users/dvrein.json +++ b/users/dvrein.json @@ -4,4 +4,4 @@ "gravatar": "false", "format": "html", "theme": "xtansia" -} \ No newline at end of file +} diff --git a/users/dwettstein.json b/users/dwettstein.json index d68aca5c..a7f356da 100644 --- a/users/dwettstein.json +++ b/users/dwettstein.json @@ -4,4 +4,4 @@ "theme": "default", "format": "txt", "gravatar": false -} \ No newline at end of file +} diff --git a/users/dwradcliffe.json b/users/dwradcliffe.json index 752a8126..8620f35f 100644 --- a/users/dwradcliffe.json +++ b/users/dwradcliffe.json @@ -1,4 +1,4 @@ { "copyright": "David Radcliffe, http://dwradcliffe.com", "url": "http://dwradcliffe.com" -} \ No newline at end of file +} diff --git a/users/dydx.json b/users/dydx.json index 1d0255e2..01405b9c 100644 --- a/users/dydx.json +++ b/users/dydx.json @@ -1,3 +1,3 @@ { "copyright": "Josh Sandlin" -} \ No newline at end of file +} diff --git a/users/dylanthomas.json b/users/dylanthomas.json index f11ec814..62d9904d 100644 --- a/users/dylanthomas.json +++ b/users/dylanthomas.json @@ -4,4 +4,4 @@ "url": "https://github.com/dylan93", "format": "html", "theme": "material-deep-purple" -} \ No newline at end of file +} diff --git a/users/dym.json b/users/dym.json index f3c0d25f..90d7f754 100644 --- a/users/dym.json +++ b/users/dym.json @@ -4,4 +4,4 @@ "email": "re@dym.sh", "theme": "hipster-gray", "gravatar": false -} \ No newline at end of file +} diff --git a/users/earaujoassis.json b/users/earaujoassis.json index 746dd6c8..47076e87 100644 --- a/users/earaujoassis.json +++ b/users/earaujoassis.json @@ -2,4 +2,4 @@ "copyright": "Ewerton Carlos Assis", "url": "http://quatrolabs.com/p/carlos", "email": "earaujoassis@gmail.com" -} \ No newline at end of file +} diff --git a/users/ebith.json b/users/ebith.json index e116a34f..d429aa82 100644 --- a/users/ebith.json +++ b/users/ebith.json @@ -1,3 +1,3 @@ { "copyright": "ebith" -} \ No newline at end of file +} diff --git a/users/echo.json b/users/echo.json index 2172dcb8..865905ac 100644 --- a/users/echo.json +++ b/users/echo.json @@ -2,4 +2,4 @@ "copyright": "ECHO Inc, http://www.echonet.org/", "url": "http://www.echonet.org/", "theme": "material-green" -} \ No newline at end of file +} diff --git a/users/eddiemonge.json b/users/eddiemonge.json index 65a44a06..b170e7cf 100644 --- a/users/eddiemonge.json +++ b/users/eddiemonge.json @@ -1,4 +1,4 @@ { "copyright": "Eddie Monge Jr., http://eddiemonge.com", "url": "http://eddiemonge.com" -} \ No newline at end of file +} diff --git a/users/eddywashere.json b/users/eddywashere.json index ead74fa9..7e475a44 100644 --- a/users/eddywashere.json +++ b/users/eddywashere.json @@ -3,4 +3,4 @@ "url": "http://eddywashere.com", "email": "edward.d.hernandez@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/ederribeiro.json b/users/ederribeiro.json index 3f5e8cd1..05cc9df8 100644 --- a/users/ederribeiro.json +++ b/users/ederribeiro.json @@ -4,4 +4,4 @@ "email": "eder@ederibeiro.com", "gravatar": true, "theme": "default-dark" -} \ No newline at end of file +} diff --git a/users/ederssouza.json b/users/ederssouza.json index 5c9001d5..aa01ee5e 100644 --- a/users/ederssouza.json +++ b/users/ederssouza.json @@ -4,4 +4,4 @@ "email": "eder@edersampaio.com.br", "gravatar": false, "theme": "default" -} \ No newline at end of file +} diff --git a/users/edferras.json b/users/edferras.json index e8c48719..3985fd81 100644 --- a/users/edferras.json +++ b/users/edferras.json @@ -2,4 +2,4 @@ "copyright": "Eduardo Ferras", "url": "https://github.com/edferras", "email": "edferras@gmail.com" -} \ No newline at end of file +} diff --git a/users/editorconfig.json b/users/editorconfig.json index ea0f3cda..14054f79 100644 --- a/users/editorconfig.json +++ b/users/editorconfig.json @@ -2,4 +2,4 @@ "copyright": "EditorConfig Team", "url": "http://editorconfig.org", "theme": "default" -} \ No newline at end of file +} diff --git a/users/edmondmajoriii.json b/users/edmondmajoriii.json index ac6b7a1c..b310f26d 100644 --- a/users/edmondmajoriii.json +++ b/users/edmondmajoriii.json @@ -4,4 +4,4 @@ "format": "html", "email": "spmediallc@gmail.com", "theme": "default" -} \ No newline at end of file +} diff --git a/users/edsurge.json b/users/edsurge.json index 05b6a210..a6cc4e34 100644 --- a/users/edsurge.json +++ b/users/edsurge.json @@ -1,3 +1,3 @@ { "copyright": "EdSurge, Inc." -} \ No newline at end of file +} diff --git a/users/eduan.json b/users/eduan.json index 49a03085..1c16b8e0 100644 --- a/users/eduan.json +++ b/users/eduan.json @@ -4,4 +4,4 @@ "email": "eduan@websharks-inc.com", "format": "html", "theme": "default" -} \ No newline at end of file +} diff --git a/users/eduardorabelo.json b/users/eduardorabelo.json index 805cc493..231c704e 100644 --- a/users/eduardorabelo.json +++ b/users/eduardorabelo.json @@ -4,4 +4,4 @@ "email": "oieduardorabelo@gmail.com", "gravatar": true, "theme": "default" -} \ No newline at end of file +} diff --git a/users/eduardostuart.json b/users/eduardostuart.json index a4d8ba4f..3eff6e13 100644 --- a/users/eduardostuart.json +++ b/users/eduardostuart.json @@ -4,4 +4,4 @@ "email": "hi@s.tuart.me", "format": "html", "theme": "afterdark" -} \ No newline at end of file +} diff --git a/users/eduncan911.json b/users/eduncan911.json index edbcf1d5..6fcda13a 100644 --- a/users/eduncan911.json +++ b/users/eduncan911.json @@ -4,4 +4,4 @@ "email": "copyright@eduncan911.com", "gravatar": true, "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/edvinas.json b/users/edvinas.json index eb134f03..cb72c59e 100644 --- a/users/edvinas.json +++ b/users/edvinas.json @@ -1,3 +1,3 @@ { "copyright": "Edvinas Jurevicius" -} \ No newline at end of file +} diff --git a/users/eek.json b/users/eek.json index d761889c..701ed59e 100644 --- a/users/eek.json +++ b/users/eek.json @@ -3,4 +3,4 @@ "url": "https://eek.ro", "email": "hello@eek.ro", "format": "txt" -} \ No newline at end of file +} diff --git a/users/eeleater.json b/users/eeleater.json index 2171269c..274552a0 100644 --- a/users/eeleater.json +++ b/users/eeleater.json @@ -1,3 +1,3 @@ { "copyright": "Nikolas Weger" -} \ No newline at end of file +} diff --git a/users/ef-labs.json b/users/ef-labs.json index 85e543f8..0664be22 100644 --- a/users/ef-labs.json +++ b/users/ef-labs.json @@ -3,4 +3,4 @@ "url": "https://www.ef.com", "email": "labs.oss@EF.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/efrainc.json b/users/efrainc.json index d4a2a49e..28c6408f 100644 --- a/users/efrainc.json +++ b/users/efrainc.json @@ -4,4 +4,4 @@ "email": "efrainc88@gmail.com", "gravatar": false, "theme": "solarized" -} \ No newline at end of file +} diff --git a/users/efrea2004k.json b/users/efrea2004k.json index 6a7ee9f4..77702d27 100644 --- a/users/efrea2004k.json +++ b/users/efrea2004k.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "blackwood" -} \ No newline at end of file +} diff --git a/users/efreak.json b/users/efreak.json index 95358936..6c6d6b43 100644 --- a/users/efreak.json +++ b/users/efreak.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "blackwood" -} \ No newline at end of file +} diff --git a/users/efreak2004.json b/users/efreak2004.json index 6a7ee9f4..77702d27 100644 --- a/users/efreak2004.json +++ b/users/efreak2004.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "blackwood" -} \ No newline at end of file +} diff --git a/users/efries.json b/users/efries.json index d7fb13c1..b96de1bc 100644 --- a/users/efries.json +++ b/users/efries.json @@ -1,3 +1,3 @@ { "copyright": "Ernesto Fries Urioste" -} \ No newline at end of file +} diff --git a/users/egeriis.json b/users/egeriis.json index 9b64a0f6..639f103d 100644 --- a/users/egeriis.json +++ b/users/egeriis.json @@ -3,4 +3,4 @@ "url": "http://egeriis.me", "email": "ronni@egeriis.me", "gravatar": "true" -} \ No newline at end of file +} diff --git a/users/eggforsale.json b/users/eggforsale.json index e8b6eff6..78ddcfa5 100644 --- a/users/eggforsale.json +++ b/users/eggforsale.json @@ -3,4 +3,4 @@ "url": "http://www.eggforsale.com", "email": "support@eggforsale.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/egoist.json b/users/egoist.json index e9e45070..276fe9c4 100644 --- a/users/egoist.json +++ b/users/egoist.json @@ -5,4 +5,4 @@ "url": "https://egoistian.com", "email": "0x142857@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/ehealthafrica.json b/users/ehealthafrica.json index c13a2adc..31596041 100644 --- a/users/ehealthafrica.json +++ b/users/ehealthafrica.json @@ -2,4 +2,4 @@ "copyright": "eHealth Africa", "url": "http://ehealthafrica.org", "email": "oss@ehealthafrica.org" -} \ No newline at end of file +} diff --git a/users/ehecatl.json b/users/ehecatl.json index 4d262cf4..6f201f5e 100644 --- a/users/ehecatl.json +++ b/users/ehecatl.json @@ -1,3 +1,3 @@ { "copyright": "Servicios de Software Ehecatl SA de CV" -} \ No newline at end of file +} diff --git a/users/ehsan.json b/users/ehsan.json index 77f4a358..8b128dce 100644 --- a/users/ehsan.json +++ b/users/ehsan.json @@ -4,4 +4,4 @@ "email": "ehsan.aghaeii@gmail.com", "format": "txt", "theme": "opensans" -} \ No newline at end of file +} diff --git a/users/eib.json b/users/eib.json index 539aaca1..b10a8e09 100644 --- a/users/eib.json +++ b/users/eib.json @@ -1,4 +1,4 @@ { "copyright": "Ethan Blackwelder, http://eblackwelder.com", "url": "http://eblackwelder.com" -} \ No newline at end of file +} diff --git a/users/einaru.json b/users/einaru.json index a2e250fe..1273bd9d 100644 --- a/users/einaru.json +++ b/users/einaru.json @@ -1,3 +1,3 @@ { "copyright": "Einar Uvsløkk" -} \ No newline at end of file +} diff --git a/users/ekamil.json b/users/ekamil.json index 858925f6..cf8264c4 100644 --- a/users/ekamil.json +++ b/users/ekamil.json @@ -1,3 +1,3 @@ { "copyright": "Kamil Essekkat" -} \ No newline at end of file +} diff --git a/users/ekin.json b/users/ekin.json index 12960cfe..0c5f3b8f 100644 --- a/users/ekin.json +++ b/users/ekin.json @@ -1,3 +1,3 @@ { "copyright": "Ekin Koc" -} \ No newline at end of file +} diff --git a/users/elegwance.json b/users/elegwance.json index 6d3e2744..2d4c1c9f 100644 --- a/users/elegwance.json +++ b/users/elegwance.json @@ -1,3 +1,3 @@ { "copyright": "Jae-Kwang Lee, http://elegwance.com" -} \ No newline at end of file +} diff --git a/users/elektronaut.json b/users/elektronaut.json index d7737792..89c20f46 100644 --- a/users/elektronaut.json +++ b/users/elektronaut.json @@ -1,4 +1,4 @@ { "copyright": "Inge Jørgensen", "url": "http://elektronaut.no" -} \ No newline at end of file +} diff --git a/users/eleven.json b/users/eleven.json index 0b174739..a37bd55e 100644 --- a/users/eleven.json +++ b/users/eleven.json @@ -2,4 +2,4 @@ "copyright": "Eleven Inc.", "url": "https://github.com/eleven", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/elgook.json b/users/elgook.json index fdd88a27..e2643b36 100644 --- a/users/elgook.json +++ b/users/elgook.json @@ -1,3 +1,3 @@ { "copyright": "elgook" -} \ No newline at end of file +} diff --git a/users/elifiner.json b/users/elifiner.json index 01bea0f6..03c791bf 100644 --- a/users/elifiner.json +++ b/users/elifiner.json @@ -3,4 +3,4 @@ "url": "http://elifiner.com", "email": "eli.finer@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/elim.json b/users/elim.json index 7bf3e850..50a81e6c 100644 --- a/users/elim.json +++ b/users/elim.json @@ -1,4 +1,4 @@ { "copyright": "Takeru Naito", "url": "https://github.com/elim" -} \ No newline at end of file +} diff --git a/users/elisaado.json b/users/elisaado.json index 6f68946c..5c8c280a 100644 --- a/users/elisaado.json +++ b/users/elisaado.json @@ -3,4 +3,4 @@ "url": "https://elisaado.com", "email": "eli5saado@gmail.com", "theme": "material-teal" -} \ No newline at end of file +} diff --git a/users/ellekasai.json b/users/ellekasai.json index da6f28e5..e3958bf7 100644 --- a/users/ellekasai.json +++ b/users/ellekasai.json @@ -1,3 +1,3 @@ { "copyright": "Elle Kasai" -} \ No newline at end of file +} diff --git a/users/elliotec.json b/users/elliotec.json index 9f20c04d..47bff1e3 100644 --- a/users/elliotec.json +++ b/users/elliotec.json @@ -1,3 +1,3 @@ { "copyright": "Michael Elliott" -} \ No newline at end of file +} diff --git a/users/ellis.json b/users/ellis.json index 120904af..f41f4e15 100644 --- a/users/ellis.json +++ b/users/ellis.json @@ -1,3 +1,3 @@ { "copyright": "Ellis Sharp" -} \ No newline at end of file +} diff --git a/users/elmer.json b/users/elmer.json index 7a14df44..b9bc86d0 100644 --- a/users/elmer.json +++ b/users/elmer.json @@ -4,4 +4,4 @@ "gravatar": true, "email": "elmer.delooff@gmail.com", "copyright": "Elmer de Looff" -} \ No newline at end of file +} diff --git a/users/elsknerd.json b/users/elsknerd.json index 3712458b..ac99ba2c 100644 --- a/users/elsknerd.json +++ b/users/elsknerd.json @@ -3,4 +3,4 @@ "url": "https://elsknerd.de", "theme": "dusk", "gravatar": true -} \ No newline at end of file +} diff --git a/users/elsmore.json b/users/elsmore.json index 17575b74..100de368 100644 --- a/users/elsmore.json +++ b/users/elsmore.json @@ -3,4 +3,4 @@ "url": "http://elsmore.me", "theme": "hipster-grey", "email": "mike@elsmore.me" -} \ No newline at end of file +} diff --git a/users/emabrey.json b/users/emabrey.json index 280531d4..3d1932f4 100644 --- a/users/emabrey.json +++ b/users/emabrey.json @@ -2,4 +2,4 @@ "copyright": "Emily Mabrey", "email": "emilymabrey93@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/emanuelpessoa.json b/users/emanuelpessoa.json index 753f9c72..7addd971 100644 --- a/users/emanuelpessoa.json +++ b/users/emanuelpessoa.json @@ -2,4 +2,4 @@ "copyright": "Emanuel Pessoa", "url": "http://emanuelpessoa.com.br", "email": "emanuelpessoaa@gmail.com" -} \ No newline at end of file +} diff --git a/users/emberads.json b/users/emberads.json index 1e5ba6bd..c7e0706c 100644 --- a/users/emberads.json +++ b/users/emberads.json @@ -1,4 +1,4 @@ { "copyright": "emberads ltd", "url": "http://emberads.com/" -} \ No newline at end of file +} diff --git a/users/emd.json b/users/emd.json index 1e5c3d21..715aa357 100644 --- a/users/emd.json +++ b/users/emd.json @@ -2,4 +2,4 @@ "copyright": "Erin Dalzell, http://thedalzells.org", "url": "http://thedalzells.org", "email": "erin@thedalzells.org" -} \ No newline at end of file +} diff --git a/users/emir.json b/users/emir.json index b8cc970f..6cca0045 100644 --- a/users/emir.json +++ b/users/emir.json @@ -4,4 +4,4 @@ "email": "emirkarsiyakali@gmail.com", "gravatar": true, "theme": "default" -} \ No newline at end of file +} diff --git a/users/emiw.json b/users/emiw.json index 807e5a94..3cd67901 100644 --- a/users/emiw.json +++ b/users/emiw.json @@ -3,4 +3,4 @@ "url": "http://emiw.xyz", "email": "emiw@emiw.xyz", "gravatar": true -} \ No newline at end of file +} diff --git a/users/emma.json b/users/emma.json index 6cc957ab..e7b9d998 100644 --- a/users/emma.json +++ b/users/emma.json @@ -1,3 +1,3 @@ { "copyright": "Emma Hardman" -} \ No newline at end of file +} diff --git a/users/emmanuel.json b/users/emmanuel.json index 909229ee..251c6092 100644 --- a/users/emmanuel.json +++ b/users/emmanuel.json @@ -1,3 +1,3 @@ { "copyright": "Emmanuel Gomez" -} \ No newline at end of file +} diff --git a/users/endel-test.json b/users/endel-test.json index 4aa0373e..2431376e 100644 --- a/users/endel-test.json +++ b/users/endel-test.json @@ -4,4 +4,4 @@ "email": "endel.dreyer@gmail.com", "theme": "flesch", "gravatar": true -} \ No newline at end of file +} diff --git a/users/endel.json b/users/endel.json index d6582c80..16cf402a 100644 --- a/users/endel.json +++ b/users/endel.json @@ -3,4 +3,4 @@ "url": "http://endel.me", "email": "endel.dreyer@gmail.com", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/ender.json b/users/ender.json index b2485a99..76584699 100644 --- a/users/ender.json +++ b/users/ender.json @@ -3,4 +3,4 @@ "url": "http://agamecoder.com", "email": "andrew.bowers@agamecoder.com", "theme": "afterdark" -} \ No newline at end of file +} diff --git a/users/endorama.json b/users/endorama.json index 7e8c2e83..fdd83682 100644 --- a/users/endorama.json +++ b/users/endorama.json @@ -2,4 +2,4 @@ "copyright": "Edoardo Tenani", "url": "http://about.me/edoardo.tenani", "gravatar": true -} \ No newline at end of file +} diff --git a/users/enfos.json b/users/enfos.json index 6851a1e4..6b932e23 100644 --- a/users/enfos.json +++ b/users/enfos.json @@ -5,4 +5,4 @@ "email": "shadi@enfos.com", "gravatar": true, "theme": "magic-mint" -} \ No newline at end of file +} diff --git a/users/englishtown.json b/users/englishtown.json index a409fc20..0a442c7a 100644 --- a/users/englishtown.json +++ b/users/englishtown.json @@ -3,4 +3,4 @@ "url": "http://englishtown.com", "email": "opensource@englishtown.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/enigmaticflare.json b/users/enigmaticflare.json index fe0f86a1..de451d1e 100644 --- a/users/enigmaticflare.json +++ b/users/enigmaticflare.json @@ -1,3 +1,3 @@ { "copyright": "Enigmatic Flare" -} \ No newline at end of file +} diff --git a/users/enov.json b/users/enov.json index 5140195e..40950098 100644 --- a/users/enov.json +++ b/users/enov.json @@ -1,3 +1,3 @@ { "copyright": "Samuel Demirdjian" -} \ No newline at end of file +} diff --git a/users/entist.json b/users/entist.json index 11c26feb..d936378a 100644 --- a/users/entist.json +++ b/users/entist.json @@ -1,3 +1,3 @@ { "copyright": "Aiden J Lee, http://entist.net/" -} \ No newline at end of file +} diff --git a/users/eoc-lover.json b/users/eoc-lover.json index 0c6abcb6..aa5ea3a4 100644 --- a/users/eoc-lover.json +++ b/users/eoc-lover.json @@ -1,3 +1,3 @@ { "copyright": "EOW Lover" -} \ No newline at end of file +} diff --git a/users/eoin.json b/users/eoin.json index aec64651..01ed027f 100644 --- a/users/eoin.json +++ b/users/eoin.json @@ -3,4 +3,4 @@ "url": "https://eoinobrien.me", "email": "eoinobrien910@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/erbesharat.json b/users/erbesharat.json index a6a14825..fc1975f0 100644 --- a/users/erbesharat.json +++ b/users/erbesharat.json @@ -5,4 +5,4 @@ "format": "txt", "gravatar": true, "theme": "willpower" -} \ No newline at end of file +} diff --git a/users/erbridge.json b/users/erbridge.json index f43ffab1..58d8d38d 100644 --- a/users/erbridge.json +++ b/users/erbridge.json @@ -1,3 +1,3 @@ { "copyright": "Felix Laurie von Massenbach" -} \ No newline at end of file +} diff --git a/users/ere.json b/users/ere.json index cb0844dc..4e2b9bf5 100644 --- a/users/ere.json +++ b/users/ere.json @@ -3,4 +3,4 @@ "url": "http://rarp.com", "email": "me@mysite.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/erfan.json b/users/erfan.json index cc457eb8..fcab8416 100644 --- a/users/erfan.json +++ b/users/erfan.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "willpower" -} \ No newline at end of file +} diff --git a/users/ericcristhiano.json b/users/ericcristhiano.json index c49e30db..f350620a 100644 --- a/users/ericcristhiano.json +++ b/users/ericcristhiano.json @@ -1,4 +1,4 @@ { "copyright": "Eric Cristhiano", "email": "ericcristhiano@gmail.com" -} \ No newline at end of file +} diff --git a/users/ericdouglas.json b/users/ericdouglas.json index 0cd5a351..817f4cf5 100644 --- a/users/ericdouglas.json +++ b/users/ericdouglas.json @@ -2,4 +2,4 @@ "copyright": "Eric Douglas", "url": "https://github.com/ericdouglas", "email": "eric.douglas.mail@gmail.com" -} \ No newline at end of file +} diff --git a/users/eriklindebratt.json b/users/eriklindebratt.json index ed639273..f2c7873d 100644 --- a/users/eriklindebratt.json +++ b/users/eriklindebratt.json @@ -2,4 +2,4 @@ "copyright": "Erik Lindebratt, https://twitter.com/eriklindebratt", "email": "erik.lindebratt@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/erikvorhes.json b/users/erikvorhes.json index 7528da17..2b1453ec 100644 --- a/users/erikvorhes.json +++ b/users/erikvorhes.json @@ -3,4 +3,4 @@ "url": "http://erikanderica.org/erik", "email": "erik@erikanderica.org", "format": "txt" -} \ No newline at end of file +} diff --git a/users/erkobridee.json b/users/erkobridee.json index a537b6dc..a33453ca 100644 --- a/users/erkobridee.json +++ b/users/erkobridee.json @@ -2,4 +2,4 @@ "copyright": "Erko Bridee de Almeida Cabrera, http://erkobridee.com", "url": "http://erkobridee.com", "email": "erko.bridee@gmail.com" -} \ No newline at end of file +} diff --git a/users/errordeveloper.json b/users/errordeveloper.json index 4735798a..06cfe63c 100644 --- a/users/errordeveloper.json +++ b/users/errordeveloper.json @@ -3,4 +3,4 @@ "url": "https://git.io/ilya.dmitrichenko", "email": "errordeveloper@gmail.com", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/estupendo.json b/users/estupendo.json index 12f6be9c..f3c38144 100644 --- a/users/estupendo.json +++ b/users/estupendo.json @@ -3,4 +3,4 @@ "url": "http://estupendo.net", "email": "jonas@estupendo.net", "format": "txt" -} \ No newline at end of file +} diff --git a/users/ether.json b/users/ether.json index bf87197c..72cbeb9e 100644 --- a/users/ether.json +++ b/users/ether.json @@ -2,4 +2,4 @@ "copyright": "Ether Creative", "url": "http://ethercreative.co.uk", "email": "hello@ethercreative.co.uk" -} \ No newline at end of file +} diff --git a/users/ethercycle.json b/users/ethercycle.json index 88edfc9f..cac55949 100644 --- a/users/ethercycle.json +++ b/users/ethercycle.json @@ -1,3 +1,3 @@ { "copyright": "Ethercycle" -} \ No newline at end of file +} diff --git a/users/evan.json b/users/evan.json index c628b484..b7a93a2c 100644 --- a/users/evan.json +++ b/users/evan.json @@ -1,3 +1,3 @@ { "copyright": "Thomas Evan Lecklider" -} \ No newline at end of file +} diff --git a/users/evansolomon.json b/users/evansolomon.json index 0d223937..05897e56 100644 --- a/users/evansolomon.json +++ b/users/evansolomon.json @@ -1,3 +1,3 @@ { "copyright": "Evan Solomon" -} \ No newline at end of file +} diff --git a/users/evenchange4.json b/users/evenchange4.json index d33c9ed4..8578c3e8 100644 --- a/users/evenchange4.json +++ b/users/evenchange4.json @@ -4,4 +4,4 @@ "email": "evenchange4@gmail.com", "format": "txt", "theme": "plaintext" -} \ No newline at end of file +} diff --git a/users/evenellie.json b/users/evenellie.json index f310cb67..cdb582d4 100644 --- a/users/evenellie.json +++ b/users/evenellie.json @@ -2,4 +2,4 @@ "copyright": "Ellen Musick", "email": "ellen.musick@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/evertton.json b/users/evertton.json index 967aedfb..d168499a 100644 --- a/users/evertton.json +++ b/users/evertton.json @@ -4,4 +4,4 @@ "format": "html", "gravatar": true, "theme": "friendly" -} \ No newline at end of file +} diff --git a/users/ew.json b/users/ew.json index d5ae5c82..98973863 100644 --- a/users/ew.json +++ b/users/ew.json @@ -2,4 +2,4 @@ "copyright": "Electric Wizardry, LLC", "url": "http://electric-wizardry.com", "theme": "silver-style" -} \ No newline at end of file +} diff --git a/users/ewafford.json b/users/ewafford.json index e8d4e349..aa409078 100644 --- a/users/ewafford.json +++ b/users/ewafford.json @@ -1,3 +1,3 @@ { "copyright": "Eric Wafford" -} \ No newline at end of file +} diff --git a/users/ewerton-araujo.json b/users/ewerton-araujo.json index cce4ccd4..cbd4e3b0 100644 --- a/users/ewerton-araujo.json +++ b/users/ewerton-araujo.json @@ -2,4 +2,4 @@ "copyright": "Ewerton Assis", "url": "http://ewerton-araujo.com", "email": "hey@ewerton-araujo.com" -} \ No newline at end of file +} diff --git a/users/example.json b/users/example.json index 7a916ba8..a585dad9 100644 --- a/users/example.json +++ b/users/example.json @@ -2,4 +2,4 @@ "//1": "Security holding user", "//2": "This user is being locked to allow for an example.", "locked": true -} \ No newline at end of file +} diff --git a/users/expbytes.json b/users/expbytes.json index 89627d8e..1ced7655 100644 --- a/users/expbytes.json +++ b/users/expbytes.json @@ -1,3 +1,3 @@ { "copyright": "ExpBytes Software" -} \ No newline at end of file +} diff --git a/users/eyecatchup.json b/users/eyecatchup.json index 82f2fc7c..7961a794 100644 --- a/users/eyecatchup.json +++ b/users/eyecatchup.json @@ -3,4 +3,4 @@ "url": "https://github.com/eyecatchup", "email": "eyecatchup@gmail.com", "theme": "default" -} \ No newline at end of file +} diff --git a/users/f.json b/users/f.json index d5b67222..f54a0b3f 100644 --- a/users/f.json +++ b/users/f.json @@ -2,4 +2,4 @@ "copyright": "Fatih Kadir Akin", "url": "http://fatihak.in", "email": "fka@fatihak.in" -} \ No newline at end of file +} diff --git a/users/fabdouglas.json b/users/fabdouglas.json index 3edc2686..00de6051 100644 --- a/users/fabdouglas.json +++ b/users/fabdouglas.json @@ -3,4 +3,4 @@ "email": "fabrice.daugan@gmail.com", "theme": "material-brown", "gravatar": true -} \ No newline at end of file +} diff --git a/users/fabian.json b/users/fabian.json index 124251cc..074f8904 100644 --- a/users/fabian.json +++ b/users/fabian.json @@ -3,4 +3,4 @@ "url": "https://fabianbeiner.de", "email": "fb@fabianbeiner.de", "format": "txt" -} \ No newline at end of file +} diff --git a/users/fabianbeiner.json b/users/fabianbeiner.json index 124251cc..074f8904 100644 --- a/users/fabianbeiner.json +++ b/users/fabianbeiner.json @@ -3,4 +3,4 @@ "url": "https://fabianbeiner.de", "email": "fb@fabianbeiner.de", "format": "txt" -} \ No newline at end of file +} diff --git a/users/fabianmoronzirfas.json b/users/fabianmoronzirfas.json index a72a9465..a2afe106 100644 --- a/users/fabianmoronzirfas.json +++ b/users/fabianmoronzirfas.json @@ -5,4 +5,4 @@ "email": "fabian.moron.zirfas@gmail.com", "gravatar": true, "theme": "default" -} \ No newline at end of file +} diff --git a/users/fabianperez.json b/users/fabianperez.json index 9208113e..633acdc9 100644 --- a/users/fabianperez.json +++ b/users/fabianperez.json @@ -1,3 +1,3 @@ { "copyright": "Fabian Perez" -} \ No newline at end of file +} diff --git a/users/fabiantheblind.json b/users/fabiantheblind.json index 7b61ef79..90a3d5ed 100644 --- a/users/fabiantheblind.json +++ b/users/fabiantheblind.json @@ -1,4 +1,4 @@ { "copyright": "Fabian Morón Zirfas", "format": "txt" -} \ No newline at end of file +} diff --git a/users/fabien.json b/users/fabien.json index 2981ab9d..5823adb7 100644 --- a/users/fabien.json +++ b/users/fabien.json @@ -1,3 +1,3 @@ { "copyright": "Fabien OCarroll" -} \ No newline at end of file +} diff --git a/users/fabioluciano.json b/users/fabioluciano.json index 6f7a777a..caf5c908 100644 --- a/users/fabioluciano.json +++ b/users/fabioluciano.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": "true", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/fabryz.json b/users/fabryz.json index b1e0e025..3541db15 100644 --- a/users/fabryz.json +++ b/users/fabryz.json @@ -1,3 +1,3 @@ { "copyright": "Fabrizio Codello" -} \ No newline at end of file +} diff --git a/users/facundofarias.json b/users/facundofarias.json index c08cd4e5..4a27d2fa 100644 --- a/users/facundofarias.json +++ b/users/facundofarias.json @@ -3,4 +3,4 @@ "url": "http://facundofarias.github.io/", "email": "facundo.farias@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/faeliaso.json b/users/faeliaso.json index bd50625a..fc10220f 100644 --- a/users/faeliaso.json +++ b/users/faeliaso.json @@ -1,3 +1,3 @@ { "copyright": "Elias de Oliveira" -} \ No newline at end of file +} diff --git a/users/fancyguy.json b/users/fancyguy.json index 19e02923..f55a284a 100644 --- a/users/fancyguy.json +++ b/users/fancyguy.json @@ -1,3 +1,3 @@ { "copyright": "FancyGuy Technologies" -} \ No newline at end of file +} diff --git a/users/fanestra.json b/users/fanestra.json index 49028b20..526c0a0d 100644 --- a/users/fanestra.json +++ b/users/fanestra.json @@ -2,4 +2,4 @@ "copyright": "Fanetra", "url": "http://fanestra.net", "email": "ops@fanestra.net" -} \ No newline at end of file +} diff --git a/users/fannheyward.json b/users/fannheyward.json index 5eca9827..626ae7f1 100644 --- a/users/fannheyward.json +++ b/users/fannheyward.json @@ -4,4 +4,4 @@ "email": "fannheyward@gmail.com", "format": "txt", "theme": "plaintext" -} \ No newline at end of file +} diff --git a/users/fauzism.json b/users/fauzism.json index 21d0786d..74210182 100644 --- a/users/fauzism.json +++ b/users/fauzism.json @@ -3,4 +3,4 @@ "url": "http://fauzism.com", "email": "yousuffauzan@gmail.com", "theme": "default" -} \ No newline at end of file +} diff --git a/users/fd.json b/users/fd.json index 2bd50abb..b3ffde09 100644 --- a/users/fd.json +++ b/users/fd.json @@ -2,4 +2,4 @@ "copyright": "Simon Menke", "url": "http://github.com/fd", "email": "simon.menke@gmail.com" -} \ No newline at end of file +} diff --git a/users/fdavidcl.json b/users/fdavidcl.json index 90b10b9d..1b345142 100644 --- a/users/fdavidcl.json +++ b/users/fdavidcl.json @@ -1,4 +1,4 @@ { "copyright": "David Charte", "url": "http://fdavidcl.me" -} \ No newline at end of file +} diff --git a/users/fefc.json b/users/fefc.json index aa5b1344..8223d404 100644 --- a/users/fefc.json +++ b/users/fefc.json @@ -1,3 +1,3 @@ { "copyright": "Front End Friends Club" -} \ No newline at end of file +} diff --git a/users/felipe.json b/users/felipe.json index f2cec2f4..c46d006b 100644 --- a/users/felipe.json +++ b/users/felipe.json @@ -1,4 +1,4 @@ { "copyright": "Felipe Marcos", "email": "hey@felipemarcos.com" -} \ No newline at end of file +} diff --git a/users/felipefialho.json b/users/felipefialho.json index fb22b41e..56c184b7 100644 --- a/users/felipefialho.json +++ b/users/felipefialho.json @@ -2,4 +2,4 @@ "copyright": "Felipe Fialho", "url": "http://www.felipefialho.com/", "email": "hi@felipefialho.com" -} \ No newline at end of file +} diff --git a/users/felix-schuetz.json b/users/felix-schuetz.json index 98d74012..5e90cd54 100644 --- a/users/felix-schuetz.json +++ b/users/felix-schuetz.json @@ -3,4 +3,4 @@ "url": "https://felix-schuetz.de", "email": "mail@felix-schuetz.de", "gravatar": true -} \ No newline at end of file +} diff --git a/users/felix.json b/users/felix.json index 1d822269..3a67106b 100644 --- a/users/felix.json +++ b/users/felix.json @@ -3,4 +3,4 @@ "url": "http://www.myriadvisuals.com", "email": "admin@myriadvisuals.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/felixsanz.json b/users/felixsanz.json index f444eb94..595a9242 100644 --- a/users/felixsanz.json +++ b/users/felixsanz.json @@ -5,4 +5,4 @@ "gravatar": true, "format": "html", "theme": "default" -} \ No newline at end of file +} diff --git a/users/fendi.json b/users/fendi.json index 3a3b1821..0405345d 100644 --- a/users/fendi.json +++ b/users/fendi.json @@ -4,4 +4,4 @@ "email": "kangfend@gmail.com", "gravatar": true, "theme": "material-light-blue" -} \ No newline at end of file +} diff --git a/users/fengmk2.json b/users/fengmk2.json index 2e87ce0e..3417e964 100644 --- a/users/fengmk2.json +++ b/users/fengmk2.json @@ -3,4 +3,4 @@ "url": "http://fengmk2.com", "email": "m@fengmk2.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/fenris-studios.json b/users/fenris-studios.json index 51ca0d87..5c4b5d30 100644 --- a/users/fenris-studios.json +++ b/users/fenris-studios.json @@ -3,4 +3,4 @@ "url": "http://fenris.io", "format": "html", "theme": "material-red" -} \ No newline at end of file +} diff --git a/users/feross.json b/users/feross.json index 78942306..40ff6d58 100644 --- a/users/feross.json +++ b/users/feross.json @@ -2,4 +2,4 @@ "copyright": "Feross Aboukhadijeh, http://feross.org", "url": "http://feross.org", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/ff.json b/users/ff.json index 1a376f83..64f3f8cc 100644 --- a/users/ff.json +++ b/users/ff.json @@ -1,3 +1,3 @@ { "copyright": "Florian Fida" -} \ No newline at end of file +} diff --git a/users/ffljjqbqvsywxqakpvdbwyqqyt.json b/users/ffljjqbqvsywxqakpvdbwyqqyt.json index a1ab0e28..6e038f4a 100644 --- a/users/ffljjqbqvsywxqakpvdbwyqqyt.json +++ b/users/ffljjqbqvsywxqakpvdbwyqqyt.json @@ -1,3 +1,3 @@ { "copyright": "ffljjqbqvsywxqakpvdbwyqqyt" -} \ No newline at end of file +} diff --git a/users/ffljjqbqvsywxqakpvdbwyqqytt.json b/users/ffljjqbqvsywxqakpvdbwyqqytt.json index f0b395ba..aab8435c 100644 --- a/users/ffljjqbqvsywxqakpvdbwyqqytt.json +++ b/users/ffljjqbqvsywxqakpvdbwyqqytt.json @@ -1,3 +1,3 @@ { "copyright": "ffljjqbqvsywxqakpvdbwyqqytt" -} \ No newline at end of file +} diff --git a/users/fgsdhkdfjghdksfgjsg.json b/users/fgsdhkdfjghdksfgjsg.json index fa03f181..1d684d1d 100644 --- a/users/fgsdhkdfjghdksfgjsg.json +++ b/users/fgsdhkdfjghdksfgjsg.json @@ -1,3 +1,3 @@ { "copyright": "Remy Sharp" -} \ No newline at end of file +} diff --git a/users/fh.json b/users/fh.json index a806fd0b..98423528 100644 --- a/users/fh.json +++ b/users/fh.json @@ -5,4 +5,4 @@ "format": "txt", "gravatar": true, "theme": "eula-modern" -} \ No newline at end of file +} diff --git a/users/fiber-miniapp.json b/users/fiber-miniapp.json index d74f4f8d..05fcc4ff 100644 --- a/users/fiber-miniapp.json +++ b/users/fiber-miniapp.json @@ -1,3 +1,3 @@ { "copyright": "RIKEN AICS" -} \ No newline at end of file +} diff --git a/users/fiber.json b/users/fiber.json index af794b3e..e6fb030d 100644 --- a/users/fiber.json +++ b/users/fiber.json @@ -1,3 +1,3 @@ { "copyright": "Sven Engelhardt" -} \ No newline at end of file +} diff --git a/users/fibo.json b/users/fibo.json index 9c54ce96..8aa2ef4b 100644 --- a/users/fibo.json +++ b/users/fibo.json @@ -1,4 +1,4 @@ { "copyright": "Gianluca Casati, http://g14n.info", "url": "http://g14n.info" -} \ No newline at end of file +} diff --git a/users/filepang.json b/users/filepang.json index e0bc2005..0998d116 100644 --- a/users/filepang.json +++ b/users/filepang.json @@ -1,3 +1,3 @@ { "copyright": "Sung Su Kim, http://www.filepang.co.kr" -} \ No newline at end of file +} diff --git a/users/filipebarros.json b/users/filipebarros.json index 2683b90d..7f644018 100644 --- a/users/filipebarros.json +++ b/users/filipebarros.json @@ -1,4 +1,4 @@ { "copyright": "Filipe Barros", "email": "filipebarrossi@gmail.com" -} \ No newline at end of file +} diff --git a/users/filosottile.json b/users/filosottile.json index 5568edf9..c3de5371 100644 --- a/users/filosottile.json +++ b/users/filosottile.json @@ -4,4 +4,4 @@ "email": "fv@filippo.io", "theme": "default", "gravatar": true -} \ No newline at end of file +} diff --git a/users/fireball.json b/users/fireball.json index 769fda63..bac1e39a 100644 --- a/users/fireball.json +++ b/users/fireball.json @@ -1,3 +1,3 @@ { "copyright": "Tyler Reed" -} \ No newline at end of file +} diff --git a/users/firebase.json b/users/firebase.json index b02d7d5a..b5c20908 100644 --- a/users/firebase.json +++ b/users/firebase.json @@ -2,4 +2,4 @@ "copyright": "Firebase", "url": "https://firebase.com", "email": "opensource@firebase.com" -} \ No newline at end of file +} diff --git a/users/fireflies.json b/users/fireflies.json index 63dfbf24..b253b0ec 100644 --- a/users/fireflies.json +++ b/users/fireflies.json @@ -3,4 +3,4 @@ "url": "https://smirking.ninja", "email": "connor@smirking.ninja", "format": "txt" -} \ No newline at end of file +} diff --git a/users/firejune.json b/users/firejune.json index 8cb37e38..e78bb984 100644 --- a/users/firejune.json +++ b/users/firejune.json @@ -3,4 +3,4 @@ "url": "http://firejune.com", "email": "to@firejune.com", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/fitjs.json b/users/fitjs.json index d60dee80..35b6604f 100644 --- a/users/fitjs.json +++ b/users/fitjs.json @@ -3,4 +3,4 @@ "url": "http://fitjs.sbani.net", "email": "sufijen-fitjs@sbani.net", "format": "txt" -} \ No newline at end of file +} diff --git a/users/fixate.json b/users/fixate.json index b4c336cf..ccde136c 100644 --- a/users/fixate.json +++ b/users/fixate.json @@ -2,4 +2,4 @@ "copyright": "Fixate Web and Design, http://fixate.it/", "url": "http://fixate.it/", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/fjellerup.json b/users/fjellerup.json index 3d42b54d..f54d68f4 100644 --- a/users/fjellerup.json +++ b/users/fjellerup.json @@ -1,3 +1,3 @@ { "copyright": "Mikkel Fjellerup Jensen" -} \ No newline at end of file +} diff --git a/users/fjorgemota.json b/users/fjorgemota.json index be56b8c1..aac581f2 100644 --- a/users/fjorgemota.json +++ b/users/fjorgemota.json @@ -1,4 +1,4 @@ { "copyright": "Fernando Jorge Mota", "url": "http://fjorgemota.com" -} \ No newline at end of file +} diff --git a/users/fka.json b/users/fka.json index 5707a0ff..d53afba2 100644 --- a/users/fka.json +++ b/users/fka.json @@ -1,3 +1,3 @@ { "copyright": "Fatih Kadir Akin" -} \ No newline at end of file +} diff --git a/users/flat.json b/users/flat.json index b6825a07..f81ac256 100644 --- a/users/flat.json +++ b/users/flat.json @@ -1,4 +1,4 @@ { "copyright": "Flat", "url": "https://github.com/Flatta" -} \ No newline at end of file +} diff --git a/users/flattr.json b/users/flattr.json index 45a153ab..58860a16 100644 --- a/users/flattr.json +++ b/users/flattr.json @@ -2,4 +2,4 @@ "copyright": "Flattr AB", "url": "http://flattr.com", "theme": "double-windsor " -} \ No newline at end of file +} diff --git a/users/fleeting.json b/users/fleeting.json index e41de92f..9d0de89b 100644 --- a/users/fleeting.json +++ b/users/fleeting.json @@ -2,4 +2,4 @@ "copyright": "James Fleeting, http://jamesfleeting.com", "url": "http://jamesfleeting.com", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/flesch.json b/users/flesch.json index 2fbc7453..a7921629 100644 --- a/users/flesch.json +++ b/users/flesch.json @@ -2,4 +2,4 @@ "copyright": "John Flesch, http://fles.ch", "url": "http://fles.ch", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/fletc3her.json b/users/fletc3her.json index f01c0a37..81ec41ab 100644 --- a/users/fletc3her.json +++ b/users/fletc3her.json @@ -3,4 +3,4 @@ "url": "http://www.fletc3her.com", "email": "fletc3her@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/flexd.json b/users/flexd.json index 9c4c3d7d..3b2b1bc6 100644 --- a/users/flexd.json +++ b/users/flexd.json @@ -3,4 +3,4 @@ "url": "http://cognitive.io", "email": "web@flexd.net", "format": "txt" -} \ No newline at end of file +} diff --git a/users/floppy.json b/users/floppy.json index 207ec96b..5856bc5a 100644 --- a/users/floppy.json +++ b/users/floppy.json @@ -3,4 +3,4 @@ "url": "http://floppy.org.uk", "email": "james@floppy.org.uk", "gravatar": true -} \ No newline at end of file +} diff --git a/users/florian.json b/users/florian.json index b0f55d65..9a58d4e0 100644 --- a/users/florian.json +++ b/users/florian.json @@ -2,4 +2,4 @@ "copyright": "Florian Pircher ", "url": "http://addpixel.net", "format": "html" -} \ No newline at end of file +} diff --git a/users/floydpink.json b/users/floydpink.json index d3ce3af9..044ca089 100644 --- a/users/floydpink.json +++ b/users/floydpink.json @@ -4,4 +4,4 @@ "email": "me@harimenon.com", "gravatar": true, "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/flyjs.json b/users/flyjs.json index f8462419..6f2a491e 100644 --- a/users/flyjs.json +++ b/users/flyjs.json @@ -1,3 +1,3 @@ { "copyright": "Oleg Pimenov" -} \ No newline at end of file +} diff --git a/users/fm.json b/users/fm.json index c5696118..fd34938d 100644 --- a/users/fm.json +++ b/users/fm.json @@ -1,3 +1,3 @@ { "copyright": "Florian Müller" -} \ No newline at end of file +} diff --git a/users/foak.json b/users/foak.json index c289ff13..555b7604 100644 --- a/users/foak.json +++ b/users/foak.json @@ -3,4 +3,4 @@ "url": "http://thefoakhouse.com", "email": "info@thefoakhouse.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/foat.json b/users/foat.json index fdd9a5ce..9b2adefd 100644 --- a/users/foat.json +++ b/users/foat.json @@ -3,4 +3,4 @@ "url": "https://github.com/Foat", "email": "foat.akhmadeev@gmail.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/foobar.json b/users/foobar.json index da280cce..89621a0f 100644 --- a/users/foobar.json +++ b/users/foobar.json @@ -1,3 +1,3 @@ { "copyright": "Foo Bar" -} \ No newline at end of file +} diff --git a/users/ford.json b/users/ford.json index ad048fe6..9e026c51 100644 --- a/users/ford.json +++ b/users/ford.json @@ -1,4 +1,4 @@ { "copyright": "Ford Peprah", "email": "ford.peprah@uwaterloo.ca" -} \ No newline at end of file +} diff --git a/users/forresty.json b/users/forresty.json index 3edab3b6..0454e307 100644 --- a/users/forresty.json +++ b/users/forresty.json @@ -1,3 +1,3 @@ { "copyright": "Forrest Ye" -} \ No newline at end of file +} diff --git a/users/forsvikgroup.json b/users/forsvikgroup.json index a3d04cc2..0d7ebbab 100644 --- a/users/forsvikgroup.json +++ b/users/forsvikgroup.json @@ -2,4 +2,4 @@ "copyright": "Christoffer Hallas", "url": "http://www.forsvikgroup.com", "email": "christoffer.hallas@forsvikgroup.com" -} \ No newline at end of file +} diff --git a/users/foss-haas.json b/users/foss-haas.json index 6b359d2d..7ebfe98a 100644 --- a/users/foss-haas.json +++ b/users/foss-haas.json @@ -3,4 +3,4 @@ "url": "http://foss-haas.de", "email": "mail@foss-haas.de", "gravatar": true -} \ No newline at end of file +} diff --git a/users/fov.json b/users/fov.json index b0c24e67..fa65091f 100644 --- a/users/fov.json +++ b/users/fov.json @@ -1,4 +1,4 @@ { "copyright": "Franklin Oliveira Da Veiga", "email": "aionprofile@hotmail.com" -} \ No newline at end of file +} diff --git a/users/fp.json b/users/fp.json index 585ddb30..75b2a640 100644 --- a/users/fp.json +++ b/users/fp.json @@ -1,3 +1,3 @@ { "copyright": "Floyd Price" -} \ No newline at end of file +} diff --git a/users/fpcs.json b/users/fpcs.json index 744a9f96..baa02546 100644 --- a/users/fpcs.json +++ b/users/fpcs.json @@ -3,4 +3,4 @@ "url": "http://www.flashpointcs.net", "email": "info@flashpointcs.net", "format": "html" -} \ No newline at end of file +} diff --git a/users/fr.json b/users/fr.json index 5f905348..b3423163 100644 --- a/users/fr.json +++ b/users/fr.json @@ -1,3 +1,3 @@ { "copyright": "François Romain" -} \ No newline at end of file +} diff --git a/users/francisbesset.json b/users/francisbesset.json index 8a796036..6bff5df5 100644 --- a/users/francisbesset.json +++ b/users/francisbesset.json @@ -3,4 +3,4 @@ "url": "http://francis-besset.com", "theme": "default", "gravatar": true -} \ No newline at end of file +} diff --git a/users/frebro.json b/users/frebro.json index 5e58273d..09e8f92d 100644 --- a/users/frebro.json +++ b/users/frebro.json @@ -2,4 +2,4 @@ "copyright": "Fredrik Broman, http://frebro.com", "url": "http://frebro.com", "theme": "default" -} \ No newline at end of file +} diff --git a/users/fredi.json b/users/fredi.json index a499ab38..904c6970 100644 --- a/users/fredi.json +++ b/users/fredi.json @@ -1,3 +1,3 @@ { "copyright": "Federico Leo Redi" -} \ No newline at end of file +} diff --git a/users/fredrik.json b/users/fredrik.json index cc64b4f8..6891b89c 100644 --- a/users/fredrik.json +++ b/users/fredrik.json @@ -3,4 +3,4 @@ "url": "http://fredrikmollerstrand.se/", "email": "fredrik@mollerstrand.se", "format": "txt" -} \ No newline at end of file +} diff --git a/users/fredwu.json b/users/fredwu.json index ae11a6b4..07c2c30e 100644 --- a/users/fredwu.json +++ b/users/fredwu.json @@ -3,4 +3,4 @@ "url": "http://fredwu.me/", "email": "ifredwu@gmail.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/freewheel.json b/users/freewheel.json index 4161cd5e..b8cd5a70 100644 --- a/users/freewheel.json +++ b/users/freewheel.json @@ -3,4 +3,4 @@ "url": "http://rollingcode.org", "email": "sdu@freewheel.tv", "format": "txt" -} \ No newline at end of file +} diff --git a/users/freewizard.json b/users/freewizard.json index 256cdaa4..ab403a6d 100644 --- a/users/freewizard.json +++ b/users/freewizard.json @@ -3,4 +3,4 @@ "url": "http://rollingcode.org", "email": "freewizard@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/fremy.json b/users/fremy.json index 5a20d44c..58f560ee 100644 --- a/users/fremy.json +++ b/users/fremy.json @@ -3,4 +3,4 @@ "url": "http://fremycompany.com/", "email": "francois.remy.dev@outlook.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/frendon.json b/users/frendon.json index 232308f1..ffe14d05 100644 --- a/users/frendon.json +++ b/users/frendon.json @@ -1,3 +1,3 @@ { "copyright": "Fernando J. Rendón" -} \ No newline at end of file +} diff --git a/users/freshbox.json b/users/freshbox.json index 04207d33..d8abb6b9 100644 --- a/users/freshbox.json +++ b/users/freshbox.json @@ -3,4 +3,4 @@ "url": "http://freshbox.io", "email": "info@freshbox.io", "format": "html" -} \ No newline at end of file +} diff --git a/users/freshmade.json b/users/freshmade.json index 9ce06963..1fe12987 100644 --- a/users/freshmade.json +++ b/users/freshmade.json @@ -2,4 +2,4 @@ "copyright": "Jack Keller, http://freshma.de", "url": "http://freshma.de", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/frickreich.json b/users/frickreich.json index 0c3acee6..4aa4ce93 100644 --- a/users/frickreich.json +++ b/users/frickreich.json @@ -1,3 +1,3 @@ { "copyright": "F. Rick Reich" -} \ No newline at end of file +} diff --git a/users/friedcell.json b/users/friedcell.json index 8fe94560..cb9ceb67 100644 --- a/users/friedcell.json +++ b/users/friedcell.json @@ -2,4 +2,4 @@ "copyright": "Marko Mrdjenovic", "url": "http://friedcell.si", "email": "fry@friedcell.si" -} \ No newline at end of file +} diff --git a/users/fristonio.json b/users/fristonio.json index b10baf43..1ea52bf2 100644 --- a/users/fristonio.json +++ b/users/fristonio.json @@ -4,4 +4,4 @@ "email": "me@fristonio.co", "gravatar": true, "theme": "dusk" -} \ No newline at end of file +} diff --git a/users/frozenskys.json b/users/frozenskys.json index af984784..90f39811 100644 --- a/users/frozenskys.json +++ b/users/frozenskys.json @@ -4,4 +4,4 @@ "email": "richard@frozenskys.co.uk", "gravatar": true, "theme": "eula-modern" -} \ No newline at end of file +} diff --git a/users/frozzare.json b/users/frozzare.json index c0ed8c09..0d03666c 100644 --- a/users/frozzare.json +++ b/users/frozzare.json @@ -2,4 +2,4 @@ "copyright": "Fredrik Forsmo, http://forsmo.me", "url": "http://forsmo.me", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/frwrdnet.json b/users/frwrdnet.json index 094d92c3..63001805 100644 --- a/users/frwrdnet.json +++ b/users/frwrdnet.json @@ -4,4 +4,4 @@ "email": "victor@frwrd.net", "format": "html", "theme": "plaintext" -} \ No newline at end of file +} diff --git a/users/fs.json b/users/fs.json index 06cfef0e..b297bfe9 100644 --- a/users/fs.json +++ b/users/fs.json @@ -3,4 +3,4 @@ "url": "http://fredericksilva.github.io", "email": "devfrederick@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/fuckthebitch.json b/users/fuckthebitch.json index fa7edaf8..301691cd 100644 --- a/users/fuckthebitch.json +++ b/users/fuckthebitch.json @@ -2,4 +2,4 @@ "copyright": "FuckTheBitch", "url": "http://fuckthebitch.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/fujieda.json b/users/fujieda.json index 4c09bfbd..d55b8bd9 100644 --- a/users/fujieda.json +++ b/users/fujieda.json @@ -1,3 +1,3 @@ { "copyright": "Kazuhiro Fujieda " -} \ No newline at end of file +} diff --git a/users/fujimoto.json b/users/fujimoto.json index 31b2c166..3526cc05 100644 --- a/users/fujimoto.json +++ b/users/fujimoto.json @@ -3,4 +3,4 @@ "url": "http://qn33.github.io", "format": "html", "theme": "material-blue" -} \ No newline at end of file +} diff --git a/users/fullaf.json b/users/fullaf.json index c3f2cdd2..976944f1 100644 --- a/users/fullaf.json +++ b/users/fullaf.json @@ -1,3 +1,3 @@ { "copyright": "Full AF" -} \ No newline at end of file +} diff --git a/users/functioncallback.json b/users/functioncallback.json index b5bf2b57..0d03fcea 100644 --- a/users/functioncallback.json +++ b/users/functioncallback.json @@ -3,4 +3,4 @@ "url": "https://github.com/functioncallback", "email": "functioncallback@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/fusco.json b/users/fusco.json index f592b5a4..7db0c86e 100644 --- a/users/fusco.json +++ b/users/fusco.json @@ -3,4 +3,4 @@ "url": "http://josephfus.co", "email": "hello@josephfus.co", "format": "txt" -} \ No newline at end of file +} diff --git a/users/futoase.json b/users/futoase.json index 5d7cb6fb..39193cf5 100644 --- a/users/futoase.json +++ b/users/futoase.json @@ -1,3 +1,3 @@ { "copyright": "Keiji Matsuzaki" -} \ No newline at end of file +} diff --git a/users/fwolf.json b/users/fwolf.json index d17d32fa..e2f03be0 100644 --- a/users/fwolf.json +++ b/users/fwolf.json @@ -1,4 +1,4 @@ { "copyright": "Fwolf", "email": "fwolf.aide+MIT@gmail.com" -} \ No newline at end of file +} diff --git a/users/fyhuang.json b/users/fyhuang.json index 33b140e3..c6ecb4ba 100644 --- a/users/fyhuang.json +++ b/users/fyhuang.json @@ -3,4 +3,4 @@ "url": "http://nongraphical.com", "email": "me@nongraphical.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/g0nh1n.json b/users/g0nh1n.json index 92f25414..31b736ae 100644 --- a/users/g0nh1n.json +++ b/users/g0nh1n.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "material-teal" -} \ No newline at end of file +} diff --git a/users/g0v.json b/users/g0v.json index ab3c934e..313d2c3e 100644 --- a/users/g0v.json +++ b/users/g0v.json @@ -1,4 +1,4 @@ { "copyright": "g0v Contributors", "url": "http://g0v.tw" -} \ No newline at end of file +} diff --git a/users/gabev.json b/users/gabev.json index a3246e7b..8d9ad90d 100644 --- a/users/gabev.json +++ b/users/gabev.json @@ -2,4 +2,4 @@ "copyright": "Gabriel Vacaliuc", "email": "gv8@rice.edu", "theme": "material" -} \ No newline at end of file +} diff --git a/users/gableroux.json b/users/gableroux.json index 4227a0ac..8bf0a0fa 100644 --- a/users/gableroux.json +++ b/users/gableroux.json @@ -3,4 +3,4 @@ "url": "http://gableroux.com", "email": "lebreton.gabriel@gmail.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/gabriel.json b/users/gabriel.json index ab4ebc33..1b265115 100644 --- a/users/gabriel.json +++ b/users/gabriel.json @@ -2,4 +2,4 @@ "copyright": "Gabriel Hase", "email": "gabriel.hase@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/gabrielecanepa.json b/users/gabrielecanepa.json index beda5ada..57adc7e0 100644 --- a/users/gabrielecanepa.json +++ b/users/gabrielecanepa.json @@ -2,4 +2,4 @@ "copyright": "Gabriele Canepa", "url": "https://gabriele.canepa.io", "email": "gabriele@canepa.io" -} \ No newline at end of file +} diff --git a/users/gabrielgfa.json b/users/gabrielgfa.json index 8f90286e..0417b1a1 100644 --- a/users/gabrielgfa.json +++ b/users/gabrielgfa.json @@ -3,4 +3,4 @@ "url": "http://gabrielgfa.com", "email": "gabrielgfa@gmail.com", "theme": "default" -} \ No newline at end of file +} diff --git a/users/gabrielgodoy.json b/users/gabrielgodoy.json index 8ba168e7..e551148e 100644 --- a/users/gabrielgodoy.json +++ b/users/gabrielgodoy.json @@ -2,4 +2,4 @@ "copyright": "Gabriel Godoy", "url": "http://www.gabrielgodoy.com", "email": "hi@gabrielgodoy.com" -} \ No newline at end of file +} diff --git a/users/gabrielizaias.json b/users/gabrielizaias.json index a5b04c7e..5f2e8d61 100644 --- a/users/gabrielizaias.json +++ b/users/gabrielizaias.json @@ -4,4 +4,4 @@ "email": "gabriel.izaias@gmail.com", "gravatar": true, "theme": "material" -} \ No newline at end of file +} diff --git a/users/gabrieljmj.json b/users/gabrieljmj.json index 46d94571..812e36e0 100644 --- a/users/gabrieljmj.json +++ b/users/gabrieljmj.json @@ -5,4 +5,4 @@ "email": "gamjj74@hotmail.com", "gravatar": true, "theme": "default" -} \ No newline at end of file +} diff --git a/users/gabrielrcouto.json b/users/gabrielrcouto.json index 614cf42b..978098a5 100644 --- a/users/gabrielrcouto.json +++ b/users/gabrielrcouto.json @@ -3,4 +3,4 @@ "url": "http://r3c.com.br", "email": "gabriel@r3c.com.br", "format": "txt" -} \ No newline at end of file +} diff --git a/users/gabskoro.json b/users/gabskoro.json index 9b914eac..c4428bf2 100644 --- a/users/gabskoro.json +++ b/users/gabskoro.json @@ -3,4 +3,4 @@ "url": "http://gabrijelskoro.com", "email": "gabrijel.skoro@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/gae-tap.json b/users/gae-tap.json index 007609ab..dd1aa149 100644 --- a/users/gae-tap.json +++ b/users/gae-tap.json @@ -1,3 +1,3 @@ { "copyright": "ENDOH takanao" -} \ No newline at end of file +} diff --git a/users/gamajo.json b/users/gamajo.json index cf33efca..2d54006e 100644 --- a/users/gamajo.json +++ b/users/gamajo.json @@ -1,3 +1,3 @@ { "copyright": "Gary Jones, Gamajo Tech" -} \ No newline at end of file +} diff --git a/users/gammasoft.json b/users/gammasoft.json index 86fdd9cc..f9e75080 100644 --- a/users/gammasoft.json +++ b/users/gammasoft.json @@ -4,4 +4,4 @@ "email": "contact@gammasoft.com.br", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/gao.json b/users/gao.json index 4f0ccc75..4eff4733 100644 --- a/users/gao.json +++ b/users/gao.json @@ -1,4 +1,4 @@ { "copyright": "gao", "url": "https://github.com/gaogao-9" -} \ No newline at end of file +} diff --git a/users/gasolwu.json b/users/gasolwu.json index 69595137..3133c679 100644 --- a/users/gasolwu.json +++ b/users/gasolwu.json @@ -2,4 +2,4 @@ "copyright": "Gasol Wu", "email": "gasol.wu@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/gauntlt.json b/users/gauntlt.json index b95660eb..8a6ac046 100644 --- a/users/gauntlt.json +++ b/users/gauntlt.json @@ -1,4 +1,4 @@ { "copyright": "James Wickett, Mani Tadayon, gauntlt.org", "url": "https://github.com/thegauntlet/gauntlt" -} \ No newline at end of file +} diff --git a/users/gaurav.json b/users/gaurav.json index 0abc86f4..bc907bd4 100644 --- a/users/gaurav.json +++ b/users/gaurav.json @@ -3,4 +3,4 @@ "url": "http://sgaurav.in", "email": "sgaurav.baghel@gmail.com", "theme": "opensans" -} \ No newline at end of file +} diff --git a/users/gautam.json b/users/gautam.json index d49b186a..26f18413 100644 --- a/users/gautam.json +++ b/users/gautam.json @@ -2,4 +2,4 @@ "copyright": "Gautam Lodhiya", "email": "glodhiya89@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/gavin.json b/users/gavin.json index 71b1e05d..5e51486c 100644 --- a/users/gavin.json +++ b/users/gavin.json @@ -1,3 +1,3 @@ { "copyright": "Gavin Huang" -} \ No newline at end of file +} diff --git a/users/gavinhungry.json b/users/gavinhungry.json index b05fed54..9686b48c 100644 --- a/users/gavinhungry.json +++ b/users/gavinhungry.json @@ -2,4 +2,4 @@ "copyright": "Gavin Lloyd", "url": "https://gavinhungry.io", "email": "gavinhungry@gmail.com" -} \ No newline at end of file +} diff --git a/users/gb.json b/users/gb.json index 11102f48..d751adfa 100644 --- a/users/gb.json +++ b/users/gb.json @@ -1,3 +1,3 @@ { "copyright": "George Bashi, http://georgebashi.com" -} \ No newline at end of file +} diff --git a/users/gbleux.json b/users/gbleux.json index 9822cb8a..0b5b7564 100644 --- a/users/gbleux.json +++ b/users/gbleux.json @@ -1,4 +1,4 @@ { "copyright": "Gordon Bleux", "url": "https://github.com/gbleux/" -} \ No newline at end of file +} diff --git a/users/gdqyn.json b/users/gdqyn.json index ba0b9382..6dc29e06 100644 --- a/users/gdqyn.json +++ b/users/gdqyn.json @@ -3,4 +3,4 @@ "url": "http://gdqyn.com", "email": "gdqyn@mysite.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/geeky.json b/users/geeky.json index 8ee6eef3..6a0c14ce 100644 --- a/users/geeky.json +++ b/users/geeky.json @@ -1,3 +1,3 @@ { "copyright": "Arne Krause" -} \ No newline at end of file +} diff --git a/users/genesislive.json b/users/genesislive.json index 4054fe0a..f14b3a45 100644 --- a/users/genesislive.json +++ b/users/genesislive.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "black-beauty" -} \ No newline at end of file +} diff --git a/users/georapbox.json b/users/georapbox.json index 200a599f..37ad809e 100644 --- a/users/georapbox.json +++ b/users/georapbox.json @@ -5,4 +5,4 @@ "gravatar": true, "theme": "dusk", "format": "html" -} \ No newline at end of file +} diff --git a/users/georgerogers42.json b/users/georgerogers42.json index 495114af..74efbb19 100644 --- a/users/georgerogers42.json +++ b/users/georgerogers42.json @@ -1,3 +1,3 @@ { "copyright": "George Rogers" -} \ No newline at end of file +} diff --git a/users/georgeyue.json b/users/georgeyue.json index 881b8eff..dd95af15 100644 --- a/users/georgeyue.json +++ b/users/georgeyue.json @@ -2,4 +2,4 @@ "copyright": "George Yue", "url": "https://github.com/georgeyue", "format": "txt" -} \ No newline at end of file +} diff --git a/users/geota.json b/users/geota.json index 4042720e..e22c3639 100644 --- a/users/geota.json +++ b/users/geota.json @@ -1,3 +1,3 @@ { "copyright": "Adrian Maceiras" -} \ No newline at end of file +} diff --git a/users/geovation.json b/users/geovation.json index 61e4aa2c..2d6edde3 100644 --- a/users/geovation.json +++ b/users/geovation.json @@ -1,3 +1,3 @@ { "copyright": "Geovation, https://geovation.uk/" -} \ No newline at end of file +} diff --git a/users/gep13.json b/users/gep13.json index 53a5cb83..cdfc578f 100644 --- a/users/gep13.json +++ b/users/gep13.json @@ -1,4 +1,4 @@ { "copyright": "Gary Ewan Park", "url": "http://www.gep13.co.uk" -} \ No newline at end of file +} diff --git a/users/ger.json b/users/ger.json index cb07db71..ba1afc74 100644 --- a/users/ger.json +++ b/users/ger.json @@ -1,3 +1,3 @@ { "copyright": "Geraldi Sutanto" -} \ No newline at end of file +} diff --git a/users/gersonthiago.json b/users/gersonthiago.json index b31317b1..5df5b821 100644 --- a/users/gersonthiago.json +++ b/users/gersonthiago.json @@ -3,4 +3,4 @@ "url": "http://gersonthiago.com", "email": "gersonthiago.lima@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/geta6.json b/users/geta6.json index 45a0bb12..2d50a775 100644 --- a/users/geta6.json +++ b/users/geta6.json @@ -1,4 +1,4 @@ { "copyright": "Hirotaka Katakura", "url": "https://github.com/geta6" -} \ No newline at end of file +} diff --git a/users/getify.json b/users/getify.json index 237f8f98..b17233f8 100644 --- a/users/getify.json +++ b/users/getify.json @@ -4,4 +4,4 @@ "email": "getify@gmail.com", "gravatar": true, "theme": "eula-modern" -} \ No newline at end of file +} diff --git a/users/gfk.json b/users/gfk.json index 73ae49d4..6e76f49d 100644 --- a/users/gfk.json +++ b/users/gfk.json @@ -1,3 +1,3 @@ { "copyright": "GfK" -} \ No newline at end of file +} diff --git a/users/gggkiller.json b/users/gggkiller.json index 28d60543..4c9fc223 100644 --- a/users/gggkiller.json +++ b/users/gggkiller.json @@ -5,4 +5,4 @@ "url": "http://gggkiller.com", "gravatar": true, "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/ghedo.json b/users/ghedo.json index a5ea7ea7..d03934da 100644 --- a/users/ghedo.json +++ b/users/ghedo.json @@ -1,3 +1,3 @@ { "copyright": "Alessandro Ghedini" -} \ No newline at end of file +} diff --git a/users/gherlein.json b/users/gherlein.json index 4a201281..490078df 100644 --- a/users/gherlein.json +++ b/users/gherlein.json @@ -3,4 +3,4 @@ "url": "https://www.linkedin.com/in/gherlein/", "email": "gherlein@herlein.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/ghozylab.json b/users/ghozylab.json index b0cd2736..2d04dcd4 100644 --- a/users/ghozylab.json +++ b/users/ghozylab.json @@ -4,4 +4,4 @@ "theme": "material-light-blue", "email": "license@ghozylab.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/giancarlovillena.json b/users/giancarlovillena.json index 75421ca4..823301e0 100644 --- a/users/giancarlovillena.json +++ b/users/giancarlovillena.json @@ -2,4 +2,4 @@ "copyright": "Giancarlo Villena", "url": "http://giancarlovillena.pe", "email": "yo@giancarlovillena.pe" -} \ No newline at end of file +} diff --git a/users/gianu.json b/users/gianu.json index 6e4f3c04..89a0271d 100644 --- a/users/gianu.json +++ b/users/gianu.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "default" -} \ No newline at end of file +} diff --git a/users/gibsjose.json b/users/gibsjose.json index 72a66a49..efd6e10e 100644 --- a/users/gibsjose.json +++ b/users/gibsjose.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": false, "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/gigony.json b/users/gigony.json index 65afd008..31f685a0 100644 --- a/users/gigony.json +++ b/users/gigony.json @@ -1,4 +1,4 @@ { "copyright": "Gigon Bae, http://gigony.tistory.com", "url": "http://gigony.tistory.com" -} \ No newline at end of file +} diff --git a/users/gilmoreorless.json b/users/gilmoreorless.json index e799ca0b..934b4e3e 100644 --- a/users/gilmoreorless.json +++ b/users/gilmoreorless.json @@ -2,4 +2,4 @@ "copyright": "Gilmore Davidson", "url": "http://shoehornwithteeth.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/gine.json b/users/gine.json index 8d43a0f5..37225272 100644 --- a/users/gine.json +++ b/users/gine.json @@ -1,4 +1,4 @@ { "copyright": "Chris Austin", "email": "caustin.adwan@gmail.com" -} \ No newline at end of file +} diff --git a/users/ginger.json b/users/ginger.json index 2aac4503..69f1087e 100644 --- a/users/ginger.json +++ b/users/ginger.json @@ -1,3 +1,3 @@ { "copyright": "Ginger Griffis" -} \ No newline at end of file +} diff --git a/users/girvo.json b/users/girvo.json index 5415b1de..85fe30d0 100644 --- a/users/girvo.json +++ b/users/girvo.json @@ -1,3 +1,3 @@ { "copyright": "Joshua Girvin" -} \ No newline at end of file +} diff --git a/users/girvo2.json b/users/girvo2.json index 3e599f0a..02f97230 100644 --- a/users/girvo2.json +++ b/users/girvo2.json @@ -1,4 +1,4 @@ { "copyright": "Joshua Girvin", "format": "txt" -} \ No newline at end of file +} diff --git a/users/github.json b/users/github.json index 9aa6dea2..3a60ebe3 100644 --- a/users/github.json +++ b/users/github.json @@ -2,4 +2,4 @@ "copyright": "Github Inc", "url": "https://github.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/gkatsev.json b/users/gkatsev.json index bc4a399d..cbe7fa2a 100644 --- a/users/gkatsev.json +++ b/users/gkatsev.json @@ -3,4 +3,4 @@ "url": "http://gkatsev.com", "email": "me@gkatsev.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/gkralik.json b/users/gkralik.json index d13b762c..de0a1a2e 100644 --- a/users/gkralik.json +++ b/users/gkralik.json @@ -5,4 +5,4 @@ "gravatar": false, "theme": "solarized", "format": "html" -} \ No newline at end of file +} diff --git a/users/gld1982ltd.json b/users/gld1982ltd.json index 8f20597f..645d7a82 100644 --- a/users/gld1982ltd.json +++ b/users/gld1982ltd.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "eula-modern" -} \ No newline at end of file +} diff --git a/users/glsee.json b/users/glsee.json index da13fdd5..02d50fef 100644 --- a/users/glsee.json +++ b/users/glsee.json @@ -1,3 +1,3 @@ { "copyright": "See Guo Lin" -} \ No newline at end of file +} diff --git a/users/glynford.json b/users/glynford.json index 02f3d831..54a9823a 100644 --- a/users/glynford.json +++ b/users/glynford.json @@ -3,4 +3,4 @@ "url": "http://g.padao.org", "email": "glynford@padao.org", "format": "txt" -} \ No newline at end of file +} diff --git a/users/gmanricks.json b/users/gmanricks.json index 9b7562b9..fca14020 100644 --- a/users/gmanricks.json +++ b/users/gmanricks.json @@ -2,4 +2,4 @@ "copyright": "Gabriel Manricks", "url": "http://gabrielmanricks.com", "email": "gmanricks@icloud.com" -} \ No newline at end of file +} diff --git a/users/gmph.json b/users/gmph.json index b130ac9e..651f4492 100644 --- a/users/gmph.json +++ b/users/gmph.json @@ -3,4 +3,4 @@ "url": "http://grahammacphee.co.uk", "email": "hi@grahammacphee.co.uk", "format": "txt" -} \ No newline at end of file +} diff --git a/users/gogoout.json b/users/gogoout.json index 46c16433..34ada770 100644 --- a/users/gogoout.json +++ b/users/gogoout.json @@ -4,4 +4,4 @@ "email": "gogoout@gmail.com", "gravatar": true, "theme": "8bits-monochrome" -} \ No newline at end of file +} diff --git a/users/goji.json b/users/goji.json index 1ec6de38..9384fd39 100644 --- a/users/goji.json +++ b/users/goji.json @@ -4,4 +4,4 @@ "email": "gojigeje@gmail.com", "theme": "black-beauty", "gravatar": true -} \ No newline at end of file +} diff --git a/users/gojigeje.json b/users/gojigeje.json index 1ec6de38..9384fd39 100644 --- a/users/gojigeje.json +++ b/users/gojigeje.json @@ -4,4 +4,4 @@ "email": "gojigeje@gmail.com", "theme": "black-beauty", "gravatar": true -} \ No newline at end of file +} diff --git a/users/gokaygurcan.json b/users/gokaygurcan.json index 79c9e41e..0859e970 100644 --- a/users/gokaygurcan.json +++ b/users/gokaygurcan.json @@ -4,4 +4,4 @@ "email": "info@gokaygurcan.com", "format": "html", "theme": "default" -} \ No newline at end of file +} diff --git a/users/gokhangunay.json b/users/gokhangunay.json index 2aa88601..748bc662 100644 --- a/users/gokhangunay.json +++ b/users/gokhangunay.json @@ -3,4 +3,4 @@ "url": "http://github.com/gokhangunay", "theme": "ecijol", "gravatar": true -} \ No newline at end of file +} diff --git a/users/gokmen.json b/users/gokmen.json index 2c17121f..fdae1f0e 100644 --- a/users/gokmen.json +++ b/users/gokmen.json @@ -3,4 +3,4 @@ "url": "http://gokmengorgen.net", "email": "gkmngrgn@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/goldsborough.json b/users/goldsborough.json index a3e1ff98..2d6be302 100644 --- a/users/goldsborough.json +++ b/users/goldsborough.json @@ -2,4 +2,4 @@ "copyright": "Peter Goldsborough", "email": "petergoldsborough@hotmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/goodybag.json b/users/goodybag.json index 96b7f4fb..856b48f1 100644 --- a/users/goodybag.json +++ b/users/goodybag.json @@ -3,4 +3,4 @@ "url": "http://www.goodybag.com", "email": "engineering@goodybag.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/googledrivewpmedia.json b/users/googledrivewpmedia.json index 876adce1..65cd0481 100644 --- a/users/googledrivewpmedia.json +++ b/users/googledrivewpmedia.json @@ -3,4 +3,4 @@ "url": "https://wordpress.org/plugins/google-drive-wp-media/", "email": "surat@mochamir.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/gordondiggs.json b/users/gordondiggs.json index 4e66bf75..9cac4154 100644 --- a/users/gordondiggs.json +++ b/users/gordondiggs.json @@ -3,4 +3,4 @@ "url": "http://gordondiggs.com", "email": "gordon@diggs.me", "format": "txt" -} \ No newline at end of file +} diff --git a/users/gossi.json b/users/gossi.json index f5479b91..b3ae484b 100644 --- a/users/gossi.json +++ b/users/gossi.json @@ -1,4 +1,4 @@ { "copyright": "Thomas Gossmann, http://gos.si", "url": "http://gos.si" -} \ No newline at end of file +} diff --git a/users/gphofficial.json b/users/gphofficial.json index 7be18cd9..dd28430e 100644 --- a/users/gphofficial.json +++ b/users/gphofficial.json @@ -4,4 +4,4 @@ "email": "gphofficial+public@gmail.com", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/gpl.json b/users/gpl.json index 2bbb9ea8..bafd7fed 100644 --- a/users/gpl.json +++ b/users/gpl.json @@ -1,4 +1,4 @@ { "copyright": "GPL Project Developer Who Made Changes \n\nThis is an example of sublicensing an MIT licensed work under the\nterms of the GNU GPLv3+.\n\nThis file is free software: you may copy, redistribute and/or\nmodify it under the terms of the GNU General Public License version 3\nas published by the Free Software Foundation, or (at\nyour option) any later version.\n\nThis file is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nGeneral Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program. If not, see\n.\n\nThis file incorporates work covered by the following copyright\nand permission notice:\n\nCopyright © 2013 Original Contributor Name ", "format": "txt" -} \ No newline at end of file +} diff --git a/users/gplv2.json b/users/gplv2.json index c3193f6c..27dd1260 100644 --- a/users/gplv2.json +++ b/users/gplv2.json @@ -1,4 +1,4 @@ { "copyright": "GPL Project Developer Who Made Changes \n\nThis is an example of sublicensing an MIT licensed work under the terms of\nthe GNU GPLv2+.\n\nThis file is free software: you may copy, redistribute and/or modify it \nunder the terms of the GNU General Public License as published by the \nFree Software Foundation, either version 2 of the License, or (at your \noption) any later version. \n\nThis file is distributed in the hope that it will be useful, but \nWITHOUT ANY WARRANTY; without even the implied warranty of \nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU \nGeneral Public License for more details. \n\nYou should have received a copy of the GNU General Public License \nalong with this program. If not, see . \n\nThis file incorporates work covered by the following copyright and \npermission notice:\n\nCopyright © 2013 Original Contributor Name ", "format": "txt" -} \ No newline at end of file +} diff --git a/users/gplv3.json b/users/gplv3.json index 28ea8e5e..f8bdb796 100644 --- a/users/gplv3.json +++ b/users/gplv3.json @@ -1,4 +1,4 @@ { "copyright": "GPL Project Developer Who Made Changes \n\nThis is an example of sublicensing an MIT licensed work under the terms of\nthe GNU GPLv3+.\n\nThis file is free software: you may copy, redistribute and/or modify it \nunder the terms of the GNU General Public License as published by the \nFree Software Foundation, either version 3 of the License, or (at your \noption) any later version. \n\nThis file is distributed in the hope that it will be useful, but \nWITHOUT ANY WARRANTY; without even the implied warranty of \nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU \nGeneral Public License for more details. \n\nYou should have received a copy of the GNU General Public License \nalong with this program. If not, see . \n\nThis file incorporates work covered by the following copyright and \npermission notice:\n\nCopyright © 2013 Original Contributor-Name ", "format": "txt" -} \ No newline at end of file +} diff --git a/users/graham.json b/users/graham.json index 4b90a2cc..84ec6b1b 100644 --- a/users/graham.json +++ b/users/graham.json @@ -2,4 +2,4 @@ "copyright": "Graham Licence, http://blog.grahamlicence.co.uk", "url": "http://blog.grahamlicence.co.uk", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/grapestack.json b/users/grapestack.json index 04e9ecbf..386ae979 100644 --- a/users/grapestack.json +++ b/users/grapestack.json @@ -3,4 +3,4 @@ "url": "http://www.grapestack.com", "email": "license@grapestack.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/grapevine.json b/users/grapevine.json index c68605b2..4a9a6c0c 100644 --- a/users/grapevine.json +++ b/users/grapevine.json @@ -3,4 +3,4 @@ "url": "http://www.wizardlogic.com", "email": "mhweiner234@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/grawity.json b/users/grawity.json index eb3c805d..8f169c00 100644 --- a/users/grawity.json +++ b/users/grawity.json @@ -3,4 +3,4 @@ "email": "grawity@gmail.com", "url": "http://nullroute.eu.org/~grawity/", "format": "txt" -} \ No newline at end of file +} diff --git a/users/gre.json b/users/gre.json index 8d79b414..6beed0a4 100644 --- a/users/gre.json +++ b/users/gre.json @@ -2,4 +2,4 @@ "copyright": "Gaëtan Renaudeau", "url": "http://greweb.fr", "email": "renaudeau.gaetan@gmail.com" -} \ No newline at end of file +} diff --git a/users/greatwizard.json b/users/greatwizard.json index 96c925aa..30adc428 100644 --- a/users/greatwizard.json +++ b/users/greatwizard.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "material-deep-orange" -} \ No newline at end of file +} diff --git a/users/green.json b/users/green.json index 8f2a14e5..7a4ff0b3 100644 --- a/users/green.json +++ b/users/green.json @@ -1,3 +1,3 @@ { "copyright": "Anthony Green" -} \ No newline at end of file +} diff --git a/users/greenify.json b/users/greenify.json index 4871d829..b9611a04 100644 --- a/users/greenify.json +++ b/users/greenify.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": "true", "theme": "magicmint" -} \ No newline at end of file +} diff --git a/users/gregarmer.json b/users/gregarmer.json index ade86341..03bce611 100644 --- a/users/gregarmer.json +++ b/users/gregarmer.json @@ -4,4 +4,4 @@ "email": "greg@sigterm.sh", "gravatar": true, "theme": "eula-modern" -} \ No newline at end of file +} diff --git a/users/grekko.json b/users/grekko.json index 91b6da87..0b1c26a7 100644 --- a/users/grekko.json +++ b/users/grekko.json @@ -5,4 +5,4 @@ "format": "html", "theme": "double-windsor", "gravatar": true -} \ No newline at end of file +} diff --git a/users/greweb.json b/users/greweb.json index abae4763..39e42b34 100644 --- a/users/greweb.json +++ b/users/greweb.json @@ -3,4 +3,4 @@ "url": "http://greweb.fr", "email": "renaudeau.gaetan@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/greyhoundforty.json b/users/greyhoundforty.json index 2e8d3c5b..27a8a56b 100644 --- a/users/greyhoundforty.json +++ b/users/greyhoundforty.json @@ -1,3 +1,3 @@ { "copyright": "Ryan Tiffany" -} \ No newline at end of file +} diff --git a/users/greystate.json b/users/greystate.json index c7ac5c5e..7a588edf 100644 --- a/users/greystate.json +++ b/users/greystate.json @@ -2,4 +2,4 @@ "copyright": "Chriztian Steinmeier, http://greystate.dk", "url": "http://greystate.dk", "email": "chriztian@steinmeier.dk" -} \ No newline at end of file +} diff --git a/users/groenewege.json b/users/groenewege.json index f88f16f0..bcd2cedc 100644 --- a/users/groenewege.json +++ b/users/groenewege.json @@ -1,4 +1,4 @@ { "copyright": "Gunther Groenewege, http://groenewege.com", "url": "http://groenewege.com" -} \ No newline at end of file +} diff --git a/users/grvcoelho.json b/users/grvcoelho.json index 52f229fd..ffaf411e 100644 --- a/users/grvcoelho.json +++ b/users/grvcoelho.json @@ -1,4 +1,4 @@ { "copyright": "Guilherme Rv Coelho", "email": "guilhermervcoelho@gmail.com" -} \ No newline at end of file +} diff --git a/users/gryftir.json b/users/gryftir.json index 67377996..d95762d1 100644 --- a/users/gryftir.json +++ b/users/gryftir.json @@ -3,4 +3,4 @@ "url": "https://github.com/gryftir/get_number", "email": "gryftir@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/gsimard.json b/users/gsimard.json index 3a4d88fa..ada6e3e6 100644 --- a/users/gsimard.json +++ b/users/gsimard.json @@ -1,3 +1,3 @@ { "copyright": "Guillaume Simard" -} \ No newline at end of file +} diff --git a/users/gtierney.json b/users/gtierney.json index 96d7d594..38a76e93 100644 --- a/users/gtierney.json +++ b/users/gtierney.json @@ -3,4 +3,4 @@ "url": "https://protectyour.pw/", "email": "gary.tierney@gmx.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/gtomitsuka.json b/users/gtomitsuka.json index bfc73dc0..146af48e 100644 --- a/users/gtomitsuka.json +++ b/users/gtomitsuka.json @@ -1,3 +1,3 @@ { "copyright": "Gabriel Tomitsuka" -} \ No newline at end of file +} diff --git a/users/gtrrz-victor.json b/users/gtrrz-victor.json index 240d9280..60ebf7c6 100644 --- a/users/gtrrz-victor.json +++ b/users/gtrrz-victor.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "material-light-blue" -} \ No newline at end of file +} diff --git a/users/gugod.json b/users/gugod.json index b1426904..40cd57b8 100644 --- a/users/gugod.json +++ b/users/gugod.json @@ -1,3 +1,3 @@ { "copyright": "Kang-min Liu" -} \ No newline at end of file +} diff --git a/users/guicheffer.json b/users/guicheffer.json index e5615c3c..817faf0b 100644 --- a/users/guicheffer.json +++ b/users/guicheffer.json @@ -4,4 +4,4 @@ "email": "hi@guicheffer.me", "theme": "default", "gravatar": true -} \ No newline at end of file +} diff --git a/users/guidokessels.json b/users/guidokessels.json index 70a60777..93145e14 100644 --- a/users/guidokessels.json +++ b/users/guidokessels.json @@ -1,4 +1,4 @@ { "copyright": "Guido Kessels", "email": "guidokessels@gmail.com" -} \ No newline at end of file +} diff --git a/users/guilhermemarconi.json b/users/guilhermemarconi.json index c6e2ef7d..1b8ef423 100644 --- a/users/guilhermemarconi.json +++ b/users/guilhermemarconi.json @@ -4,4 +4,4 @@ "email": "oi@guilhermemarconi.me", "format": "txt", "gravatar": "gwyer" -} \ No newline at end of file +} diff --git a/users/guilhermeprates.json b/users/guilhermeprates.json index 374dcad2..963a0572 100644 --- a/users/guilhermeprates.json +++ b/users/guilhermeprates.json @@ -1,3 +1,3 @@ { "copyright": "Guilherme Prates" -} \ No newline at end of file +} diff --git a/users/gunar.json b/users/gunar.json index f48b710f..49f55328 100644 --- a/users/gunar.json +++ b/users/gunar.json @@ -4,4 +4,4 @@ "email": "gunar@gunargessner.com", "theme": "opensans", "gravatar": true -} \ No newline at end of file +} diff --git a/users/gus.json b/users/gus.json index ba17f1d6..a3cd4354 100644 --- a/users/gus.json +++ b/users/gus.json @@ -1,3 +1,3 @@ { "copyright": "Angus Macdonald" -} \ No newline at end of file +} diff --git a/users/gustavohenke.json b/users/gustavohenke.json index 449dc079..ee0706e3 100644 --- a/users/gustavohenke.json +++ b/users/gustavohenke.json @@ -3,4 +3,4 @@ "url": "https://github.com/gustavohenke", "email": "gustavo@injoin.com.br", "gravatar": true -} \ No newline at end of file +} diff --git a/users/gvv.json b/users/gvv.json index e537aa43..4e4d6fb9 100644 --- a/users/gvv.json +++ b/users/gvv.json @@ -1,4 +1,4 @@ { "copyright": "Gary V. Vaughan", "url": "http://gary.vaughan.pe" -} \ No newline at end of file +} diff --git a/users/gyoshev.json b/users/gyoshev.json index 1e5ce7b5..a68c16b0 100644 --- a/users/gyoshev.json +++ b/users/gyoshev.json @@ -2,4 +2,4 @@ "copyright": "Alexander Gyoshev, http://gyoshev.net", "url": "http://gyoshev.net", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/h.json b/users/h.json index 0aff5677..26cf451c 100644 --- a/users/h.json +++ b/users/h.json @@ -3,4 +3,4 @@ "url": "http://hrrsn.net", "email": "harrison@thenewthirty.co.nz", "format": "html" -} \ No newline at end of file +} diff --git a/users/hadb.json b/users/hadb.json index d1389beb..f419ac59 100644 --- a/users/hadb.json +++ b/users/hadb.json @@ -5,4 +5,4 @@ "email": "haiandengbin@126.com", "gravatar": false, "theme": "eula-modern" -} \ No newline at end of file +} diff --git a/users/hail2u.json b/users/hail2u.json index 303fb3e4..55c21f99 100644 --- a/users/hail2u.json +++ b/users/hail2u.json @@ -2,4 +2,4 @@ "copyright": "Kyo Nagashima, http://hail2u.net/", "url": "http://hail2u.net/", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/halid.json b/users/halid.json index ff7d7cc3..b85bb2a2 100644 --- a/users/halid.json +++ b/users/halid.json @@ -5,4 +5,4 @@ "format": "html", "gravater": true, "theme": "opensans" -} \ No newline at end of file +} diff --git a/users/halil.json b/users/halil.json index c0f13353..7805dd21 100644 --- a/users/halil.json +++ b/users/halil.json @@ -3,4 +3,4 @@ "url": "https://github.com/halil", "email": "hibrahimsafak@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/halit.json b/users/halit.json index e25c71e6..78c89378 100644 --- a/users/halit.json +++ b/users/halit.json @@ -3,4 +3,4 @@ "url": "http://www.halitalptekin.com", "email": "info@halitalptekin.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/hallme.json b/users/hallme.json index 09f8018d..80e98f1c 100644 --- a/users/hallme.json +++ b/users/hallme.json @@ -3,4 +3,4 @@ "url": "http://www.hallme.com/", "email": "it@hallme.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/hamano.json b/users/hamano.json index 417993c7..1584200e 100644 --- a/users/hamano.json +++ b/users/hamano.json @@ -1,3 +1,3 @@ { "copyright": "HAMANO Tsukasa" -} \ No newline at end of file +} diff --git a/users/hamidshavarean.json b/users/hamidshavarean.json index 53e2593d..641ba447 100644 --- a/users/hamidshavarean.json +++ b/users/hamidshavarean.json @@ -3,4 +3,4 @@ "url": "http://www.hamidshavarean.com/", "email": "hamid@hamidshavarean.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/hanksudo.json b/users/hanksudo.json index 14eb0ce1..ff016aeb 100644 --- a/users/hanksudo.json +++ b/users/hanksudo.json @@ -3,4 +3,4 @@ "email": "drapho@gmail.com", "theme": "hilula", "gravatar": true -} \ No newline at end of file +} diff --git a/users/haoxiong.json b/users/haoxiong.json index 8d0c8a9e..879f574d 100644 --- a/users/haoxiong.json +++ b/users/haoxiong.json @@ -3,4 +3,4 @@ "email": "xionghao818@hotmail.com", "format": "html", "theme": "plaintext" -} \ No newline at end of file +} diff --git a/users/hardeep.json b/users/hardeep.json index a4c836bf..eb3c1f76 100644 --- a/users/hardeep.json +++ b/users/hardeep.json @@ -1,4 +1,4 @@ { "copyright": "Hardeep Singh", "email": "h@rdeep.ca" -} \ No newline at end of file +} diff --git a/users/harold.json b/users/harold.json index 35e697bc..0f1104d1 100644 --- a/users/harold.json +++ b/users/harold.json @@ -3,4 +3,4 @@ "url": "http://yaolong.me", "email": "mail@yaolong.me", "format": "txt" -} \ No newline at end of file +} diff --git a/users/harry.json b/users/harry.json index ca2fabc0..2342c893 100644 --- a/users/harry.json +++ b/users/harry.json @@ -6,4 +6,4 @@ "gravatar": true, "version": "6d33a046", "theme": "default" -} \ No newline at end of file +} diff --git a/users/harryd.json b/users/harryd.json index 6bb5796a..b2fb1fb5 100644 --- a/users/harryd.json +++ b/users/harryd.json @@ -4,4 +4,4 @@ "email": "h.denley@yahoo.co.uk", "gravatar": true, "theme": "eula-modern" -} \ No newline at end of file +} diff --git a/users/harrydeluxe.json b/users/harrydeluxe.json index ad1281a8..3fb3eecd 100644 --- a/users/harrydeluxe.json +++ b/users/harrydeluxe.json @@ -2,4 +2,4 @@ "copyright": "Harald Hanek, http://delacap.com", "url": "http://delacap.com", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/harshjain.json b/users/harshjain.json index 9d3d2465..4788cdab 100644 --- a/users/harshjain.json +++ b/users/harshjain.json @@ -4,4 +4,4 @@ "email": "harshjniitr@gmail.com", "gravatar": true, "theme": "black-beauty" -} \ No newline at end of file +} diff --git a/users/harshjv.json b/users/harshjv.json index 20a3e9e8..36cc73d8 100644 --- a/users/harshjv.json +++ b/users/harshjv.json @@ -2,4 +2,4 @@ "copyright": "Harsh Vakharia", "url": "https://harshjv.github.io", "email": "harshjv@gmail.com" -} \ No newline at end of file +} diff --git a/users/hashanp.json b/users/hashanp.json index c9b66dc6..c9dde6e8 100644 --- a/users/hashanp.json +++ b/users/hashanp.json @@ -3,4 +3,4 @@ "url": "https://hashanp.divshot.io", "email": "hashan.punchihewa@gmail.com", "theme": "magic-mint" -} \ No newline at end of file +} diff --git a/users/hashnuke.json b/users/hashnuke.json index b0746aae..d46bedce 100644 --- a/users/hashnuke.json +++ b/users/hashnuke.json @@ -1,3 +1,3 @@ { "copyright": "Akash Manohar J" -} \ No newline at end of file +} diff --git a/users/hassankhan.json b/users/hassankhan.json index 0c47ca64..485fde58 100644 --- a/users/hassankhan.json +++ b/users/hassankhan.json @@ -4,4 +4,4 @@ "email": "contact@hassankhan.me", "gravatar": true, "theme": "black-beauty" -} \ No newline at end of file +} diff --git a/users/hassox.json b/users/hassox.json index e2e9265f..230a511a 100644 --- a/users/hassox.json +++ b/users/hassox.json @@ -1,3 +1,3 @@ { "copyright": "Daniel Neighman" -} \ No newline at end of file +} diff --git a/users/hatena.json b/users/hatena.json index 881281ab..9ef3c872 100644 --- a/users/hatena.json +++ b/users/hatena.json @@ -1,4 +1,4 @@ { "copyright": "Hatena, Inc.", "url": "http://www.hatena.ne.jp" -} \ No newline at end of file +} diff --git a/users/hatollint.json b/users/hatollint.json index e88d8d25..60e7e5d4 100644 --- a/users/hatollint.json +++ b/users/hatollint.json @@ -5,4 +5,4 @@ "email": "hatollint@gmail.com", "gravatar": true, "theme": "default" -} \ No newline at end of file +} diff --git a/users/hbc.json b/users/hbc.json index 0fbbd2b4..04f259ff 100644 --- a/users/hbc.json +++ b/users/hbc.json @@ -3,4 +3,4 @@ "email": "me@hbc.rocks", "format": "txt", "gravatar": true -} \ No newline at end of file +} diff --git a/users/hd.json b/users/hd.json index 5c153938..aca07119 100644 --- a/users/hd.json +++ b/users/hd.json @@ -3,4 +3,4 @@ "url": "http://harrydenley.com", "email": "", "format": "txt" -} \ No newline at end of file +} diff --git a/users/he7d3r.json b/users/he7d3r.json index b94cc0fa..3a525013 100644 --- a/users/he7d3r.json +++ b/users/he7d3r.json @@ -1,4 +1,4 @@ { "copyright": "He7d3r", "theme": "eula-modern" -} \ No newline at end of file +} diff --git a/users/healthx.json b/users/healthx.json index 9b6c992b..373b997a 100644 --- a/users/healthx.json +++ b/users/healthx.json @@ -1,3 +1,3 @@ { "copyright": "Healthx, Inc" -} \ No newline at end of file +} diff --git a/users/hecticjeff.json b/users/hecticjeff.json index 972ae11b..33702ec2 100644 --- a/users/hecticjeff.json +++ b/users/hecticjeff.json @@ -1,3 +1,3 @@ { "copyright": "Chris Mytton" -} \ No newline at end of file +} diff --git a/users/hello.json b/users/hello.json index e1dd10fa..2f5dadf9 100644 --- a/users/hello.json +++ b/users/hello.json @@ -3,4 +3,4 @@ "url": "https://github.com/hello-gem/hello", "email": "thejamespinto@gmail.com", "theme": "opensans" -} \ No newline at end of file +} diff --git a/users/hemersonvianna.json b/users/hemersonvianna.json index 932862a5..5f4ae845 100644 --- a/users/hemersonvianna.json +++ b/users/hemersonvianna.json @@ -2,4 +2,4 @@ "copyright": "Hemerson Vianna", "url": "http://hemersonvianna.io", "email": "hemerson.lourenco@gmail.com" -} \ No newline at end of file +} diff --git a/users/henrikbjorn.json b/users/henrikbjorn.json index b6fe11aa..f5ec82f9 100644 --- a/users/henrikbjorn.json +++ b/users/henrikbjorn.json @@ -3,4 +3,4 @@ "email": "henrik@bjrnskov.dk", "url": "http://henrik.bjrnskov.dk", "format": "txt" -} \ No newline at end of file +} diff --git a/users/henrikhodne.json b/users/henrikhodne.json index 1f768ac4..d0b60faf 100644 --- a/users/henrikhodne.json +++ b/users/henrikhodne.json @@ -1,4 +1,4 @@ { "copyright": "Henrik Hodne", "email": "henrik@hodne.io" -} \ No newline at end of file +} diff --git a/users/henriquemoody.json b/users/henriquemoody.json index c10385dd..6d025eff 100644 --- a/users/henriquemoody.json +++ b/users/henriquemoody.json @@ -2,4 +2,4 @@ "copyright": "Henrique Moody", "url": "http://about.me/henriquemoody", "email": "henriquemoody@gmail.com" -} \ No newline at end of file +} diff --git a/users/henvic.json b/users/henvic.json index a4071cd2..53fbcc8f 100644 --- a/users/henvic.json +++ b/users/henvic.json @@ -3,4 +3,4 @@ "url": "http://henvic.github.io/", "email": "henriquevicente@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/heppler.json b/users/heppler.json index 7857fb25..0ca7638d 100644 --- a/users/heppler.json +++ b/users/heppler.json @@ -3,4 +3,4 @@ "url": "http://jasonheppler.org", "email": "jason@jasonheppler.org", "theme": "eula-modern" -} \ No newline at end of file +} diff --git a/users/herson.json b/users/herson.json index 8851dc91..36a5ee32 100644 --- a/users/herson.json +++ b/users/herson.json @@ -3,4 +3,4 @@ "url": "https://github.com/Hers", "email": "hersonHN@gmail.com", "theme": "afterdark" -} \ No newline at end of file +} diff --git a/users/heyday.json b/users/heyday.json index 9386ec96..1b3389e4 100644 --- a/users/heyday.json +++ b/users/heyday.json @@ -2,4 +2,4 @@ "copyright": "Heyday Digital, http://heyday.co.nz", "url": "http://heyday.co.nz", "email": "dev@heyday.co.nz" -} \ No newline at end of file +} diff --git a/users/hfm.json b/users/hfm.json index 04638ceb..42aedbb2 100644 --- a/users/hfm.json +++ b/users/hfm.json @@ -1,3 +1,3 @@ { "copyright": "OKUMURA Takahiro" -} \ No newline at end of file +} diff --git a/users/hh.json b/users/hh.json index 4f2f7d99..42671ded 100644 --- a/users/hh.json +++ b/users/hh.json @@ -1,3 +1,3 @@ { "copyright": "Chris McClimans" -} \ No newline at end of file +} diff --git a/users/hika69.json b/users/hika69.json index 86e2c099..3cd73071 100644 --- a/users/hika69.json +++ b/users/hika69.json @@ -1,4 +1,4 @@ { "copyright": "hikarock", "url": "http://blog.hika69.com" -} \ No newline at end of file +} diff --git a/users/hildor.json b/users/hildor.json index e5d1916b..3bda6c04 100644 --- a/users/hildor.json +++ b/users/hildor.json @@ -2,4 +2,4 @@ "copyright": "Hildor Junior.", "url": "https://hildor.com.br", "email": "contato@hildor.com.br" -} \ No newline at end of file +} diff --git a/users/hinassan.json b/users/hinassan.json index 2d08fc8a..9df92857 100644 --- a/users/hinassan.json +++ b/users/hinassan.json @@ -1,4 +1,4 @@ { "copyright": "Yanagi Hinata", "url": "http://hinata.in/" -} \ No newline at end of file +} diff --git a/users/hippiehacker.json b/users/hippiehacker.json index 4f2f7d99..42671ded 100644 --- a/users/hippiehacker.json +++ b/users/hippiehacker.json @@ -1,3 +1,3 @@ { "copyright": "Chris McClimans" -} \ No newline at end of file +} diff --git a/users/hiremaga.json b/users/hiremaga.json index d724f870..9dabe46f 100644 --- a/users/hiremaga.json +++ b/users/hiremaga.json @@ -1,3 +1,3 @@ { "copyright": "Abhijit Hiremagalur" -} \ No newline at end of file +} diff --git a/users/hirokiky.json b/users/hirokiky.json index eecf38b6..808abeab 100644 --- a/users/hirokiky.json +++ b/users/hirokiky.json @@ -3,4 +3,4 @@ "url": "http://hirokiky.org/", "email": "hirokiky@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/hitode909.json b/users/hitode909.json index 1988998a..f3d29777 100644 --- a/users/hitode909.json +++ b/users/hitode909.json @@ -1,3 +1,3 @@ { "copyright": "hitode909" -} \ No newline at end of file +} diff --git a/users/hlfcoding.json b/users/hlfcoding.json index 9130e838..e851ae07 100644 --- a/users/hlfcoding.json +++ b/users/hlfcoding.json @@ -3,4 +3,4 @@ "url": "http://pengxwang.com", "email": "peng@pengxwang.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/hlomzik.json b/users/hlomzik.json index 2c0927c9..1fd122f9 100644 --- a/users/hlomzik.json +++ b/users/hlomzik.json @@ -3,4 +3,4 @@ "url": "https://github.com/hlomzik/", "email": "hlomzik@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/hmkz.json b/users/hmkz.json index 0af64a9c..2f0f8037 100644 --- a/users/hmkz.json +++ b/users/hmkz.json @@ -1,4 +1,4 @@ { "copyright": "Kazunori Hamada", "email": "hmkz@rapid-liquid.com" -} \ No newline at end of file +} diff --git a/users/hobogrammer.json b/users/hobogrammer.json index 681fda2e..c39c969a 100644 --- a/users/hobogrammer.json +++ b/users/hobogrammer.json @@ -1,3 +1,3 @@ { "copyright": "Andre Smith" -} \ No newline at end of file +} diff --git a/users/hokaccha.json b/users/hokaccha.json index ddc17e46..12482c3e 100644 --- a/users/hokaccha.json +++ b/users/hokaccha.json @@ -1,3 +1,3 @@ { "copyright": "Kazuhito Hokamura" -} \ No newline at end of file +} diff --git a/users/hokypoky.json b/users/hokypoky.json index a22bbda5..2ea94a70 100644 --- a/users/hokypoky.json +++ b/users/hokypoky.json @@ -1,4 +1,4 @@ { "copyright": "Kotaro Imai", "url": "http://hokypoky.info" -} \ No newline at end of file +} diff --git a/users/honyovk.json b/users/honyovk.json index 225ca683..910724bf 100644 --- a/users/honyovk.json +++ b/users/honyovk.json @@ -2,4 +2,4 @@ "copyright": "Matt Jordan", "url": "https://github.com/mbjordan", "theme": "orange" -} \ No newline at end of file +} diff --git a/users/hoop33.json b/users/hoop33.json index 9de1f301..1446c6c4 100644 --- a/users/hoop33.json +++ b/users/hoop33.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "opensans" -} \ No newline at end of file +} diff --git a/users/hope.json b/users/hope.json index ce4d7e6c..484bf415 100644 --- a/users/hope.json +++ b/users/hope.json @@ -3,4 +3,4 @@ "url": "http://hope.ua", "email": "sergey@hope.ua", "gravatar": true -} \ No newline at end of file +} diff --git a/users/hor.json b/users/hor.json index ffbaf592..8174a25d 100644 --- a/users/hor.json +++ b/users/hor.json @@ -3,4 +3,4 @@ "url": "http://hanhor.com", "email": "hanhor.wu@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/horacioibrahim.json b/users/horacioibrahim.json index e01ad7f6..3dc5d5be 100644 --- a/users/horacioibrahim.json +++ b/users/horacioibrahim.json @@ -3,4 +3,4 @@ "url": "http://horacioibrahim.io", "email": "horacioibrahim@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/horiuchi.json b/users/horiuchi.json index 76d0dbec..cb28efd5 100644 --- a/users/horiuchi.json +++ b/users/horiuchi.json @@ -1,4 +1,4 @@ { "copyright": "Hiroki Horiuchi", "url": "https://github.com/horiuchi" -} \ No newline at end of file +} diff --git a/users/hotoo.json b/users/hotoo.json index 845473d4..ed1b7cc8 100644 --- a/users/hotoo.json +++ b/users/hotoo.json @@ -3,4 +3,4 @@ "url": "http://hotoo.me", "email": "hotoo.cn@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/hotplate.json b/users/hotplate.json index 5c152977..7142fe99 100644 --- a/users/hotplate.json +++ b/users/hotplate.json @@ -1,3 +1,3 @@ { "copyright": "Hotplate Labs Ltd" -} \ No newline at end of file +} diff --git a/users/housetrip.json b/users/housetrip.json index 61d6b2aa..2a80f8ff 100644 --- a/users/housetrip.json +++ b/users/housetrip.json @@ -1,3 +1,3 @@ { "copyright": "HouseTrip" -} \ No newline at end of file +} diff --git a/users/hpg.json b/users/hpg.json index 30460c7e..6ae5d158 100644 --- a/users/hpg.json +++ b/users/hpg.json @@ -3,4 +3,4 @@ "url": "http://hrrsn.net", "email": "harrison@thenewthirty.co.nz", "format": "txt" -} \ No newline at end of file +} diff --git a/users/hr.json b/users/hr.json index 325e210b..e14d2e03 100644 --- a/users/hr.json +++ b/users/hr.json @@ -3,4 +3,4 @@ "url": "http://www.hardikr.com", "email": "me@hardikr.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/hss.json b/users/hss.json index 6a8f53c8..8f88e7e5 100644 --- a/users/hss.json +++ b/users/hss.json @@ -3,4 +3,4 @@ "url": "http://harmonsoftwaresolutions.com", "email": "admin@harmonsoftwaresolutions.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/hsyn.json b/users/hsyn.json index 84a6c7d2..db636d15 100644 --- a/users/hsyn.json +++ b/users/hsyn.json @@ -1,3 +1,3 @@ { "copyright": "M. Hüseyin Öztürk" -} \ No newline at end of file +} diff --git a/users/htdvisser.json b/users/htdvisser.json index 8566d4f7..496f9921 100644 --- a/users/htdvisser.json +++ b/users/htdvisser.json @@ -3,4 +3,4 @@ "url": "http://hylkevisser.nl", "email": "htdvisser@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/htjson.json b/users/htjson.json index 363a4e38..aa303a68 100644 --- a/users/htjson.json +++ b/users/htjson.json @@ -3,4 +3,4 @@ "url": "http://github.com/felquis/HTJSON", "email": "frgformenton@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/hug.json b/users/hug.json index 000ba12b..3087926e 100644 --- a/users/hug.json +++ b/users/hug.json @@ -4,4 +4,4 @@ "email": "daniel@hugwebdesign.com", "gravatar": true, "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/hugorper.json b/users/hugorper.json index ad7639dc..5075dae0 100644 --- a/users/hugorper.json +++ b/users/hugorper.json @@ -2,4 +2,4 @@ "copyright": "Hugo Pereira, http://hugorper.com", "url": "http://hugorper.com", "email": "hugorper@gmail.com" -} \ No newline at end of file +} diff --git a/users/husniadil.json b/users/husniadil.json index 9cfedf64..643c96fa 100644 --- a/users/husniadil.json +++ b/users/husniadil.json @@ -4,4 +4,4 @@ "url": "https://github.com/husniadil", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/hwthorn.json b/users/hwthorn.json index de1f7bf5..2a1549bc 100644 --- a/users/hwthorn.json +++ b/users/hwthorn.json @@ -2,4 +2,4 @@ "copyright": "Felix Pflaum", "email": "hwthorn@outlook.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/i.json b/users/i.json index 51387a3e..afe3074d 100644 --- a/users/i.json +++ b/users/i.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "material" -} \ No newline at end of file +} diff --git a/users/iadvize.json b/users/iadvize.json index 96d6bf43..6acff65d 100644 --- a/users/iadvize.json +++ b/users/iadvize.json @@ -1,3 +1,3 @@ { "copyright": "iAdvize" -} \ No newline at end of file +} diff --git a/users/iagodahlem.json b/users/iagodahlem.json index 827f15a1..7c3ff618 100644 --- a/users/iagodahlem.json +++ b/users/iagodahlem.json @@ -3,4 +3,4 @@ "url": "http://iagodahlem.com", "email": "iagodahlemlorensini@gmail.com", "theme": "material-grey" -} \ No newline at end of file +} diff --git a/users/iamale.json b/users/iamale.json index a74354b7..82943501 100644 --- a/users/iamale.json +++ b/users/iamale.json @@ -2,4 +2,4 @@ "copyright": "Alexander Pushkov", "url": "https://ale.rocks", "email": "hi@ale.rocks" -} \ No newline at end of file +} diff --git a/users/iamgabeortiz.json b/users/iamgabeortiz.json index 490ca3fe..c7d07d4a 100644 --- a/users/iamgabeortiz.json +++ b/users/iamgabeortiz.json @@ -3,4 +3,4 @@ "url": "http://gabeortiz.com", "email": "gabeortiz@icloud.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/ian.json b/users/ian.json index 8c02b1ce..ca888cbb 100644 --- a/users/ian.json +++ b/users/ian.json @@ -3,4 +3,4 @@ "url": "http://www.fyianlai.com", "email": "ian@fyianlai.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/ianaya89.json b/users/ianaya89.json index 5cba0105..ce01d8e5 100644 --- a/users/ianaya89.json +++ b/users/ianaya89.json @@ -3,4 +3,4 @@ "url": "http://keepe.rs", "email": "ignacio.anaya89@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/ianfoo.json b/users/ianfoo.json index 5a72567e..9c37fbb2 100644 --- a/users/ianfoo.json +++ b/users/ianfoo.json @@ -1,3 +1,3 @@ { "copyright": "Ian Molee" -} \ No newline at end of file +} diff --git a/users/ianhammondcooper.json b/users/ianhammondcooper.json index 00ebfbcf..fd6d6cbe 100644 --- a/users/ianhammondcooper.json +++ b/users/ianhammondcooper.json @@ -3,4 +3,4 @@ "url": "http://ianhammondcooper.com", "email": "ian_hammond_cooper@yahoo.co.uk", "format": "txt" -} \ No newline at end of file +} diff --git a/users/iantearle.json b/users/iantearle.json index 66acba04..d06094a2 100644 --- a/users/iantearle.json +++ b/users/iantearle.json @@ -2,4 +2,4 @@ "copyright": "Ian Tearle, http://iantearle.com", "url": "http://iantearle.com", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/ianvaughan.json b/users/ianvaughan.json index 71a3921b..54968021 100644 --- a/users/ianvaughan.json +++ b/users/ianvaughan.json @@ -2,4 +2,4 @@ "copyright": "Ian Vaughan", "url": "http://ianvaughan.co.uk", "email": "mit@ianvaughan.co.uk" -} \ No newline at end of file +} diff --git a/users/ianwang.json b/users/ianwang.json index 5c701eec..12b33587 100644 --- a/users/ianwang.json +++ b/users/ianwang.json @@ -3,4 +3,4 @@ "url": "https://github.com/IanWang", "email": "gogoenwon@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/ianwinter.json b/users/ianwinter.json index a9191e3f..869b5128 100644 --- a/users/ianwinter.json +++ b/users/ianwinter.json @@ -1,3 +1,3 @@ { "copyright": "Ian Winter" -} \ No newline at end of file +} diff --git a/users/ic.json b/users/ic.json index fb0ceb96..1ce3d85a 100644 --- a/users/ic.json +++ b/users/ic.json @@ -2,4 +2,4 @@ "copyright": "IC Ignacio", "format": "html", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/ichizok.json b/users/ichizok.json index 30b1dfea..8ff8fd7a 100644 --- a/users/ichizok.json +++ b/users/ichizok.json @@ -2,4 +2,4 @@ "copyright": "Ozaki Kiichi", "url": "https://github.com/ichizok", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/icq4ever.json b/users/icq4ever.json index e4edbec1..bdd1f843 100644 --- a/users/icq4ever.json +++ b/users/icq4ever.json @@ -1,3 +1,3 @@ { "copyright": "Yi donghoon, http://icq4ever.net/" -} \ No newline at end of file +} diff --git a/users/idkazuma.json b/users/idkazuma.json index 3f850e44..dd6dce40 100644 --- a/users/idkazuma.json +++ b/users/idkazuma.json @@ -2,4 +2,4 @@ "copyright": "Kazuma Furuhashi", "email": "idkazuma@gmail.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/idlua.json b/users/idlua.json index cbdf3694..dec400db 100644 --- a/users/idlua.json +++ b/users/idlua.json @@ -3,4 +3,4 @@ "url": "https://idlua.me", "email": "luanfrvicente@gmail.com", "theme": "plaintext" -} \ No newline at end of file +} diff --git a/users/idomusha.json b/users/idomusha.json index 9008f2f2..5604a27a 100644 --- a/users/idomusha.json +++ b/users/idomusha.json @@ -3,4 +3,4 @@ "url": "https://github.com/idomusha", "email": "idomusha@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/iet-ou.json b/users/iet-ou.json index 0104496d..5a47986d 100644 --- a/users/iet-ou.json +++ b/users/iet-ou.json @@ -5,4 +5,4 @@ "gravatar": true, "format": "html", "theme": "opensans" -} \ No newline at end of file +} diff --git a/users/if.json b/users/if.json index 2df913b7..fe7806f1 100644 --- a/users/if.json +++ b/users/if.json @@ -2,4 +2,4 @@ "copyright": "invisible friend", "url": "http://invisiblefriend.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/ifdattic.json b/users/ifdattic.json index 4adac11f..04ee7caf 100644 --- a/users/ifdattic.json +++ b/users/ifdattic.json @@ -1,4 +1,4 @@ { "copyright": "Andrius Marcinkevicius (Andrew M.)", "url": "http://ifdattic.com" -} \ No newline at end of file +} diff --git a/users/igliu.json b/users/igliu.json index e8866c44..b952fb73 100644 --- a/users/igliu.json +++ b/users/igliu.json @@ -1,3 +1,3 @@ { "copyright": "Anthony Liu" -} \ No newline at end of file +} diff --git a/users/igneous.json b/users/igneous.json index adc57ab1..c7d3ebec 100644 --- a/users/igneous.json +++ b/users/igneous.json @@ -1,3 +1,3 @@ { "copyright": "Bucky Wolfe" -} \ No newline at end of file +} diff --git a/users/ignitelabs.json b/users/ignitelabs.json index 646dd491..b5bb6ddb 100644 --- a/users/ignitelabs.json +++ b/users/ignitelabs.json @@ -3,4 +3,4 @@ "url": "http://ignitelabs.net", "email": "rpetz@ignitelabs.net", "format": "txt" -} \ No newline at end of file +} diff --git a/users/igorcorradi.json b/users/igorcorradi.json index 95fa17aa..e4ab6cf2 100644 --- a/users/igorcorradi.json +++ b/users/igorcorradi.json @@ -1,4 +1,4 @@ { "copyright": "Igor Corradi", "email": "igorcorradi.dev@gmail.com" -} \ No newline at end of file +} diff --git a/users/igorprado.json b/users/igorprado.json index 5d8256ef..279b7b64 100644 --- a/users/igorprado.json +++ b/users/igorprado.json @@ -1,3 +1,3 @@ { "copyright": "Igor Prado" -} \ No newline at end of file +} diff --git a/users/iknew.json b/users/iknew.json index bcbd745d..5b86f106 100644 --- a/users/iknew.json +++ b/users/iknew.json @@ -2,4 +2,4 @@ "copyright": "iknew today", "url": "http://iknew.today", "email": "iknew.today@gmail.com" -} \ No newline at end of file +} diff --git a/users/ilee.json b/users/ilee.json index 441eb891..240c5855 100644 --- a/users/ilee.json +++ b/users/ilee.json @@ -3,4 +3,4 @@ "url": "http://ilee.co.uk", "email": "leee@hotmail.co.uk", "format": "txt" -} \ No newline at end of file +} diff --git a/users/imahmoodz.json b/users/imahmoodz.json index bd1da4cb..76398e2d 100644 --- a/users/imahmoodz.json +++ b/users/imahmoodz.json @@ -3,4 +3,4 @@ "url": "http://mahmoodzamani.ir", "email": "imahmoodzamani@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/imalliaros.json b/users/imalliaros.json index 7645e518..d461126d 100644 --- a/users/imalliaros.json +++ b/users/imalliaros.json @@ -3,4 +3,4 @@ "url": "https://jmalliaros.wordpress.com/", "email": "imalliar@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/imjching.json b/users/imjching.json index 74b74a50..829f762d 100644 --- a/users/imjching.json +++ b/users/imjching.json @@ -3,4 +3,4 @@ "url": "http://www.imjching.com", "email": "jay@imjching.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/immae.json b/users/immae.json index ccfd88f6..393fdf3a 100644 --- a/users/immae.json +++ b/users/immae.json @@ -2,4 +2,4 @@ "copyright": "Ismaël Bouya", "url": "http://www.normalesup.org/~bouya/", "format": "txt" -} \ No newline at end of file +} diff --git a/users/imryan.json b/users/imryan.json index c0a5e188..2b08b69a 100644 --- a/users/imryan.json +++ b/users/imryan.json @@ -1,3 +1,3 @@ { "copyright": "Ryan Cohen" -} \ No newline at end of file +} diff --git a/users/incertia.json b/users/incertia.json index b7c22e54..ab42b545 100644 --- a/users/incertia.json +++ b/users/incertia.json @@ -1,3 +1,3 @@ { "copyright": "incertia" -} \ No newline at end of file +} diff --git a/users/indutny.json b/users/indutny.json index 510d0ff4..c0435729 100644 --- a/users/indutny.json +++ b/users/indutny.json @@ -1,3 +1,3 @@ { "copyright": "Fedor Indutny" -} \ No newline at end of file +} diff --git a/users/indy.json b/users/indy.json index b3615d2c..51c67bb4 100644 --- a/users/indy.json +++ b/users/indy.json @@ -2,4 +2,4 @@ "copyright": "Inderjit Gill", "url": "http://indy.io", "email": "email@indy.io" -} \ No newline at end of file +} diff --git a/users/inetpeople.json b/users/inetpeople.json index ec20892c..7ccd0e18 100644 --- a/users/inetpeople.json +++ b/users/inetpeople.json @@ -1,3 +1,3 @@ { "copyright": "inetpeople" -} \ No newline at end of file +} diff --git a/users/instaphp.json b/users/instaphp.json index e9b6c279..907ffb6a 100644 --- a/users/instaphp.json +++ b/users/instaphp.json @@ -3,4 +3,4 @@ "url": "http://instaphp.com", "email": "randy@instaphp.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/intergrated.json b/users/intergrated.json index 280a66d0..91789448 100644 --- a/users/intergrated.json +++ b/users/intergrated.json @@ -3,4 +3,4 @@ "url": "http://intergrated.net", "format": "html", "theme": "opensans" -} \ No newline at end of file +} diff --git a/users/inviz.json b/users/inviz.json index d04a9d0f..78d838ec 100644 --- a/users/inviz.json +++ b/users/inviz.json @@ -4,4 +4,4 @@ "email": "arthur@khashaev.ru", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/ionicabizau.json b/users/ionicabizau.json index 97e1b26e..825a2e35 100644 --- a/users/ionicabizau.json +++ b/users/ionicabizau.json @@ -1,3 +1,3 @@ { "copyright": "Ionică Bizău" -} \ No newline at end of file +} diff --git a/users/ionut.json b/users/ionut.json index c874136b..ce61f060 100644 --- a/users/ionut.json +++ b/users/ionut.json @@ -1,3 +1,3 @@ { "copyright": "Ionut Bajescu" -} \ No newline at end of file +} diff --git a/users/irex.json b/users/irex.json index bb6450b3..72fb3483 100644 --- a/users/irex.json +++ b/users/irex.json @@ -3,4 +3,4 @@ "url": "http://irexinc.org", "email": "memborsky@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/is-uz.json b/users/is-uz.json index 3cdd3651..6c417323 100644 --- a/users/is-uz.json +++ b/users/is-uz.json @@ -3,4 +3,4 @@ "url": "http://is-uz.com", "email": "leandro@is-uz.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/isekaf.json b/users/isekaf.json index b2d7c304..a01d8efa 100644 --- a/users/isekaf.json +++ b/users/isekaf.json @@ -1,4 +1,4 @@ { "copyright": "isekaf", "url": "http://isekaf.github.com/" -} \ No newline at end of file +} diff --git a/users/isekivacenz.json b/users/isekivacenz.json index 35ac996b..71c607c3 100644 --- a/users/isekivacenz.json +++ b/users/isekivacenz.json @@ -1,3 +1,3 @@ { "copyright": "isekivacenz" -} \ No newline at end of file +} diff --git a/users/ishands.json b/users/ishands.json index 22152a1e..903a57fe 100644 --- a/users/ishands.json +++ b/users/ishands.json @@ -3,4 +3,4 @@ "url": "https://ishands.in", "email": "hello@ishands.in", "format": "txt" -} \ No newline at end of file +} diff --git a/users/isle.json b/users/isle.json index af8e8189..eb68e071 100644 --- a/users/isle.json +++ b/users/isle.json @@ -1,3 +1,3 @@ { "copyright": "ISLE Consultants" -} \ No newline at end of file +} diff --git a/users/ismay.json b/users/ismay.json index c38702ab..81c0c55f 100644 --- a/users/ismay.json +++ b/users/ismay.json @@ -1,3 +1,3 @@ { "copyright": "Ismay Wolff" -} \ No newline at end of file +} diff --git a/users/isoden.json b/users/isoden.json index fc4f46d5..80207d86 100644 --- a/users/isoden.json +++ b/users/isoden.json @@ -2,4 +2,4 @@ "copyright": "Yu Isoda, http://isoden.me", "url": "http://isoden.me", "theme": "opensans" -} \ No newline at end of file +} diff --git a/users/istanbulphp.json b/users/istanbulphp.json index 6d6e1fef..7a2e0382 100644 --- a/users/istanbulphp.json +++ b/users/istanbulphp.json @@ -3,4 +3,4 @@ "url": "http://istanbulphp.org", "email": "mail@istanbulphp.org", "format": "txt" -} \ No newline at end of file +} diff --git a/users/it-ony.json b/users/it-ony.json index 0de542fc..9c60d849 100644 --- a/users/it-ony.json +++ b/users/it-ony.json @@ -3,4 +3,4 @@ "url": "http://tonyfindeisen.de", "email": "license@tonyfindeisen.de", "theme": "friendly" -} \ No newline at end of file +} diff --git a/users/itacirgabral.json b/users/itacirgabral.json index a2dab950..efc4e907 100644 --- a/users/itacirgabral.json +++ b/users/itacirgabral.json @@ -4,4 +4,4 @@ "email": "itacirgabral@gmail.com", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/italoqueiroz.json b/users/italoqueiroz.json index 3141922e..4d238672 100644 --- a/users/italoqueiroz.json +++ b/users/italoqueiroz.json @@ -4,4 +4,4 @@ "email": "italoqueiroz@gmail.com", "theme": "afterdark", "gravatar": true -} \ No newline at end of file +} diff --git a/users/ithings4u.json b/users/ithings4u.json index 66e6a014..7221f7c6 100644 --- a/users/ithings4u.json +++ b/users/ithings4u.json @@ -1,3 +1,3 @@ { "copyright": "iThings4U GmbH" -} \ No newline at end of file +} diff --git a/users/itscassa.json b/users/itscassa.json index be12b2d8..6ecaae4b 100644 --- a/users/itscassa.json +++ b/users/itscassa.json @@ -1,3 +1,3 @@ { "copyright": "Cas de Reuver" -} \ No newline at end of file +} diff --git a/users/ivangaravito.json b/users/ivangaravito.json index f048fbca..755e6a54 100644 --- a/users/ivangaravito.json +++ b/users/ivangaravito.json @@ -4,4 +4,4 @@ "email": "ivangaravito@gmail.com", "theme": "default", "gravatar": true -} \ No newline at end of file +} diff --git a/users/iwark.json b/users/iwark.json index 2dd3145e..18d797aa 100644 --- a/users/iwark.json +++ b/users/iwark.json @@ -1,3 +1,3 @@ { "copyright": "Iwark" -} \ No newline at end of file +} diff --git a/users/izumin.json b/users/izumin.json index 67d8bc9b..09d538b3 100644 --- a/users/izumin.json +++ b/users/izumin.json @@ -2,4 +2,4 @@ "copyright": "Masayuki IZUMI", "gravatar": true, "theme": "opensans" -} \ No newline at end of file +} diff --git a/users/j.json b/users/j.json index c4284ff8..d12df0a4 100644 --- a/users/j.json +++ b/users/j.json @@ -2,4 +2,4 @@ "copyright": "Josue Rodriguez", "email": "josue@josuerodriguez.com", "url": "http://josuerodriguez.com" -} \ No newline at end of file +} diff --git a/users/ja.json b/users/ja.json index eac22e2d..a06c67da 100644 --- a/users/ja.json +++ b/users/ja.json @@ -1,4 +1,4 @@ { "copyright": "Jamie Akhtar", "url": "http://jamieakhtar.com" -} \ No newline at end of file +} diff --git a/users/jaanek.json b/users/jaanek.json index d95932ed..88992f50 100644 --- a/users/jaanek.json +++ b/users/jaanek.json @@ -3,4 +3,4 @@ "url": "http://oja.me", "email": "jaanek@oja.me", "format": "txt" -} \ No newline at end of file +} diff --git a/users/jabbrwcky.json b/users/jabbrwcky.json index 6ba15631..2ef71aa2 100644 --- a/users/jabbrwcky.json +++ b/users/jabbrwcky.json @@ -3,4 +3,4 @@ "gravatar": true, "email": "jabbrwcky@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/jackfischer.json b/users/jackfischer.json index e9c2acc0..cfd7eabe 100644 --- a/users/jackfischer.json +++ b/users/jackfischer.json @@ -1,3 +1,3 @@ { "copyright": "Jack Fischer" -} \ No newline at end of file +} diff --git a/users/jadn.json b/users/jadn.json index 768dec4f..f65b6934 100644 --- a/users/jadn.json +++ b/users/jadn.json @@ -1,3 +1,3 @@ { "copyright": "Aden Johannson" -} \ No newline at end of file +} diff --git a/users/jaeckel.json b/users/jaeckel.json index 2352599d..235858f2 100644 --- a/users/jaeckel.json +++ b/users/jaeckel.json @@ -2,4 +2,4 @@ "copyright": "Steffen Jaeckel", "email": "j@eckel.me", "format": "txt" -} \ No newline at end of file +} diff --git a/users/jaequery.json b/users/jaequery.json index 121554eb..eceba13a 100644 --- a/users/jaequery.json +++ b/users/jaequery.json @@ -1,4 +1,4 @@ { "copyright": "Jae Lee, http://jaequery.com", "url": "http://jaequery.com" -} \ No newline at end of file +} diff --git a/users/jafnee.json b/users/jafnee.json index efce8f77..05a6567f 100644 --- a/users/jafnee.json +++ b/users/jafnee.json @@ -1,3 +1,3 @@ { "copyright": "Jafnee Jesmee" -} \ No newline at end of file +} diff --git a/users/jagregory.json b/users/jagregory.json index 7e9adf9f..f96c40fc 100644 --- a/users/jagregory.json +++ b/users/jagregory.json @@ -1,3 +1,3 @@ { "copyright": "James Gregory" -} \ No newline at end of file +} diff --git a/users/jaimeneves.json b/users/jaimeneves.json index 7140776a..89545457 100644 --- a/users/jaimeneves.json +++ b/users/jaimeneves.json @@ -2,4 +2,4 @@ "copyright": "Jaime Neves", "url": "https://jaimeneves.com.br", "email": "jaimebarrosoneves@gmail.com" -} \ No newline at end of file +} diff --git a/users/jais.json b/users/jais.json index 1a8112dc..3e43fb48 100644 --- a/users/jais.json +++ b/users/jais.json @@ -1,3 +1,3 @@ { "copyright": "Jais Cheema" -} \ No newline at end of file +} diff --git a/users/jakebellacera.json b/users/jakebellacera.json index 0eb82c5b..0a1fd539 100644 --- a/users/jakebellacera.json +++ b/users/jakebellacera.json @@ -1,3 +1,3 @@ { "copyright": "Jake Bellacera" -} \ No newline at end of file +} diff --git a/users/jakejohnson.json b/users/jakejohnson.json index 8e5a741e..9435cff2 100644 --- a/users/jakejohnson.json +++ b/users/jakejohnson.json @@ -3,4 +3,4 @@ "url": "http://xyclos.com", "email": "jake@xyclos.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/jakemolnar.json b/users/jakemolnar.json index 62aadd9c..36256c4f 100644 --- a/users/jakemolnar.json +++ b/users/jakemolnar.json @@ -1,3 +1,3 @@ { "copyright": "Jake Molnar" -} \ No newline at end of file +} diff --git a/users/jakschu.json b/users/jakschu.json index fc055be7..86f624c6 100644 --- a/users/jakschu.json +++ b/users/jakschu.json @@ -3,4 +3,4 @@ "email": "i@jakschu.cf", "gravatar": true, "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/jalanb.json b/users/jalanb.json index f55d7d17..0b7498b3 100644 --- a/users/jalanb.json +++ b/users/jalanb.json @@ -3,4 +3,4 @@ "url": "http://www.al-got-rhythm.net", "email": "licensing@al-got-rhythm.net", "format": "txt" -} \ No newline at end of file +} diff --git a/users/james.json b/users/james.json index 39f63f1e..bd008bb1 100644 --- a/users/james.json +++ b/users/james.json @@ -2,4 +2,4 @@ "copyright": "James Liu", "url": "http://g.jamesliu.info", "email": "james@jamesliu.info" -} \ No newline at end of file +} diff --git a/users/jameschen.json b/users/jameschen.json index 9fd59299..66aa8f36 100644 --- a/users/jameschen.json +++ b/users/jameschen.json @@ -3,4 +3,4 @@ "url": "http://ashchan.com", "email": "ashchan@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/jamesclebio.json b/users/jamesclebio.json index d20d0f36..ebcc9d44 100644 --- a/users/jamesclebio.json +++ b/users/jamesclebio.json @@ -1,4 +1,4 @@ { "copyright": "James Clébio", "email": "jamesclebio@gmail.com" -} \ No newline at end of file +} diff --git a/users/jameslawson.json b/users/jameslawson.json index 8734ea52..d67427b4 100644 --- a/users/jameslawson.json +++ b/users/jameslawson.json @@ -3,4 +3,4 @@ "url": "https://github.com/jameslawson", "email": "jameslawson@users.noreply.github.com", "theme": "plaintext" -} \ No newline at end of file +} diff --git a/users/jameswyse.json b/users/jameswyse.json index 52aa55fc..70166c1b 100644 --- a/users/jameswyse.json +++ b/users/jameswyse.json @@ -3,4 +3,4 @@ "url": "http://www.jameswyse.net", "email": "james@wyse.name", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/jamieh.json b/users/jamieh.json index 975ae128..3189db5e 100644 --- a/users/jamieh.json +++ b/users/jamieh.json @@ -3,4 +3,4 @@ "url": "http://jamiehankins.co.uk", "email": "jamiehankin@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/jamiemason.json b/users/jamiemason.json index 02383c4e..48a4de7a 100644 --- a/users/jamiemason.json +++ b/users/jamiemason.json @@ -1,4 +1,4 @@ { "copyright": "Jamie Mason, @GotNoSugarBaby", "url": "https://github.com/jamiemason" -} \ No newline at end of file +} diff --git a/users/jamiesonroberts.json b/users/jamiesonroberts.json index 394d8cb8..cddb7b48 100644 --- a/users/jamiesonroberts.json +++ b/users/jamiesonroberts.json @@ -4,4 +4,4 @@ "email": "hello@jamiesonroberts.ca", "gravatar": true, "theme": "friendly" -} \ No newline at end of file +} diff --git a/users/jan.json b/users/jan.json index 90a04d61..8f14f718 100644 --- a/users/jan.json +++ b/users/jan.json @@ -2,4 +2,4 @@ "copyright": "Jan Lelis ", "url": "http://janlelis.com", "theme": "friendly" -} \ No newline at end of file +} diff --git a/users/jancbeck.json b/users/jancbeck.json index f75ead47..df4ae776 100644 --- a/users/jancbeck.json +++ b/users/jancbeck.json @@ -3,4 +3,4 @@ "url": "http://jancbeck.com", "email": "mail@jancbeck.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/janders223.json b/users/janders223.json index c418bfac..03df1e3c 100644 --- a/users/janders223.json +++ b/users/janders223.json @@ -2,4 +2,4 @@ "copyright": "Jim Anders", "url": "http://janders223.com", "email": "jim@janders223.com" -} \ No newline at end of file +} diff --git a/users/jaredverdi.json b/users/jaredverdi.json index f3e23ae0..5ba9e9d9 100644 --- a/users/jaredverdi.json +++ b/users/jaredverdi.json @@ -4,4 +4,4 @@ "email": "jared@jaredverdi.com", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/jas0ncn.json b/users/jas0ncn.json index 30588ffe..01dd78e3 100644 --- a/users/jas0ncn.json +++ b/users/jas0ncn.json @@ -5,4 +5,4 @@ "email": "jason@iszu.cn", "gravatar": true, "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/jasl.json b/users/jasl.json index 113df756..82ecff87 100644 --- a/users/jasl.json +++ b/users/jasl.json @@ -1,4 +1,4 @@ { "copyright": "Jun Jiang", "email": "jasl9187@hotmail.com" -} \ No newline at end of file +} diff --git a/users/jasondavis.json b/users/jasondavis.json index be74786d..a584fed1 100644 --- a/users/jasondavis.json +++ b/users/jasondavis.json @@ -3,4 +3,4 @@ "url": "http://www.codedevelopr.com", "email": "jason.davis.fl@gmail.com", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/jasondemeuse.json b/users/jasondemeuse.json index 3ada50ea..adb3c45c 100644 --- a/users/jasondemeuse.json +++ b/users/jasondemeuse.json @@ -1,3 +1,3 @@ { "copyright": "Jason Demeuse" -} \ No newline at end of file +} diff --git a/users/jasvir.json b/users/jasvir.json index c893e6da..4f6e44a0 100644 --- a/users/jasvir.json +++ b/users/jasvir.json @@ -1,3 +1,3 @@ { "copyright": "Jasvir Singh Cheema" -} \ No newline at end of file +} diff --git a/users/jaswinder.json b/users/jaswinder.json index 9bfeea51..664ad9a1 100644 --- a/users/jaswinder.json +++ b/users/jaswinder.json @@ -4,4 +4,4 @@ "email": "s.jaswinder03@gmail.com", "gravatar": true, "theme": "eula-modern" -} \ No newline at end of file +} diff --git a/users/jautero.json b/users/jautero.json index c08eaf85..d9e4eb98 100644 --- a/users/jautero.json +++ b/users/jautero.json @@ -2,4 +2,4 @@ "copyright": "Juha Autero", "url": "http://jautero.net/", "email": "jautero@iki.fi" -} \ No newline at end of file +} diff --git a/users/jay.json b/users/jay.json index c6c1b2f0..43ba3696 100644 --- a/users/jay.json +++ b/users/jay.json @@ -1,3 +1,3 @@ { "copyright": "Jay Bosamiya" -} \ No newline at end of file +} diff --git a/users/jaydson.json b/users/jaydson.json index 079b30ef..a7fd7928 100644 --- a/users/jaydson.json +++ b/users/jaydson.json @@ -3,4 +3,4 @@ "url": "http://jaydson.org", "email": "jayalemao@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/jaylynch.json b/users/jaylynch.json index 0697ba53..910d4de9 100644 --- a/users/jaylynch.json +++ b/users/jaylynch.json @@ -2,4 +2,4 @@ "copyright": "Jay Lynch", "url": "http://jaylyn.ch", "theme": "default-dark" -} \ No newline at end of file +} diff --git a/users/jaymecd.json b/users/jaymecd.json index 7bd29b4e..a7d2efa5 100644 --- a/users/jaymecd.json +++ b/users/jaymecd.json @@ -3,4 +3,4 @@ "email": "nikolai.zujev@gmail.com", "theme": "dusk", "gravatar": true -} \ No newline at end of file +} diff --git a/users/jballard.json b/users/jballard.json index 54a75a33..b26ba664 100644 --- a/users/jballard.json +++ b/users/jballard.json @@ -1,4 +1,4 @@ { "copyright": "Jonathan Ballard", "email": "jonathan.ballard@gmail.com" -} \ No newline at end of file +} diff --git a/users/jbb.json b/users/jbb.json index a0a8453d..2615a4ef 100644 --- a/users/jbb.json +++ b/users/jbb.json @@ -1,3 +1,3 @@ { "copyright": "Joey Blake" -} \ No newline at end of file +} diff --git a/users/jbenet.json b/users/jbenet.json index bae13051..f0f1db20 100644 --- a/users/jbenet.json +++ b/users/jbenet.json @@ -1,3 +1,3 @@ { "copyright": "Juan Batiz-Benet" -} \ No newline at end of file +} diff --git a/users/jbonnier.json b/users/jbonnier.json index 1b62952c..7489affd 100644 --- a/users/jbonnier.json +++ b/users/jbonnier.json @@ -5,4 +5,4 @@ "email": "j.bonnier@gmail.com", "gravatar": true, "theme": "default" -} \ No newline at end of file +} diff --git a/users/jbradach.json b/users/jbradach.json index c4d259a2..a53198de 100644 --- a/users/jbradach.json +++ b/users/jbradach.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "eula-modern" -} \ No newline at end of file +} diff --git a/users/jbrodriguez.json b/users/jbrodriguez.json index 4014eca6..e7eb253b 100644 --- a/users/jbrodriguez.json +++ b/users/jbrodriguez.json @@ -2,4 +2,4 @@ "copyright": "Juan B. Rodriguez, http://www.apertoire.net", "url": "http://www.apertoire.net", "email": "jbrodriguez@apertoire.net" -} \ No newline at end of file +} diff --git a/users/jbrooksuk.json b/users/jbrooksuk.json index 26d13353..95c674aa 100644 --- a/users/jbrooksuk.json +++ b/users/jbrooksuk.json @@ -4,4 +4,4 @@ "email": "jbrooksuk@me.com", "theme": "white cherry", "gravatar": true -} \ No newline at end of file +} diff --git a/users/jc.json b/users/jc.json index 7464b394..29bc8015 100644 --- a/users/jc.json +++ b/users/jc.json @@ -1,3 +1,3 @@ { "copyright": "Jonathan Crooke" -} \ No newline at end of file +} diff --git a/users/jcarouth.json b/users/jcarouth.json index 68655d74..7f9741b2 100644 --- a/users/jcarouth.json +++ b/users/jcarouth.json @@ -2,4 +2,4 @@ "copyright": "Jeff Carouth http://carouth.com", "url": "http://carouth.com", "email": "jcarouth@gmail.com" -} \ No newline at end of file +} diff --git a/users/jcart1666.json b/users/jcart1666.json index 90f755ec..d69c43b8 100644 --- a/users/jcart1666.json +++ b/users/jcart1666.json @@ -1,4 +1,4 @@ { "copyright": "Jonathan Cartwright\nThank you", "format": "txt" -} \ No newline at end of file +} diff --git a/users/jcfausto.json b/users/jcfausto.json index e703fde1..dabfa6f5 100644 --- a/users/jcfausto.json +++ b/users/jcfausto.json @@ -4,4 +4,4 @@ "email": "jcfausto@gmail.com", "format": "html", "theme": "default" -} \ No newline at end of file +} diff --git a/users/jcuri.json b/users/jcuri.json index 0ab03ece..996f2844 100644 --- a/users/jcuri.json +++ b/users/jcuri.json @@ -1,3 +1,3 @@ { "copyright": "J-Curi" -} \ No newline at end of file +} diff --git a/users/jczimm.json b/users/jczimm.json index d716d021..015240c3 100644 --- a/users/jczimm.json +++ b/users/jczimm.json @@ -4,4 +4,4 @@ "email": "jczimm@jczimm.com", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/jd.json b/users/jd.json index 89059aa1..296498bc 100644 --- a/users/jd.json +++ b/users/jd.json @@ -2,4 +2,4 @@ "copyright": "JD, http://jdesigns.altervista.org", "url": "http://jdesigns.altervista.org", "theme": "default" -} \ No newline at end of file +} diff --git a/users/jdalton.json b/users/jdalton.json index 79e5c005..fc0c85c8 100644 --- a/users/jdalton.json +++ b/users/jdalton.json @@ -2,4 +2,4 @@ "copyright": "John-David Dalton", "url": "http://allyoucanleet.com/", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/jdavis.json b/users/jdavis.json index f8f4e459..4cf71bc6 100644 --- a/users/jdavis.json +++ b/users/jdavis.json @@ -3,4 +3,4 @@ "url": "http://joshldavis.com", "email": "josh@joshldavis.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/jden.json b/users/jden.json index 0487a46f..04a3732f 100644 --- a/users/jden.json +++ b/users/jden.json @@ -3,4 +3,4 @@ "url": "http://jden.us", "email": "jason@denizac.org", "format": "txt" -} \ No newline at end of file +} diff --git a/users/jdiamond.json b/users/jdiamond.json index 625fd9e1..23fc46ac 100644 --- a/users/jdiamond.json +++ b/users/jdiamond.json @@ -1,3 +1,3 @@ { "copyright": "Jason Diamond" -} \ No newline at end of file +} diff --git a/users/jdrd.json b/users/jdrd.json index 00a42c90..946cd825 100644 --- a/users/jdrd.json +++ b/users/jdrd.json @@ -3,4 +3,4 @@ "url": "http://joelruhland.net", "email": "contact@joelruhland.net", "format": "txt" -} \ No newline at end of file +} diff --git a/users/jeanperez.json b/users/jeanperez.json index 3c6b0646..03ccdb89 100644 --- a/users/jeanperez.json +++ b/users/jeanperez.json @@ -3,4 +3,4 @@ "url": "http://jeanperez.com", "email": "contacto@jeanperez.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/jeanpimentel.json b/users/jeanpimentel.json index 410be4df..275d7e30 100644 --- a/users/jeanpimentel.json +++ b/users/jeanpimentel.json @@ -3,4 +3,4 @@ "url": "http://www.jeanpimentel.com.br", "email": "contato@jeanpimentel.com.br", "format": "txt" -} \ No newline at end of file +} diff --git a/users/jeff.json b/users/jeff.json index d936da7a..93af664f 100644 --- a/users/jeff.json +++ b/users/jeff.json @@ -3,4 +3,4 @@ "url": "http://jeffgodwyll.com", "email": "jeffgodwyll+mit@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/jeffdecola.json b/users/jeffdecola.json index 83c3d190..9d7c740f 100644 --- a/users/jeffdecola.json +++ b/users/jeffdecola.json @@ -4,4 +4,4 @@ "format": "html", "theme": "double-windsor", "gravatar": true -} \ No newline at end of file +} diff --git a/users/jeffmccoy.json b/users/jeffmccoy.json index b0a40f3d..227c20b2 100644 --- a/users/jeffmccoy.json +++ b/users/jeffmccoy.json @@ -3,4 +3,4 @@ "url": "http://jeffm.us", "email": "me@jeffm.us", "theme": "afterdark" -} \ No newline at end of file +} diff --git a/users/jeffreymeng.json b/users/jeffreymeng.json index c55991f8..59e23886 100644 --- a/users/jeffreymeng.json +++ b/users/jeffreymeng.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "dusk" -} \ No newline at end of file +} diff --git a/users/jefsama.json b/users/jefsama.json index 321d6af4..b842615e 100644 --- a/users/jefsama.json +++ b/users/jefsama.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "material-cyan" -} \ No newline at end of file +} diff --git a/users/jellekralt.json b/users/jellekralt.json index aa9908fc..24aa150e 100644 --- a/users/jellekralt.json +++ b/users/jellekralt.json @@ -3,4 +3,4 @@ "url": "http://jellekralt.nl", "theme": "flesch", "gravatar": true -} \ No newline at end of file +} diff --git a/users/jelmer.json b/users/jelmer.json index d2aef0d2..3d28bbd0 100644 --- a/users/jelmer.json +++ b/users/jelmer.json @@ -1,4 +1,4 @@ { "copyright": "Jelmer de Maat, https://github.com/jelmerdemaat", "url": "https://github.com/jelmerdemaat/" -} \ No newline at end of file +} diff --git a/users/jemos.json b/users/jemos.json index fe29466e..f20562f5 100644 --- a/users/jemos.json +++ b/users/jemos.json @@ -1,3 +1,3 @@ { "copyright": "Jean-François Mousinho" -} \ No newline at end of file +} diff --git a/users/jenish.json b/users/jenish.json index befe63f8..97e6c2c2 100644 --- a/users/jenish.json +++ b/users/jenish.json @@ -1,3 +1,3 @@ { "copyright": "Rakholiya Jenish" -} \ No newline at end of file +} diff --git a/users/jeremy.json b/users/jeremy.json index 51c73548..b07382b7 100644 --- a/users/jeremy.json +++ b/users/jeremy.json @@ -3,4 +3,4 @@ "url": "http://www.jeremyrgordon.com", "email": "onejgordon@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/jeremykendall.json b/users/jeremykendall.json index daffda76..75c0130d 100644 --- a/users/jeremykendall.json +++ b/users/jeremykendall.json @@ -2,4 +2,4 @@ "copyright": "Jeremy Kendall, http://about.me/jeremykendall", "url": "http://about.me/jeremykendall", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/jericho.json b/users/jericho.json index 0f610752..ebeb4cc4 100644 --- a/users/jericho.json +++ b/users/jericho.json @@ -1,3 +1,3 @@ { "copyright": "Jeremie Desautels" -} \ No newline at end of file +} diff --git a/users/jermorin.json b/users/jermorin.json index 986839d9..23acde9a 100644 --- a/users/jermorin.json +++ b/users/jermorin.json @@ -3,4 +3,4 @@ "url": "http://jermor.in", "email": "hi@jermor.in", "theme": "solarized" -} \ No newline at end of file +} diff --git a/users/jeroenvisser.json b/users/jeroenvisser.json index 6914009c..bfc0e9c9 100644 --- a/users/jeroenvisser.json +++ b/users/jeroenvisser.json @@ -4,4 +4,4 @@ "email": "me@jrnv.nl", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/jeroenvisser101.json b/users/jeroenvisser101.json index 1402bfcf..c45cfae3 100644 --- a/users/jeroenvisser101.json +++ b/users/jeroenvisser101.json @@ -4,4 +4,4 @@ "email": "jeroenvisser101@gmail.com", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/jesseflorig.json b/users/jesseflorig.json index e167642b..dfbef477 100644 --- a/users/jesseflorig.json +++ b/users/jesseflorig.json @@ -3,4 +3,4 @@ "url": "http://jesseflorig.com", "email": "contact@jesseflorig.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/jesusurrutia.json b/users/jesusurrutia.json index 163277e8..f6b51246 100644 --- a/users/jesusurrutia.json +++ b/users/jesusurrutia.json @@ -5,4 +5,4 @@ "version": "html", "gravatar": true, "theme": "default" -} \ No newline at end of file +} diff --git a/users/jet.json b/users/jet.json index 39c8176d..6c57ade0 100644 --- a/users/jet.json +++ b/users/jet.json @@ -3,4 +3,4 @@ "url": "http://ironhorserails.com", "email": "jet@ironhorserails.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/jetienne.json b/users/jetienne.json index db979720..8adf4cb5 100644 --- a/users/jetienne.json +++ b/users/jetienne.json @@ -1,4 +1,4 @@ { "copyright": "Jerome Etienne, http://jetienne.com", "url": "http://jetienne.com" -} \ No newline at end of file +} diff --git a/users/jfgodoy.json b/users/jfgodoy.json index ad040c53..6fc1bbf2 100644 --- a/users/jfgodoy.json +++ b/users/jfgodoy.json @@ -2,4 +2,4 @@ "copyright": "Jorge Godoy", "email": "godoy.jf@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/jfsiii.json b/users/jfsiii.json index 3fa53893..5dc2b2b3 100644 --- a/users/jfsiii.json +++ b/users/jfsiii.json @@ -1,4 +1,4 @@ { "copyright": "John Schulz", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/jgrossi.json b/users/jgrossi.json index 8ba585d6..37ead4d2 100644 --- a/users/jgrossi.json +++ b/users/jgrossi.json @@ -2,4 +2,4 @@ "copyright": "Junior Grossi", "url": "http://jgrossi.com", "email": "juniorgro@gmail.com" -} \ No newline at end of file +} diff --git a/users/jhink.json b/users/jhink.json index c1ad1382..cdec411d 100644 --- a/users/jhink.json +++ b/users/jhink.json @@ -3,4 +3,4 @@ "email": "we@jhink.com", "format": "html", "theme": "material-indigo" -} \ No newline at end of file +} diff --git a/users/ji.json b/users/ji.json index d7b03ca7..c2334a09 100644 --- a/users/ji.json +++ b/users/ji.json @@ -1,4 +1,4 @@ { "copyright": "Jamie Isaacs, http://jamieisaacs.com", "email": "pdt256@gmail.com" -} \ No newline at end of file +} diff --git a/users/jibreil.json b/users/jibreil.json index dce09413..647a70d6 100644 --- a/users/jibreil.json +++ b/users/jibreil.json @@ -3,4 +3,4 @@ "url": "https://jibreil.xyz", "email": "jibreilhoneine@gmail.com", "theme": "material-red" -} \ No newline at end of file +} diff --git a/users/jimeh.json b/users/jimeh.json index 95df5940..55d50e28 100644 --- a/users/jimeh.json +++ b/users/jimeh.json @@ -2,4 +2,4 @@ "copyright": "Jim Myhrberg (jimeh).", "url": "http://jimeh.me", "format": "txt" -} \ No newline at end of file +} diff --git a/users/jimjum.json b/users/jimjum.json index e89fe8d2..27388af0 100644 --- a/users/jimjum.json +++ b/users/jimjum.json @@ -1,3 +1,3 @@ { "copyright": "HTML23, inc." -} \ No newline at end of file +} diff --git a/users/jimmyking.json b/users/jimmyking.json index 51dbc78a..667260dc 100644 --- a/users/jimmyking.json +++ b/users/jimmyking.json @@ -4,4 +4,4 @@ "email": "hello@jimmyking.me", "gravatar": true, "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/jin.json b/users/jin.json index 418a0ac6..f9ecd7b0 100644 --- a/users/jin.json +++ b/users/jin.json @@ -1,3 +1,3 @@ { "copyright": "JIN YANG" -} \ No newline at end of file +} diff --git a/users/jinnovation.json b/users/jinnovation.json index 76ef6d57..de7f5a3b 100644 --- a/users/jinnovation.json +++ b/users/jinnovation.json @@ -1,3 +1,3 @@ { "copyright": "Jonathan Jin" -} \ No newline at end of file +} diff --git a/users/jitinl.json b/users/jitinl.json index 11a26738..1af29673 100644 --- a/users/jitinl.json +++ b/users/jitinl.json @@ -1,3 +1,3 @@ { "copyright": "Jitin Luthra" -} \ No newline at end of file +} diff --git a/users/jizoo.json b/users/jizoo.json index e6f23c5c..81c4ac3c 100644 --- a/users/jizoo.json +++ b/users/jizoo.json @@ -2,4 +2,4 @@ "copyright": "Jizoo", "url": "http://jizoo.net", "format": "txt" -} \ No newline at end of file +} diff --git a/users/jj1bdx.json b/users/jj1bdx.json index 887f63f4..5fdd7127 100644 --- a/users/jj1bdx.json +++ b/users/jj1bdx.json @@ -3,4 +3,4 @@ "url": "http://www.k2r.org/kenji/", "email": "kenji.rikitake@acm.org", "format": "txt" -} \ No newline at end of file +} diff --git a/users/jkeyes.json b/users/jkeyes.json index c6d674fa..7edfd022 100644 --- a/users/jkeyes.json +++ b/users/jkeyes.json @@ -2,4 +2,4 @@ "copyright": "John Keyes", "url": "http://keyes.ie", "email": "john@keyes.ie" -} \ No newline at end of file +} diff --git a/users/jkimbo.json b/users/jkimbo.json index 819d5744..54663880 100644 --- a/users/jkimbo.json +++ b/users/jkimbo.json @@ -3,4 +3,4 @@ "url": "http://jkimbo.com", "email": "hello@jkimbo.com", "theme": "afterdark" -} \ No newline at end of file +} diff --git a/users/jmazz.json b/users/jmazz.json index 6dcc9a7f..77a84b3a 100644 --- a/users/jmazz.json +++ b/users/jmazz.json @@ -3,4 +3,4 @@ "url": "http://jmazz.me", "email": "mazzitelli.julian@gmail.com", "theme": "xtansia" -} \ No newline at end of file +} diff --git a/users/jmblog.json b/users/jmblog.json index c4f936e2..1ddd7a2a 100644 --- a/users/jmblog.json +++ b/users/jmblog.json @@ -1,4 +1,4 @@ { "copyright": "Yoshihide Jimbo", "url": "https://github.com/jmblog/" -} \ No newline at end of file +} diff --git a/users/jmendeth.json b/users/jmendeth.json index 720895cc..402c448e 100644 --- a/users/jmendeth.json +++ b/users/jmendeth.json @@ -3,4 +3,4 @@ "url": "http://jmendeth.com", "email": "jmendeth@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/jmeosbn.json b/users/jmeosbn.json index 485ab9c8..bbaacfc2 100644 --- a/users/jmeosbn.json +++ b/users/jmeosbn.json @@ -1,4 +1,4 @@ { "copyright": "Jamie Osborne", "url": "http://jmeosbn.github.io" -} \ No newline at end of file +} diff --git a/users/jmhodges.json b/users/jmhodges.json index d4f04a38..b82ff7ac 100644 --- a/users/jmhodges.json +++ b/users/jmhodges.json @@ -3,4 +3,4 @@ "url": "http://www.somethingsimilar.com", "email": "jeff@somethingsimilar.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/jmiller.json b/users/jmiller.json index 4d1ce80d..27ef33d6 100644 --- a/users/jmiller.json +++ b/users/jmiller.json @@ -1,4 +1,4 @@ { "copyright": "Jesse Miller", "email": "jmiller@jmiller.com" -} \ No newline at end of file +} diff --git a/users/jmm.json b/users/jmm.json index 7e646fe8..43b11f86 100644 --- a/users/jmm.json +++ b/users/jmm.json @@ -1,3 +1,3 @@ { "copyright": "john muhl" -} \ No newline at end of file +} diff --git a/users/jmparsons.json b/users/jmparsons.json index a3d20765..c8e3dae2 100644 --- a/users/jmparsons.json +++ b/users/jmparsons.json @@ -1,3 +1,3 @@ { "copyright": "Jonathan Parsons" -} \ No newline at end of file +} diff --git a/users/jnf.json b/users/jnf.json index 208e083f..1dbffab9 100644 --- a/users/jnf.json +++ b/users/jnf.json @@ -1,3 +1,3 @@ { "copyright": "Jeremy Flores" -} \ No newline at end of file +} diff --git a/users/jnj.json b/users/jnj.json index 17bbe22e..88fa4db0 100644 --- a/users/jnj.json +++ b/users/jnj.json @@ -4,4 +4,4 @@ "email": "jake@jakejohns.net", "gravatar": true, "theme": "black-beauty" -} \ No newline at end of file +} diff --git a/users/jnjosh.json b/users/jnjosh.json index 5f9678e2..d178d0c3 100644 --- a/users/jnjosh.json +++ b/users/jnjosh.json @@ -2,4 +2,4 @@ "copyright": "Josh Johnson", "url": "http://jnjosh.com", "email": "jnjosh@jnjosh.com" -} \ No newline at end of file +} diff --git a/users/jnw.json b/users/jnw.json index 8e10c82a..151db8a0 100644 --- a/users/jnw.json +++ b/users/jnw.json @@ -3,4 +3,4 @@ "url": "http://jnw.io/", "email": "william@jnw.io", "gravatar": true -} \ No newline at end of file +} diff --git a/users/joaos.json b/users/joaos.json index 49403651..3a65f42a 100644 --- a/users/joaos.json +++ b/users/joaos.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "eula-modern" -} \ No newline at end of file +} diff --git a/users/jobquest.json b/users/jobquest.json index 817183c3..6f8705a0 100644 --- a/users/jobquest.json +++ b/users/jobquest.json @@ -4,4 +4,4 @@ "email": "thisisjobquest@.com", "format": "txt", "theme": "white cherry" -} \ No newline at end of file +} diff --git a/users/jody.json b/users/jody.json index 266de719..15fe3e66 100644 --- a/users/jody.json +++ b/users/jody.json @@ -1,4 +1,4 @@ { "copyright": "Jody Mickey", "url": "http://jodymickey.com" -} \ No newline at end of file +} diff --git a/users/joe.json b/users/joe.json index 62abdc27..8a798121 100644 --- a/users/joe.json +++ b/users/joe.json @@ -2,4 +2,4 @@ "copyright": "Joe Presbrey", "url": "http://presbrey.mit.edu/", "email": "joepresbrey@mit.edu" -} \ No newline at end of file +} diff --git a/users/joelambert.json b/users/joelambert.json index 645c81bb..19b99b98 100644 --- a/users/joelambert.json +++ b/users/joelambert.json @@ -1,3 +1,3 @@ { "copyright": "Joe Lambert, http://joelambert.co.uk/" -} \ No newline at end of file +} diff --git a/users/joelbladt.json b/users/joelbladt.json index b71b4c27..4c8c00c3 100644 --- a/users/joelbladt.json +++ b/users/joelbladt.json @@ -4,4 +4,4 @@ "email": "hello@joelbladt.de", "gravatar": true, "theme": "opensans" -} \ No newline at end of file +} diff --git a/users/joelpurra.json b/users/joelpurra.json index 61f2fee4..b67a8e56 100644 --- a/users/joelpurra.json +++ b/users/joelpurra.json @@ -3,4 +3,4 @@ "url": "http://joelpurra.com/", "email": "code@joelpurra.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/joelself.json b/users/joelself.json index 1882380d..cce092ad 100644 --- a/users/joelself.json +++ b/users/joelself.json @@ -1,3 +1,3 @@ { "copyright": "Joel Self" -} \ No newline at end of file +} diff --git a/users/joelwalters.json b/users/joelwalters.json index 648f447d..35eae657 100644 --- a/users/joelwalters.json +++ b/users/joelwalters.json @@ -1,3 +1,3 @@ { "copyright": "Joel Walters" -} \ No newline at end of file +} diff --git a/users/joeyblake.json b/users/joeyblake.json index 03113cb6..57a9bf38 100644 --- a/users/joeyblake.json +++ b/users/joeyblake.json @@ -2,4 +2,4 @@ "copyright": "Joey Blake, http://codenimbus.com", "url": "http://codenimbus.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/joeyespo.json b/users/joeyespo.json index 11366dcf..7b7d85ab 100644 --- a/users/joeyespo.json +++ b/users/joeyespo.json @@ -3,4 +3,4 @@ "url": "http://joeyespo.com", "email": "joe@joeyespo.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/jogy.json b/users/jogy.json index cd1ebcaf..c20420a1 100644 --- a/users/jogy.json +++ b/users/jogy.json @@ -1,4 +1,4 @@ { "copyright": "Johann Gyger", "url": "https://github.com/jogy/" -} \ No newline at end of file +} diff --git a/users/johan.json b/users/johan.json index 872b14b9..f5f8cc62 100644 --- a/users/johan.json +++ b/users/johan.json @@ -1,4 +1,4 @@ { "copyright": "Johan Brook, http://johanbrook.com", "url": "http://johanbrook.com" -} \ No newline at end of file +} diff --git a/users/johanekhager.json b/users/johanekhager.json index 58b89624..ee732069 100644 --- a/users/johanekhager.json +++ b/users/johanekhager.json @@ -3,4 +3,4 @@ "url": "http://johanekhager.com", "format": "html", "theme": "magic-mint" -} \ No newline at end of file +} diff --git a/users/johanhalse.json b/users/johanhalse.json index 8169feae..a69c1a44 100644 --- a/users/johanhalse.json +++ b/users/johanhalse.json @@ -3,4 +3,4 @@ "url": "http://www.varvet.se", "email": "johan@varvet.se", "gravatar": true -} \ No newline at end of file +} diff --git a/users/john.json b/users/john.json index 6f50ee85..2cbec00e 100644 --- a/users/john.json +++ b/users/john.json @@ -1,3 +1,3 @@ { "copyright": "John Barton" -} \ No newline at end of file +} diff --git a/users/johnathanjenkins.json b/users/johnathanjenkins.json index 0848825a..19af7f54 100644 --- a/users/johnathanjenkins.json +++ b/users/johnathanjenkins.json @@ -1,3 +1,3 @@ { "copyright": "Johnathan Jenkins" -} \ No newline at end of file +} diff --git a/users/johndyer.json b/users/johndyer.json index e350add4..7dbb1d2a 100644 --- a/users/johndyer.json +++ b/users/johndyer.json @@ -1,3 +1,3 @@ { "copyright": "John Dyer" -} \ No newline at end of file +} diff --git a/users/johnjensen.json b/users/johnjensen.json index ea0dd12f..501fb3b8 100644 --- a/users/johnjensen.json +++ b/users/johnjensen.json @@ -1,3 +1,3 @@ { "copyright": "John Jensen" -} \ No newline at end of file +} diff --git a/users/johnmcc.json b/users/johnmcc.json index c1a54469..af72b7e3 100644 --- a/users/johnmcc.json +++ b/users/johnmcc.json @@ -1,3 +1,3 @@ { "copyright": "John McCollum, http://johnmc.co/llum" -} \ No newline at end of file +} diff --git a/users/johnmdonahue.json b/users/johnmdonahue.json index 2838e4d9..6916130d 100644 --- a/users/johnmdonahue.json +++ b/users/johnmdonahue.json @@ -1,4 +1,4 @@ { "copyright": "John Donahue, http://johnmdonahue.com", "url": "http://johnmdonahue.com" -} \ No newline at end of file +} diff --git a/users/johnny.json b/users/johnny.json index 97c77c54..5a309df7 100644 --- a/users/johnny.json +++ b/users/johnny.json @@ -1,4 +1,4 @@ { "copyright": "文强 宋", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/johnschult.json b/users/johnschult.json index b3b2a800..160ea1d7 100644 --- a/users/johnschult.json +++ b/users/johnschult.json @@ -3,4 +3,4 @@ "email": "johnschult@icloud.com", "gravatar": true, "theme": "default" -} \ No newline at end of file +} diff --git a/users/johnsullivan.json b/users/johnsullivan.json index 849becc2..d8bf70b2 100644 --- a/users/johnsullivan.json +++ b/users/johnsullivan.json @@ -1,4 +1,4 @@ { "copyright": "John Sullivan", "email": "jsull003@ucr.edu" -} \ No newline at end of file +} diff --git a/users/johntfoster.json b/users/johntfoster.json index 1d296fa6..df5d9cc8 100644 --- a/users/johntfoster.json +++ b/users/johntfoster.json @@ -3,4 +3,4 @@ "url": "http://johntfoster.github.io", "email": "johntfosterjr@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/jokliu.json b/users/jokliu.json index 80c07939..8228af71 100644 --- a/users/jokliu.json +++ b/users/jokliu.json @@ -1,4 +1,4 @@ { "copyright": "Jokubas Liutkus", "theme": "dusk" -} \ No newline at end of file +} diff --git a/users/jonas.json b/users/jonas.json index 46b61614..5048b207 100644 --- a/users/jonas.json +++ b/users/jonas.json @@ -3,4 +3,4 @@ "url": "http://xn--stf-qla.se", "email": "jonas@satf.se", "format": "txt" -} \ No newline at end of file +} diff --git a/users/jonathanheaven.json b/users/jonathanheaven.json index b8ea2971..a2169848 100644 --- a/users/jonathanheaven.json +++ b/users/jonathanheaven.json @@ -3,4 +3,4 @@ "url": "http://jonathanheaven.com", "email": "jheaven@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/jonathanwiesel.json b/users/jonathanwiesel.json index 28744193..b83b467e 100644 --- a/users/jonathanwiesel.json +++ b/users/jonathanwiesel.json @@ -4,4 +4,4 @@ "email": "jonathanwiesel@gmail.com", "gravatar": true, "theme": "black-beauty" -} \ No newline at end of file +} diff --git a/users/jongretar.json b/users/jongretar.json index 73e98e50..144afb10 100644 --- a/users/jongretar.json +++ b/users/jongretar.json @@ -3,4 +3,4 @@ "url": "http://jongretar.com", "email": "jongretar@jongretar.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/jonmcpherson.json b/users/jonmcpherson.json index d3948663..2e7741c7 100644 --- a/users/jonmcpherson.json +++ b/users/jonmcpherson.json @@ -2,4 +2,4 @@ "copyright": "Jon McPherson", "url": "http://jonmcpherson.com", "email": "contact@jonmcpherson.com" -} \ No newline at end of file +} diff --git a/users/jonnung-grp.json b/users/jonnung-grp.json index 51342391..2d0806ab 100644 --- a/users/jonnung-grp.json +++ b/users/jonnung-grp.json @@ -1,3 +1,3 @@ { "copyright": "jonnung, http://jonnung-grp.appspot.com/" -} \ No newline at end of file +} diff --git a/users/jonscottclark.json b/users/jonscottclark.json index 6bc9cfa7..ae08c30c 100644 --- a/users/jonscottclark.json +++ b/users/jonscottclark.json @@ -2,4 +2,4 @@ "copyright": "Jon Scott Clark, http://jclark.io", "url": "http://jclark.io", "email": "me@jclark.io" -} \ No newline at end of file +} diff --git a/users/jonstites.json b/users/jonstites.json index 672fb18d..fb4694b4 100644 --- a/users/jonstites.json +++ b/users/jonstites.json @@ -3,4 +3,4 @@ "email": "contact@jonstites.com", "format": "html", "theme": "eula-modern" -} \ No newline at end of file +} diff --git a/users/joom.json b/users/joom.json index 60de1eeb..35e68c3f 100644 --- a/users/joom.json +++ b/users/joom.json @@ -3,4 +3,4 @@ "url": "http://joom.im", "email": "cumhurkorkut@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/joostlawerman.json b/users/joostlawerman.json index 5d14df0f..5ed3ab3e 100644 --- a/users/joostlawerman.json +++ b/users/joostlawerman.json @@ -4,4 +4,4 @@ "email": "joost@lawerman.me", "theme": "material-red", "gravatar": false -} \ No newline at end of file +} diff --git a/users/jordimorillo.json b/users/jordimorillo.json index 2e36888d..94e02bf3 100644 --- a/users/jordimorillo.json +++ b/users/jordimorillo.json @@ -2,4 +2,4 @@ "copyright": "Jordi Morillo Sells, http://www.programador-web.com", "url": "http://www.programador-web.com", "email": "jordi.morillo@programador-web.com" -} \ No newline at end of file +} diff --git a/users/joren.json b/users/joren.json index 1fd76b31..1b0fde72 100644 --- a/users/joren.json +++ b/users/joren.json @@ -2,4 +2,4 @@ "copyright": "Joren Van Hee, http://joren.co", "url": "http://joren.co", "theme": "plaintext" -} \ No newline at end of file +} diff --git a/users/jorge-matricali.json b/users/jorge-matricali.json index 3a8e2901..655b601d 100644 --- a/users/jorge-matricali.json +++ b/users/jorge-matricali.json @@ -5,4 +5,4 @@ "format": "html", "theme": "8bits-monochrome-amber", "gravatar": true -} \ No newline at end of file +} diff --git a/users/jorge.json b/users/jorge.json index 47ae1877..25df446c 100644 --- a/users/jorge.json +++ b/users/jorge.json @@ -1,3 +1,3 @@ { "copyright": "Jorge Gonzalez" -} \ No newline at end of file +} diff --git a/users/joseandro.json b/users/joseandro.json index 2c172b1e..d9df59f0 100644 --- a/users/joseandro.json +++ b/users/joseandro.json @@ -3,4 +3,4 @@ "url": "https://github.com/joseandro", "email": "joseandro.luiz@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/josh.json b/users/josh.json index ddca292d..7943b9d4 100644 --- a/users/josh.json +++ b/users/josh.json @@ -2,4 +2,4 @@ "copyright": "Josh Perez, http://www.goatslacker.com", "url": "http://www.goatslacker.com", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/joshboehm.json b/users/joshboehm.json index d69bb69a..18fa736a 100644 --- a/users/joshboehm.json +++ b/users/joshboehm.json @@ -1,3 +1,3 @@ { "copyright": "Josh Boehm" -} \ No newline at end of file +} diff --git a/users/joshbuhler.json b/users/joshbuhler.json index 9eae9fd1..352d94ed 100644 --- a/users/joshbuhler.json +++ b/users/joshbuhler.json @@ -1,3 +1,3 @@ { "copyright": "Joshua Buhler" -} \ No newline at end of file +} diff --git a/users/joshje.json b/users/joshje.json index acb9a5a0..314a7028 100644 --- a/users/joshje.json +++ b/users/joshje.json @@ -1,3 +1,3 @@ { "copyright": "Josh Emerson" -} \ No newline at end of file +} diff --git a/users/joshua.json b/users/joshua.json index e7e92c2d..37c53d5e 100644 --- a/users/joshua.json +++ b/users/joshua.json @@ -4,4 +4,4 @@ "format": "html", "theme": "blackwood", "url": "http://joshuakendall.com" -} \ No newline at end of file +} diff --git a/users/joshuacanfield.json b/users/joshuacanfield.json index 12c333d6..862dac82 100644 --- a/users/joshuacanfield.json +++ b/users/joshuacanfield.json @@ -3,4 +3,4 @@ "url": "http://www.icodeclarity.com", "email": "support@icodeclarity.com", "theme": "plaintext" -} \ No newline at end of file +} diff --git a/users/joshuaptfan.json b/users/joshuaptfan.json index 517ac48e..1a397c75 100644 --- a/users/joshuaptfan.json +++ b/users/joshuaptfan.json @@ -3,4 +3,4 @@ "url": "https://github.com/joshuaptfan", "email": "joshuaptfan@gmail.com", "theme": "material" -} \ No newline at end of file +} diff --git a/users/joslyn.json b/users/joslyn.json index 28c089d1..11400437 100644 --- a/users/joslyn.json +++ b/users/joslyn.json @@ -1,3 +1,3 @@ { "copyright": "Joslyn Rosbrook" -} \ No newline at end of file +} diff --git a/users/josue.json b/users/josue.json index a3197dd4..e0d73155 100644 --- a/users/josue.json +++ b/users/josue.json @@ -1,3 +1,3 @@ { "copyright": "Josue Rodriguez" -} \ No newline at end of file +} diff --git a/users/josuer.json b/users/josuer.json index c4284ff8..d12df0a4 100644 --- a/users/josuer.json +++ b/users/josuer.json @@ -2,4 +2,4 @@ "copyright": "Josue Rodriguez", "email": "josue@josuerodriguez.com", "url": "http://josuerodriguez.com" -} \ No newline at end of file +} diff --git a/users/josuerodriguez.json b/users/josuerodriguez.json index c4284ff8..d12df0a4 100644 --- a/users/josuerodriguez.json +++ b/users/josuerodriguez.json @@ -2,4 +2,4 @@ "copyright": "Josue Rodriguez", "email": "josue@josuerodriguez.com", "url": "http://josuerodriguez.com" -} \ No newline at end of file +} diff --git a/users/jotschi.json b/users/jotschi.json index e27b1434..a1a8a96c 100644 --- a/users/jotschi.json +++ b/users/jotschi.json @@ -3,4 +3,4 @@ "url": "http://jotschi.de", "email": "code@jotschi.de", "format": "txt" -} \ No newline at end of file +} diff --git a/users/joyce.json b/users/joyce.json index c164f54e..75076085 100644 --- a/users/joyce.json +++ b/users/joyce.json @@ -3,4 +3,4 @@ "url": "http://joyceschan.posterous.com", "email": "joyce.sz.chan@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/joyceschan.json b/users/joyceschan.json index 0414d92f..c72fd6a5 100644 --- a/users/joyceschan.json +++ b/users/joyceschan.json @@ -3,4 +3,4 @@ "url": "http://joyceschan.posterous.com", "email": "", "format": "txt" -} \ No newline at end of file +} diff --git a/users/jp.json b/users/jp.json index 15e12184..f3f1facc 100644 --- a/users/jp.json +++ b/users/jp.json @@ -1,3 +1,3 @@ { "copyright": "JP Smith" -} \ No newline at end of file +} diff --git a/users/jprice.json b/users/jprice.json index 3d5501b1..8f09a985 100644 --- a/users/jprice.json +++ b/users/jprice.json @@ -4,4 +4,4 @@ "email": "josh@jprice.io", "gravatar": true, "theme": "black-beauty" -} \ No newline at end of file +} diff --git a/users/jpsirois.json b/users/jpsirois.json index 57f237ff..b1ae6dab 100644 --- a/users/jpsirois.json +++ b/users/jpsirois.json @@ -3,4 +3,4 @@ "url": "http://jpsirois.com", "email": "email@jpsirois.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/jquery-client.json b/users/jquery-client.json index 5f885022..10fdfe09 100644 --- a/users/jquery-client.json +++ b/users/jquery-client.json @@ -3,4 +3,4 @@ "url": "https://github.com/wikimedia/jquery-client", "format": "html", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/jr.json b/users/jr.json index 976233db..3e1386c5 100644 --- a/users/jr.json +++ b/users/jr.json @@ -1,4 +1,4 @@ { "copyright": "Johannes Röttger, http://johannes.roettger.us", "url": "http://johannes.roettger.us" -} \ No newline at end of file +} diff --git a/users/jrattanpal.json b/users/jrattanpal.json index 969a00c6..2a8e869c 100644 --- a/users/jrattanpal.json +++ b/users/jrattanpal.json @@ -2,4 +2,4 @@ "copyright": "Jaswinder Singh Rattanpal", "url": "http://www.rattanpal.com", "email": "rattanpal@rattanpal.com" -} \ No newline at end of file +} diff --git a/users/jre.json b/users/jre.json index 581d688c..00969d10 100644 --- a/users/jre.json +++ b/users/jre.json @@ -1,3 +1,3 @@ { "copyright": "Julian Reyes Escrigas" -} \ No newline at end of file +} diff --git a/users/jrudenstam.json b/users/jrudenstam.json index 444846aa..b5070166 100644 --- a/users/jrudenstam.json +++ b/users/jrudenstam.json @@ -3,4 +3,4 @@ "url": "http://typisktmig.se", "email": "jrudenstam@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/jruhland.json b/users/jruhland.json index 09fcd913..a823639a 100644 --- a/users/jruhland.json +++ b/users/jruhland.json @@ -4,4 +4,4 @@ "email": "contact@joelruhland.net", "format": "txt", "theme": "open-sans" -} \ No newline at end of file +} diff --git a/users/jryans.json b/users/jryans.json index 2a2e17c4..0548e167 100644 --- a/users/jryans.json +++ b/users/jryans.json @@ -3,4 +3,4 @@ "url": "https://github.com/jryans", "email": "jryans@gmail.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/js.json b/users/js.json index 735a2a03..2fd651c2 100644 --- a/users/js.json +++ b/users/js.json @@ -4,4 +4,4 @@ "email": "joshsuggs@gmail.com", "format": "html", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/jsbin.json b/users/jsbin.json index f792c22a..29c3a7b2 100644 --- a/users/jsbin.json +++ b/users/jsbin.json @@ -1,4 +1,4 @@ { "copyright": "JS Bin Ltd", "url": "http://jsbin.com" -} \ No newline at end of file +} diff --git a/users/jseppi.json b/users/jseppi.json index 85053a67..6e94c5ca 100644 --- a/users/jseppi.json +++ b/users/jseppi.json @@ -3,4 +3,4 @@ "url": "http://coseppi.com", "email": "james.seppi@gmail.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/jsumners.json b/users/jsumners.json index 65ca48f9..ecd7b38c 100644 --- a/users/jsumners.json +++ b/users/jsumners.json @@ -4,4 +4,4 @@ "email": "james.sumners@gmail.com", "gravatar": true, "theme": "friendly" -} \ No newline at end of file +} diff --git a/users/jtb.json b/users/jtb.json index f3f9cb31..2f461f13 100644 --- a/users/jtb.json +++ b/users/jtb.json @@ -1,3 +1,3 @@ { "copyright": "Justin Buchanan" -} \ No newline at end of file +} diff --git a/users/jtkendall.json b/users/jtkendall.json index 2a5702b4..b608302c 100644 --- a/users/jtkendall.json +++ b/users/jtkendall.json @@ -4,4 +4,4 @@ "format": "html", "theme": "blackwood", "url": "http://twitter.com/jtkendall" -} \ No newline at end of file +} diff --git a/users/jtr.json b/users/jtr.json index e1c26e54..92fb504f 100644 --- a/users/jtr.json +++ b/users/jtr.json @@ -1,3 +1,3 @@ { "copyright": "Jeroen Trappers" -} \ No newline at end of file +} diff --git a/users/jtwalters.json b/users/jtwalters.json index 5ab73d24..8bdf2c05 100644 --- a/users/jtwalters.json +++ b/users/jtwalters.json @@ -2,4 +2,4 @@ "copyright": "Joel Walters", "url": "http://joelwalters.com", "email": "jtwalters@gmail.com" -} \ No newline at end of file +} diff --git a/users/jtyost2.json b/users/jtyost2.json index 37de248f..d6cb1b72 100644 --- a/users/jtyost2.json +++ b/users/jtyost2.json @@ -3,4 +3,4 @@ "url": "https://www.yostivanic.com/", "email": "justin.yost@yostivanich.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/juanitofatas.json b/users/juanitofatas.json index 16641840..5fc64543 100644 --- a/users/juanitofatas.json +++ b/users/juanitofatas.json @@ -3,4 +3,4 @@ "url": "http://lisp.es/", "email": "katehuang0320@gmail.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/julesj.json b/users/julesj.json index 91cbbb10..82870c02 100644 --- a/users/julesj.json +++ b/users/julesj.json @@ -3,4 +3,4 @@ "url": "http://julesj.nl", "email": "jules@julesj.nl", "format": "html" -} \ No newline at end of file +} diff --git a/users/julien-breux.json b/users/julien-breux.json index fd37701a..83d4b6a9 100644 --- a/users/julien-breux.json +++ b/users/julien-breux.json @@ -1,3 +1,3 @@ { "copyright": "Julien Breux" -} \ No newline at end of file +} diff --git a/users/julienw.json b/users/julienw.json index 1ee77ec9..9e0ad1a3 100644 --- a/users/julienw.json +++ b/users/julienw.json @@ -2,4 +2,4 @@ "copyright": "Julien Wajsberg", "url": "http://everlong.org/", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/junookyo.json b/users/junookyo.json index 4b6196ab..377a7039 100644 --- a/users/junookyo.json +++ b/users/junookyo.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "hmt-blue" -} \ No newline at end of file +} diff --git a/users/justin.json b/users/justin.json index de3f5c6d..e718e6a5 100644 --- a/users/justin.json +++ b/users/justin.json @@ -1,4 +1,4 @@ { "copyright": "Justin Sisley", "url": "http://justinsisley.com" -} \ No newline at end of file +} diff --git a/users/justinian.json b/users/justinian.json index f10ae31e..f86c5a1d 100644 --- a/users/justinian.json +++ b/users/justinian.json @@ -4,4 +4,4 @@ "url": "http://devjustinian.com", "theme": "friendly", "gravatar": true -} \ No newline at end of file +} diff --git a/users/justinm.json b/users/justinm.json index b81c308e..f7189fe2 100644 --- a/users/justinm.json +++ b/users/justinm.json @@ -2,4 +2,4 @@ "copyright": "Justin McManus", "url": "http://jmcman.us", "email": "jmcmanu@gmail.com" -} \ No newline at end of file +} diff --git a/users/justinrainbow.json b/users/justinrainbow.json index d86463b6..ee303ab3 100644 --- a/users/justinrainbow.json +++ b/users/justinrainbow.json @@ -1,4 +1,4 @@ { "copyright": "Justin Rainbow", "email": "justin.rainbow@gmail.com" -} \ No newline at end of file +} diff --git a/users/justmarkup.json b/users/justmarkup.json index d1cb2045..ac70b186 100644 --- a/users/justmarkup.json +++ b/users/justmarkup.json @@ -3,4 +3,4 @@ "url": "http://justmarkup.com", "email": "hallo@justmarkup.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/justmoon.json b/users/justmoon.json index 81ec469f..8b7b64fe 100644 --- a/users/justmoon.json +++ b/users/justmoon.json @@ -1,3 +1,3 @@ { "copyright": "Stefan Thomas" -} \ No newline at end of file +} diff --git a/users/jwark.json b/users/jwark.json index aa1b69fd..612faf7a 100644 --- a/users/jwark.json +++ b/users/jwark.json @@ -1,3 +1,3 @@ { "copyright": "Justin Wark" -} \ No newline at end of file +} diff --git a/users/jwathen.json b/users/jwathen.json index 94982980..bb57d397 100644 --- a/users/jwathen.json +++ b/users/jwathen.json @@ -1,4 +1,4 @@ { "copyright": "John Wathen", "email": "john.s.wathen@gmail.com" -} \ No newline at end of file +} diff --git a/users/jwehrman.json b/users/jwehrman.json index a8aac49e..0fcf43e9 100644 --- a/users/jwehrman.json +++ b/users/jwehrman.json @@ -1,3 +1,3 @@ { "copyright": "Justin Wehrman" -} \ No newline at end of file +} diff --git a/users/jwngr.json b/users/jwngr.json index 954d471f..2a19c594 100644 --- a/users/jwngr.json +++ b/users/jwngr.json @@ -1,3 +1,3 @@ { "copyright": "Jacob Wenger" -} \ No newline at end of file +} diff --git a/users/jxck.json b/users/jxck.json index dcbce441..df3987aa 100644 --- a/users/jxck.json +++ b/users/jxck.json @@ -2,4 +2,4 @@ "copyright": "Jxck", "url": "https://jxck.io", "email": "block.rxckin.beats@gmail.com" -} \ No newline at end of file +} diff --git a/users/jxson.json b/users/jxson.json index 1680e0f9..a9d112c6 100644 --- a/users/jxson.json +++ b/users/jxson.json @@ -1,3 +1,3 @@ { "copyright": "Jason Campbell" -} \ No newline at end of file +} diff --git a/users/jylhis.json b/users/jylhis.json index acb4ada6..ba4be0cd 100644 --- a/users/jylhis.json +++ b/users/jylhis.json @@ -1,4 +1,4 @@ { "copyright": "Markus Jylhänkangas", "email": "markus@jylhis.com" -} \ No newline at end of file +} diff --git a/users/k-yoshida.json b/users/k-yoshida.json index af144f5d..792a050c 100644 --- a/users/k-yoshida.json +++ b/users/k-yoshida.json @@ -3,4 +3,4 @@ "url": "http://yosida95.com", "email": "kohei@yosida95.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/k2wanko.json b/users/k2wanko.json index 004e55fc..df2a3bf8 100644 --- a/users/k2wanko.json +++ b/users/k2wanko.json @@ -1,4 +1,4 @@ { "copyright": "Kazuhiro Kubota", "url": "https://github.com/k2wanko" -} \ No newline at end of file +} diff --git a/users/k33nice.json b/users/k33nice.json index e56ed7b7..ba705ab6 100644 --- a/users/k33nice.json +++ b/users/k33nice.json @@ -3,4 +3,4 @@ "url": "http://k33nice.com", "email": "k33nice@gmail.com", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/ka2n.json b/users/ka2n.json index 7ada274d..fe9eea49 100644 --- a/users/ka2n.json +++ b/users/ka2n.json @@ -1,3 +1,3 @@ { "copyright": "Katsuma Ito" -} \ No newline at end of file +} diff --git a/users/kabuku-inc.json b/users/kabuku-inc.json index b46db36a..9420a61b 100644 --- a/users/kabuku-inc.json +++ b/users/kabuku-inc.json @@ -2,4 +2,4 @@ "copyright": "kabuku Inc.", "url": "http://www.kabuku.co.jp", "email": "contact@kabuku.co.jp" -} \ No newline at end of file +} diff --git a/users/kabuku.json b/users/kabuku.json index a042b0ec..b681268c 100644 --- a/users/kabuku.json +++ b/users/kabuku.json @@ -2,4 +2,4 @@ "copyright": "kabuku Inc.", "url": "http://www.kabuku.com/en", "email": "contact@kabuku.com" -} \ No newline at end of file +} diff --git a/users/kafene.json b/users/kafene.json index 6aaaec19..a1e44832 100644 --- a/users/kafene.json +++ b/users/kafene.json @@ -1,3 +1,3 @@ { "copyright": "Kafene Software" -} \ No newline at end of file +} diff --git a/users/kagee.json b/users/kagee.json index 9eff19cd..b91d7dc5 100644 --- a/users/kagee.json +++ b/users/kagee.json @@ -1,4 +1,4 @@ { "copyright": "Anders Einar Hilden", "email": "hildenae@gmail.com" -} \ No newline at end of file +} diff --git a/users/kai.json b/users/kai.json index a73a84ae..59872d38 100644 --- a/users/kai.json +++ b/users/kai.json @@ -3,4 +3,4 @@ "url": "http://openbioinformatics.org", "email": "kai@openbioinformatics.org", "format": "txt" -} \ No newline at end of file +} diff --git a/users/kaichop.json b/users/kaichop.json index bb0ef9a2..82f3bcef 100644 --- a/users/kaichop.json +++ b/users/kaichop.json @@ -1,3 +1,3 @@ { "copyright": "Kai Wang" -} \ No newline at end of file +} diff --git a/users/kakehashi.json b/users/kakehashi.json index 243ab77e..0b64b3f1 100644 --- a/users/kakehashi.json +++ b/users/kakehashi.json @@ -1,4 +1,4 @@ { "copyright": "KAKEHASHI, Inc.", "url": "http://kakehashi.life" -} \ No newline at end of file +} diff --git a/users/kale.json b/users/kale.json index 9e911037..ed0a2d1b 100644 --- a/users/kale.json +++ b/users/kale.json @@ -1,4 +1,4 @@ { "copyright": "Kale Davis", "url": "http://kaledavis.com" -} \ No newline at end of file +} diff --git a/users/kanade.json b/users/kanade.json index a08cfd20..a0bd35a4 100644 --- a/users/kanade.json +++ b/users/kanade.json @@ -1,3 +1,3 @@ { "copyright": "Kanade" -} \ No newline at end of file +} diff --git a/users/kandoi.json b/users/kandoi.json index 2c674055..78e160a6 100644 --- a/users/kandoi.json +++ b/users/kandoi.json @@ -3,4 +3,4 @@ "url": "http://abhikandoi.in", "email": "abhikandoi2000@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/kaneel.json b/users/kaneel.json index bb426f5b..05b16758 100644 --- a/users/kaneel.json +++ b/users/kaneel.json @@ -2,4 +2,4 @@ "copyright": "Guillaume kaneel Richard, http://mynameiskaneel.com", "url": "http://mynameiskaneel.com", "email": "mynameiskaneel@gmail.com" -} \ No newline at end of file +} diff --git a/users/kaneshin.json b/users/kaneshin.json index 0f1a4da2..b80b2afb 100644 --- a/users/kaneshin.json +++ b/users/kaneshin.json @@ -4,4 +4,4 @@ "email": "kaneshin0120@gmail.com", "gravatar": true, "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/kaos.json b/users/kaos.json index be20e84d..636b360f 100644 --- a/users/kaos.json +++ b/users/kaos.json @@ -2,4 +2,4 @@ "copyright": "Andreas Stenius", "url": "http://blog.astekk.se", "email": "git@astekk.se" -} \ No newline at end of file +} diff --git a/users/karami.json b/users/karami.json index a2352ce9..f8384b2e 100644 --- a/users/karami.json +++ b/users/karami.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "material-indigo" -} \ No newline at end of file +} diff --git a/users/karbassi.json b/users/karbassi.json index 0c90bf79..6faff789 100644 --- a/users/karbassi.json +++ b/users/karbassi.json @@ -2,4 +2,4 @@ "copyright": "Ali Karbassi, http://karbassi.com", "url": "http://karbassi.com", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/karimsa.json b/users/karimsa.json index 8496d5f6..dd4873a0 100644 --- a/users/karimsa.json +++ b/users/karimsa.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "eula-modern" -} \ No newline at end of file +} diff --git a/users/karl-sjogren.json b/users/karl-sjogren.json index bd1322f1..5903770e 100644 --- a/users/karl-sjogren.json +++ b/users/karl-sjogren.json @@ -3,4 +3,4 @@ "url": "http://github.com/karl-sjogren", "email": "karl.sjogren@gmail.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/karl.json b/users/karl.json index 9b72b161..c6d03a9c 100644 --- a/users/karl.json +++ b/users/karl.json @@ -3,4 +3,4 @@ "url": "http://www.shorthand.se/", "email": "karl.sjogren@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/karlc.json b/users/karlc.json index 83c49a02..d127b56b 100644 --- a/users/karlc.json +++ b/users/karlc.json @@ -2,4 +2,4 @@ "copyright": "Karl Coelho", "url": "http://karlcoelho.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/karlcoelho.json b/users/karlcoelho.json index 4ce2c1e6..2a4340d7 100644 --- a/users/karlcoelho.json +++ b/users/karlcoelho.json @@ -3,4 +3,4 @@ "url": "http://karlcoelho.com", "email": "karl.coelho@icloud.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/karteek.json b/users/karteek.json index 9fdf6fc4..33d34915 100644 --- a/users/karteek.json +++ b/users/karteek.json @@ -3,4 +3,4 @@ "url": "http://karteek.net", "email": "me@karteek.net", "format": "txt" -} \ No newline at end of file +} diff --git a/users/karupanerura.json b/users/karupanerura.json index 03d322fd..ca543ffa 100644 --- a/users/karupanerura.json +++ b/users/karupanerura.json @@ -3,4 +3,4 @@ "url": "http://karupas.org", "email": "karupa@cpan.org", "gravatar": true -} \ No newline at end of file +} diff --git a/users/kataring.json b/users/kataring.json index 96ced14e..e1dd1931 100644 --- a/users/kataring.json +++ b/users/kataring.json @@ -1,3 +1,3 @@ { "copyright": "Noriaki Katayama" -} \ No newline at end of file +} diff --git a/users/katsuma.json b/users/katsuma.json index 3f1b5851..309efe9a 100644 --- a/users/katsuma.json +++ b/users/katsuma.json @@ -1,3 +1,3 @@ { "copyright": "Ryo Katsuma" -} \ No newline at end of file +} diff --git a/users/katsyoshi.json b/users/katsyoshi.json index 28073039..1dd1f6be 100644 --- a/users/katsyoshi.json +++ b/users/katsyoshi.json @@ -1,3 +1,3 @@ { "copyright": "MATSUMOTO, Katsuyoshi" -} \ No newline at end of file +} diff --git a/users/kaukeb.json b/users/kaukeb.json index 20f35f3a..508b35b4 100644 --- a/users/kaukeb.json +++ b/users/kaukeb.json @@ -1,4 +1,4 @@ { "copyright": "Brian L Kauke", "format": "txt" -} \ No newline at end of file +} diff --git a/users/kawakawaritsuki.json b/users/kawakawaritsuki.json index f49eeb42..754a7fc0 100644 --- a/users/kawakawaritsuki.json +++ b/users/kawakawaritsuki.json @@ -4,4 +4,4 @@ "email": "develop@mizucoffee.net", "theme": "material-indigo", "gravatar": true -} \ No newline at end of file +} diff --git a/users/kawanet.json b/users/kawanet.json index caf591c7..c31f21b8 100644 --- a/users/kawanet.json +++ b/users/kawanet.json @@ -1,4 +1,4 @@ { "copyright": "Yusuke Kawasaki", "url": "https://github.com/kawanet" -} \ No newline at end of file +} diff --git a/users/kawaz.json b/users/kawaz.json index 98385110..4f5d6ae2 100644 --- a/users/kawaz.json +++ b/users/kawaz.json @@ -3,4 +3,4 @@ "url": "https://twitter.com/kawaz", "email": "kawazzz@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/kaxla.json b/users/kaxla.json index fb85b8ef..446ef005 100644 --- a/users/kaxla.json +++ b/users/kaxla.json @@ -1,3 +1,3 @@ { "copyright": "Kayla Morrison" -} \ No newline at end of file +} diff --git a/users/kayframework.json b/users/kayframework.json index d5e7b200..e7add395 100644 --- a/users/kayframework.json +++ b/users/kayframework.json @@ -3,4 +3,4 @@ "url": "http://kayframework.org/", "email": "hello@kayframework.org", "theme": "opensans" -} \ No newline at end of file +} diff --git a/users/kb.json b/users/kb.json index 5d281152..83e049c5 100644 --- a/users/kb.json +++ b/users/kb.json @@ -4,4 +4,4 @@ "email": "m3nt0r.de@gmail.com", "format": "html", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/kbond.json b/users/kbond.json index dfb7f271..9c6b842e 100644 --- a/users/kbond.json +++ b/users/kbond.json @@ -2,4 +2,4 @@ "copyright": "Kevin Bond", "url": "http://zenstruck.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/kcak11.json b/users/kcak11.json index f27f0f3d..10a5d12a 100644 --- a/users/kcak11.json +++ b/users/kcak11.json @@ -4,4 +4,4 @@ "email": "kcak11@gmail.com", "theme": "material-blue", "gravatar": true -} \ No newline at end of file +} diff --git a/users/kcj.json b/users/kcj.json index d4df8d33..1357db3d 100644 --- a/users/kcj.json +++ b/users/kcj.json @@ -2,4 +2,4 @@ "copyright": "Kurt Jacobson", "email": "kurtcjacobson@gmail.com", "theme": "default" -} \ No newline at end of file +} diff --git a/users/kclarke.json b/users/kclarke.json index dd403ebb..17c8ed74 100644 --- a/users/kclarke.json +++ b/users/kclarke.json @@ -2,4 +2,4 @@ "copyright": "Kenzie Clarke", "email": "kenzie.clarke@tcu.edu", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/kdy.json b/users/kdy.json index 32766ae9..c881229c 100644 --- a/users/kdy.json +++ b/users/kdy.json @@ -4,4 +4,4 @@ "email": "im@kdy.ch", "gravatar": true, "theme": "black-beauty" -} \ No newline at end of file +} diff --git a/users/ke.json b/users/ke.json index 027b4074..33d9e7e7 100644 --- a/users/ke.json +++ b/users/ke.json @@ -4,4 +4,4 @@ "email": "online@koch-essen.de", "format": "html", "theme": "xtansia" -} \ No newline at end of file +} diff --git a/users/keegoid.json b/users/keegoid.json index 25049044..4c9caa26 100644 --- a/users/keegoid.json +++ b/users/keegoid.json @@ -4,4 +4,4 @@ "email": "keeganmullaney@gmail.com", "gravatar": true, "theme": "material-teal" -} \ No newline at end of file +} diff --git a/users/keifukuda.json b/users/keifukuda.json index 854cac67..660ed52c 100644 --- a/users/keifukuda.json +++ b/users/keifukuda.json @@ -1,4 +1,4 @@ { "copyright": "Kei Fukuda", "url": "https://github.com/keifukuda" -} \ No newline at end of file +} diff --git a/users/keita.json b/users/keita.json index 01aa58aa..e4c53600 100644 --- a/users/keita.json +++ b/users/keita.json @@ -1,3 +1,3 @@ { "copyright": "Keita Yamaguchi" -} \ No newline at end of file +} diff --git a/users/keithamus.json b/users/keithamus.json index 4fb07c4c..35e4c434 100644 --- a/users/keithamus.json +++ b/users/keithamus.json @@ -1,4 +1,4 @@ { "copyright": "Keith Cirkel, http://keithcirkel.co.uk", "url": "http://keithcirkel.co.uk" -} \ No newline at end of file +} diff --git a/users/keithcirkel.json b/users/keithcirkel.json index 4fb07c4c..35e4c434 100644 --- a/users/keithcirkel.json +++ b/users/keithcirkel.json @@ -1,4 +1,4 @@ { "copyright": "Keith Cirkel, http://keithcirkel.co.uk", "url": "http://keithcirkel.co.uk" -} \ No newline at end of file +} diff --git a/users/kenjiyamamoto.json b/users/kenjiyamamoto.json index fc563acb..eccdde72 100644 --- a/users/kenjiyamamoto.json +++ b/users/kenjiyamamoto.json @@ -3,4 +3,4 @@ "url": "http://kenjiyamamoto.com", "email": "mail@kenjiyamamoto.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/kenta.json b/users/kenta.json index 1d805e2f..06ae1dc3 100644 --- a/users/kenta.json +++ b/users/kenta.json @@ -3,4 +3,4 @@ "url": "http://kenta.cc", "format": "txt", "gravatar": true -} \ No newline at end of file +} diff --git a/users/kentaro.json b/users/kentaro.json index 921bf318..2259068d 100644 --- a/users/kentaro.json +++ b/users/kentaro.json @@ -2,4 +2,4 @@ "copyright": "Kentaro Kuribayashi", "url": "http://kentarok.org/", "email": "kentarok@gmail.com" -} \ No newline at end of file +} diff --git a/users/kerem.json b/users/kerem.json index e2c213c2..31d5623f 100644 --- a/users/kerem.json +++ b/users/kerem.json @@ -2,4 +2,4 @@ "copyright": "Kerem Bozdas, kerembozdas.com", "url": "http://kerembozdas.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/ketchum.json b/users/ketchum.json index 563ab51f..a770d613 100644 --- a/users/ketchum.json +++ b/users/ketchum.json @@ -1,3 +1,3 @@ { "copyright": "Ash Ketchum" -} \ No newline at end of file +} diff --git a/users/kevin.json b/users/kevin.json index 3d88129c..61bec7ba 100644 --- a/users/kevin.json +++ b/users/kevin.json @@ -3,4 +3,4 @@ "url": "http://magically.us", "email": "kevin@magically.us", "format": "txt" -} \ No newline at end of file +} diff --git a/users/kevinaloys.json b/users/kevinaloys.json index 346b2395..791c4fed 100644 --- a/users/kevinaloys.json +++ b/users/kevinaloys.json @@ -4,4 +4,4 @@ "email": "kevinaloysius25@gmail.com", "format": "txt", "theme": "default" -} \ No newline at end of file +} diff --git a/users/kevinfling.json b/users/kevinfling.json index a5ae66ee..0cfb6bba 100644 --- a/users/kevinfling.json +++ b/users/kevinfling.json @@ -1,3 +1,3 @@ { "copyright": "Kevin Fling" -} \ No newline at end of file +} diff --git a/users/kevinmmarlow.json b/users/kevinmmarlow.json index 34e972df..94cf37f3 100644 --- a/users/kevinmmarlow.json +++ b/users/kevinmmarlow.json @@ -1,3 +1,3 @@ { "copyright": "Kevin Marlow" -} \ No newline at end of file +} diff --git a/users/key.json b/users/key.json index 39f208c5..40a6c51e 100644 --- a/users/key.json +++ b/users/key.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "preview" -} \ No newline at end of file +} diff --git a/users/keyup.json b/users/keyup.json index fbd61f62..bee419d2 100644 --- a/users/keyup.json +++ b/users/keyup.json @@ -2,4 +2,4 @@ "copyright": "Keyup IT Services", "url": "http://www.keyup.eu", "theme": "default" -} \ No newline at end of file +} diff --git a/users/kezho.json b/users/kezho.json index d8e18adc..30a70cee 100644 --- a/users/kezho.json +++ b/users/kezho.json @@ -1,4 +1,4 @@ { "copyright": "Maxime François", "url": "http://www.kezho.com" -} \ No newline at end of file +} diff --git a/users/kgarg.json b/users/kgarg.json index 4ffd418a..91cd7564 100644 --- a/users/kgarg.json +++ b/users/kgarg.json @@ -3,4 +3,4 @@ "url": "http://kunalgarg2100.github.io", "email": "kunalgarg2100@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/kgisl.json b/users/kgisl.json index e53daaec..8e4d307f 100644 --- a/users/kgisl.json +++ b/users/kgisl.json @@ -2,4 +2,4 @@ "copyright": "Ashok Bakthavathsalam, http://kgisl.com", "url": "http://kgisl.com", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/khanio.json b/users/khanio.json index 624f91b8..2b85f96b 100644 --- a/users/khanio.json +++ b/users/khanio.json @@ -3,4 +3,4 @@ "url": "http://khanio.com", "email": "mail@khanio.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/khushraj.json b/users/khushraj.json index eb10e7cb..b8c5a9de 100644 --- a/users/khushraj.json +++ b/users/khushraj.json @@ -2,4 +2,4 @@ "copyright": "Khushraj Rathod", "email": "khushraj2005@gmail.com", "theme": "material-pink" -} \ No newline at end of file +} diff --git a/users/khuxkm.json b/users/khuxkm.json index b4425233..03fe69df 100644 --- a/users/khuxkm.json +++ b/users/khuxkm.json @@ -4,4 +4,4 @@ "email": "khuxkm@tilde.team", "theme": "8bits-monochrome", "gravatar": true -} \ No newline at end of file +} diff --git a/users/kieranties.json b/users/kieranties.json index 1caaca99..e9edc031 100644 --- a/users/kieranties.json +++ b/users/kieranties.json @@ -4,4 +4,4 @@ "email": "Kieran@Kieranties.com", "gravatar": true, "theme": "black-beauty" -} \ No newline at end of file +} diff --git a/users/kilian.json b/users/kilian.json index 945fa3e7..d67d7195 100644 --- a/users/kilian.json +++ b/users/kilian.json @@ -3,4 +3,4 @@ "url": "http://nailik.org", "email": "me@nailik.org", "format": "txt" -} \ No newline at end of file +} diff --git a/users/kilokahn.json b/users/kilokahn.json index e6724fc6..55997a23 100644 --- a/users/kilokahn.json +++ b/users/kilokahn.json @@ -3,4 +3,4 @@ "url": "http://thekilokahn.blogspot.com", "email": "mukarram[dot]baig[at]gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/kimiamania.json b/users/kimiamania.json index cfae365c..8f4ceedf 100644 --- a/users/kimiamania.json +++ b/users/kimiamania.json @@ -4,4 +4,4 @@ "email": "contact@rezhajulio.web.id", "format": "html", "theme": "afterdark" -} \ No newline at end of file +} diff --git a/users/kindy.json b/users/kindy.json index eec531e0..0fb3f5f2 100644 --- a/users/kindy.json +++ b/users/kindy.json @@ -2,4 +2,4 @@ "copyright": "Kindy Lin", "email": "kindy61@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/kinetik.json b/users/kinetik.json index 131c69b6..d1288e3f 100644 --- a/users/kinetik.json +++ b/users/kinetik.json @@ -5,4 +5,4 @@ "email": "dev@kinetik.la", "gravatar": false, "format": "html" -} \ No newline at end of file +} diff --git a/users/kishorm23.json b/users/kishorm23.json index bbee92dc..8f80354e 100644 --- a/users/kishorm23.json +++ b/users/kishorm23.json @@ -1,3 +1,3 @@ { "copyright": "Kishor Mohite" -} \ No newline at end of file +} diff --git a/users/kit.json b/users/kit.json index aaba5917..4dd4bf40 100644 --- a/users/kit.json +++ b/users/kit.json @@ -2,4 +2,4 @@ "copyright": "Kit Cambridge", "url": "http://kitcambridge.github.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/kitak.json b/users/kitak.json index 1ec44559..76240e57 100644 --- a/users/kitak.json +++ b/users/kitak.json @@ -1,4 +1,4 @@ { "copyright": "Keisuke KITA", "url": "https://github.com/kitak" -} \ No newline at end of file +} diff --git a/users/kiwigrid.json b/users/kiwigrid.json index 426bf263..4bffe979 100644 --- a/users/kiwigrid.json +++ b/users/kiwigrid.json @@ -1,3 +1,3 @@ { "copyright": "Kiwigrid GmbH" -} \ No newline at end of file +} diff --git a/users/kjirou.json b/users/kjirou.json index 7d7f891e..a12ce2fa 100644 --- a/users/kjirou.json +++ b/users/kjirou.json @@ -1,4 +1,4 @@ { "copyright": "Koujirou Ishii", "url": "https://github.com/kjirou" -} \ No newline at end of file +} diff --git a/users/kjohnston.json b/users/kjohnston.json index 4bf9d170..1b67170e 100644 --- a/users/kjohnston.json +++ b/users/kjohnston.json @@ -1,3 +1,3 @@ { "copyright": "Kenny Johnston" -} \ No newline at end of file +} diff --git a/users/kkung.json b/users/kkung.json index b53bdeba..d2d98f4e 100644 --- a/users/kkung.json +++ b/users/kkung.json @@ -3,4 +3,4 @@ "url": "http://kkung.net", "email": "kkungkkung@gmail.com", "theme": "afterdark" -} \ No newline at end of file +} diff --git a/users/kloptops.json b/users/kloptops.json index db2aba33..7f26defe 100644 --- a/users/kloptops.json +++ b/users/kloptops.json @@ -2,4 +2,4 @@ "copyright": "Jacob Smith", "email": "kloptops@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/kma.json b/users/kma.json index 7fef5085..ac4c515c 100644 --- a/users/kma.json +++ b/users/kma.json @@ -2,4 +2,4 @@ "copyright": "KM Authorized LLC", "url": "http://kmauthorized.com", "email": "license@kmauthorized.com" -} \ No newline at end of file +} diff --git a/users/kmix.json b/users/kmix.json index 5e931408..355765b8 100644 --- a/users/kmix.json +++ b/users/kmix.json @@ -1,4 +1,4 @@ { "copyright": "Ken Mix", "email": "ken@mix.co" -} \ No newline at end of file +} diff --git a/users/kmonsoor.json b/users/kmonsoor.json index 165f94d0..3b04bf36 100644 --- a/users/kmonsoor.json +++ b/users/kmonsoor.json @@ -4,4 +4,4 @@ "email": "k@kmonsoor.com", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/knagano.json b/users/knagano.json index 6f357920..c60b9c58 100644 --- a/users/knagano.json +++ b/users/knagano.json @@ -1,3 +1,3 @@ { "copyright": "Keiichiro Nagano" -} \ No newline at end of file +} diff --git a/users/knakayama.json b/users/knakayama.json index 6d1b29c4..1da43176 100644 --- a/users/knakayama.json +++ b/users/knakayama.json @@ -4,4 +4,4 @@ "email": "knakayama@gmail.com", "gravatar": true, "theme": "default" -} \ No newline at end of file +} diff --git a/users/knimon-software.json b/users/knimon-software.json index 2e807f59..dd721f3c 100644 --- a/users/knimon-software.json +++ b/users/knimon-software.json @@ -1,3 +1,3 @@ { "copyright": "Knimon software" -} \ No newline at end of file +} diff --git a/users/knockout-components.json b/users/knockout-components.json index 3b9690c8..ea4fcb35 100644 --- a/users/knockout-components.json +++ b/users/knockout-components.json @@ -2,4 +2,4 @@ "copyright": "Knockout Components, https://github.com/knockout-components", "url": "https://github.com/knockout-components", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/knutwalker.json b/users/knutwalker.json index c95c23b6..cef51afe 100644 --- a/users/knutwalker.json +++ b/users/knutwalker.json @@ -3,4 +3,4 @@ "format": "text", "copyright": "Paul Horn, http://knutwalker.de/", "email": "knutwalker+mit@gmail.com" -} \ No newline at end of file +} diff --git a/users/koba789.json b/users/koba789.json index 6304292d..d5a238bb 100644 --- a/users/koba789.json +++ b/users/koba789.json @@ -1,4 +1,4 @@ { "copyright": "Hidekazu Kobayashi", "url": "http://koba789.com/" -} \ No newline at end of file +} diff --git a/users/koeberle.json b/users/koeberle.json index 0c31ee4d..04edad4a 100644 --- a/users/koeberle.json +++ b/users/koeberle.json @@ -1,3 +1,3 @@ { "copyright": "Andreas Köberle" -} \ No newline at end of file +} diff --git a/users/kohenkatz.json b/users/kohenkatz.json index 87d7c6b3..1ba74144 100644 --- a/users/kohenkatz.json +++ b/users/kohenkatz.json @@ -4,4 +4,4 @@ "email": "moshe@ymkatz.net", "gravatar": true, "theme": "black-beauty" -} \ No newline at end of file +} diff --git a/users/kojiwakayama.json b/users/kojiwakayama.json index 8bd27957..57dcdd52 100644 --- a/users/kojiwakayama.json +++ b/users/kojiwakayama.json @@ -3,4 +3,4 @@ "url": "http://kojiwakayama.com", "email": "info@kojiwakayama.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/konsumer.json b/users/konsumer.json index 07b38116..ecf7024a 100644 --- a/users/konsumer.json +++ b/users/konsumer.json @@ -3,4 +3,4 @@ "url": "https://keybase.io/konsumer", "gravatar": true, "theme": "black-beauty" -} \ No newline at end of file +} diff --git a/users/kopplin.json b/users/kopplin.json index 2d232b7f..3ea618c7 100644 --- a/users/kopplin.json +++ b/users/kopplin.json @@ -1,3 +1,3 @@ { "copyright": "Sergio Kopplin" -} \ No newline at end of file +} diff --git a/users/koshigoe.json b/users/koshigoe.json index 10f8c30a..4425d4bd 100644 --- a/users/koshigoe.json +++ b/users/koshigoe.json @@ -1,3 +1,3 @@ { "copyright": "koshigoe, https://github.com/koshigoe" -} \ No newline at end of file +} diff --git a/users/kossnocorp.json b/users/kossnocorp.json index c6db2453..57db8260 100644 --- a/users/kossnocorp.json +++ b/users/kossnocorp.json @@ -1,3 +1,3 @@ { "copyright": "Sasha Koss" -} \ No newline at end of file +} diff --git a/users/kothawale.json b/users/kothawale.json index 5dea6c78..d0df6dcc 100644 --- a/users/kothawale.json +++ b/users/kothawale.json @@ -2,4 +2,4 @@ "copyright": "Akash Kothawale", "url": "https://decached.com", "email": "akash@decached.com" -} \ No newline at end of file +} diff --git a/users/koustuvs.json b/users/koustuvs.json index 52a4d1e4..5f286bf9 100644 --- a/users/koustuvs.json +++ b/users/koustuvs.json @@ -2,4 +2,4 @@ "copyright": "Koustuv Sinha", "url": "http://koustuvsinha.github.io", "format": "txt" -} \ No newline at end of file +} diff --git a/users/kozakky.json b/users/kozakky.json index 18858274..c476bff6 100644 --- a/users/kozakky.json +++ b/users/kozakky.json @@ -1,3 +1,3 @@ { "copyright": "Sotaro Kozaki" -} \ No newline at end of file +} diff --git a/users/kpeatt.json b/users/kpeatt.json index 666511b5..7cee1dbb 100644 --- a/users/kpeatt.json +++ b/users/kpeatt.json @@ -4,4 +4,4 @@ "email": "kpeatt@gmail.com", "format": "html", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/kraga.json b/users/kraga.json index 3623c091..710d11dc 100644 --- a/users/kraga.json +++ b/users/kraga.json @@ -5,4 +5,4 @@ "gravatar": false, "theme": "hmt-blue", "format": "html" -} \ No newline at end of file +} diff --git a/users/krinkle.json b/users/krinkle.json index b858ef24..f77316cf 100644 --- a/users/krinkle.json +++ b/users/krinkle.json @@ -3,4 +3,4 @@ "url": "https://github.com/Krinkle", "format": "html", "theme": "material" -} \ No newline at end of file +} diff --git a/users/kris.json b/users/kris.json index c57673ff..4957788e 100644 --- a/users/kris.json +++ b/users/kris.json @@ -2,4 +2,4 @@ "copyright": "Kristopher Ives", "url": "http://krisives.github.io/", "email": "kristopher.ives@gmail.com" -} \ No newline at end of file +} diff --git a/users/kristoffer.json b/users/kristoffer.json index 5ab7b668..144955f2 100644 --- a/users/kristoffer.json +++ b/users/kristoffer.json @@ -1,3 +1,3 @@ { "copyright": "Kristoffer Sachse" -} \ No newline at end of file +} diff --git a/users/kristopher.json b/users/kristopher.json index 216a7938..32ec03ac 100644 --- a/users/kristopher.json +++ b/users/kristopher.json @@ -4,4 +4,4 @@ "url": "http://kristopher.jp/", "email": "kris.tate+licensing@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/kriwil.json b/users/kriwil.json index 9e6f16e9..1b37dfc7 100644 --- a/users/kriwil.json +++ b/users/kriwil.json @@ -1,3 +1,3 @@ { "copyright": "Aldiantoro Nugroho" -} \ No newline at end of file +} diff --git a/users/kroisse.json b/users/kroisse.json index 5e7535ef..8d32c490 100644 --- a/users/kroisse.json +++ b/users/kroisse.json @@ -2,4 +2,4 @@ "copyright": "Eunchong Yu", "url": "http://krois.se/", "email": "kroisse@gmail.com" -} \ No newline at end of file +} diff --git a/users/krolow.json b/users/krolow.json index d02fa138..45126264 100644 --- a/users/krolow.json +++ b/users/krolow.json @@ -3,4 +3,4 @@ "url": "http://krolow.com.br", "email": "krolow@gmail.com", "gravatar": "true" -} \ No newline at end of file +} diff --git a/users/krrrr38.json b/users/krrrr38.json index f4f55009..0b967a64 100644 --- a/users/krrrr38.json +++ b/users/krrrr38.json @@ -1,3 +1,3 @@ { "copyright": "Ken KAIZU" -} \ No newline at end of file +} diff --git a/users/ksomemo.json b/users/ksomemo.json index dd50d624..29392a00 100644 --- a/users/ksomemo.json +++ b/users/ksomemo.json @@ -1,3 +1,3 @@ { "copyright": "ksomemo" -} \ No newline at end of file +} diff --git a/users/kswedberg.json b/users/kswedberg.json index 3f6b6cce..01f5804a 100644 --- a/users/kswedberg.json +++ b/users/kswedberg.json @@ -2,4 +2,4 @@ "copyright": "Karl Swedberg", "url": "http://karlswedberg.com", "email": "kswedberg@gmail.com" -} \ No newline at end of file +} diff --git a/users/kt3k.json b/users/kt3k.json index 14490b07..f8cf57cb 100644 --- a/users/kt3k.json +++ b/users/kt3k.json @@ -1,3 +1,3 @@ { "copyright": "Yosiya Hinosawa ( @kt3k )" -} \ No newline at end of file +} diff --git a/users/ktat.json b/users/ktat.json index 73c45928..dded6d2c 100644 --- a/users/ktat.json +++ b/users/ktat.json @@ -3,4 +3,4 @@ "url": "http://www.rwds.net/", "email": "ktat.is@gmail.com", "theme": "material-grey" -} \ No newline at end of file +} diff --git a/users/ktravis.json b/users/ktravis.json index c9480542..36b142b6 100644 --- a/users/ktravis.json +++ b/users/ktravis.json @@ -1,3 +1,3 @@ { "copyright": "Kyle Travis" -} \ No newline at end of file +} diff --git a/users/ktrysmt.json b/users/ktrysmt.json index 71fed268..672cced0 100644 --- a/users/ktrysmt.json +++ b/users/ktrysmt.json @@ -4,4 +4,4 @@ "email": "kotaro.yoshimatsu@gmail.com", "theme": "opensans", "gravatar": true -} \ No newline at end of file +} diff --git a/users/kucoe.json b/users/kucoe.json index 1652e030..66162dff 100644 --- a/users/kucoe.json +++ b/users/kucoe.json @@ -2,4 +2,4 @@ "copyright": "Wolf Bas", "url": "http://kucoe.net", "email": "becevka@kucoe.net" -} \ No newline at end of file +} diff --git a/users/kuenishi.json b/users/kuenishi.json index e15d6f31..519701ce 100644 --- a/users/kuenishi.json +++ b/users/kuenishi.json @@ -1,4 +1,4 @@ { "copyright": "Kota UENISHI", "url": "http://kuenishi.github.com" -} \ No newline at end of file +} diff --git a/users/kujohnln.json b/users/kujohnln.json index bcddd3b5..2031b523 100644 --- a/users/kujohnln.json +++ b/users/kujohnln.json @@ -5,4 +5,4 @@ "url": "https://ikuyman.pub", "email": "kujohnln@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/kumatch.json b/users/kumatch.json index 8aa7be4d..78ff5891 100644 --- a/users/kumatch.json +++ b/users/kumatch.json @@ -1,4 +1,4 @@ { "copyright": "Yosuke Kumakura", "url": "https://github.com/kumatch" -} \ No newline at end of file +} diff --git a/users/kuni-uec-takada-lab.json b/users/kuni-uec-takada-lab.json index c176acba..fb4691d0 100644 --- a/users/kuni-uec-takada-lab.json +++ b/users/kuni-uec-takada-lab.json @@ -2,4 +2,4 @@ "copyright": "Yuki Kokubun (2012 UEC Tokyo Japan, Takada.Lab)", "email": "uec.takada.lab@hotmail.co.jp", "url": "http://www.az.inf.uec.ac.jp/" -} \ No newline at end of file +} diff --git a/users/kuniwak.json b/users/kuniwak.json index 217a91bf..2123570a 100644 --- a/users/kuniwak.json +++ b/users/kuniwak.json @@ -1,3 +1,3 @@ { "copyright": "Kuniwak" -} \ No newline at end of file +} diff --git a/users/kurmis.json b/users/kurmis.json index ffc21922..cf815576 100644 --- a/users/kurmis.json +++ b/users/kurmis.json @@ -3,4 +3,4 @@ "url": "https://www.kurmis.com", "email": "oliver@kurmis.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/kuronekomichael.json b/users/kuronekomichael.json index b4f41170..1ab3d0fb 100644 --- a/users/kuronekomichael.json +++ b/users/kuronekomichael.json @@ -1,4 +1,4 @@ { "copyright": "Kuroneko Michael", "url": "https://github.com/kuronekomichael" -} \ No newline at end of file +} diff --git a/users/kvz.json b/users/kvz.json index a70de513..c85a0730 100644 --- a/users/kvz.json +++ b/users/kvz.json @@ -1,3 +1,3 @@ { "copyright": "Kevin van Zonneveld" -} \ No newline at end of file +} diff --git a/users/kvz2.json b/users/kvz2.json index 6675569c..75728e49 100644 --- a/users/kvz2.json +++ b/users/kvz2.json @@ -3,4 +3,4 @@ "url": "http://kvz.io", "email": "kevin@vanzonneveld.net", "format": "txt" -} \ No newline at end of file +} diff --git a/users/kyanny.json b/users/kyanny.json index 8a62a9f6..3b87a1e3 100644 --- a/users/kyanny.json +++ b/users/kyanny.json @@ -1,3 +1,3 @@ { "copyright": "Kensuke Nagae" -} \ No newline at end of file +} diff --git a/users/kyle.json b/users/kyle.json index 11f34845..5a850309 100644 --- a/users/kyle.json +++ b/users/kyle.json @@ -3,4 +3,4 @@ "url": "http://kyleisom.net", "email": "kyle@kyleisom.net", "format": "txt" -} \ No newline at end of file +} diff --git a/users/kylebaker.json b/users/kylebaker.json index 27652605..52cd9eac 100644 --- a/users/kylebaker.json +++ b/users/kylebaker.json @@ -2,4 +2,4 @@ "copyright": "Kyle Baker", "email": "mr.sapientia@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/kylebshr.json b/users/kylebshr.json index cb1a4426..5bd0782d 100644 --- a/users/kylebshr.json +++ b/users/kylebshr.json @@ -2,4 +2,4 @@ "copyright": "Kyle Bashour", "url": "http://kylebashour.com", "email": "kylebshr@me.com" -} \ No newline at end of file +} diff --git a/users/kylestev.json b/users/kylestev.json index b5780ddf..1b902f72 100644 --- a/users/kylestev.json +++ b/users/kylestev.json @@ -3,4 +3,4 @@ "url": "http://kylestev.io", "email": "kyle@kylestevenson.me", "format": "txt" -} \ No newline at end of file +} diff --git a/users/kylewelsby.json b/users/kylewelsby.json index 42f8be41..17a7da82 100644 --- a/users/kylewelsby.json +++ b/users/kylewelsby.json @@ -4,4 +4,4 @@ "gravatar": true, "theme": "material-red", "url": "https://mekyle.com" -} \ No newline at end of file +} diff --git a/users/kyrias.json b/users/kyrias.json index f0054251..aad3e2b3 100644 --- a/users/kyrias.json +++ b/users/kyrias.json @@ -2,4 +2,4 @@ "copyright": "Johannes Löthberg", "url": "https://theos.kyriasis.com/~kyrias", "email": "johannes@kyriasis.com" -} \ No newline at end of file +} diff --git a/users/kyungw00k.json b/users/kyungw00k.json index 67c8f09a..906bf258 100644 --- a/users/kyungw00k.json +++ b/users/kyungw00k.json @@ -5,4 +5,4 @@ "email": "parksama@gmail.com", "theme": "material-red", "gravatar": true -} \ No newline at end of file +} diff --git a/users/l04m33.json b/users/l04m33.json index ed3150e7..9eda3170 100644 --- a/users/l04m33.json +++ b/users/l04m33.json @@ -3,4 +3,4 @@ "url": "http://blog.theerrorlog.com", "email": "l04m33@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/laka.json b/users/laka.json index 0732e779..d34dbab9 100644 --- a/users/laka.json +++ b/users/laka.json @@ -2,4 +2,4 @@ "copyright": "Alex Lakatos", "url": "http://alexlakatos.com", "email": "alex.lakatos.qa+mit@gmail.com" -} \ No newline at end of file +} diff --git a/users/lalit.json b/users/lalit.json index 1c0a8dc4..a5d87a88 100644 --- a/users/lalit.json +++ b/users/lalit.json @@ -3,4 +3,4 @@ "url": "http://www.goodybag.com", "email": "lalit@goodybag.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/laradic.json b/users/laradic.json index 59f51940..7fbef692 100644 --- a/users/laradic.json +++ b/users/laradic.json @@ -3,4 +3,4 @@ "url": "https://la.radic.nl", "email": "robin@radic.nl", "format": "html" -} \ No newline at end of file +} diff --git a/users/lareg.json b/users/lareg.json index cd2f1972..e5040d53 100644 --- a/users/lareg.json +++ b/users/lareg.json @@ -1,3 +1,3 @@ { "copyright": "Lare Grodzicki" -} \ No newline at end of file +} diff --git a/users/larrybotha.json b/users/larrybotha.json index 3d09d313..255f29ac 100644 --- a/users/larrybotha.json +++ b/users/larrybotha.json @@ -2,4 +2,4 @@ "copyright": "Larry Botha, http://larrybotha.github.com/", "url": "http://larrybotha.github.com/", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/lars.json b/users/lars.json index a8aa2127..319d1d09 100644 --- a/users/lars.json +++ b/users/lars.json @@ -3,4 +3,4 @@ "url": "http://lars.io", "email": "larste@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/larste.json b/users/larste.json index fd3e6c29..660c80d8 100644 --- a/users/larste.json +++ b/users/larste.json @@ -1,3 +1,3 @@ { "copyright": "Lars Steen " -} \ No newline at end of file +} diff --git a/users/lavoie-sl.json b/users/lavoie-sl.json index b54eb37d..466f6ea5 100644 --- a/users/lavoie-sl.json +++ b/users/lavoie-sl.json @@ -4,4 +4,4 @@ "email": "mit@lavoie.sl", "gravatar": true, "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/layer7tech.json b/users/layer7tech.json index 50b61fde..089a4aca 100644 --- a/users/layer7tech.json +++ b/users/layer7tech.json @@ -3,4 +3,4 @@ "url": "http://layer7tech.com", "email": "services@layer7tech.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/lbesson.json b/users/lbesson.json index 6cfc8163..154dbf4a 100644 --- a/users/lbesson.json +++ b/users/lbesson.json @@ -4,4 +4,4 @@ "email": "naereen at crans dot org", "format": "html", "gravatar": false -} \ No newline at end of file +} diff --git a/users/lbuell.json b/users/lbuell.json index 8f5a4dd6..7f308967 100644 --- a/users/lbuell.json +++ b/users/lbuell.json @@ -3,4 +3,4 @@ "url": "http://www.liambuell.com", "email": "liamcbuell@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/leandromatos.json b/users/leandromatos.json index 3cdd3651..6c417323 100644 --- a/users/leandromatos.json +++ b/users/leandromatos.json @@ -3,4 +3,4 @@ "url": "http://is-uz.com", "email": "leandro@is-uz.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/leanix.json b/users/leanix.json index 7689b442..62b39b7b 100644 --- a/users/leanix.json +++ b/users/leanix.json @@ -3,4 +3,4 @@ "url": "https://leanix.net", "email": "support@leanix.net", "format": "txt" -} \ No newline at end of file +} diff --git a/users/ledsun.json b/users/ledsun.json index 52fcdd61..1e18df4f 100644 --- a/users/ledsun.json +++ b/users/ledsun.json @@ -1,4 +1,4 @@ { "copyright": "Shigeru Nakajima", "url": "https://github.com/ledsun" -} \ No newline at end of file +} diff --git a/users/leeym.json b/users/leeym.json index 1d0d713b..7b91b95b 100644 --- a/users/leeym.json +++ b/users/leeym.json @@ -1,3 +1,3 @@ { "copyright": "Yen-Ming Lee" -} \ No newline at end of file +} diff --git a/users/leftlogic.json b/users/leftlogic.json index e576d39b..19a9bf9a 100644 --- a/users/leftlogic.json +++ b/users/leftlogic.json @@ -1,4 +1,4 @@ { "copyright": "Left Logic Ltd, http://leftlogic.com", "url": "http://leftlogic.com" -} \ No newline at end of file +} diff --git a/users/legato.json b/users/legato.json index 5e29a7ae..5baac711 100644 --- a/users/legato.json +++ b/users/legato.json @@ -2,4 +2,4 @@ "copyright": "Legato Network, http://legatonetwork.com", "url": "http://legatonetwork.com", "email": "hello@legatonetwork.com" -} \ No newline at end of file +} diff --git a/users/legraphista.json b/users/legraphista.json index ef930354..0c0e4429 100644 --- a/users/legraphista.json +++ b/users/legraphista.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "black-beauty" -} \ No newline at end of file +} diff --git a/users/lehmannro.json b/users/lehmannro.json index 5385eb04..5f655ef6 100644 --- a/users/lehmannro.json +++ b/users/lehmannro.json @@ -2,4 +2,4 @@ "copyright": "Robert Lehmann", "url": "http://robertlehmann.de/", "email": "mail@robertlehmann.de" -} \ No newline at end of file +} diff --git a/users/lemieux.json b/users/lemieux.json index b055184a..77e7ad60 100644 --- a/users/lemieux.json +++ b/users/lemieux.json @@ -3,4 +3,4 @@ "url": "http://marcantoinelemieux.com", "email": "marc@marcantoinelemieux.com", "theme": "afterdark" -} \ No newline at end of file +} diff --git a/users/lemolsoft.json b/users/lemolsoft.json index 538e1f75..f023a43e 100644 --- a/users/lemolsoft.json +++ b/users/lemolsoft.json @@ -3,4 +3,4 @@ "url": "http://lemolsoft.webs.com", "email": "lemol-c@hotmail.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/lemurs.json b/users/lemurs.json index 423e50da..3611a13c 100644 --- a/users/lemurs.json +++ b/users/lemurs.json @@ -2,4 +2,4 @@ "copyright": "FRINKnet and the Expatriated Lemurs of Borneo", "url": "http://frinknet.com", "theme": "double-winsor" -} \ No newline at end of file +} diff --git a/users/len.json b/users/len.json index e7e186d3..9c3184f9 100644 --- a/users/len.json +++ b/users/len.json @@ -1,4 +1,4 @@ { "copyright": "Len", "url": "http://len-ch.com" -} \ No newline at end of file +} diff --git a/users/lenet.json b/users/lenet.json index 1a52b966..f422d5b3 100644 --- a/users/lenet.json +++ b/users/lenet.json @@ -1,4 +1,4 @@ { "copyright": "LENetworks", "url": "http://len-ch.com" -} \ No newline at end of file +} diff --git a/users/leniglo.json b/users/leniglo.json index a53368a1..b929e320 100644 --- a/users/leniglo.json +++ b/users/leniglo.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/lenilson.json b/users/lenilson.json index b95bc8b3..37e8e27f 100644 --- a/users/lenilson.json +++ b/users/lenilson.json @@ -3,4 +3,4 @@ "url": "http://nixusr.com", "email": "lenilson@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/leonardomerlin.json b/users/leonardomerlin.json index be521c57..e02cff3a 100644 --- a/users/leonardomerlin.json +++ b/users/leonardomerlin.json @@ -2,4 +2,4 @@ "copyright": "Leonardo Merlin", "url": "http://leonardomerlin.com.br", "email": "hi@leonardomerlin.com.br" -} \ No newline at end of file +} diff --git a/users/leonardorifeli.json b/users/leonardorifeli.json index 66d84f67..948d62ab 100644 --- a/users/leonardorifeli.json +++ b/users/leonardorifeli.json @@ -2,4 +2,4 @@ "copyright": "Leonardo Rifeli", "url": "http://leonardorifeli.com", "email": "leonardorifeli@gmail.com" -} \ No newline at end of file +} diff --git a/users/leonardosoares.json b/users/leonardosoares.json index cd05c9c0..14f228d7 100644 --- a/users/leonardosoares.json +++ b/users/leonardosoares.json @@ -4,4 +4,4 @@ "email": "ping@leonardosoares.org", "gravatar": true, "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/lepture.json b/users/lepture.json index c0dbc4c1..87a440ab 100644 --- a/users/lepture.json +++ b/users/lepture.json @@ -3,4 +3,4 @@ "url": "http://lepture.com", "email": "me@lepture.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/lequioscreative.json b/users/lequioscreative.json index 32801524..e26e84bb 100644 --- a/users/lequioscreative.json +++ b/users/lequioscreative.json @@ -1,3 +1,3 @@ { "copyright": "Lequios Creative" -} \ No newline at end of file +} diff --git a/users/levelup.json b/users/levelup.json index 4f4fc887..a973b5ab 100644 --- a/users/levelup.json +++ b/users/levelup.json @@ -1,3 +1,3 @@ { "copyright": "Level Up (Scotland) Limited, http://www.thisislevelup.com" -} \ No newline at end of file +} diff --git a/users/lgalfaso.json b/users/lgalfaso.json index 0d246a78..15576578 100644 --- a/users/lgalfaso.json +++ b/users/lgalfaso.json @@ -1,3 +1,3 @@ { "copyright": "Lucas Galfasó" -} \ No newline at end of file +} diff --git a/users/lgn21st.json b/users/lgn21st.json index 91c6e2b9..c5373808 100644 --- a/users/lgn21st.json +++ b/users/lgn21st.json @@ -2,4 +2,4 @@ "copyright": "Daniel Lv, http://lvguoning.com", "url": "http://lvguoning.com", "email": "lgn21st@gmail.com" -} \ No newline at end of file +} diff --git a/users/lh.json b/users/lh.json index a8784cd2..e95af0a7 100644 --- a/users/lh.json +++ b/users/lh.json @@ -3,4 +3,4 @@ "url": "https://luuhuy.com/", "email": "admin@luuhuy.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/lhl.json b/users/lhl.json index 836ad50c..716d09ab 100644 --- a/users/lhl.json +++ b/users/lhl.json @@ -1,3 +1,3 @@ { "copyright": "Leonard Lin" -} \ No newline at end of file +} diff --git a/users/li.json b/users/li.json index dac52bbc..2f2f2bba 100644 --- a/users/li.json +++ b/users/li.json @@ -4,4 +4,4 @@ "email": "me@lirunze.xyz", "gravatar": true, "theme": "material-lime" -} \ No newline at end of file +} diff --git a/users/liam-kerr.json b/users/liam-kerr.json index 4d7f953f..f2d73d07 100644 --- a/users/liam-kerr.json +++ b/users/liam-kerr.json @@ -1,3 +1,3 @@ { "copyright": "Liam Kerr" -} \ No newline at end of file +} diff --git a/users/lidonghua.json b/users/lidonghua.json index d55427a7..1c43808b 100644 --- a/users/lidonghua.json +++ b/users/lidonghua.json @@ -1,4 +1,4 @@ { "copyright": "Donghua Li", "url": "https://github.com/lidonghua" -} \ No newline at end of file +} diff --git a/users/likerrr.json b/users/likerrr.json index c775ed2e..a079ac0d 100644 --- a/users/likerrr.json +++ b/users/likerrr.json @@ -4,4 +4,4 @@ "email": "al.lizurchik@gmail.com", "gravatar": true, "format": "html" -} \ No newline at end of file +} diff --git a/users/lindsayevans.json b/users/lindsayevans.json index cd47b888..9ef1c8c7 100644 --- a/users/lindsayevans.json +++ b/users/lindsayevans.json @@ -1,4 +1,4 @@ { "copyright": "Lindsay Evans ", "url": "http://linz.id.au/" -} \ No newline at end of file +} diff --git a/users/lionel-m.json b/users/lionel-m.json index 1e59b601..c2ae547a 100644 --- a/users/lionel-m.json +++ b/users/lionel-m.json @@ -1,4 +1,4 @@ { "copyright": "Lionel Maccaud", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/lira.json b/users/lira.json index 44903ae1..2e7b5ae2 100644 --- a/users/lira.json +++ b/users/lira.json @@ -4,4 +4,4 @@ "email": "oi@fernandolira.com", "gravatar": true, "theme": "material-green" -} \ No newline at end of file +} diff --git a/users/lishiyu.json b/users/lishiyu.json index 5f9c1233..978f1098 100644 --- a/users/lishiyu.json +++ b/users/lishiyu.json @@ -1,4 +1,4 @@ { "copyright": "lishiyu", "url": "http://lishiyu.com" -} \ No newline at end of file +} diff --git a/users/litenjacob.json b/users/litenjacob.json index cf45fd56..57309509 100644 --- a/users/litenjacob.json +++ b/users/litenjacob.json @@ -1,3 +1,3 @@ { "copyright": "Jacob Waller" -} \ No newline at end of file +} diff --git a/users/liuderchi.json b/users/liuderchi.json index d7520fbe..08c94622 100644 --- a/users/liuderchi.json +++ b/users/liuderchi.json @@ -4,4 +4,4 @@ "email": "liuderchi@gmail.com", "theme": "material-orange", "gravatar": true -} \ No newline at end of file +} diff --git a/users/livebreathedigital.json b/users/livebreathedigital.json index 77403056..96e1968d 100644 --- a/users/livebreathedigital.json +++ b/users/livebreathedigital.json @@ -3,4 +3,4 @@ "url": "http://livebreathedigital.net", "email": "k@livebreathedigital.net", "format": "opensans" -} \ No newline at end of file +} diff --git a/users/liz.json b/users/liz.json index cf8b4b1c..4ff469ac 100644 --- a/users/liz.json +++ b/users/liz.json @@ -3,4 +3,4 @@ "url": "https://lizzie.github.io/", "email": "shengyan1985@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/lizzie.json b/users/lizzie.json index cf8b4b1c..4ff469ac 100644 --- a/users/lizzie.json +++ b/users/lizzie.json @@ -3,4 +3,4 @@ "url": "https://lizzie.github.io/", "email": "shengyan1985@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/ljos.json b/users/ljos.json index 62156dc8..c81cc72a 100644 --- a/users/ljos.json +++ b/users/ljos.json @@ -3,4 +3,4 @@ "theme": "double-windsor", "url": "https://github.com/ljos", "email": "Bjarte.Johansen@gmail.com" -} \ No newline at end of file +} diff --git a/users/llaraujo.json b/users/llaraujo.json index 2017de7f..11c2aa33 100644 --- a/users/llaraujo.json +++ b/users/llaraujo.json @@ -2,4 +2,4 @@ "copyright": "Leonardo Lima Araujo", "url": "http://llaraujo.com", "email": "leonardo@llaraujo.com" -} \ No newline at end of file +} diff --git a/users/llun.json b/users/llun.json index 6092973c..924404fd 100644 --- a/users/llun.json +++ b/users/llun.json @@ -1,4 +1,4 @@ { "copyright": "Maythee Anegboonlap", "email": "null@llun.in.th" -} \ No newline at end of file +} diff --git a/users/lmarburger.json b/users/lmarburger.json index 97961830..242789f6 100644 --- a/users/lmarburger.json +++ b/users/lmarburger.json @@ -3,4 +3,4 @@ "url": "http://developmentastic.com", "email": "larry@marburger.cc", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/lmullen.json b/users/lmullen.json index 7ff6139e..58103a15 100644 --- a/users/lmullen.json +++ b/users/lmullen.json @@ -3,4 +3,4 @@ "url": "http://lincolnmullen.com", "email": "lincoln@lincolnmullen.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/lng.json b/users/lng.json index 592b4048..7fcc7f68 100644 --- a/users/lng.json +++ b/users/lng.json @@ -1,3 +1,3 @@ { "copyright": "Lillian Ng" -} \ No newline at end of file +} diff --git a/users/lnmunhoz.json b/users/lnmunhoz.json index 4206d597..1e6a5f43 100644 --- a/users/lnmunhoz.json +++ b/users/lnmunhoz.json @@ -2,4 +2,4 @@ "copyright": "Lucas N. Munhoz", "email": "ln.munhoz@gmail.com", "url": "lnmunhoz.github.io" -} \ No newline at end of file +} diff --git a/users/lo.json b/users/lo.json index 0c11ca83..eb42245e 100644 --- a/users/lo.json +++ b/users/lo.json @@ -1,3 +1,3 @@ { "copyright": "Carlo Flores" -} \ No newline at end of file +} diff --git a/users/localhost.json b/users/localhost.json index c5713d8b..38d9116f 100644 --- a/users/localhost.json +++ b/users/localhost.json @@ -2,4 +2,4 @@ "//1": "Security holding user", "//2": "This user is being locked to prevent complication with localhost.", "locked": true -} \ No newline at end of file +} diff --git a/users/localpcguy.json b/users/localpcguy.json index 40de463c..685ce034 100644 --- a/users/localpcguy.json +++ b/users/localpcguy.json @@ -2,4 +2,4 @@ "copyright": "Mike Behnke, http://www.local-pc-guy.com", "url": "http://www.local-pc-guy.com", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/lolcat.json b/users/lolcat.json index 63b5ea8b..cd53833c 100644 --- a/users/lolcat.json +++ b/users/lolcat.json @@ -1,3 +1,3 @@ { "copyright": "Lolcat" -} \ No newline at end of file +} diff --git a/users/longsl.json b/users/longsl.json index 620b8ec9..5b57cf1c 100644 --- a/users/longsl.json +++ b/users/longsl.json @@ -3,4 +3,4 @@ "url": "http://longshilin.com", "email": "583297550@qq.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/loopj.json b/users/loopj.json index c51b50f4..7c301de7 100644 --- a/users/loopj.json +++ b/users/loopj.json @@ -2,4 +2,4 @@ "copyright": "James Smith, http://loopj.com", "url": "http://loopj.com", "theme": "default" -} \ No newline at end of file +} diff --git a/users/lorenz-lo-sauer.json b/users/lorenz-lo-sauer.json index 0eda7f41..64a5c0fb 100644 --- a/users/lorenz-lo-sauer.json +++ b/users/lorenz-lo-sauer.json @@ -5,4 +5,4 @@ "email": "lorenz.lo.sauer@gmail.com", "gravatar": true, "theme": "eula-modern" -} \ No newline at end of file +} diff --git a/users/louisremi.json b/users/louisremi.json index fc20e294..a7de2451 100644 --- a/users/louisremi.json +++ b/users/louisremi.json @@ -1,4 +1,4 @@ { "copyright": "Louis-Rémi Babé", "url": "http://twitter.com/louis_remi" -} \ No newline at end of file +} diff --git a/users/louist.json b/users/louist.json index 83a93065..9b89551c 100644 --- a/users/louist.json +++ b/users/louist.json @@ -5,4 +5,4 @@ "email": "louist@lou.ist", "gravatar": true, "format": "html" -} \ No newline at end of file +} diff --git a/users/lp.json b/users/lp.json index 07737cce..03b6a95c 100644 --- a/users/lp.json +++ b/users/lp.json @@ -2,4 +2,4 @@ "copyright": "Luke Thomas Plaster", "url": "http://lukep.org", "email": "notatestuser@gmail.com" -} \ No newline at end of file +} diff --git a/users/lpa.json b/users/lpa.json index e46423e7..91b34866 100644 --- a/users/lpa.json +++ b/users/lpa.json @@ -2,4 +2,4 @@ "copyright": "Little Polar Apps, http://littlepolarapps.com", "url": "http://littlepolarapps.com", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/lpg.json b/users/lpg.json index 40de463c..685ce034 100644 --- a/users/lpg.json +++ b/users/lpg.json @@ -2,4 +2,4 @@ "copyright": "Mike Behnke, http://www.local-pc-guy.com", "url": "http://www.local-pc-guy.com", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/lpghatguy.json b/users/lpghatguy.json index 0555fcd8..9a292cad 100644 --- a/users/lpghatguy.json +++ b/users/lpghatguy.json @@ -3,4 +3,4 @@ "url": "http://lpghatguy.com", "email": "me@lpghatguy.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/lqez.json b/users/lqez.json index 4e17ad22..54086ddc 100644 --- a/users/lqez.json +++ b/users/lqez.json @@ -1,3 +1,3 @@ { "copyright": "Park Hyunwoo" -} \ No newline at end of file +} diff --git a/users/lqian.json b/users/lqian.json index d4b5c4ff..dd1c6573 100644 --- a/users/lqian.json +++ b/users/lqian.json @@ -3,4 +3,4 @@ "url": "http://gushingach.tk", "email": "pkuphenix@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/lrenhrda.json b/users/lrenhrda.json index 56f60703..a91aa02b 100644 --- a/users/lrenhrda.json +++ b/users/lrenhrda.json @@ -1,3 +1,3 @@ { "copyright": "Lauren Herda" -} \ No newline at end of file +} diff --git a/users/lsauer.json b/users/lsauer.json index a4083e04..7a590acc 100644 --- a/users/lsauer.json +++ b/users/lsauer.json @@ -5,4 +5,4 @@ "email": "lorenz.lo.sauer@gmail.com", "gravatar": false, "theme": "eula-modern" -} \ No newline at end of file +} diff --git a/users/lsh.json b/users/lsh.json index c8e4a1f8..8a7a066f 100644 --- a/users/lsh.json +++ b/users/lsh.json @@ -4,4 +4,4 @@ "email": "lsh@lsh.io", "format": "txt", "gravatar": true -} \ No newline at end of file +} diff --git a/users/lsong.json b/users/lsong.json index 1b104687..29449ed0 100644 --- a/users/lsong.json +++ b/users/lsong.json @@ -2,4 +2,4 @@ "copyright": "Lsong", "url": "https://lsong.org", "email": "i@lsong.org" -} \ No newline at end of file +} diff --git a/users/ltej.json b/users/ltej.json index 012ec188..883327b0 100644 --- a/users/ltej.json +++ b/users/ltej.json @@ -1,3 +1,3 @@ { "copyright": "Leandra Tejedor" -} \ No newline at end of file +} diff --git a/users/luanmuniz.json b/users/luanmuniz.json index 6b4340c1..cb5b1913 100644 --- a/users/luanmuniz.json +++ b/users/luanmuniz.json @@ -2,4 +2,4 @@ "copyright": "Luan Muniz", "email": "luan@luanmuniz.com.br", "url": "http://luanmuniz.com.br" -} \ No newline at end of file +} diff --git a/users/lucasgreen.json b/users/lucasgreen.json index f4a1affc..8e679875 100644 --- a/users/lucasgreen.json +++ b/users/lucasgreen.json @@ -1,3 +1,3 @@ { "copyright": "Lucas M Green" -} \ No newline at end of file +} diff --git a/users/lucasmartins.json b/users/lucasmartins.json index bfd3d193..e24b10e4 100644 --- a/users/lucasmartins.json +++ b/users/lucasmartins.json @@ -2,4 +2,4 @@ "copyright": "Lucas N Martins", "url": "https://www.linkedin.com/in/martinslucas", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/luis.json b/users/luis.json index 0aa5aab9..3e360a5e 100644 --- a/users/luis.json +++ b/users/luis.json @@ -1,3 +1,3 @@ { "copyright": "Luis Nell" -} \ No newline at end of file +} diff --git a/users/luisdalmolin.json b/users/luisdalmolin.json index aa991415..4f524e5a 100644 --- a/users/luisdalmolin.json +++ b/users/luisdalmolin.json @@ -1,3 +1,3 @@ { "copyright": "Luis Dalmolin" -} \ No newline at end of file +} diff --git a/users/luizbills.json b/users/luizbills.json index fa568f23..984cac81 100644 --- a/users/luizbills.json +++ b/users/luizbills.json @@ -3,4 +3,4 @@ "url": "https://twitter.com/luizbills", "email": "luizpbills@gmail.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/luizpicolo.json b/users/luizpicolo.json index f8e18faf..d2f40133 100644 --- a/users/luizpicolo.json +++ b/users/luizpicolo.json @@ -5,4 +5,4 @@ "email": "luizpicolo@gmail.com", "gravatar": false, "theme": "rokkitt" -} \ No newline at end of file +} diff --git a/users/luke.json b/users/luke.json index df1e5937..5bc3dd72 100644 --- a/users/luke.json +++ b/users/luke.json @@ -3,4 +3,4 @@ "email": "lukemh@gmail.com", "url": "https://lukeholder.net", "theme": "plaintext" -} \ No newline at end of file +} diff --git a/users/lukeed.json b/users/lukeed.json index a094667d..1cae8eb8 100644 --- a/users/lukeed.json +++ b/users/lukeed.json @@ -3,4 +3,4 @@ "url": "http://lukeed.com", "email": "luke@lukeed.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/lukew.json b/users/lukew.json index 9642cefa..b99465f6 100644 --- a/users/lukew.json +++ b/users/lukew.json @@ -3,4 +3,4 @@ "url": "https://lukewhrit.xyz", "email": "me@lukewhrit.xyz", "gravatar": false -} \ No newline at end of file +} diff --git a/users/lukmdo.json b/users/lukmdo.json index 5ba3720c..d0d713d6 100644 --- a/users/lukmdo.json +++ b/users/lukmdo.json @@ -3,4 +3,4 @@ "url": "http://www.lukmdo.com", "email": "me@lukmdo.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/lulalachen.json b/users/lulalachen.json index d8a6b6d0..3257e18d 100644 --- a/users/lulalachen.json +++ b/users/lulalachen.json @@ -4,4 +4,4 @@ "email": "lulalachen@gmail.com", "gravatar": true, "theme": "material-teal" -} \ No newline at end of file +} diff --git a/users/lussier.json b/users/lussier.json index 2ef2dfb1..602c807f 100644 --- a/users/lussier.json +++ b/users/lussier.json @@ -1,3 +1,3 @@ { "copyright": "Gregory A. Lussier" -} \ No newline at end of file +} diff --git a/users/luwes.json b/users/luwes.json index 7a39a501..2f179d27 100644 --- a/users/luwes.json +++ b/users/luwes.json @@ -1,4 +1,4 @@ { "copyright": "Wesley Luyten, http://luwes.co", "url": "http://luwes.co" -} \ No newline at end of file +} diff --git a/users/lvillani.json b/users/lvillani.json index 2fcf704f..16b7a492 100644 --- a/users/lvillani.json +++ b/users/lvillani.json @@ -1,3 +1,3 @@ { "copyright": "Lorenzo Villani" -} \ No newline at end of file +} diff --git a/users/lynn.json b/users/lynn.json index c2840cdd..425af493 100644 --- a/users/lynn.json +++ b/users/lynn.json @@ -2,4 +2,4 @@ "copyright": "Lynn Lin", "email": "lynn80827@hotmail.com", "theme": "friendly" -} \ No newline at end of file +} diff --git a/users/lynnwallenstein.json b/users/lynnwallenstein.json index c47250f9..bb159f11 100644 --- a/users/lynnwallenstein.json +++ b/users/lynnwallenstein.json @@ -1,3 +1,3 @@ { "copyright": "Lynn Wallenstein" -} \ No newline at end of file +} diff --git a/users/m.json b/users/m.json index 8c9e8690..47437860 100644 --- a/users/m.json +++ b/users/m.json @@ -3,4 +3,4 @@ "url": "http://martinpitt.co.uk", "email": "martin.r.pitt+mit@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/m0s.json b/users/m0s.json index 77bfbd08..98adf645 100644 --- a/users/m0s.json +++ b/users/m0s.json @@ -3,4 +3,4 @@ "email": "sergey@balbeko.com", "url": "http://balbeko.com/", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/m42e.json b/users/m42e.json index 93de8756..bb1eb3a5 100644 --- a/users/m42e.json +++ b/users/m42e.json @@ -2,4 +2,4 @@ "copyright": "Matthias Bilger", "url": "https://bilger.info", "email": "matthias@bilger.info" -} \ No newline at end of file +} diff --git a/users/m4i.json b/users/m4i.json index 861c13b4..95758cdd 100644 --- a/users/m4i.json +++ b/users/m4i.json @@ -1,4 +1,4 @@ { "copyright": "Masaki Takeuchi, http://m4i.jp", "url": "http://m4i.jp" -} \ No newline at end of file +} diff --git a/users/ma.json b/users/ma.json index c473357a..c9b533ad 100644 --- a/users/ma.json +++ b/users/ma.json @@ -1,3 +1,3 @@ { "copyright": "Marcus André" -} \ No newline at end of file +} diff --git a/users/ma124.json b/users/ma124.json index c17366cb..e9b5e84b 100644 --- a/users/ma124.json +++ b/users/ma124.json @@ -4,4 +4,4 @@ "email": "ma_124@outlook.com", "theme": "dusk", "gravatar": true -} \ No newline at end of file +} diff --git a/users/mach3.json b/users/mach3.json index b0fc2b7d..6eca19ff 100644 --- a/users/mach3.json +++ b/users/mach3.json @@ -1,3 +1,3 @@ { "copyright": "mach3" -} \ No newline at end of file +} diff --git a/users/maciejczyzewski.json b/users/maciejczyzewski.json index f49d7a15..7215c102 100644 --- a/users/maciejczyzewski.json +++ b/users/maciejczyzewski.json @@ -2,4 +2,4 @@ "copyright": "Maciej A. Czyzewski", "email": "maciejanthonyczyzewski@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/macobo.json b/users/macobo.json index c67dd0bb..84a24e7e 100644 --- a/users/macobo.json +++ b/users/macobo.json @@ -1,4 +1,4 @@ { "copyright": "Karl-Aksel Puulmann", "email": "oxymaccy@gmail.com" -} \ No newline at end of file +} diff --git a/users/mactkg.json b/users/mactkg.json index eaf1df1a..f1261498 100644 --- a/users/mactkg.json +++ b/users/mactkg.json @@ -3,4 +3,4 @@ "url": "http://makerbox.net", "email": "mactkg@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/maddes.json b/users/maddes.json index 6d135869..06d6f9ba 100644 --- a/users/maddes.json +++ b/users/maddes.json @@ -3,4 +3,4 @@ "url": "http://www.maddes.com.ar", "email": "sdeonline@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/madethemes.json b/users/madethemes.json index ca2811d3..37e8ee6e 100644 --- a/users/madethemes.json +++ b/users/madethemes.json @@ -3,4 +3,4 @@ "url": "http://www.madethemes.com", "email": "support@madethemes.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/madness.json b/users/madness.json index b0bc17a1..dab50bb4 100644 --- a/users/madness.json +++ b/users/madness.json @@ -2,4 +2,4 @@ "copyright": "Mohammad Mirrajabi, http://mirrajabi.ir", "url": "http://mirrajabi.ir", "theme": "default" -} \ No newline at end of file +} diff --git a/users/madrona-labs.json b/users/madrona-labs.json index 414d2340..9f898a39 100644 --- a/users/madrona-labs.json +++ b/users/madrona-labs.json @@ -1,3 +1,3 @@ { "copyright": "Madrona Labs LLC" -} \ No newline at end of file +} diff --git a/users/magarcia-mail.json b/users/magarcia-mail.json index dbcf7a51..bf87bb3a 100644 --- a/users/magarcia-mail.json +++ b/users/magarcia-mail.json @@ -1,3 +1,3 @@ { "copyright": "Martin Garcia " -} \ No newline at end of file +} diff --git a/users/magarcia.json b/users/magarcia.json index 5ad6ec0a..47a56591 100644 --- a/users/magarcia.json +++ b/users/magarcia.json @@ -1,3 +1,3 @@ { "copyright": "Martin Garcia" -} \ No newline at end of file +} diff --git a/users/magicdawn.json b/users/magicdawn.json index 5106ee27..fa000456 100644 --- a/users/magicdawn.json +++ b/users/magicdawn.json @@ -4,4 +4,4 @@ "email": "magicdawn@qq.com", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/magno.json b/users/magno.json index 23d76b22..72fd1657 100644 --- a/users/magno.json +++ b/users/magno.json @@ -3,4 +3,4 @@ "url": "https://magnobiet.com/", "email": "me@magnobiet.com", "theme": "material" -} \ No newline at end of file +} diff --git a/users/magnus.json b/users/magnus.json index 42890e48..67777986 100644 --- a/users/magnus.json +++ b/users/magnus.json @@ -1,3 +1,3 @@ { "copyright": "Magnus Dahlstrand" -} \ No newline at end of file +} diff --git a/users/mahdaen.json b/users/mahdaen.json index 53ffcc11..a175257b 100644 --- a/users/mahdaen.json +++ b/users/mahdaen.json @@ -3,4 +3,4 @@ "url": "http://mahdaen.name", "email": "nanang@mahdaen.name", "format": "txt" -} \ No newline at end of file +} diff --git a/users/majd.json b/users/majd.json index 46f3f0cf..93295bc5 100644 --- a/users/majd.json +++ b/users/majd.json @@ -3,4 +3,4 @@ "url": "http://facebook.com/majd.latif", "email": "majdelhaj@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/majodev.json b/users/majodev.json index 1b696f52..fa2ab08a 100644 --- a/users/majodev.json +++ b/users/majodev.json @@ -2,4 +2,4 @@ "copyright": "Mario Ranftl | majodev", "url": "http://ranf.tl", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/makenowjust.json b/users/makenowjust.json index fb7aad83..acb0fc16 100644 --- a/users/makenowjust.json +++ b/users/makenowjust.json @@ -4,4 +4,4 @@ "format": "html", "gravatar": true, "theme": "friendly" -} \ No newline at end of file +} diff --git a/users/makimoto.json b/users/makimoto.json index 34dafc5a..e3f3baa6 100644 --- a/users/makimoto.json +++ b/users/makimoto.json @@ -1,3 +1,3 @@ { "copyright": "Shimpei Makimoto" -} \ No newline at end of file +} diff --git a/users/malayaleecoder.json b/users/malayaleecoder.json index 34cba1a5..9f751bfc 100644 --- a/users/malayaleecoder.json +++ b/users/malayaleecoder.json @@ -1,3 +1,3 @@ { "copyright": "malayaleecoder" -} \ No newline at end of file +} diff --git a/users/mallim.json b/users/mallim.json index b09dd3fc..18fe4ecb 100644 --- a/users/mallim.json +++ b/users/mallim.json @@ -4,4 +4,4 @@ "email": "mallim.ink@gmail.com", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/mamund.json b/users/mamund.json index 45378693..e3dea596 100644 --- a/users/mamund.json +++ b/users/mamund.json @@ -3,4 +3,4 @@ "url": "http://amundsen.com", "email": "copyright@amundsen.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/managenet.json b/users/managenet.json index 29a22c53..aa604fbc 100644 --- a/users/managenet.json +++ b/users/managenet.json @@ -2,4 +2,4 @@ "copyright": "Jacob Marshall, https://manage.net.nz", "url": "https://manage.net.nz", "email": "support@manage.net.nz" -} \ No newline at end of file +} diff --git a/users/mandre.json b/users/mandre.json index c473357a..c9b533ad 100644 --- a/users/mandre.json +++ b/users/mandre.json @@ -1,3 +1,3 @@ { "copyright": "Marcus André" -} \ No newline at end of file +} diff --git a/users/manish.json b/users/manish.json index 850f6b79..867c1618 100644 --- a/users/manish.json +++ b/users/manish.json @@ -1,3 +1,3 @@ { "copyright": "Manish Gill" -} \ No newline at end of file +} diff --git a/users/manparvesh.json b/users/manparvesh.json index fd95aae6..8d6499df 100644 --- a/users/manparvesh.json +++ b/users/manparvesh.json @@ -4,4 +4,4 @@ "email": "manparveshsinghrandhawa@gmail.com", "theme": "material-teal", "gravatar": true -} \ No newline at end of file +} diff --git a/users/manual.json b/users/manual.json index 83527802..b7920bc6 100644 --- a/users/manual.json +++ b/users/manual.json @@ -1,4 +1,4 @@ { "copyright": "Manual design", "url": "http://manualdesign.no" -} \ No newline at end of file +} diff --git a/users/manuel.json b/users/manuel.json index 4fa053cd..abee3d10 100644 --- a/users/manuel.json +++ b/users/manuel.json @@ -3,4 +3,4 @@ "url": "http://manuel.manuelles.nl", "email": "manuel@manuelles.nl", "format": "txt" -} \ No newline at end of file +} diff --git a/users/manuglez.json b/users/manuglez.json index 195bff8a..bb028105 100644 --- a/users/manuglez.json +++ b/users/manuglez.json @@ -5,4 +5,4 @@ "format": "html", "theme": "material-light-blue", "gravatar": true -} \ No newline at end of file +} diff --git a/users/maoo.json b/users/maoo.json index 0501bb2f..f5675b4b 100644 --- a/users/maoo.json +++ b/users/maoo.json @@ -3,4 +3,4 @@ "url": "http://morellana.wordpress.com/", "email": "morello.cl@outlook.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/mapjam.json b/users/mapjam.json index 267e54ef..ccc7b4b8 100644 --- a/users/mapjam.json +++ b/users/mapjam.json @@ -2,4 +2,4 @@ "copyright": "MapJam, Inc.", "email": "hello@mapjam.com", "url": "http://mapjam.com" -} \ No newline at end of file +} diff --git a/users/mapjam1.json b/users/mapjam1.json index 521239e7..42cf29dd 100644 --- a/users/mapjam1.json +++ b/users/mapjam1.json @@ -1,4 +1,4 @@ { "copyright": "MapJam, Inc.", "email": "hello@mapjam.com" -} \ No newline at end of file +} diff --git a/users/mapjam2.json b/users/mapjam2.json index 267e54ef..ccc7b4b8 100644 --- a/users/mapjam2.json +++ b/users/mapjam2.json @@ -2,4 +2,4 @@ "copyright": "MapJam, Inc.", "email": "hello@mapjam.com", "url": "http://mapjam.com" -} \ No newline at end of file +} diff --git a/users/maqina.json b/users/maqina.json index acaa49e9..4eeae66f 100644 --- a/users/maqina.json +++ b/users/maqina.json @@ -2,4 +2,4 @@ "copyright": "Máqina Internet", "url": "http://maqinainternet.com.br", "email": "contato@maqina.com.br" -} \ No newline at end of file +} diff --git a/users/marc.json b/users/marc.json index a8b8d55d..4695037a 100644 --- a/users/marc.json +++ b/users/marc.json @@ -1,4 +1,4 @@ { "copyright": "Marc Smith, http://marcsm.it/", "url": "http://marcsm.it/" -} \ No newline at end of file +} diff --git a/users/marcastel.json b/users/marcastel.json index 5835ef98..acad825d 100644 --- a/users/marcastel.json +++ b/users/marcastel.json @@ -1,3 +1,3 @@ { "copyright": "JM Marcastel (ISLE Consultants)" -} \ No newline at end of file +} diff --git a/users/marceloboeira.json b/users/marceloboeira.json index 85a47458..9588e94d 100644 --- a/users/marceloboeira.json +++ b/users/marceloboeira.json @@ -3,4 +3,4 @@ "url": "http://marceloboeira.com", "email": "contact@marceloboeira.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/marcelobrito.json b/users/marcelobrito.json index add3c05d..6632ae5a 100644 --- a/users/marcelobrito.json +++ b/users/marcelobrito.json @@ -2,4 +2,4 @@ "copyright": "Marcelo Brito", "url": "http://marcelobritowd.com", "email": "hey@marcelobritowd.com" -} \ No newline at end of file +} diff --git a/users/marco-loche.json b/users/marco-loche.json index 662d3a76..0926ccc5 100644 --- a/users/marco-loche.json +++ b/users/marco-loche.json @@ -3,4 +3,4 @@ "url": "http://marcoloche.com", "email": "marco@marcoloche.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/marco.json b/users/marco.json index 95107358..4b6790d6 100644 --- a/users/marco.json +++ b/users/marco.json @@ -1,4 +1,4 @@ { "copyright": "Marco Krage, https://my-azur.de", "url": "https://my-azur.de" -} \ No newline at end of file +} diff --git a/users/marcoagner.json b/users/marcoagner.json index ba31ad1d..b93472c1 100644 --- a/users/marcoagner.json +++ b/users/marcoagner.json @@ -3,4 +3,4 @@ "url": "http://marcoagner.com.com", "email": "marco.agner@live.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/marcocanc.json b/users/marcocanc.json index 216bc0a3..42c1f8ef 100644 --- a/users/marcocanc.json +++ b/users/marcocanc.json @@ -3,4 +3,4 @@ "url": "https://clever-apps.com", "email": "marco@clever-apps.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/marconi.json b/users/marconi.json index e140cb63..71bba9a1 100644 --- a/users/marconi.json +++ b/users/marconi.json @@ -3,4 +3,4 @@ "url": "http://marconijr.com", "email": "me@marconijr.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/marcqualie.json b/users/marcqualie.json index 5793a1ce..f4f5f4d1 100644 --- a/users/marcqualie.json +++ b/users/marcqualie.json @@ -2,4 +2,4 @@ "copyright": "Marc Qualie, https://marcqualie.com", "url": "https://marcqualie.com", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/marcroberts.json b/users/marcroberts.json index 7c64efcc..ef015585 100644 --- a/users/marcroberts.json +++ b/users/marcroberts.json @@ -1,4 +1,4 @@ { "copyright": "Marc Roberts, http://marcroberts.info", "url": "http://marcroberts.info" -} \ No newline at end of file +} diff --git a/users/marcusw.json b/users/marcusw.json index 0e24e423..625414d8 100644 --- a/users/marcusw.json +++ b/users/marcusw.json @@ -4,4 +4,4 @@ "email": "mail@marcusw.de", "gravatar": true, "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/marebucks.json b/users/marebucks.json index 625a478d..45f09829 100644 --- a/users/marebucks.json +++ b/users/marebucks.json @@ -3,4 +3,4 @@ "url": "https://marebucks.com", "email": "contact@marebucks.com", "theme": "eula-modern" -} \ No newline at end of file +} diff --git a/users/marek-saji.json b/users/marek-saji.json index 046d03c3..c9e52ca3 100644 --- a/users/marek-saji.json +++ b/users/marek-saji.json @@ -3,4 +3,4 @@ "email": "marek.aug@gmail.com", "url": "https://github.com/marek-saji", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/marek.json b/users/marek.json index ade02bb1..3ed62437 100644 --- a/users/marek.json +++ b/users/marek.json @@ -3,4 +3,4 @@ "url": "http://marekhrabe.com/", "email": "marekhrabe@me.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/marge.json b/users/marge.json index 31305ec9..af21f64d 100644 --- a/users/marge.json +++ b/users/marge.json @@ -3,4 +3,4 @@ "url": "http://margerosen.com", "email": "marge@margerosen.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/mario-chavez.json b/users/mario-chavez.json index 738e1463..a7129e08 100644 --- a/users/mario-chavez.json +++ b/users/mario-chavez.json @@ -1,3 +1,3 @@ { "copyright": "Mario Alberto Chávez" -} \ No newline at end of file +} diff --git a/users/mark.json b/users/mark.json index 39229967..8fbe9d6e 100644 --- a/users/mark.json +++ b/users/mark.json @@ -3,4 +3,4 @@ "url": "https://github.com/markrendle", "email": "mark@markrendle.net", "gravatar": true -} \ No newline at end of file +} diff --git a/users/markdalgleish.json b/users/markdalgleish.json index ab4b7efa..0d38a12f 100644 --- a/users/markdalgleish.json +++ b/users/markdalgleish.json @@ -1,4 +1,4 @@ { "copyright": "Mark Dalgleish", "url": "http://markdalgleish.com" -} \ No newline at end of file +} diff --git a/users/marksteve.json b/users/marksteve.json index c8a803b5..471cabfc 100644 --- a/users/marksteve.json +++ b/users/marksteve.json @@ -1,4 +1,4 @@ { "copyright": "Mark Steve Samson, http://marksteve.com", "url": "https://marksteve.com" -} \ No newline at end of file +} diff --git a/users/marnulombard.json b/users/marnulombard.json index e1b6becd..9fd17415 100644 --- a/users/marnulombard.json +++ b/users/marnulombard.json @@ -3,4 +3,4 @@ "url": "http://marnulombard.com", "email": "marnu@marnulombard.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/marshall.json b/users/marshall.json index 1f954dc6..77d3d34c 100644 --- a/users/marshall.json +++ b/users/marshall.json @@ -2,4 +2,4 @@ "copyright": "Marshall Culpepper", "url": "http://arcaner.com", "email": "marshall@culpepper.net" -} \ No newline at end of file +} diff --git a/users/martinblech.json b/users/martinblech.json index 1d351013..9d34103f 100644 --- a/users/martinblech.json +++ b/users/martinblech.json @@ -3,4 +3,4 @@ "url": "http://martinblech.com", "email": "martinblech@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/marucc.json b/users/marucc.json index 3c963090..9947d410 100644 --- a/users/marucc.json +++ b/users/marucc.json @@ -1,4 +1,4 @@ { "copyright": "maru_cc", "url": "https://github.com/marucc" -} \ No newline at end of file +} diff --git a/users/marvinede.json b/users/marvinede.json index 49c6c6f4..c97c7a8e 100644 --- a/users/marvinede.json +++ b/users/marvinede.json @@ -2,4 +2,4 @@ "copyright": "Marvin Ede", "email": "marvinede@gmx.net", "format": "txt" -} \ No newline at end of file +} diff --git a/users/masch.json b/users/masch.json index fbcf9ecd..e2db5d6e 100644 --- a/users/masch.json +++ b/users/masch.json @@ -3,4 +3,4 @@ "url": "http://masch.it", "email": "masch@masch.it", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/mashihua.json b/users/mashihua.json index 42a82425..0325dfe8 100644 --- a/users/mashihua.json +++ b/users/mashihua.json @@ -2,4 +2,4 @@ "copyright": "Shihua Ma, http://f2eskills.com.com", "url": "http://f2eskills.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/mast.json b/users/mast.json index a1d8bbce..cff43f83 100644 --- a/users/mast.json +++ b/users/mast.json @@ -1,3 +1,3 @@ { "copyright": "Mike McNeil" -} \ No newline at end of file +} diff --git a/users/masutaka.json b/users/masutaka.json index 353904a3..1d0737ca 100644 --- a/users/masutaka.json +++ b/users/masutaka.json @@ -2,4 +2,4 @@ "copyright": "Takashi Masuda", "url": "http://masutaka.net", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/mateusortiz.json b/users/mateusortiz.json index fe6030de..55d2ab40 100644 --- a/users/mateusortiz.json +++ b/users/mateusortiz.json @@ -1,3 +1,3 @@ { "copyright": "Mateus Ortiz" -} \ No newline at end of file +} diff --git a/users/matheus.json b/users/matheus.json index 3ce34317..93e2075b 100644 --- a/users/matheus.json +++ b/users/matheus.json @@ -3,4 +3,4 @@ "url": "https://github.com/matheuss", "email": "me@mysite.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/mathias.json b/users/mathias.json index 5c1f4f7e..70fa53af 100644 --- a/users/mathias.json +++ b/users/mathias.json @@ -1,4 +1,4 @@ { "copyright": "Mathias Bynens, http://mathiasbynens.be/", "url": "http://mathiasbynens.be/" -} \ No newline at end of file +} diff --git a/users/mathieu.json b/users/mathieu.json index e962c1cd..74e7729f 100644 --- a/users/mathieu.json +++ b/users/mathieu.json @@ -4,4 +4,4 @@ "email": "mathieu@dutour.me", "theme": "material-blue", "gravatar": true -} \ No newline at end of file +} diff --git a/users/matin.json b/users/matin.json index 061e0272..967bf9a8 100644 --- a/users/matin.json +++ b/users/matin.json @@ -1,3 +1,3 @@ { "copyright": "Fouad Matin" -} \ No newline at end of file +} diff --git a/users/matsukaz.json b/users/matsukaz.json index b9b3bf63..432a36f3 100644 --- a/users/matsukaz.json +++ b/users/matsukaz.json @@ -1,3 +1,3 @@ { "copyright": "Masakazu Matsushita" -} \ No newline at end of file +} diff --git a/users/matt-deacalion.json b/users/matt-deacalion.json index 3dfe733a..bcd11e09 100644 --- a/users/matt-deacalion.json +++ b/users/matt-deacalion.json @@ -2,4 +2,4 @@ "copyright": "Matt Deacalion Stevens", "url": "http://dirtymonkey.co.uk", "email": "matt@dirtymonkey.co.uk" -} \ No newline at end of file +} diff --git a/users/matt.json b/users/matt.json index 0acc3c36..9800315b 100644 --- a/users/matt.json +++ b/users/matt.json @@ -1,4 +1,4 @@ { "copyright": "Matthew Vaccaro", "url": "http://matthewvaccaro.com" -} \ No newline at end of file +} diff --git a/users/mattaimonetti.json b/users/mattaimonetti.json index d3f475ab..c5fd7c79 100644 --- a/users/mattaimonetti.json +++ b/users/mattaimonetti.json @@ -3,4 +3,4 @@ "url": "http://matt.aimonetti.net", "email": "matt.aimonetti@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/mattcg.json b/users/mattcg.json index d8b675d5..94e60796 100644 --- a/users/mattcg.json +++ b/users/mattcg.json @@ -2,4 +2,4 @@ "copyright": "Matthew Caruana Galizia, http://m.cg", "url": "http://m.cg", "email": "m@m.cg" -} \ No newline at end of file +} diff --git a/users/mattclements.json b/users/mattclements.json index 0d4bab1c..f094af52 100644 --- a/users/mattclements.json +++ b/users/mattclements.json @@ -2,4 +2,4 @@ "copyright": "Matt Clements", "url": "http://www.mattclements.co.uk/", "email": "matt@mattclements.co.uk" -} \ No newline at end of file +} diff --git a/users/mattetti.json b/users/mattetti.json index d3f475ab..c5fd7c79 100644 --- a/users/mattetti.json +++ b/users/mattetti.json @@ -3,4 +3,4 @@ "url": "http://matt.aimonetti.net", "email": "matt.aimonetti@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/mattgauf.json b/users/mattgauf.json index 72441f70..d5c49672 100644 --- a/users/mattgauf.json +++ b/users/mattgauf.json @@ -1,4 +1,4 @@ { "copyright": "Matt Gauf", "email": "mattgauf@gmail.com" -} \ No newline at end of file +} diff --git a/users/mattgoucher.json b/users/mattgoucher.json index 8e0edba7..e2f6787e 100644 --- a/users/mattgoucher.json +++ b/users/mattgoucher.json @@ -3,4 +3,4 @@ "url": "http://mattgoucher.com", "email": "info@mattgoucher.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/mattgross.json b/users/mattgross.json index 65fe2214..bf8cbc3c 100644 --- a/users/mattgross.json +++ b/users/mattgross.json @@ -1,3 +1,3 @@ { "copyright": "Matthew Gross, http://mattgross.net" -} \ No newline at end of file +} diff --git a/users/matth.json b/users/matth.json index 9d7e6c63..df400029 100644 --- a/users/matth.json +++ b/users/matth.json @@ -3,4 +3,4 @@ "url": "http://matth.co", "email": "matt@matth.co", "gravatar": true -} \ No newline at end of file +} diff --git a/users/matthew-campbell.json b/users/matthew-campbell.json index f9f61fc6..872d47f5 100644 --- a/users/matthew-campbell.json +++ b/users/matthew-campbell.json @@ -1,4 +1,4 @@ { "copyright": "Matthew Campbell", "url": "http://www.matthewcampbell.org/" -} \ No newline at end of file +} diff --git a/users/matthew.json b/users/matthew.json index 8f35fd51..79384fc3 100644 --- a/users/matthew.json +++ b/users/matthew.json @@ -4,4 +4,4 @@ "theme": "default", "gravatar": false, "email": "matthew.t.bentley@gmail.com" -} \ No newline at end of file +} diff --git a/users/matthewdavies.json b/users/matthewdavies.json index 27ada478..cf10de13 100644 --- a/users/matthewdavies.json +++ b/users/matthewdavies.json @@ -4,4 +4,4 @@ "theme": "double-windsor", "email": "daviesgeek@icloud.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/matthewmcvickar.json b/users/matthewmcvickar.json index f81ea95c..d329450b 100644 --- a/users/matthewmcvickar.json +++ b/users/matthewmcvickar.json @@ -3,4 +3,4 @@ "url": "http://matthewmcvickar.com", "email": "matthew@matthewmcvickar.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/matthieuaussaguel.json b/users/matthieuaussaguel.json index b7e3ac71..3a2d24bf 100644 --- a/users/matthieuaussaguel.json +++ b/users/matthieuaussaguel.json @@ -2,4 +2,4 @@ "copyright": "Matthieu Aussaguel", "url": "http://mynameismatthieu.com", "email": "matthieu.aussaaguel@gmail.com" -} \ No newline at end of file +} diff --git a/users/mattn.json b/users/mattn.json index 5c3e01da..dc652aeb 100644 --- a/users/mattn.json +++ b/users/mattn.json @@ -3,4 +3,4 @@ "email": "mattn.jp@gmail.com", "url": "http://mattn.kaoriya.net", "theme": "orange" -} \ No newline at end of file +} diff --git a/users/mattstevens.json b/users/mattstevens.json index f59ac939..00a15ab8 100644 --- a/users/mattstevens.json +++ b/users/mattstevens.json @@ -1,3 +1,3 @@ { "copyright": "Matt Stevens" -} \ No newline at end of file +} diff --git a/users/mavidser.json b/users/mavidser.json index d5b06fd7..3c4ed7e7 100644 --- a/users/mavidser.json +++ b/users/mavidser.json @@ -3,4 +3,4 @@ "url": "http://sidverma.net", "email": "sid@sidverma.net", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/max.json b/users/max.json index 3d55e1f9..4859edf2 100644 --- a/users/max.json +++ b/users/max.json @@ -1,3 +1,3 @@ { "copyright": "Max Hauser" -} \ No newline at end of file +} diff --git a/users/maximz.json b/users/maximz.json index 02fd1ac8..ef2b9b1a 100644 --- a/users/maximz.json +++ b/users/maximz.json @@ -2,4 +2,4 @@ "copyright": "Maxim Zaslavsky, http://maximzaslavsky.com", "url": "http://maximzaslavsky.com", "email": "maxim@maximzaslavsky.com" -} \ No newline at end of file +} diff --git a/users/maxmanders.json b/users/maxmanders.json index 05967f4d..c691d97c 100644 --- a/users/maxmanders.json +++ b/users/maxmanders.json @@ -1,3 +1,3 @@ { "copyright": "Max Manders" -} \ No newline at end of file +} diff --git a/users/maxroecker.json b/users/maxroecker.json index 7f35df1e..3b884d25 100644 --- a/users/maxroecker.json +++ b/users/maxroecker.json @@ -2,4 +2,4 @@ "copyright": "Max Naegeler Roecker", "url": "http://maxroecker.github.io/", "theme": "material-pink" -} \ No newline at end of file +} diff --git a/users/maxwell.json b/users/maxwell.json index 4b5e8f3a..bbafa178 100644 --- a/users/maxwell.json +++ b/users/maxwell.json @@ -1,3 +1,3 @@ { "copyright": "Max Bernstein" -} \ No newline at end of file +} diff --git a/users/maxx.json b/users/maxx.json index 2718a070..a72af9fc 100644 --- a/users/maxx.json +++ b/users/maxx.json @@ -3,4 +3,4 @@ "url": "http://remysharp.com", "email": "me@mysite.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/mayankjha.json b/users/mayankjha.json index 4c88a255..1e5cb0c7 100644 --- a/users/mayankjha.json +++ b/users/mayankjha.json @@ -3,4 +3,4 @@ "url": "https://mayankjha.herokuapp.com", "email": "mayankjha7722@gmail.com", "theme": "8bits-monochrome-blue-white" -} \ No newline at end of file +} diff --git a/users/mb.json b/users/mb.json index 0518375e..7cfaa57c 100644 --- a/users/mb.json +++ b/users/mb.json @@ -1,3 +1,3 @@ { "copyright": "Matthew Bischoff" -} \ No newline at end of file +} diff --git a/users/mbasanta.json b/users/mbasanta.json index 1cbffcb8..76fdf148 100644 --- a/users/mbasanta.json +++ b/users/mbasanta.json @@ -2,4 +2,4 @@ "copyright": "Matthew Basanta", "url": "http://matthewbasanta.com", "theme": "eula-modern" -} \ No newline at end of file +} diff --git a/users/mbilbillee.json b/users/mbilbillee.json index 4a655329..6f1f6296 100644 --- a/users/mbilbillee.json +++ b/users/mbilbillee.json @@ -1,3 +1,3 @@ { "copyright": "Matthieu Bilbille" -} \ No newline at end of file +} diff --git a/users/mbo.json b/users/mbo.json index d4013054..fef942b2 100644 --- a/users/mbo.json +++ b/users/mbo.json @@ -1,3 +1,3 @@ { "copyright": "Marko Bonaci" -} \ No newline at end of file +} diff --git a/users/mbs.json b/users/mbs.json index aa9404b7..2d9b110a 100644 --- a/users/mbs.json +++ b/users/mbs.json @@ -1,3 +1,3 @@ { "copyright": "Matthew Sperry" -} \ No newline at end of file +} diff --git a/users/mc2.json b/users/mc2.json index 22cf4ac2..1219c24f 100644 --- a/users/mc2.json +++ b/users/mc2.json @@ -3,4 +3,4 @@ "url": "http://mc2.com.tr", "email": "contact@mc2.com.tr", "gravatar": true -} \ No newline at end of file +} diff --git a/users/mckamey.json b/users/mckamey.json index d849d651..750836a1 100644 --- a/users/mckamey.json +++ b/users/mckamey.json @@ -1,3 +1,3 @@ { "copyright": "Stephen M. McKamey" -} \ No newline at end of file +} diff --git a/users/mckay.json b/users/mckay.json index f8934139..d0828a02 100644 --- a/users/mckay.json +++ b/users/mckay.json @@ -2,4 +2,4 @@ "copyright": "McKay Software", "url": "http://mckay.co.nz", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/mckelvaney.json b/users/mckelvaney.json index 3e597cd7..3642e42b 100644 --- a/users/mckelvaney.json +++ b/users/mckelvaney.json @@ -2,4 +2,4 @@ "copyright": "Michael McKelvaney", "url": "http://mckelvaney.co.uk", "format": "txt" -} \ No newline at end of file +} diff --git a/users/mckomo.json b/users/mckomo.json index 5d3d75a6..75eb83ac 100644 --- a/users/mckomo.json +++ b/users/mckomo.json @@ -3,4 +3,4 @@ "url": "http://komorowski.info", "email": "mckomo@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/mdag.json b/users/mdag.json index 24020df5..76fc41af 100644 --- a/users/mdag.json +++ b/users/mdag.json @@ -5,4 +5,4 @@ "format": "html", "theme": "double-windsor", "version": "a526bf7ad1" -} \ No newline at end of file +} diff --git a/users/mdd.json b/users/mdd.json index 1fb97cc9..9f88f2bf 100644 --- a/users/mdd.json +++ b/users/mdd.json @@ -1,3 +1,3 @@ { "copyright": "Moreno Di Domenico" -} \ No newline at end of file +} diff --git a/users/mdhheydari.json b/users/mdhheydari.json index 9c3b7ebc..5b247ace 100644 --- a/users/mdhheydari.json +++ b/users/mdhheydari.json @@ -4,4 +4,4 @@ "email": "mdh.heydari@gmail.com", "theme": "friendly", "gravatar": true -} \ No newline at end of file +} diff --git a/users/mdibaiee.json b/users/mdibaiee.json index 3d86b494..e6ea999a 100644 --- a/users/mdibaiee.json +++ b/users/mdibaiee.json @@ -3,4 +3,4 @@ "url": "http://dibaiee.ir", "email": "mdibaiee@aol.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/mdt.json b/users/mdt.json index 0d6941be..44eff530 100644 --- a/users/mdt.json +++ b/users/mdt.json @@ -4,4 +4,4 @@ "email": "oss@marcodeltongo.com", "theme": "dusk", "gravatar": true -} \ No newline at end of file +} diff --git a/users/meetparikh7.json b/users/meetparikh7.json index c515eb1b..f243ef9a 100644 --- a/users/meetparikh7.json +++ b/users/meetparikh7.json @@ -2,4 +2,4 @@ "copyright": "Meet Parikh", "url": "https://meetparikh7.github.io", "email": "meetparikh7@gmail.com" -} \ No newline at end of file +} diff --git a/users/meghprkh.json b/users/meghprkh.json index 0126e686..b96fa61a 100644 --- a/users/meghprkh.json +++ b/users/meghprkh.json @@ -2,4 +2,4 @@ "copyright": "Megh Parikh", "url": "https://meghprkh.github.io", "email": "meghprkh@gmail.com" -} \ No newline at end of file +} diff --git a/users/memega.json b/users/memega.json index 80dc3058..0092b0cb 100644 --- a/users/memega.json +++ b/users/memega.json @@ -1,3 +1,3 @@ { "copyright": "Yuriy Panfyorov" -} \ No newline at end of file +} diff --git a/users/memph1s.json b/users/memph1s.json index 2c50355a..901f98e9 100644 --- a/users/memph1s.json +++ b/users/memph1s.json @@ -3,4 +3,4 @@ "url": "http://vadimgolub.com", "email": "vdm.golub@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/mestes.json b/users/mestes.json index 04c98d58..4c911ead 100644 --- a/users/mestes.json +++ b/users/mestes.json @@ -4,4 +4,4 @@ "email": "me@morganestes.me", "gravatar": true, "theme": "opensans" -} \ No newline at end of file +} diff --git a/users/mestrada.json b/users/mestrada.json index 87a804d1..cf15afd6 100644 --- a/users/mestrada.json +++ b/users/mestrada.json @@ -3,4 +3,4 @@ "url": "https://miguelestrada.dev", "email": "mae829@gmail.com", "theme": "material-light-blue" -} \ No newline at end of file +} diff --git a/users/mf.json b/users/mf.json index 3e4f346a..bf31fd37 100644 --- a/users/mf.json +++ b/users/mf.json @@ -5,4 +5,4 @@ "gravatar": true, "format": "html", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/mfah.json b/users/mfah.json index 94b95c29..c2b77f29 100644 --- a/users/mfah.json +++ b/users/mfah.json @@ -3,4 +3,4 @@ "url": "https://www.mfah.org", "email": "cpratt@mfah.org", "theme": "material-blue" -} \ No newline at end of file +} diff --git a/users/mfmer.json b/users/mfmer.json index eb4c2def..dd8bd74f 100644 --- a/users/mfmer.json +++ b/users/mfmer.json @@ -1,3 +1,3 @@ { "copyright": "Mayo Foundation for Medical Education and Research" -} \ No newline at end of file +} diff --git a/users/mgonto.json b/users/mgonto.json index 12306d77..e53bc924 100644 --- a/users/mgonto.json +++ b/users/mgonto.json @@ -1,4 +1,4 @@ { "copyright": "Martin Gontovnikas", "url": "http://gon.to" -} \ No newline at end of file +} diff --git a/users/mhaidarh.json b/users/mhaidarh.json index 018e6f5b..d613ba31 100644 --- a/users/mhaidarh.json +++ b/users/mhaidarh.json @@ -4,4 +4,4 @@ "email": "email@mhaidarhanif.com", "theme": "material-cyan", "gravatar": true -} \ No newline at end of file +} diff --git a/users/mheap.json b/users/mheap.json index f768b3c9..d2b54140 100644 --- a/users/mheap.json +++ b/users/mheap.json @@ -2,4 +2,4 @@ "copyright": "Michael Heap, http://michaelheap.com", "url": "http://michaelheap.com", "theme": "default" -} \ No newline at end of file +} diff --git a/users/mhenry.json b/users/mhenry.json index 89c1be4a..a9c2e204 100644 --- a/users/mhenry.json +++ b/users/mhenry.json @@ -2,4 +2,4 @@ "copyright": "Michael Henry", "email": "mhenry@drexel.edu", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/mhm5000.json b/users/mhm5000.json index 0191f210..2880e031 100644 --- a/users/mhm5000.json +++ b/users/mhm5000.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "material-teal" -} \ No newline at end of file +} diff --git a/users/mhweiner.json b/users/mhweiner.json index c68605b2..4a9a6c0c 100644 --- a/users/mhweiner.json +++ b/users/mhweiner.json @@ -3,4 +3,4 @@ "url": "http://www.wizardlogic.com", "email": "mhweiner234@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/mi-roh.json b/users/mi-roh.json index 56bf93d3..bd571b50 100644 --- a/users/mi-roh.json +++ b/users/mi-roh.json @@ -1,4 +1,4 @@ { "copyright": "Micha Rohde", "url": "http://mi-roh.de" -} \ No newline at end of file +} diff --git a/users/micaelbergeron.json b/users/micaelbergeron.json index 18d0dd8c..76ed160f 100644 --- a/users/micaelbergeron.json +++ b/users/micaelbergeron.json @@ -1,3 +1,3 @@ { "copyright": "Micaël Bergeron" -} \ No newline at end of file +} diff --git a/users/micalevisk.json b/users/micalevisk.json index 09a89aac..72f864b3 100644 --- a/users/micalevisk.json +++ b/users/micalevisk.json @@ -5,4 +5,4 @@ "gravatar": true, "theme": "dusk", "format": "html" -} \ No newline at end of file +} diff --git a/users/michael.json b/users/michael.json index 2cb82fa1..09ebf584 100644 --- a/users/michael.json +++ b/users/michael.json @@ -1,3 +1,3 @@ { "copyright": "Michael Siddi" -} \ No newline at end of file +} diff --git a/users/michaeldanilov.json b/users/michaeldanilov.json index edad0ec9..00ea269a 100644 --- a/users/michaeldanilov.json +++ b/users/michaeldanilov.json @@ -3,4 +3,4 @@ "url": "https://danilov.me", "email": "michael@danilov.me", "format": "txt" -} \ No newline at end of file +} diff --git a/users/michaelhsu.json b/users/michaelhsu.json index 521f537e..7401ae83 100644 --- a/users/michaelhsu.json +++ b/users/michaelhsu.json @@ -4,4 +4,4 @@ "email": "evenchange4@gmail.com", "theme": "material-indigo", "gravatar": true -} \ No newline at end of file +} diff --git a/users/michaelhsutw.json b/users/michaelhsutw.json index 08e60e34..7bcb73c6 100644 --- a/users/michaelhsutw.json +++ b/users/michaelhsutw.json @@ -4,4 +4,4 @@ "email": "evenchange4@gmail.com", "theme": "default", "gravatar": true -} \ No newline at end of file +} diff --git a/users/michaelobi.json b/users/michaelobi.json index 2e4e88c3..d768fc0e 100644 --- a/users/michaelobi.json +++ b/users/michaelobi.json @@ -1,3 +1,3 @@ { "copyright": "Michael Obi" -} \ No newline at end of file +} diff --git a/users/michaelstanden.json b/users/michaelstanden.json index cf77c14b..e91960b3 100644 --- a/users/michaelstanden.json +++ b/users/michaelstanden.json @@ -4,4 +4,4 @@ "email": "michael@standen.link", "theme": "material-pink", "gravatar": false -} \ No newline at end of file +} diff --git a/users/michaeltaranto.json b/users/michaeltaranto.json index ff593aae..94ddea9f 100644 --- a/users/michaeltaranto.json +++ b/users/michaeltaranto.json @@ -2,4 +2,4 @@ "copyright": "Michael Taranto", "url": "https://github.com/michaeltaranto", "theme": "material-cyan" -} \ No newline at end of file +} diff --git a/users/micromvc.json b/users/micromvc.json index 90d8e1a1..215a67b7 100644 --- a/users/micromvc.json +++ b/users/micromvc.json @@ -1,3 +1,3 @@ { "copyright": "David Pennington" -} \ No newline at end of file +} diff --git a/users/microsoft.json b/users/microsoft.json index 4d63a116..88ad4d11 100644 --- a/users/microsoft.json +++ b/users/microsoft.json @@ -1,4 +1,4 @@ { "copyright": "Microsoft", "url": "http://microsoft.com" -} \ No newline at end of file +} diff --git a/users/micxer.json b/users/micxer.json index 1a98f34d..3cfee83d 100644 --- a/users/micxer.json +++ b/users/micxer.json @@ -4,4 +4,4 @@ "email": "micxer@micxer.de", "format": "html", "theme": "material-light-blue" -} \ No newline at end of file +} diff --git a/users/midupuis.json b/users/midupuis.json index 9a329c1c..b914cfe1 100644 --- a/users/midupuis.json +++ b/users/midupuis.json @@ -2,4 +2,4 @@ "copyright": "Michael Dupuis", "email": "midupuis@zigabittech.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/mignev.json b/users/mignev.json index a55a9748..6cce474f 100644 --- a/users/mignev.json +++ b/users/mignev.json @@ -3,4 +3,4 @@ "url": "http://m.ignev.net", "email": "m.ignev@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/miguelfrde.json b/users/miguelfrde.json index af9820c2..36db63b8 100644 --- a/users/miguelfrde.json +++ b/users/miguelfrde.json @@ -3,4 +3,4 @@ "url": "http://miguelfrde.com", "email": "miguel.frde@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/miguelmota.json b/users/miguelmota.json index e66cc7e9..ae9969d4 100644 --- a/users/miguelmota.json +++ b/users/miguelmota.json @@ -3,4 +3,4 @@ "url": "https://miguelmota.com/", "email": "hello@miguelmota.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/mikael.json b/users/mikael.json index 0f93050e..56ef9321 100644 --- a/users/mikael.json +++ b/users/mikael.json @@ -1,3 +1,3 @@ { "copyright": "Mikael Karon" -} \ No newline at end of file +} diff --git a/users/mikaeljorhult.json b/users/mikaeljorhult.json index c66ce03e..7d8b6fab 100644 --- a/users/mikaeljorhult.json +++ b/users/mikaeljorhult.json @@ -1,4 +1,4 @@ { "copyright": "Mikael Jorhult, http://jorhult.se", "url": "http://jorhult.se" -} \ No newline at end of file +} diff --git a/users/mike.json b/users/mike.json index fa03f181..1d684d1d 100644 --- a/users/mike.json +++ b/users/mike.json @@ -1,3 +1,3 @@ { "copyright": "Remy Sharp" -} \ No newline at end of file +} diff --git a/users/mike2duo.json b/users/mike2duo.json index 2cb82fa1..09ebf584 100644 --- a/users/mike2duo.json +++ b/users/mike2duo.json @@ -1,3 +1,3 @@ { "copyright": "Michael Siddi" -} \ No newline at end of file +} diff --git a/users/mikeanthony.json b/users/mikeanthony.json index efd02207..4b05c34e 100644 --- a/users/mikeanthony.json +++ b/users/mikeanthony.json @@ -1,4 +1,4 @@ { "copyright": "Mike Anthony", "theme": "plaintext" -} \ No newline at end of file +} diff --git a/users/mikejolley.json b/users/mikejolley.json index 1d68eb76..0c9027f1 100644 --- a/users/mikejolley.json +++ b/users/mikejolley.json @@ -2,4 +2,4 @@ "copyright": "Mike Jolley", "url": "https://github.com/mikejolley", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/mikejolly.json b/users/mikejolly.json index 63c199ee..6f701a16 100644 --- a/users/mikejolly.json +++ b/users/mikejolly.json @@ -2,4 +2,4 @@ "copyright": "Mike Jolly", "url": "https://github.com/mikejolly", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/mikelyons.json b/users/mikelyons.json index 3dd78d19..59c3de68 100644 --- a/users/mikelyons.json +++ b/users/mikelyons.json @@ -1,3 +1,3 @@ { "copyright": "Mike Lyons" -} \ No newline at end of file +} diff --git a/users/mikl.json b/users/mikl.json index 3b8adf12..24ee5923 100644 --- a/users/mikl.json +++ b/users/mikl.json @@ -1,4 +1,4 @@ { "copyright": "Daniel Knell, http://danielknell.co.uk", "url": "http://danielknell.co.uk" -} \ No newline at end of file +} diff --git a/users/mikuiro.json b/users/mikuiro.json index 4e5fa284..72d41b32 100644 --- a/users/mikuiro.json +++ b/users/mikuiro.json @@ -2,4 +2,4 @@ "copyright": "Mikuiro", "url": "https://mikuiro.com", "theme": "material-pink" -} \ No newline at end of file +} diff --git a/users/milosgavrilovic.json b/users/milosgavrilovic.json index 61d78853..5637c50e 100644 --- a/users/milosgavrilovic.json +++ b/users/milosgavrilovic.json @@ -3,4 +3,4 @@ "url": "http://milos.gavrilovic.rs/", "email": "milos@gavrilovic.rs", "format": "txt" -} \ No newline at end of file +} diff --git a/users/minhee.json b/users/minhee.json index 5e51a187..997c4269 100644 --- a/users/minhee.json +++ b/users/minhee.json @@ -2,4 +2,4 @@ "copyright": "Hong Minhee, http://hongminhee.org/", "url": "http://hongminhee.org/", "email": "hongminhee@member.fsf.org" -} \ No newline at end of file +} diff --git a/users/minidfx.json b/users/minidfx.json index 96482ddd..05956ac8 100644 --- a/users/minidfx.json +++ b/users/minidfx.json @@ -5,4 +5,4 @@ "email": "minidfx@gmail.com", "gravatar": true, "theme": "default" -} \ No newline at end of file +} diff --git a/users/miro.json b/users/miro.json index 03811666..33cad0cd 100644 --- a/users/miro.json +++ b/users/miro.json @@ -4,4 +4,4 @@ "email": "miro@hibler.me", "theme": "flesch", "gravatar": true -} \ No newline at end of file +} diff --git a/users/mirrajabi.json b/users/mirrajabi.json index b0bc17a1..dab50bb4 100644 --- a/users/mirrajabi.json +++ b/users/mirrajabi.json @@ -2,4 +2,4 @@ "copyright": "Mohammad Mirrajabi, http://mirrajabi.ir", "url": "http://mirrajabi.ir", "theme": "default" -} \ No newline at end of file +} diff --git a/users/mislav.json b/users/mislav.json index 009b02fb..80c354c7 100644 --- a/users/mislav.json +++ b/users/mislav.json @@ -1,3 +1,3 @@ { "copyright": "Mislav Marohnić" -} \ No newline at end of file +} diff --git a/users/miszo.json b/users/miszo.json index 4e2dc700..4d3d03bf 100644 --- a/users/miszo.json +++ b/users/miszo.json @@ -1,4 +1,4 @@ { "copyright": "Miszo Radomski", "url": "https://github.com/miszo" -} \ No newline at end of file +} diff --git a/users/mit-license.json b/users/mit-license.json index f1160c7f..3a4c14a2 100644 --- a/users/mit-license.json +++ b/users/mit-license.json @@ -1,5 +1,5 @@ { - "//1": "Security holding user", - "//2": "This user is being locked incase of potential homepage hijack.", - "locked": true + "//1": "Security holding user", + "//2": "This user is being locked incase of potential homepage hijack.", + "locked": true } diff --git a/users/mizzy.json b/users/mizzy.json index cdde2af2..469fe011 100644 --- a/users/mizzy.json +++ b/users/mizzy.json @@ -1,3 +1,3 @@ { "copyright": "Gosuke Miyashita, http://mizzy.org/" -} \ No newline at end of file +} diff --git a/users/mjf.json b/users/mjf.json index b1c32df1..45479f0f 100644 --- a/users/mjf.json +++ b/users/mjf.json @@ -1,3 +1,3 @@ { "copyright": "Matthew F" -} \ No newline at end of file +} diff --git a/users/mk.json b/users/mk.json index 620da86b..1d88ec00 100644 --- a/users/mk.json +++ b/users/mk.json @@ -1,4 +1,4 @@ { "copyright": "Max Kueng, http://maxkueng.com/", "url": "http://maxkueng.com/" -} \ No newline at end of file +} diff --git a/users/mk23.json b/users/mk23.json index b900524f..316ec4bd 100644 --- a/users/mk23.json +++ b/users/mk23.json @@ -2,4 +2,4 @@ "copyright": "Max Kalika", "url": "https://github.com/mk23", "email": "max.kalika+projects@gmail.com" -} \ No newline at end of file +} diff --git a/users/mkhl.json b/users/mkhl.json index 5bef47d7..a7aaa3e4 100644 --- a/users/mkhl.json +++ b/users/mkhl.json @@ -2,4 +2,4 @@ "copyright": "Martin Kühl", "url": "https://purl.org/net/mkhl", "theme": "plaintext" -} \ No newline at end of file +} diff --git a/users/mlxy.json b/users/mlxy.json index d6b35296..4f6cb4ea 100644 --- a/users/mlxy.json +++ b/users/mlxy.json @@ -4,4 +4,4 @@ "format": "html", "email": "chihane@yeah.net", "theme": "opensans" -} \ No newline at end of file +} diff --git a/users/mm.json b/users/mm.json index 975f7b05..1c478ab0 100644 --- a/users/mm.json +++ b/users/mm.json @@ -1,3 +1,3 @@ { "copyright": "Masanori Matsumoto" -} \ No newline at end of file +} diff --git a/users/mnicnc404.json b/users/mnicnc404.json index a1715560..e4bca3f2 100644 --- a/users/mnicnc404.json +++ b/users/mnicnc404.json @@ -1,3 +1,3 @@ { "copyright": "Ching-Ning Chen" -} \ No newline at end of file +} diff --git a/users/moacirosa.json b/users/moacirosa.json index 772b893e..528959e3 100644 --- a/users/moacirosa.json +++ b/users/moacirosa.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/mohan.json b/users/mohan.json index 8dd3053b..715a77a2 100644 --- a/users/mohan.json +++ b/users/mohan.json @@ -1,3 +1,3 @@ { "copyright": "Mohan G" -} \ No newline at end of file +} diff --git a/users/mohayonao.json b/users/mohayonao.json index 9b3152bd..ddec019c 100644 --- a/users/mohayonao.json +++ b/users/mohayonao.json @@ -1,4 +1,4 @@ { "copyright": "Nao Yonamine", "url": "https://github.com/mohayonao" -} \ No newline at end of file +} diff --git a/users/mohebifar.json b/users/mohebifar.json index f8a2fb93..2df6828c 100644 --- a/users/mohebifar.json +++ b/users/mohebifar.json @@ -4,4 +4,4 @@ "email": "netfars@gmail.com", "gravatar": true, "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/mohnish.json b/users/mohnish.json index b8418674..1135cb25 100644 --- a/users/mohnish.json +++ b/users/mohnish.json @@ -1,3 +1,3 @@ { "copyright": "Mohnish Thallavajhula" -} \ No newline at end of file +} diff --git a/users/mohsend.json b/users/mohsend.json index f7941982..75cd8256 100644 --- a/users/mohsend.json +++ b/users/mohsend.json @@ -3,4 +3,4 @@ "url": "http://dstjrd.ir", "email": "mail@dstjrd.ir", "format": "txt" -} \ No newline at end of file +} diff --git a/users/mokemokechicken.json b/users/mokemokechicken.json index 9bc25ff9..b0c1fb5d 100644 --- a/users/mokemokechicken.json +++ b/users/mokemokechicken.json @@ -1,3 +1,3 @@ { "copyright": "Ken Morishita" -} \ No newline at end of file +} diff --git a/users/mollifier.json b/users/mollifier.json index c1a0dd58..944d9675 100644 --- a/users/mollifier.json +++ b/users/mollifier.json @@ -1,3 +1,3 @@ { "copyright": "Hideaki Miyake" -} \ No newline at end of file +} diff --git a/users/mongorito.json b/users/mongorito.json index fd05cc8a..e134d5ad 100644 --- a/users/mongorito.json +++ b/users/mongorito.json @@ -3,4 +3,4 @@ "url": "http://mongorito.com", "email": "vdemedes@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/monkey.json b/users/monkey.json index 14663650..61f7074f 100644 --- a/users/monkey.json +++ b/users/monkey.json @@ -3,4 +3,4 @@ "url": "https://bitbucket.org/larste/monkey", "email": "larste@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/monks.json b/users/monks.json index c06e50ae..1bf7ff25 100644 --- a/users/monks.json +++ b/users/monks.json @@ -2,4 +2,4 @@ "copyright": "Andrew Monks", "url": "http://monks.co", "email": "a@monks.co" -} \ No newline at end of file +} diff --git a/users/monmon.json b/users/monmon.json index 2e598a50..631abaf5 100644 --- a/users/monmon.json +++ b/users/monmon.json @@ -1,4 +1,4 @@ { "copyright": "monmon", "url": "https://github.com/monmon" -} \ No newline at end of file +} diff --git a/users/moongift.json b/users/moongift.json index dfc891d3..36efc8ef 100644 --- a/users/moongift.json +++ b/users/moongift.json @@ -1,4 +1,4 @@ { "copyright": "Atsushi Nakatsugawa", "url": "http://www.moongift.jp" -} \ No newline at end of file +} diff --git a/users/moore.json b/users/moore.json index cd34b132..fe071423 100644 --- a/users/moore.json +++ b/users/moore.json @@ -1,3 +1,3 @@ { "copyright": "Jared Moore" -} \ No newline at end of file +} diff --git a/users/mootoh.json b/users/mootoh.json index 66a9befc..bf8dac11 100644 --- a/users/mootoh.json +++ b/users/mootoh.json @@ -1,3 +1,3 @@ { "copyright": "Motohiro Takayama" -} \ No newline at end of file +} diff --git a/users/moox.json b/users/moox.json index 6b838a69..96e3b031 100644 --- a/users/moox.json +++ b/users/moox.json @@ -1,3 +1,3 @@ { "copyright": "Maxime Thirouin" -} \ No newline at end of file +} diff --git a/users/mooyoul.json b/users/mooyoul.json index f87da76a..647fd70c 100644 --- a/users/mooyoul.json +++ b/users/mooyoul.json @@ -3,4 +3,4 @@ "url": "http://debug.so", "email": "mooyoul@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/moqada.json b/users/moqada.json index cbbfdf4b..5a99a2f5 100644 --- a/users/moqada.json +++ b/users/moqada.json @@ -2,4 +2,4 @@ "copyright": "Masahiko Okada", "url": "https://github.com/moqada", "theme": "plaintext" -} \ No newline at end of file +} diff --git a/users/moroshko.json b/users/moroshko.json index d779fbe0..cd797665 100644 --- a/users/moroshko.json +++ b/users/moroshko.json @@ -1,3 +1,3 @@ { "copyright": "Misha Moroshko" -} \ No newline at end of file +} diff --git a/users/mortdeus.json b/users/mortdeus.json index 97e7eb9f..2181496f 100644 --- a/users/mortdeus.json +++ b/users/mortdeus.json @@ -4,4 +4,4 @@ "email": "mortdeus@gocos2d.org", "format": "html", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/morteza.json b/users/morteza.json index 1e1f707f..da5bf3b5 100644 --- a/users/morteza.json +++ b/users/morteza.json @@ -5,4 +5,4 @@ "gravatar": true, "format": "html", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/mostly-magic.json b/users/mostly-magic.json index ab0c9caa..8e953f7b 100644 --- a/users/mostly-magic.json +++ b/users/mostly-magic.json @@ -2,4 +2,4 @@ "copyright": "Mitchell Cowie, http://mostlymagic.ca", "url": "http://mostlymagic.ca", "theme": "afterdark" -} \ No newline at end of file +} diff --git a/users/motemen.json b/users/motemen.json index 0a1b5969..cfe106d3 100644 --- a/users/motemen.json +++ b/users/motemen.json @@ -1,3 +1,3 @@ { "copyright": "motemen" -} \ No newline at end of file +} diff --git a/users/motss.json b/users/motss.json index dcf6c5f3..ba8e8097 100644 --- a/users/motss.json +++ b/users/motss.json @@ -2,4 +2,4 @@ "copyright": "Rong Sen Ng", "format": "html", "email": "wes.ngrongsen@gmail.com" -} \ No newline at end of file +} diff --git a/users/moyashiki.json b/users/moyashiki.json index 9680accc..667defe3 100644 --- a/users/moyashiki.json +++ b/users/moyashiki.json @@ -1,3 +1,3 @@ { "copyright": "Tomoya Yashiki, http://yayahayo.me" -} \ No newline at end of file +} diff --git a/users/mp.json b/users/mp.json index b8f561c2..f205fab9 100644 --- a/users/mp.json +++ b/users/mp.json @@ -2,4 +2,4 @@ "copyright": "Marcos Paulo", "email": "marcosisocram@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/mpd.json b/users/mpd.json index f9d6ed6a..9caabdde 100644 --- a/users/mpd.json +++ b/users/mpd.json @@ -1,3 +1,3 @@ { "copyright": "Michael Dippery" -} \ No newline at end of file +} diff --git a/users/mpdreamz.json b/users/mpdreamz.json index 30bf9f8e..feb61ec4 100644 --- a/users/mpdreamz.json +++ b/users/mpdreamz.json @@ -2,4 +2,4 @@ "copyright": "Martijn Laarman", "url": "https://github.com/Mpdreamz", "theme": "blackwood" -} \ No newline at end of file +} diff --git a/users/mpogoda.json b/users/mpogoda.json index 855b39f9..5916d9d6 100644 --- a/users/mpogoda.json +++ b/users/mpogoda.json @@ -1,3 +1,3 @@ { "copyright": "Michael Pogoda" -} \ No newline at end of file +} diff --git a/users/mr-mostafa.json b/users/mr-mostafa.json index 7dd9ff25..23180bab 100644 --- a/users/mr-mostafa.json +++ b/users/mr-mostafa.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "dusk" -} \ No newline at end of file +} diff --git a/users/mressex.json b/users/mressex.json index 8a5d5ee1..a94a1f59 100644 --- a/users/mressex.json +++ b/users/mressex.json @@ -4,4 +4,4 @@ "email": "kylegavinessex@hotmail.com", "theme": "default", "gravatar": true -} \ No newline at end of file +} diff --git a/users/mrgnrdrck.json b/users/mrgnrdrck.json index 483410eb..c2ee359e 100644 --- a/users/mrgnrdrck.json +++ b/users/mrgnrdrck.json @@ -2,4 +2,4 @@ "copyright": "Morgan Roderick, http://roderick.dk/", "url": "http://roderick.dk/", "email": "morgan@roderick.dk" -} \ No newline at end of file +} diff --git a/users/mrinaljain17.json b/users/mrinaljain17.json index 86191db0..1c755ce6 100644 --- a/users/mrinaljain17.json +++ b/users/mrinaljain17.json @@ -3,4 +3,4 @@ "url": "https://mrinaljain17.github.io", "email": "mrinaljain007@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/mrkn.json b/users/mrkn.json index ea44893e..7159320e 100644 --- a/users/mrkn.json +++ b/users/mrkn.json @@ -1,3 +1,3 @@ { "copyright": "Kenta Murata" -} \ No newline at end of file +} diff --git a/users/mrmarbles.json b/users/mrmarbles.json index 656b7564..6f7a7a25 100644 --- a/users/mrmarbles.json +++ b/users/mrmarbles.json @@ -1,4 +1,4 @@ { "copyright": "Brian Carr", "email": "bcarr14@gmail.com" -} \ No newline at end of file +} diff --git a/users/mrsiir.json b/users/mrsiir.json index 2e27be38..5708a066 100644 --- a/users/mrsiir.json +++ b/users/mrsiir.json @@ -1,3 +1,3 @@ { "copyright": "MrSiir" -} \ No newline at end of file +} diff --git a/users/mschaer.json b/users/mschaer.json index c2eec489..f1c0dc05 100644 --- a/users/mschaer.json +++ b/users/mschaer.json @@ -1,4 +1,4 @@ { "copyright": "Marc Schaer", "email": "marc.r.schaer@gmail.com" -} \ No newline at end of file +} diff --git a/users/mseri.json b/users/mseri.json index d7ebc474..54206f90 100644 --- a/users/mseri.json +++ b/users/mseri.json @@ -2,4 +2,4 @@ "copyright": "Marcello Seri", "url": "http://mseri.me", "email": "mseri@mseri.me" -} \ No newline at end of file +} diff --git a/users/mshertzberg.json b/users/mshertzberg.json index e5387d34..ba73b06b 100644 --- a/users/mshertzberg.json +++ b/users/mshertzberg.json @@ -1,3 +1,3 @@ { "copyright": "Michael Scott Hertzberg" -} \ No newline at end of file +} diff --git a/users/msmosso.json b/users/msmosso.json index 4b41326e..d8c640e8 100644 --- a/users/msmosso.json +++ b/users/msmosso.json @@ -2,4 +2,4 @@ "copyright": "Matheus Mósso", "url": "http://msmosso.com/", "email": "msmosso@gmail.com" -} \ No newline at end of file +} diff --git a/users/msmprojects.json b/users/msmprojects.json index d4211a31..aa6a99c7 100644 --- a/users/msmprojects.json +++ b/users/msmprojects.json @@ -3,4 +3,4 @@ "url": "http://msmprojects.com", "email": "admin@msmprojects.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/mstade.json b/users/mstade.json index 1fb455e2..190b0097 100644 --- a/users/mstade.json +++ b/users/mstade.json @@ -1,3 +1,3 @@ { "copyright": "Marcus Stade" -} \ No newline at end of file +} diff --git a/users/mstum.json b/users/mstum.json index 90f59e98..8a4dd9b5 100644 --- a/users/mstum.json +++ b/users/mstum.json @@ -3,4 +3,4 @@ "url": "http://www.Stum.de", "email": "opensource@stum.de", "theme": "default" -} \ No newline at end of file +} diff --git a/users/msudgh.json b/users/msudgh.json index 526975ee..fcb409af 100644 --- a/users/msudgh.json +++ b/users/msudgh.json @@ -4,4 +4,4 @@ "email": "msud.ghorbani@gmail.com", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/mteckert.json b/users/mteckert.json index 5a478ea5..76a0bbdb 100644 --- a/users/mteckert.json +++ b/users/mteckert.json @@ -1,3 +1,3 @@ { "copyright": "Matthew Eckert" -} \ No newline at end of file +} diff --git a/users/mtsagias.json b/users/mtsagias.json index 81866a17..ac422744 100644 --- a/users/mtsagias.json +++ b/users/mtsagias.json @@ -3,4 +3,4 @@ "url": "http://www.tsagias.com", "email": "manolis@tsagias.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/mtsmfm.json b/users/mtsmfm.json index a7e2687b..98d3abd4 100644 --- a/users/mtsmfm.json +++ b/users/mtsmfm.json @@ -3,4 +3,4 @@ "url": "https://mtsmfm.github.io", "email": "mtsmfm@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/mturcotte.json b/users/mturcotte.json index 16e794dd..8c3e9546 100644 --- a/users/mturcotte.json +++ b/users/mturcotte.json @@ -1,4 +1,4 @@ { "copyright": "Mathieu Turcotte, http://mathieuturcotte.ca", "url": "http://mathieuturcotte.ca" -} \ No newline at end of file +} diff --git a/users/muet.json b/users/muet.json index 1d2c6e77..c8b9ac12 100644 --- a/users/muet.json +++ b/users/muet.json @@ -3,4 +3,4 @@ "url": "http://muet.com", "email": "markus@muet.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/mullen.json b/users/mullen.json index 4e6c6ec9..c375fa12 100644 --- a/users/mullen.json +++ b/users/mullen.json @@ -3,4 +3,4 @@ "url": "http://lincolnmullen.com", "email": "lincoln@lincolnmullen.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/muratk.json b/users/muratk.json index d5bbe2ec..24dd218c 100644 --- a/users/muratk.json +++ b/users/muratk.json @@ -1,3 +1,3 @@ { "copyright": "Murat Knecht" -} \ No newline at end of file +} diff --git a/users/muriel.json b/users/muriel.json index f463bcb9..f5a8c490 100644 --- a/users/muriel.json +++ b/users/muriel.json @@ -1,3 +1,3 @@ { "copyright": "Muriel Silveira Pereira" -} \ No newline at end of file +} diff --git a/users/murphy.json b/users/murphy.json index c0bfcc5f..8a71150b 100644 --- a/users/murphy.json +++ b/users/murphy.json @@ -2,4 +2,4 @@ "copyright": "Murphy, http://murphy.metafnord.org", "url": "http://murphy.metafnord.org", "email": "moerphy@googlemail.com" -} \ No newline at end of file +} diff --git a/users/musicgig.json b/users/musicgig.json index 05f08a85..d8cb1ef6 100644 --- a/users/musicgig.json +++ b/users/musicgig.json @@ -2,4 +2,4 @@ "copyright": "Music Gig", "url": "http://musicgig.herokuapp.com", "email": "ikangiec@gmail.com" -} \ No newline at end of file +} diff --git a/users/mustafa.json b/users/mustafa.json index 56ed1f9c..e8528dfb 100644 --- a/users/mustafa.json +++ b/users/mustafa.json @@ -2,4 +2,4 @@ "copyright": "Mustafa Kurtuldu, http://mustafa.im", "url": "http://mustafa.im", "theme": "default" -} \ No newline at end of file +} diff --git a/users/mutedsolutions.json b/users/mutedsolutions.json index 6455a3a2..eb4beffb 100644 --- a/users/mutedsolutions.json +++ b/users/mutedsolutions.json @@ -2,4 +2,4 @@ "copyright": "Muted Solutions, LLC", "url": "http://mutedsolutions.com", "email": "derick@mutedsolutions.com" -} \ No newline at end of file +} diff --git a/users/mutlicorp.json b/users/mutlicorp.json index 2718a070..a72af9fc 100644 --- a/users/mutlicorp.json +++ b/users/mutlicorp.json @@ -3,4 +3,4 @@ "url": "http://remysharp.com", "email": "me@mysite.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/mutoso.json b/users/mutoso.json index 3ed67d70..505de449 100644 --- a/users/mutoso.json +++ b/users/mutoso.json @@ -4,4 +4,4 @@ "email": "alastair@muto.so", "gravatar": true, "theme": "black-beauty" -} \ No newline at end of file +} diff --git a/users/muyuu.json b/users/muyuu.json index fdab5e6d..c1335b60 100644 --- a/users/muyuu.json +++ b/users/muyuu.json @@ -1,4 +1,4 @@ { "copyright": "Muyuu Fujita", "url": "https://github.com/muyuu" -} \ No newline at end of file +} diff --git a/users/mvdnes.json b/users/mvdnes.json index dc9ebd47..2e7aae42 100644 --- a/users/mvdnes.json +++ b/users/mvdnes.json @@ -1,3 +1,3 @@ { "copyright": "Mathijs van de Nes" -} \ No newline at end of file +} diff --git a/users/mvr.json b/users/mvr.json index 9a56c0dd..201ad08a 100644 --- a/users/mvr.json +++ b/users/mvr.json @@ -2,4 +2,4 @@ "copyright": "Mathias Rasmussen", "email": "mathiasvr@gmail.com", "theme": "material-light-blue" -} \ No newline at end of file +} diff --git a/users/mw.json b/users/mw.json index 770256e8..8413dcc5 100644 --- a/users/mw.json +++ b/users/mw.json @@ -1,3 +1,3 @@ { "copyright": "Matthew Westrik" -} \ No newline at end of file +} diff --git a/users/mway.json b/users/mway.json index 6a549d79..6990b2df 100644 --- a/users/mway.json +++ b/users/mway.json @@ -3,4 +3,4 @@ "url": "http://mway.co/", "email": "matt.way@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/mwm.json b/users/mwm.json index f006a179..a6b170d7 100644 --- a/users/mwm.json +++ b/users/mwm.json @@ -3,4 +3,4 @@ "url": "http://www.mwmeyer.com", "email": "matthewwilliammeyer@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/mwmeyer.json b/users/mwmeyer.json index 9a8e28b5..d223b63e 100644 --- a/users/mwmeyer.json +++ b/users/mwmeyer.json @@ -2,4 +2,4 @@ "copyright": "Matthew Meyer", "url": "http://www.mwmeyer.com", "email": "matthewwilliammeyer@gmail.com" -} \ No newline at end of file +} diff --git a/users/mwmnj.json b/users/mwmnj.json index 9a8e28b5..d223b63e 100644 --- a/users/mwmnj.json +++ b/users/mwmnj.json @@ -2,4 +2,4 @@ "copyright": "Matthew Meyer", "url": "http://www.mwmeyer.com", "email": "matthewwilliammeyer@gmail.com" -} \ No newline at end of file +} diff --git a/users/myles.json b/users/myles.json index 77d6c957..d803d261 100644 --- a/users/myles.json +++ b/users/myles.json @@ -3,4 +3,4 @@ "url": "http://mylesbraithwaite.com", "email": "me@mylesbraithwaite.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/mynetx.json b/users/mynetx.json index 0007bc2a..03c473f3 100644 --- a/users/mynetx.json +++ b/users/mynetx.json @@ -2,4 +2,4 @@ "copyright": "J.M.", "url": "http://mynetx.net/", "email": "mynetx@users.sf.net" -} \ No newline at end of file +} diff --git a/users/mysticatea.json b/users/mysticatea.json index 94bd7eff..66eb7548 100644 --- a/users/mysticatea.json +++ b/users/mysticatea.json @@ -1,4 +1,4 @@ { "copyright": "Toru Nagashima", "url": "https://github.com/mysticatea" -} \ No newline at end of file +} diff --git a/users/n.json b/users/n.json index cb18510f..e4685a64 100644 --- a/users/n.json +++ b/users/n.json @@ -1,4 +1,4 @@ { "copyright": "Nex Zhu", "url": "https://github.com/NexZhu" -} \ No newline at end of file +} diff --git a/users/n0nick.json b/users/n0nick.json index daae7d33..d7cb5333 100644 --- a/users/n0nick.json +++ b/users/n0nick.json @@ -1,3 +1,3 @@ { "copyright": "Sagie Maoz" -} \ No newline at end of file +} diff --git a/users/nacyot.json b/users/nacyot.json index 30a49781..ddb89f07 100644 --- a/users/nacyot.json +++ b/users/nacyot.json @@ -3,4 +3,4 @@ "url": "http://naycot.com", "email": "propellerheaven@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/nadeemkhan.json b/users/nadeemkhan.json index a6a23177..41604b29 100644 --- a/users/nadeemkhan.json +++ b/users/nadeemkhan.json @@ -3,4 +3,4 @@ "email": "nadeem7khan@gmail.com", "theme": "double-windsor", "gravatar": true -} \ No newline at end of file +} diff --git a/users/nadi.json b/users/nadi.json index daea176a..500d82e0 100644 --- a/users/nadi.json +++ b/users/nadi.json @@ -3,4 +3,4 @@ "url": "http://nadikun.com", "email": "dikunn@gmail.com", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/naereen.json b/users/naereen.json index 6cfc8163..154dbf4a 100644 --- a/users/naereen.json +++ b/users/naereen.json @@ -4,4 +4,4 @@ "email": "naereen at crans dot org", "format": "html", "gravatar": false -} \ No newline at end of file +} diff --git a/users/nak2k.json b/users/nak2k.json index e276dc4c..d971f898 100644 --- a/users/nak2k.json +++ b/users/nak2k.json @@ -1,4 +1,4 @@ { "copyright": "Kengo Nakatsuka", "url": "http://nak2k.jp/" -} \ No newline at end of file +} diff --git a/users/nanahositento.json b/users/nanahositento.json index 4560e00d..124d2e76 100644 --- a/users/nanahositento.json +++ b/users/nanahositento.json @@ -2,4 +2,4 @@ "copyright": "nanahositento", "url": "http://nanahositento.github.com/", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/nanha.json b/users/nanha.json index 902343a0..b3ce11da 100644 --- a/users/nanha.json +++ b/users/nanha.json @@ -1,4 +1,4 @@ { "copyright": "nanha park", "url": "http://nanha.com" -} \ No newline at end of file +} diff --git a/users/nanotaboada.json b/users/nanotaboada.json index 31b1c6a1..f94ffe39 100644 --- a/users/nanotaboada.json +++ b/users/nanotaboada.json @@ -2,4 +2,4 @@ "copyright": "Nano Taboada, http://nanotaboada.com.ar", "url": "http://nanotaboada.com.ar", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/naota.json b/users/naota.json index 507e8773..1d871162 100644 --- a/users/naota.json +++ b/users/naota.json @@ -1,3 +1,3 @@ { "copyright": "Naohiro Aota" -} \ No newline at end of file +} diff --git a/users/nat.json b/users/nat.json index b2fc4871..30b63113 100644 --- a/users/nat.json +++ b/users/nat.json @@ -1,3 +1,3 @@ { "copyright": "Nat Zimmermann" -} \ No newline at end of file +} diff --git a/users/nate.json b/users/nate.json index ee17446f..ac0dff89 100644 --- a/users/nate.json +++ b/users/nate.json @@ -1,4 +1,4 @@ { "copyright": "Nathan Rugg", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/natevw.json b/users/natevw.json index 66fc3821..95e90faa 100644 --- a/users/natevw.json +++ b/users/natevw.json @@ -1,4 +1,4 @@ { "copyright": "Nathan Vander Wilt", "url": "http://exts.ch" -} \ No newline at end of file +} diff --git a/users/nathan.json b/users/nathan.json index 16791c8d..7c155649 100644 --- a/users/nathan.json +++ b/users/nathan.json @@ -2,4 +2,4 @@ "copyright": "Nathan Herald", "url": "http://nathanherald.com", "email": "me@nathanherald.com" -} \ No newline at end of file +} diff --git a/users/nathan7.json b/users/nathan7.json index bb8da14f..10b1d007 100644 --- a/users/nathan7.json +++ b/users/nathan7.json @@ -1,3 +1,3 @@ { "copyright": "Nathan Zadoks" -} \ No newline at end of file +} diff --git a/users/nathanallen.json b/users/nathanallen.json index 1355528e..a27bf295 100644 --- a/users/nathanallen.json +++ b/users/nathanallen.json @@ -2,4 +2,4 @@ "copyright": "Nathan Allen, http://nathan.codes/", "url": "http://nathan.codes/", "theme": "plaintext" -} \ No newline at end of file +} diff --git a/users/natzim.json b/users/natzim.json index b2fc4871..30b63113 100644 --- a/users/natzim.json +++ b/users/natzim.json @@ -1,3 +1,3 @@ { "copyright": "Nat Zimmermann" -} \ No newline at end of file +} diff --git a/users/naufraghi.json b/users/naufraghi.json index 2c00386e..cd37d2f2 100644 --- a/users/naufraghi.json +++ b/users/naufraghi.json @@ -1,3 +1,3 @@ { "copyright": "Matteo Bertini" -} \ No newline at end of file +} diff --git a/users/navarr.json b/users/navarr.json index 61920a10..e1772ada 100644 --- a/users/navarr.json +++ b/users/navarr.json @@ -1,4 +1,4 @@ { "copyright": "Navarr Barnier", "url": "http://navarr.me" -} \ No newline at end of file +} diff --git a/users/nblackburn.json b/users/nblackburn.json index b1e2a899..d3ceb5d8 100644 --- a/users/nblackburn.json +++ b/users/nblackburn.json @@ -5,4 +5,4 @@ "format": "txt", "theme": "plaintext", "gravatar": true -} \ No newline at end of file +} diff --git a/users/ncb000gt.json b/users/ncb000gt.json index 5400427a..290ce5c3 100644 --- a/users/ncb000gt.json +++ b/users/ncb000gt.json @@ -2,4 +2,4 @@ "copyright": "Nicholas Campbell", "email": "nicholas.j.campbell@gmail.com", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/nctg.json b/users/nctg.json index eceb1c18..59893559 100644 --- a/users/nctg.json +++ b/users/nctg.json @@ -1,4 +1,4 @@ { "copyright": "North Coast Technology Group", "url": "http://nctechgroup.com/" -} \ No newline at end of file +} diff --git a/users/ndw.json b/users/ndw.json index 0cc8f159..367ee4a6 100644 --- a/users/ndw.json +++ b/users/ndw.json @@ -2,4 +2,4 @@ "copyright": "Norman Walsh, http://nwalsh.com/", "url": "http://nwalsh.com/", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/nectktar.json b/users/nectktar.json index 63268814..6c32f1e5 100644 --- a/users/nectktar.json +++ b/users/nectktar.json @@ -1,4 +1,4 @@ { "copyright": "Nectktar", "format": "txt" -} \ No newline at end of file +} diff --git a/users/neil.json b/users/neil.json index 5a615f42..e4a9523b 100644 --- a/users/neil.json +++ b/users/neil.json @@ -1,3 +1,3 @@ { "copyright": "Neil Cowburn" -} \ No newline at end of file +} diff --git a/users/nemo.json b/users/nemo.json index d6a5bcb5..4c3aedcc 100644 --- a/users/nemo.json +++ b/users/nemo.json @@ -4,4 +4,4 @@ "url": "https://captnemo.in/", "gravatar": "true", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/neo.json b/users/neo.json index eddb3be8..8f53ace3 100644 --- a/users/neo.json +++ b/users/neo.json @@ -3,4 +3,4 @@ "url": "http://neomelonas.com", "email": "neo@neomelonas.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/neodevelop.json b/users/neodevelop.json index a204b7dc..70927989 100644 --- a/users/neodevelop.json +++ b/users/neodevelop.json @@ -4,4 +4,4 @@ "email": "rashwell@gmail.com", "format": "html", "theme": "solarized" -} \ No newline at end of file +} diff --git a/users/neos21.json b/users/neos21.json index 29449892..f3d87302 100644 --- a/users/neos21.json +++ b/users/neos21.json @@ -4,4 +4,4 @@ "email": "neos21@gmail.com", "gravatar": true, "theme": "cherry" -} \ No newline at end of file +} diff --git a/users/nerdfiles.json b/users/nerdfiles.json index 36433147..822e4d52 100644 --- a/users/nerdfiles.json +++ b/users/nerdfiles.json @@ -1,3 +1,3 @@ { "copyright": "nerdfiles" -} \ No newline at end of file +} diff --git a/users/nerdsec.json b/users/nerdsec.json index a6a0a73a..1c03734e 100644 --- a/users/nerdsec.json +++ b/users/nerdsec.json @@ -3,4 +3,4 @@ "url": "http://nerdsec.org", "email": "license@nerdsec.org", "format": "txt" -} \ No newline at end of file +} diff --git a/users/nergal.json b/users/nergal.json index 7d265dd8..2783692e 100644 --- a/users/nergal.json +++ b/users/nergal.json @@ -3,4 +3,4 @@ "url": "http://2mio.com", "email": "me@2mio.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/nethru.json b/users/nethru.json index 250737de..94a54221 100644 --- a/users/nethru.json +++ b/users/nethru.json @@ -3,4 +3,4 @@ "url": "http://nethru.com", "email": "info@nethru.com", "theme": "friendly" -} \ No newline at end of file +} diff --git a/users/neutroncreations.json b/users/neutroncreations.json index 3dd14fef..a0d262a2 100644 --- a/users/neutroncreations.json +++ b/users/neutroncreations.json @@ -1,4 +1,4 @@ { "copyright": "Neutron Creations, http://neutroncreations.com", "url": "http://neutroncreations.com" -} \ No newline at end of file +} diff --git a/users/nevir.json b/users/nevir.json index cb723886..9cbc356b 100644 --- a/users/nevir.json +++ b/users/nevir.json @@ -1,3 +1,3 @@ { "copyright": "Ian MacLeod" -} \ No newline at end of file +} diff --git a/users/newleaders.json b/users/newleaders.json index 0b6c5f47..ed2ddeb3 100644 --- a/users/newleaders.json +++ b/users/newleaders.json @@ -4,4 +4,4 @@ "email": "opensource@newleaders.com", "format": "html", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/nex.json b/users/nex.json index cb18510f..e4685a64 100644 --- a/users/nex.json +++ b/users/nex.json @@ -1,4 +1,4 @@ { "copyright": "Nex Zhu", "url": "https://github.com/NexZhu" -} \ No newline at end of file +} diff --git a/users/nexzhu.json b/users/nexzhu.json index cb18510f..e4685a64 100644 --- a/users/nexzhu.json +++ b/users/nexzhu.json @@ -1,4 +1,4 @@ { "copyright": "Nex Zhu", "url": "https://github.com/NexZhu" -} \ No newline at end of file +} diff --git a/users/nfreear.json b/users/nfreear.json index ac4b85bb..582edcc0 100644 --- a/users/nfreear.json +++ b/users/nfreear.json @@ -2,4 +2,4 @@ "copyright": "Nick Freear", "url": "http://freear.org.uk", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/ngenerio.json b/users/ngenerio.json index 44d970d8..3e727951 100644 --- a/users/ngenerio.json +++ b/users/ngenerio.json @@ -2,4 +2,4 @@ "copyright": "Eugene Asiedu", "email": "ngene84@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/ngoldman.json b/users/ngoldman.json index 2dec13bf..d7a1b396 100644 --- a/users/ngoldman.json +++ b/users/ngoldman.json @@ -1,3 +1,3 @@ { "copyright": "Nathaniel Goldman" -} \ No newline at end of file +} diff --git a/users/ngtk.json b/users/ngtk.json index 26382e82..7aa8b347 100644 --- a/users/ngtk.json +++ b/users/ngtk.json @@ -1,3 +1,3 @@ { "copyright": "Kent Nagata" -} \ No newline at end of file +} diff --git a/users/ngyuki.json b/users/ngyuki.json index 74860a35..79d35c4e 100644 --- a/users/ngyuki.json +++ b/users/ngyuki.json @@ -1,4 +1,4 @@ { "copyright": "Toshiyuki Goto", "url": "https://github.com/ngyuki" -} \ No newline at end of file +} diff --git a/users/nhan.json b/users/nhan.json index f560207b..4550fc66 100644 --- a/users/nhan.json +++ b/users/nhan.json @@ -4,4 +4,4 @@ "format": "html", "gravatar": false, "theme": "default" -} \ No newline at end of file +} diff --git a/users/nhanderu.json b/users/nhanderu.json index 6fb5ab27..fb6254e7 100644 --- a/users/nhanderu.json +++ b/users/nhanderu.json @@ -2,4 +2,4 @@ "copyright": "Rafael Escobar", "url": "http://nhanderu.com", "email": "rafael.bze@gmail.com" -} \ No newline at end of file +} diff --git a/users/nhayato.json b/users/nhayato.json index fbdf6524..501e7e4f 100644 --- a/users/nhayato.json +++ b/users/nhayato.json @@ -1,3 +1,3 @@ { "copyright": "Hayato Nishimura" -} \ No newline at end of file +} diff --git a/users/nhoizey.json b/users/nhoizey.json index 9685e4bb..acfc38d0 100644 --- a/users/nhoizey.json +++ b/users/nhoizey.json @@ -1,4 +1,4 @@ { "copyright": "Nicolas Hoizey", "url": "http://gasteroprod.com/" -} \ No newline at end of file +} diff --git a/users/nichom.json b/users/nichom.json index 0f122dc7..25778a40 100644 --- a/users/nichom.json +++ b/users/nichom.json @@ -3,4 +3,4 @@ "url": "http://nickmartinelli.com", "email": "nicho.m@gmail.com", "theme": "plaintext" -} \ No newline at end of file +} diff --git a/users/nickmanos.json b/users/nickmanos.json index 1955393f..0dae1831 100644 --- a/users/nickmanos.json +++ b/users/nickmanos.json @@ -1,4 +1,4 @@ { "copyright": "Nick Manos", "email": "manos.nick@gmail.com" -} \ No newline at end of file +} diff --git a/users/nicksp.json b/users/nicksp.json index 60277f6a..a62dce98 100644 --- a/users/nicksp.json +++ b/users/nicksp.json @@ -4,4 +4,4 @@ "format": "html", "theme": "material-indigo", "gravatar": true -} \ No newline at end of file +} diff --git a/users/nico.json b/users/nico.json index b4798326..6e889dfd 100644 --- a/users/nico.json +++ b/users/nico.json @@ -1,4 +1,4 @@ { "copyright": "Nicolas Chaulet", "email": "nicolas.chaulet@gmail.com" -} \ No newline at end of file +} diff --git a/users/niftylettuce.json b/users/niftylettuce.json index 38d76dc1..9153c548 100644 --- a/users/niftylettuce.json +++ b/users/niftylettuce.json @@ -3,4 +3,4 @@ "url": "http://niftylettuce.com", "email": "niftylettuce@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/nightw.json b/users/nightw.json index 5ffb53b3..c1e2a526 100644 --- a/users/nightw.json +++ b/users/nightw.json @@ -2,4 +2,4 @@ "copyright": "Pal David Gergely", "email": "nightw17@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/nik.json b/users/nik.json index 2171269c..274552a0 100644 --- a/users/nik.json +++ b/users/nik.json @@ -1,3 +1,3 @@ { "copyright": "Nikolas Weger" -} \ No newline at end of file +} diff --git a/users/nikbobo.json b/users/nikbobo.json index 33c17487..8b9ac5f4 100644 --- a/users/nikbobo.json +++ b/users/nikbobo.json @@ -3,4 +3,4 @@ "url": "http://www.nikbobo.net", "email": "nikbobos@gmail.com", "theme": "default" -} \ No newline at end of file +} diff --git a/users/nikhilgohil11.json b/users/nikhilgohil11.json index f6ab3426..04eefb4e 100644 --- a/users/nikhilgohil11.json +++ b/users/nikhilgohil11.json @@ -1,3 +1,3 @@ { "copyright": "Nikhil Gohil" -} \ No newline at end of file +} diff --git a/users/nikolay.json b/users/nikolay.json index 4ff3c225..890b9236 100644 --- a/users/nikolay.json +++ b/users/nikolay.json @@ -5,4 +5,4 @@ "gravatar": true, "format": "html", "theme": "default" -} \ No newline at end of file +} diff --git a/users/nil.json b/users/nil.json index 2da161f1..37a1c10c 100644 --- a/users/nil.json +++ b/users/nil.json @@ -3,4 +3,4 @@ "url": "http://ksde.pw", "email": "nil@ksde.pw", "format": "txt" -} \ No newline at end of file +} diff --git a/users/nilesh.json b/users/nilesh.json index 64ee902a..8b36ed0b 100644 --- a/users/nilesh.json +++ b/users/nilesh.json @@ -3,4 +3,4 @@ "url": "http://nilesh.londhe.com", "email": "nilesh@londhe.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/nilkesede.json b/users/nilkesede.json index 2da161f1..37a1c10c 100644 --- a/users/nilkesede.json +++ b/users/nilkesede.json @@ -3,4 +3,4 @@ "url": "http://ksde.pw", "email": "nil@ksde.pw", "format": "txt" -} \ No newline at end of file +} diff --git a/users/nilswloka.json b/users/nilswloka.json index 61cfb152..fb8bbe59 100644 --- a/users/nilswloka.json +++ b/users/nilswloka.json @@ -1,3 +1,3 @@ { "copyright": "Nils Wloka" -} \ No newline at end of file +} diff --git a/users/niltoncms.json b/users/niltoncms.json index 79ebca19..3e89281b 100644 --- a/users/niltoncms.json +++ b/users/niltoncms.json @@ -4,4 +4,4 @@ "email": "niltoncms@gmail.com", "gravatar": false, "theme": "opensans" -} \ No newline at end of file +} diff --git a/users/nima.json b/users/nima.json index 634c59ae..b6b4b91c 100644 --- a/users/nima.json +++ b/users/nima.json @@ -4,4 +4,4 @@ "format": "html", "gravatar": false, "theme": "plaintext" -} \ No newline at end of file +} diff --git a/users/nimbu.json b/users/nimbu.json index 0d4bca07..e3346dbe 100644 --- a/users/nimbu.json +++ b/users/nimbu.json @@ -3,4 +3,4 @@ "url": "http://www.nimbu.io", "email": "opensource@nimbu.io", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/nisargrthakkar.json b/users/nisargrthakkar.json index 060a3238..b396f5ee 100644 --- a/users/nisargrthakkar.json +++ b/users/nisargrthakkar.json @@ -4,4 +4,4 @@ "format": "html", "theme": "material-indigo", "gravatar": true -} \ No newline at end of file +} diff --git a/users/nishanths.json b/users/nishanths.json index cd630894..0212270b 100644 --- a/users/nishanths.json +++ b/users/nishanths.json @@ -1,3 +1,3 @@ { "copyright": "Nishanth Shanmugham" -} \ No newline at end of file +} diff --git a/users/nitori.json b/users/nitori.json index 0af157d5..73595536 100644 --- a/users/nitori.json +++ b/users/nitori.json @@ -1,3 +1,3 @@ { "copyright": "Nitori Kawashiro" -} \ No newline at end of file +} diff --git a/users/nitriques.json b/users/nitriques.json index 646d6677..0bef689d 100644 --- a/users/nitriques.json +++ b/users/nitriques.json @@ -3,4 +3,4 @@ "url": "http://nicolasbrassard.com", "theme": "flesch", "gravatar": true -} \ No newline at end of file +} diff --git a/users/njordon.json b/users/njordon.json index 86f6b3db..d11ce64e 100644 --- a/users/njordon.json +++ b/users/njordon.json @@ -3,4 +3,4 @@ "url": "https://github.com/ProjectCleverWeb", "email": "projectcleverweb@gmail.com", "theme": "material-blue" -} \ No newline at end of file +} diff --git a/users/nk.json b/users/nk.json index 902bcb69..6c1a6ed0 100644 --- a/users/nk.json +++ b/users/nk.json @@ -3,4 +3,4 @@ "url": "https://about.me/nadeeemkhan7", "email": "nadeem7khan@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/nks.json b/users/nks.json index b99e9535..b4328447 100644 --- a/users/nks.json +++ b/users/nks.json @@ -3,4 +3,4 @@ "url": "https://twitter.com/krsoninikhil", "email": "krsoninikhil@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/nlr.json b/users/nlr.json index 0963218d..91f2e42b 100644 --- a/users/nlr.json +++ b/users/nlr.json @@ -5,4 +5,4 @@ "format": "html", "theme": "xtansia", "gravatar": false -} \ No newline at end of file +} diff --git a/users/nm.json b/users/nm.json index 785f7ac1..9d4ff84f 100644 --- a/users/nm.json +++ b/users/nm.json @@ -1,3 +1,3 @@ { "copyright": "NixonMcInnes" -} \ No newline at end of file +} diff --git a/users/nmanos.json b/users/nmanos.json index 40331688..083be13c 100644 --- a/users/nmanos.json +++ b/users/nmanos.json @@ -2,4 +2,4 @@ "copyright": "Nick Manos", "email": "manos.nick@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/nnexus.json b/users/nnexus.json index 556c8def..5a9a3078 100644 --- a/users/nnexus.json +++ b/users/nnexus.json @@ -1,3 +1,3 @@ { "copyright": "Aaron Krowne and James Gardner and Deyan Ginev" -} \ No newline at end of file +} diff --git a/users/nntoan.json b/users/nntoan.json index d25b4446..4adafeef 100644 --- a/users/nntoan.json +++ b/users/nntoan.json @@ -3,4 +3,4 @@ "url": "https://nntoan.com", "email": "me@nntoan.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/no.json b/users/no.json index ee398209..c89e575a 100644 --- a/users/no.json +++ b/users/no.json @@ -3,4 +3,4 @@ "url": "https://github.com/pingrat", "email": "pingrat@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/nodaguti.json b/users/nodaguti.json index 262abfaa..72a16b3f 100644 --- a/users/nodaguti.json +++ b/users/nodaguti.json @@ -1,4 +1,4 @@ { "copyright": "nodaguti", "url": "https://github.com/nodaguti" -} \ No newline at end of file +} diff --git a/users/nodejsbrasil.json b/users/nodejsbrasil.json index 0c380350..f371bebc 100644 --- a/users/nodejsbrasil.json +++ b/users/nodejsbrasil.json @@ -3,4 +3,4 @@ "url": "https://github.com/NodeJS-Brasil", "email": "jnascimento@gmail.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/noeldavies.json b/users/noeldavies.json index 912b75aa..83349131 100644 --- a/users/noeldavies.json +++ b/users/noeldavies.json @@ -1,3 +1,3 @@ { "copyright": "Daniel Noel-Davies" -} \ No newline at end of file +} diff --git a/users/nojb.json b/users/nojb.json index f0d54dde..6d76e140 100644 --- a/users/nojb.json +++ b/users/nojb.json @@ -1,3 +1,3 @@ { "copyright": "Nicolás Ojeda Bär" -} \ No newline at end of file +} diff --git a/users/nooblad.json b/users/nooblad.json index 7d24c14b..2f8e3dd6 100644 --- a/users/nooblad.json +++ b/users/nooblad.json @@ -1,3 +1,3 @@ { "copyright": "Ludovic Lafole" -} \ No newline at end of file +} diff --git a/users/noodlehaus.json b/users/noodlehaus.json index 670cb72e..89fc7eb2 100644 --- a/users/noodlehaus.json +++ b/users/noodlehaus.json @@ -2,4 +2,4 @@ "copyright": "Jesus A. Domingo", "url": "http://jesusdomingo.com", "email": "jesus.domingo@gmail.com" -} \ No newline at end of file +} diff --git a/users/norcross.json b/users/norcross.json index b55c7f24..2f55d1d2 100644 --- a/users/norcross.json +++ b/users/norcross.json @@ -3,4 +3,4 @@ "url": "http://andrewnorcross.com", "email": "andrew@andrewnorcross.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/noriaki.json b/users/noriaki.json index 547728a2..75298a19 100644 --- a/users/noriaki.json +++ b/users/noriaki.json @@ -4,4 +4,4 @@ "theme": "material-indigo", "email": "uchiyama.noriaki@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/noromanba.json b/users/noromanba.json index cac460ba..64456a0b 100644 --- a/users/noromanba.json +++ b/users/noromanba.json @@ -2,4 +2,4 @@ "copyright": "noromanba", "url": "http://d.hatena.ne.jp/noromanba/", "theme": "afterdark" -} \ No newline at end of file +} diff --git a/users/norris.json b/users/norris.json index dcaefd00..5632f794 100644 --- a/users/norris.json +++ b/users/norris.json @@ -2,4 +2,4 @@ "copyright": "Nauris Pukis", "url": "http://justnorris.com", "email": "im@justnorris.com" -} \ No newline at end of file +} diff --git a/users/noty.json b/users/noty.json index 5e66547b..d4127ccb 100644 --- a/users/noty.json +++ b/users/noty.json @@ -1,3 +1,3 @@ { "copyright": "Nedim Arabacı" -} \ No newline at end of file +} diff --git a/users/novalagung.json b/users/novalagung.json index 54d2e8c3..6326b4c0 100644 --- a/users/novalagung.json +++ b/users/novalagung.json @@ -4,4 +4,4 @@ "email": "caknopal@gmail.com", "theme": "double-windsor", "gravatar": true -} \ No newline at end of file +} diff --git a/users/nqngo.json b/users/nqngo.json index 8534ecd1..07e871a0 100644 --- a/users/nqngo.json +++ b/users/nqngo.json @@ -2,4 +2,4 @@ "copyright": "Nhat Q. Ngo", "email": "phuquoc2001@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/nrakochy.json b/users/nrakochy.json index fbd490e6..de31b738 100644 --- a/users/nrakochy.json +++ b/users/nrakochy.json @@ -2,4 +2,4 @@ "copyright": "Nick Rakochy", "url": "nickrakochy.com", "theme": "friendly" -} \ No newline at end of file +} diff --git a/users/nrm.json b/users/nrm.json index 8235ffc3..1f69fce7 100644 --- a/users/nrm.json +++ b/users/nrm.json @@ -1,4 +1,4 @@ { "copyright": "noromanba", "url": "http://d.hatena.ne.jp/noromanba/" -} \ No newline at end of file +} diff --git a/users/ns.json b/users/ns.json index 380e3330..eaa65d12 100644 --- a/users/ns.json +++ b/users/ns.json @@ -3,4 +3,4 @@ "url": "https://naksion.com", "email": "naksions@gmail.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/nsisodiya.json b/users/nsisodiya.json index 4c9c2627..26c9afa3 100644 --- a/users/nsisodiya.json +++ b/users/nsisodiya.json @@ -3,4 +3,4 @@ "url": "http://narendrasisodiya.com", "email": "narendra@narendrasisodiya.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/null.json b/users/null.json index 315e297e..176d806e 100644 --- a/users/null.json +++ b/users/null.json @@ -2,4 +2,4 @@ "//1": "Security holding user", "//2": "This user is being locked to allow for no copyright information.", "locked": true -} \ No newline at end of file +} diff --git a/users/numediaweb.json b/users/numediaweb.json index 10f97b8d..007465ae 100644 --- a/users/numediaweb.json +++ b/users/numediaweb.json @@ -3,4 +3,4 @@ "url": "http://numediaweb.com", "email": "abdel@numediaweb.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/nuri.json b/users/nuri.json index d866dd20..3245998f 100644 --- a/users/nuri.json +++ b/users/nuri.json @@ -1,3 +1,3 @@ { "copyright": "Nuri Hodges" -} \ No newline at end of file +} diff --git a/users/nv.json b/users/nv.json index 9dcc8807..211f0e63 100644 --- a/users/nv.json +++ b/users/nv.json @@ -3,4 +3,4 @@ "url": "http://nvartolomei.com", "email": "me@nvartolomei.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/nvcnvn.json b/users/nvcnvn.json index f841dbc7..cc1a8597 100644 --- a/users/nvcnvn.json +++ b/users/nvcnvn.json @@ -1,3 +1,3 @@ { "copyright": "Nguyễn Văn Cao Nguyên" -} \ No newline at end of file +} diff --git a/users/nyarla.json b/users/nyarla.json index 21c79938..1144ab03 100644 --- a/users/nyarla.json +++ b/users/nyarla.json @@ -4,4 +4,4 @@ "email": "nyarla@thotep.net", "gravatar": true, "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/o.json b/users/o.json index d78ac9d2..c0038ac7 100644 --- a/users/o.json +++ b/users/o.json @@ -3,4 +3,4 @@ "url": "http://ungur.org", "email": "osmanungur@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/oaeide.json b/users/oaeide.json index dcbab8c4..7e2763b8 100644 --- a/users/oaeide.json +++ b/users/oaeide.json @@ -1,3 +1,3 @@ { "copyright": "Øyvind Andreas Eide" -} \ No newline at end of file +} diff --git a/users/obihann.json b/users/obihann.json index 7b67b178..e6356344 100644 --- a/users/obihann.json +++ b/users/obihann.json @@ -2,4 +2,4 @@ "copyright": "Jeffrey Hann", "url": "http://jeffreyhann.ca", "email": "jeffhann@gmail.com" -} \ No newline at end of file +} diff --git a/users/object505.json b/users/object505.json index 730e4e02..8870ee36 100644 --- a/users/object505.json +++ b/users/object505.json @@ -2,4 +2,4 @@ "copyright": "Bojan Petkovski, https://github.com/object505", "url": "http://object505.com", "email": "pbeluent@gmail.com" -} \ No newline at end of file +} diff --git a/users/oc.json b/users/oc.json index 57c049f4..cebfc37a 100644 --- a/users/oc.json +++ b/users/oc.json @@ -2,4 +2,4 @@ "copyright": "麦当苗儿, ONECMF.COM", "url": "http://www.onecmf.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/octavioturra.json b/users/octavioturra.json index a4ec66d5..94b27367 100644 --- a/users/octavioturra.json +++ b/users/octavioturra.json @@ -3,4 +3,4 @@ "url": "http://fraguto.com.br", "email": "octo@fraguto.com.br", "theme": "friendly" -} \ No newline at end of file +} diff --git a/users/odsod.json b/users/odsod.json index 2d59e5be..7e419097 100644 --- a/users/odsod.json +++ b/users/odsod.json @@ -1,3 +1,3 @@ { "copyright": "Oscar Söderlund" -} \ No newline at end of file +} diff --git a/users/ofer-shaham.json b/users/ofer-shaham.json index 7f3a8452..fda303fc 100644 --- a/users/ofer-shaham.json +++ b/users/ofer-shaham.json @@ -3,4 +3,4 @@ "url": "http://brownman.github.io", "email": "ofer.shaham@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/ofer.json b/users/ofer.json index 70fa95ad..1c1960d9 100644 --- a/users/ofer.json +++ b/users/ofer.json @@ -1,3 +1,3 @@ { "copyright": "Ofer Shaham" -} \ No newline at end of file +} diff --git a/users/oguching.json b/users/oguching.json index 34706038..530443fe 100644 --- a/users/oguching.json +++ b/users/oguching.json @@ -2,4 +2,4 @@ "copyright": "Oguchi Nzekwe, http://oguching.com", "url": "http://oguching.com", "theme": "opensans" -} \ No newline at end of file +} diff --git a/users/ohtomi.json b/users/ohtomi.json index 399ee8b4..ea97e513 100644 --- a/users/ohtomi.json +++ b/users/ohtomi.json @@ -1,4 +1,4 @@ { "copyright": "Kenichi Ohtomi", "url": "https://github.com/ohtomi" -} \ No newline at end of file +} diff --git a/users/oidong1.json b/users/oidong1.json index 2c0d4299..06ca9e96 100644 --- a/users/oidong1.json +++ b/users/oidong1.json @@ -1,3 +1,3 @@ { "copyright": "oidong" -} \ No newline at end of file +} diff --git a/users/ojoaofernandes.json b/users/ojoaofernandes.json index 154dd2b2..aa78860b 100644 --- a/users/ojoaofernandes.json +++ b/users/ojoaofernandes.json @@ -1,3 +1,3 @@ { "copyright": "João Pedro Fernandes" -} \ No newline at end of file +} diff --git a/users/ok.json b/users/ok.json index a01dfd4c..483b62c2 100644 --- a/users/ok.json +++ b/users/ok.json @@ -1,4 +1,4 @@ { "copyright": "Olli Kankare", "email": "olli@salaliitto.com" -} \ No newline at end of file +} diff --git a/users/okeyaki.json b/users/okeyaki.json index 719da255..bbc6cca5 100644 --- a/users/okeyaki.json +++ b/users/okeyaki.json @@ -1,3 +1,3 @@ { "copyright": "Okeyaki" -} \ No newline at end of file +} diff --git a/users/ol.json b/users/ol.json index e7ef100a..50c3c838 100644 --- a/users/ol.json +++ b/users/ol.json @@ -3,4 +3,4 @@ "url": "http://oliverlumby.com", "email": "me@oliverlumby.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/olalonde.json b/users/olalonde.json index ca6d11b2..7328eb2b 100644 --- a/users/olalonde.json +++ b/users/olalonde.json @@ -2,4 +2,4 @@ "copyright": "Olivier Lalonde", "url": "http://www.syskall.com", "email": "olalonde@gmail.com" -} \ No newline at end of file +} diff --git a/users/olav.json b/users/olav.json index 20722c0e..1aeb4eea 100644 --- a/users/olav.json +++ b/users/olav.json @@ -3,4 +3,4 @@ "url": "http://olav.net", "email": "mit-license@schettler.net", "format": "txt" -} \ No newline at end of file +} diff --git a/users/olgabot.json b/users/olgabot.json index 2a396ea6..13ce3c46 100644 --- a/users/olgabot.json +++ b/users/olgabot.json @@ -1,3 +1,3 @@ { "copyright": "Olga Botvinnik" -} \ No newline at end of file +} diff --git a/users/oliciv.json b/users/oliciv.json index f1bf4e04..0e39a403 100644 --- a/users/oliciv.json +++ b/users/oliciv.json @@ -2,4 +2,4 @@ "copyright": "Oli Allen", "url": "http://www.oliallen.com", "email": "oli@oliallen.com" -} \ No newline at end of file +} diff --git a/users/olivere.json b/users/olivere.json index 239b511a..a7afde95 100644 --- a/users/olivere.json +++ b/users/olivere.json @@ -1,3 +1,3 @@ { "copyright": "Oliver Eilhard" -} \ No newline at end of file +} diff --git a/users/olivernn.json b/users/olivernn.json index cf6815f5..dc61866f 100644 --- a/users/olivernn.json +++ b/users/olivernn.json @@ -1,3 +1,3 @@ { "copyright": "Oliver Nightingale" -} \ No newline at end of file +} diff --git a/users/olivier.json b/users/olivier.json index 274648d3..5166660a 100644 --- a/users/olivier.json +++ b/users/olivier.json @@ -3,4 +3,4 @@ "url": "http://olivierlacan.com", "email": "hi@olivierlacan.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/ollej.json b/users/ollej.json index 8b213319..68c767e5 100644 --- a/users/ollej.json +++ b/users/ollej.json @@ -4,4 +4,4 @@ "email": "Olle@Johansson.com", "format": "html", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/olly.json b/users/olly.json index 11650130..f08f00b1 100644 --- a/users/olly.json +++ b/users/olly.json @@ -1,3 +1,3 @@ { "copyright": "Oliver Legg" -} \ No newline at end of file +} diff --git a/users/olmokramer.json b/users/olmokramer.json index 2a619c9d..0c55e5e1 100644 --- a/users/olmokramer.json +++ b/users/olmokramer.json @@ -1,3 +1,3 @@ { "copyright": "Olmo Kramer" -} \ No newline at end of file +} diff --git a/users/omarithawi.json b/users/omarithawi.json index 44835dfa..3ab2d90e 100644 --- a/users/omarithawi.json +++ b/users/omarithawi.json @@ -1,3 +1,3 @@ { "copyright": "Omar Al-Ithawi" -} \ No newline at end of file +} diff --git a/users/omg.json b/users/omg.json index 0eea856d..ebb90a16 100644 --- a/users/omg.json +++ b/users/omg.json @@ -5,4 +5,4 @@ "email": "omidgharib@yahoo.com", "gravatar": true, "theme": "default" -} \ No newline at end of file +} diff --git a/users/omi.json b/users/omi.json index 125aeeb8..6b22c89a 100644 --- a/users/omi.json +++ b/users/omi.json @@ -3,4 +3,4 @@ "url": "http://omi.dk", "email": "support@omi.dk", "format": "txt" -} \ No newline at end of file +} diff --git a/users/omidgharib.json b/users/omidgharib.json index 0eea856d..ebb90a16 100644 --- a/users/omidgharib.json +++ b/users/omidgharib.json @@ -5,4 +5,4 @@ "email": "omidgharib@yahoo.com", "gravatar": true, "theme": "default" -} \ No newline at end of file +} diff --git a/users/omtinez.json b/users/omtinez.json index ad8de9b5..2e9ac7ac 100644 --- a/users/omtinez.json +++ b/users/omtinez.json @@ -1,3 +1,3 @@ { "copyright": "Oscar Martinez" -} \ No newline at end of file +} diff --git a/users/onarray.json b/users/onarray.json index 564c8d60..b5940f8f 100644 --- a/users/onarray.json +++ b/users/onarray.json @@ -1,4 +1,4 @@ { "copyright": "onarray", "url": "http://www.onarray.com" -} \ No newline at end of file +} diff --git a/users/onecmf.json b/users/onecmf.json index 86cd7bce..fb12186e 100644 --- a/users/onecmf.json +++ b/users/onecmf.json @@ -3,4 +3,4 @@ "url": "http://www.onecmf.com", "email": "zuojiazi@vip.qq.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/onedge.json b/users/onedge.json index 5e80ad20..df10d85d 100644 --- a/users/onedge.json +++ b/users/onedge.json @@ -1,3 +1,3 @@ { "copyright": "On Edge" -} \ No newline at end of file +} diff --git a/users/onenorth.json b/users/onenorth.json index 1db509b5..b79d8958 100644 --- a/users/onenorth.json +++ b/users/onenorth.json @@ -2,4 +2,4 @@ "copyright": "One North Interactive", "url": "http://onenorth.com", "email": "support@onenorth.com" -} \ No newline at end of file +} diff --git a/users/oojs.json b/users/oojs.json index 72b90bd8..219e5d19 100644 --- a/users/oojs.json +++ b/users/oojs.json @@ -3,4 +3,4 @@ "url": "https://github.com/wikimedia/oojs", "format": "html", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/openjtalkgolang.json b/users/openjtalkgolang.json index 3e9e2864..ebc576ac 100644 --- a/users/openjtalkgolang.json +++ b/users/openjtalkgolang.json @@ -2,4 +2,4 @@ "copyright": "Pedro Moraes ", "url": "http://omoraes.com.br", "format": "txt" -} \ No newline at end of file +} diff --git a/users/oppara.json b/users/oppara.json index dbad81b8..2fcfb454 100644 --- a/users/oppara.json +++ b/users/oppara.json @@ -2,4 +2,4 @@ "copyright": "Nobuo OOHARA, http://www.oppara.tv/", "url": "http://www.oppara.tv/", "theme": "afterdark" -} \ No newline at end of file +} diff --git a/users/opsworks-ruby.json b/users/opsworks-ruby.json index af9b64f3..f57d1857 100644 --- a/users/opsworks-ruby.json +++ b/users/opsworks-ruby.json @@ -1,4 +1,4 @@ { "copyright": "Igor Rzegocki", "url": "https://rzegocki.pl/" -} \ No newline at end of file +} diff --git a/users/orgachem.json b/users/orgachem.json index 6ffef548..1ed374c3 100644 --- a/users/orgachem.json +++ b/users/orgachem.json @@ -1,4 +1,4 @@ { "copyright": "OrgaChem", "url": "https://github.com/OrgaChem" -} \ No newline at end of file +} diff --git a/users/origami-tower.json b/users/origami-tower.json index 8b2510df..1a249f3a 100644 --- a/users/origami-tower.json +++ b/users/origami-tower.json @@ -4,4 +4,4 @@ "email": "contact@origamitower.com", "gravatar": true, "theme": "open-sans" -} \ No newline at end of file +} diff --git a/users/origamitower.json b/users/origamitower.json index 5f84ff14..afa89bd6 100644 --- a/users/origamitower.json +++ b/users/origamitower.json @@ -4,4 +4,4 @@ "email": "contact@origamitower.com", "gravatar": true, "theme": "opensans" -} \ No newline at end of file +} diff --git a/users/originalmachine.json b/users/originalmachine.json index 9c4993c1..06591390 100644 --- a/users/originalmachine.json +++ b/users/originalmachine.json @@ -3,4 +3,4 @@ "email": "dev@originalmachine.com", "url": "http://originalmachine.com/software", "format": "txt" -} \ No newline at end of file +} diff --git a/users/orlin.json b/users/orlin.json index 50b1a186..f1fa87ae 100644 --- a/users/orlin.json +++ b/users/orlin.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": false, "theme": "default" -} \ No newline at end of file +} diff --git a/users/orzfly.json b/users/orzfly.json index 635c21a9..2cdac747 100644 --- a/users/orzfly.json +++ b/users/orzfly.json @@ -4,4 +4,4 @@ "email": "mit@orzfly.com", "format": "default", "gravatar": true -} \ No newline at end of file +} diff --git a/users/os0x.json b/users/os0x.json index 27ffa360..abfcb920 100644 --- a/users/os0x.json +++ b/users/os0x.json @@ -2,4 +2,4 @@ "copyright": "Shogo Ohta, http://ss-o.net/", "url": "http://ss-o.net/", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/oshida.json b/users/oshida.json index cd63dc0c..010a7c65 100644 --- a/users/oshida.json +++ b/users/oshida.json @@ -1,4 +1,4 @@ { "copyright": "Takeharu Oshida", "url": "https://github.com/georgeOsdDev" -} \ No newline at end of file +} diff --git a/users/oswaldoacauan.json b/users/oswaldoacauan.json index 5d807914..a06ede93 100644 --- a/users/oswaldoacauan.json +++ b/users/oswaldoacauan.json @@ -2,4 +2,4 @@ "copyright": "Oswaldo Acauan", "url": "http://oswaldoacauan.com", "email": "hello@oswaldoacauan.com" -} \ No newline at end of file +} diff --git a/users/othree.json b/users/othree.json index ea95fdb5..5e87495e 100644 --- a/users/othree.json +++ b/users/othree.json @@ -2,4 +2,4 @@ "copyright": "Kao, Wei-Ko", "url": "http://blog.othree.net/", "theme": "white cherry" -} \ No newline at end of file +} diff --git a/users/outline.json b/users/outline.json index 36270b6d..47319c38 100644 --- a/users/outline.json +++ b/users/outline.json @@ -1,4 +1,4 @@ { "copyright": "outline – we web. (http://outlinewebdesign.com)", "url": "http://outlinewebdesign.com" -} \ No newline at end of file +} diff --git a/users/outsider.json b/users/outsider.json index e6f1785a..487a19b7 100644 --- a/users/outsider.json +++ b/users/outsider.json @@ -3,4 +3,4 @@ "url": "http://blog.outsider.ne.kr", "theme": "afterdark", "email": "outsideris@gmail.com" -} \ No newline at end of file +} diff --git a/users/owebboy.json b/users/owebboy.json index ad07b572..ac517dfc 100644 --- a/users/owebboy.json +++ b/users/owebboy.json @@ -1,3 +1,3 @@ { "copyright": "Oliver Pope" -} \ No newline at end of file +} diff --git a/users/owm.json b/users/owm.json index fa19d6d4..e20bdfcc 100644 --- a/users/owm.json +++ b/users/owm.json @@ -3,4 +3,4 @@ "url": "http://owm111.github.io", "email": "owenmcgrath111@outlook.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/oxguy3.json b/users/oxguy3.json index fb04739d..c7d400a4 100644 --- a/users/oxguy3.json +++ b/users/oxguy3.json @@ -3,4 +3,4 @@ "url": "http://schiff.io", "email": "haydenschiff@gmail.com", "theme": "friendly" -} \ No newline at end of file +} diff --git a/users/oxy.json b/users/oxy.json index 299e41a6..12db9a97 100644 --- a/users/oxy.json +++ b/users/oxy.json @@ -1,4 +1,4 @@ { "copyright": "Oskar Schöldström, http://www.oxy.fi", "url": "http://www.oxy.fi" -} \ No newline at end of file +} diff --git a/users/ozh.json b/users/ozh.json index 19afb12a..1459d41f 100644 --- a/users/ozh.json +++ b/users/ozh.json @@ -3,4 +3,4 @@ "url": "http://ozh.org/", "email": "ozh at ozh dot org", "format": "html" -} \ No newline at end of file +} diff --git a/users/ozzyr.json b/users/ozzyr.json index 40dc6742..6c4458d1 100644 --- a/users/ozzyr.json +++ b/users/ozzyr.json @@ -3,4 +3,4 @@ "url": "https://ozzyrodriguez.com", "email": "ozzy@ozzyrodriguez.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/pablodv.json b/users/pablodv.json index 5f4dea44..b94043cd 100644 --- a/users/pablodv.json +++ b/users/pablodv.json @@ -1,3 +1,3 @@ { "copyright": "Pablo del Vecchio" -} \ No newline at end of file +} diff --git a/users/pablojim.json b/users/pablojim.json index fd25c981..4458113e 100644 --- a/users/pablojim.json +++ b/users/pablojim.json @@ -1,3 +1,3 @@ { "copyright": "Barry Fitzgerald" -} \ No newline at end of file +} diff --git a/users/pacbard.json b/users/pacbard.json index df42cbb2..68cc086e 100644 --- a/users/pacbard.json +++ b/users/pacbard.json @@ -1,4 +1,4 @@ { "copyright": "Emanuele Bardelli", "email": "bardellie@gmail.com" -} \ No newline at end of file +} diff --git a/users/padde.json b/users/padde.json index 1409204a..a4b3b3f8 100644 --- a/users/padde.json +++ b/users/padde.json @@ -1,3 +1,3 @@ { "copyright": "Patrick Oscity" -} \ No newline at end of file +} diff --git a/users/pagoda.json b/users/pagoda.json index 003819d8..c78817e6 100644 --- a/users/pagoda.json +++ b/users/pagoda.json @@ -1,3 +1,3 @@ { "copyright": "Pagodabox INC" -} \ No newline at end of file +} diff --git a/users/pagodabox.json b/users/pagodabox.json index 37750496..79abc320 100644 --- a/users/pagodabox.json +++ b/users/pagodabox.json @@ -3,4 +3,4 @@ "url": "https://pagodabox.com", "email": "hullo@pagodabox.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/pahnin.json b/users/pahnin.json index e6ace7fc..de5053f1 100644 --- a/users/pahnin.json +++ b/users/pahnin.json @@ -3,4 +3,4 @@ "url": "http://phanindras.com", "email": "pahninsd@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/palleas.json b/users/palleas.json index 80e81c98..2dc1f107 100644 --- a/users/palleas.json +++ b/users/palleas.json @@ -3,4 +3,4 @@ "url": "http://romain-pouclet.com", "email": "romain.pouclet@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/panjiesw.json b/users/panjiesw.json index ebd17402..6757b81c 100644 --- a/users/panjiesw.json +++ b/users/panjiesw.json @@ -3,4 +3,4 @@ "url": "https://panjiesw.life", "email": "panjie@panjiesw.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/pankaj.json b/users/pankaj.json index b1c9cac8..b280b492 100644 --- a/users/pankaj.json +++ b/users/pankaj.json @@ -3,4 +3,4 @@ "url": "http://panks.me", "email": "me@panks.me", "format": "txt" -} \ No newline at end of file +} diff --git a/users/parker.json b/users/parker.json index 2ad57965..54129b0e 100644 --- a/users/parker.json +++ b/users/parker.json @@ -3,4 +3,4 @@ "url": "http://parkermoore.de", "email": "desk@parkermoore.de", "format": "txt" -} \ No newline at end of file +} diff --git a/users/parkere.json b/users/parkere.json index 90022170..21513618 100644 --- a/users/parkere.json +++ b/users/parkere.json @@ -1,3 +1,3 @@ { "copyright": "Parker Evans" -} \ No newline at end of file +} diff --git a/users/parryc.json b/users/parryc.json index 5c5ba5e4..76afba4b 100644 --- a/users/parryc.json +++ b/users/parryc.json @@ -3,4 +3,4 @@ "url": "http://parryc.com", "email": "parrycadwallader@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/partkyle.json b/users/partkyle.json index 9448cfd4..ed7750ce 100644 --- a/users/partkyle.json +++ b/users/partkyle.json @@ -1,3 +1,3 @@ { "copyright": "Kyle Partridge" -} \ No newline at end of file +} diff --git a/users/passcod.json b/users/passcod.json index ceba1bb3..1e051719 100644 --- a/users/passcod.json +++ b/users/passcod.json @@ -1,4 +1,4 @@ { "copyright": "Félix Saparelli", "url": "http://passcod.net" -} \ No newline at end of file +} diff --git a/users/passelin.json b/users/passelin.json index 97c14f82..b65b054d 100644 --- a/users/passelin.json +++ b/users/passelin.json @@ -1,4 +1,4 @@ { "copyright": "Pierre Asselin", "url": "http://pierre.asselin.info" -} \ No newline at end of file +} diff --git a/users/patrick.json b/users/patrick.json index 3a2aab93..2dadac0d 100644 --- a/users/patrick.json +++ b/users/patrick.json @@ -1,3 +1,3 @@ { "copyright": "Patrick Hamann" -} \ No newline at end of file +} diff --git a/users/patricmutwiri.json b/users/patricmutwiri.json index 4b6f9368..2348a199 100644 --- a/users/patricmutwiri.json +++ b/users/patricmutwiri.json @@ -4,4 +4,4 @@ "email": "dev@patric.xyz", "theme": "material-pink", "gravatar": true -} \ No newline at end of file +} diff --git a/users/paul-vollmer.json b/users/paul-vollmer.json index a71747d6..a88004d0 100644 --- a/users/paul-vollmer.json +++ b/users/paul-vollmer.json @@ -4,4 +4,4 @@ "format": "html", "gravatar": false, "theme": "plaintext" -} \ No newline at end of file +} diff --git a/users/paul.json b/users/paul.json index a83e78d0..08a9cc1b 100644 --- a/users/paul.json +++ b/users/paul.json @@ -1,4 +1,4 @@ { "copyright": "Paul Miller (http://paulmillr.com/)", "format": "txt" -} \ No newline at end of file +} diff --git a/users/paulcuth.json b/users/paulcuth.json index abe279cc..4e84483b 100644 --- a/users/paulcuth.json +++ b/users/paulcuth.json @@ -1,4 +1,4 @@ { "copyright": "Paul Cuthbertson, http://paulcuth.me.uk", "url": "http://paulcuth.me.uk" -} \ No newline at end of file +} diff --git a/users/paulf.json b/users/paulf.json index f1e7de1d..00c3e528 100644 --- a/users/paulf.json +++ b/users/paulf.json @@ -3,4 +3,4 @@ "url": "https://github.com/paulfreeband", "email": "paulfreeband@gmail.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/paulmillr.json b/users/paulmillr.json index a83e78d0..08a9cc1b 100644 --- a/users/paulmillr.json +++ b/users/paulmillr.json @@ -1,4 +1,4 @@ { "copyright": "Paul Miller (http://paulmillr.com/)", "format": "txt" -} \ No newline at end of file +} diff --git a/users/paulmoore.json b/users/paulmoore.json index 0cb283b1..6eecef4d 100644 --- a/users/paulmoore.json +++ b/users/paulmoore.json @@ -3,4 +3,4 @@ "url": "http://paul-moore.ca", "email": "paul.andrewharrison.moore@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/paulredmond.json b/users/paulredmond.json index 61e23cea..1e9e929b 100644 --- a/users/paulredmond.json +++ b/users/paulredmond.json @@ -1,3 +1,3 @@ { "copyright": "Paul Redmond" -} \ No newline at end of file +} diff --git a/users/paulrobertlloyd.json b/users/paulrobertlloyd.json index 98ba7f0d..5444e284 100644 --- a/users/paulrobertlloyd.json +++ b/users/paulrobertlloyd.json @@ -1,4 +1,4 @@ { "copyright": "Paul Robert Lloyd", "url": "http://paulrobertlloyd.com" -} \ No newline at end of file +} diff --git a/users/payliu.json b/users/payliu.json index 68fbf51c..44316885 100644 --- a/users/payliu.json +++ b/users/payliu.json @@ -4,4 +4,4 @@ "format": "html", "gravatar": true, "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/pb.json b/users/pb.json index 8189f0c4..1f365a6d 100644 --- a/users/pb.json +++ b/users/pb.json @@ -4,4 +4,4 @@ "url": "http://pburtchaell.com/", "format": "html", "gravatar": "true" -} \ No newline at end of file +} diff --git a/users/pci.json b/users/pci.json index 69157b49..502ec9de 100644 --- a/users/pci.json +++ b/users/pci.json @@ -1,3 +1,3 @@ { "copyright": "Philip Ingrey" -} \ No newline at end of file +} diff --git a/users/pcole.json b/users/pcole.json index 2e3e61da..7a5f632e 100644 --- a/users/pcole.json +++ b/users/pcole.json @@ -3,4 +3,4 @@ "url": "http://pcole.me", "email": "philip@pcole.me", "format": "txt" -} \ No newline at end of file +} diff --git a/users/pdfrod.json b/users/pdfrod.json index 01fb5fe4..166a6ff7 100644 --- a/users/pdfrod.json +++ b/users/pdfrod.json @@ -1,3 +1,3 @@ { "copyright": "Pedro Rodrigues" -} \ No newline at end of file +} diff --git a/users/pdostal.json b/users/pdostal.json index 50dc98ae..ec6ed509 100644 --- a/users/pdostal.json +++ b/users/pdostal.json @@ -5,4 +5,4 @@ "format": "html", "theme": "default", "gravatar": true -} \ No newline at end of file +} diff --git a/users/peatio.json b/users/peatio.json index 7183d086..297cec5c 100644 --- a/users/peatio.json +++ b/users/peatio.json @@ -2,4 +2,4 @@ "copyright": "Peatio Opensource, http://peat.io", "url": "http://peat.io", "email": "community@peatio.com" -} \ No newline at end of file +} diff --git a/users/peccu.json b/users/peccu.json index fa8e55c5..f8e6f123 100644 --- a/users/peccu.json +++ b/users/peccu.json @@ -1,4 +1,4 @@ { "copyright": "peccu", "url": "https://github.com/peccu" -} \ No newline at end of file +} diff --git a/users/pedrolamas.json b/users/pedrolamas.json index f20e0c48..e8595b82 100644 --- a/users/pedrolamas.json +++ b/users/pedrolamas.json @@ -2,4 +2,4 @@ "copyright": "Pedro Lamas", "url": "https://www.pedrolamas.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/pelletier.json b/users/pelletier.json index d7c8f5ba..2e156d9b 100644 --- a/users/pelletier.json +++ b/users/pelletier.json @@ -1,3 +1,3 @@ { "copyright": "Thomas Pelletier" -} \ No newline at end of file +} diff --git a/users/pemrouz.json b/users/pemrouz.json index 4998b48f..04c5f070 100644 --- a/users/pemrouz.json +++ b/users/pemrouz.json @@ -1,3 +1,3 @@ { "copyright": "Pedram Emrouznejad" -} \ No newline at end of file +} diff --git a/users/penguin4games.json b/users/penguin4games.json index 6686760b..660f4710 100644 --- a/users/penguin4games.json +++ b/users/penguin4games.json @@ -3,4 +3,4 @@ "url": "http://Penguin4Games.github.io", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/per.json b/users/per.json index 0e945687..d66ce2ff 100644 --- a/users/per.json +++ b/users/per.json @@ -2,4 +2,4 @@ "copyright": "Per Rovegård, http://rovegard.com", "url": "http://rovegard.com", "theme": "afterdark" -} \ No newline at end of file +} diff --git a/users/petamoriken.json b/users/petamoriken.json index 2246fcb9..7e73a1c9 100644 --- a/users/petamoriken.json +++ b/users/petamoriken.json @@ -1,4 +1,4 @@ { "copyright": "Kenta Moriuchi", "url": "http://moriken.kimamass.com" -} \ No newline at end of file +} diff --git a/users/pete.json b/users/pete.json index 7bbb50fb..1d8e41db 100644 --- a/users/pete.json +++ b/users/pete.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "black-beauty" -} \ No newline at end of file +} diff --git a/users/peter.json b/users/peter.json index ff40c60c..2964368f 100644 --- a/users/peter.json +++ b/users/peter.json @@ -3,4 +3,4 @@ "url": "http://peter.zone", "email": "peter@phnet.li", "format": "txt" -} \ No newline at end of file +} diff --git a/users/peterc.json b/users/peterc.json index c1506bd7..f1521e29 100644 --- a/users/peterc.json +++ b/users/peterc.json @@ -1,4 +1,4 @@ { "copyright": "Peter Cooper", "url": "http://peterc.org/" -} \ No newline at end of file +} diff --git a/users/petite.json b/users/petite.json index 652981e0..36e664a7 100644 --- a/users/petite.json +++ b/users/petite.json @@ -1,3 +1,3 @@ { "copyright": "Victoria Petite" -} \ No newline at end of file +} diff --git a/users/petitviolet.json b/users/petitviolet.json index 20997215..041c13d7 100644 --- a/users/petitviolet.json +++ b/users/petitviolet.json @@ -4,4 +4,4 @@ "email": "mail@petitviolet", "url": "https://www.petitviolet.net", "theme": "material-deep-purple" -} \ No newline at end of file +} diff --git a/users/pf.json b/users/pf.json index 1befe00f..927676e2 100644 --- a/users/pf.json +++ b/users/pf.json @@ -4,4 +4,4 @@ "email": "contact@ponyfrance.net", "format": "html", "theme": "willpower" -} \ No newline at end of file +} diff --git a/users/pfiled.json b/users/pfiled.json index 66895270..4b2ad344 100644 --- a/users/pfiled.json +++ b/users/pfiled.json @@ -1,3 +1,3 @@ { "copyright": "Daniel Pfile" -} \ No newline at end of file +} diff --git a/users/pg.json b/users/pg.json index 4125afaa..08bc2a7b 100644 --- a/users/pg.json +++ b/users/pg.json @@ -1,4 +1,4 @@ { "copyright": "Paul Geraghty", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/pgrenaud.json b/users/pgrenaud.json index bb5dc9e0..536437fa 100644 --- a/users/pgrenaud.json +++ b/users/pgrenaud.json @@ -2,4 +2,4 @@ "copyright": "Patrick Gagnon-Renaud", "url": "http://pgrenaud.com/", "email": "coding@pgrenaud.com" -} \ No newline at end of file +} diff --git a/users/phakin.json b/users/phakin.json index 6a0723d1..9d760a93 100644 --- a/users/phakin.json +++ b/users/phakin.json @@ -2,4 +2,4 @@ "copyright": "Phakin Cheangkrachange", "email": "phakin.che@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/phanimahesh.json b/users/phanimahesh.json index acec2664..8f1b0ee1 100644 --- a/users/phanimahesh.json +++ b/users/phanimahesh.json @@ -3,4 +3,4 @@ "email": "phanimahesh@gmail.com", "gravatar": true, "theme": "opensans" -} \ No newline at end of file +} diff --git a/users/phaserstudio.json b/users/phaserstudio.json index 5f77457b..e2a1fa53 100644 --- a/users/phaserstudio.json +++ b/users/phaserstudio.json @@ -3,4 +3,4 @@ "url": "https://github.com/phaserstudio", "email": "contact.phaser.studio@gmail.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/phawk.json b/users/phawk.json index fd647d13..a6bfa9e6 100644 --- a/users/phawk.json +++ b/users/phawk.json @@ -2,4 +2,4 @@ "copyright": "Peter Hawkins", "url": "https://phawk.co.uk", "format": "html" -} \ No newline at end of file +} diff --git a/users/phgarcia.json b/users/phgarcia.json index fa2e83af..db42869f 100644 --- a/users/phgarcia.json +++ b/users/phgarcia.json @@ -3,4 +3,4 @@ "email": "garcia.pedro.hr@gmail.com", "gravatar": true, "theme": "default" -} \ No newline at end of file +} diff --git a/users/phiber.json b/users/phiber.json index 7b9b13f0..8a05beb1 100644 --- a/users/phiber.json +++ b/users/phiber.json @@ -4,4 +4,4 @@ "email": "ghoucine@gmail.com", "format": "html", "theme": "opensans" -} \ No newline at end of file +} diff --git a/users/phibermit.json b/users/phibermit.json index 4eddbb7c..4ba3b491 100644 --- a/users/phibermit.json +++ b/users/phibermit.json @@ -1,3 +1,3 @@ { "copyright": "Housseyn Guettaf, http://coda-dz.com" -} \ No newline at end of file +} diff --git a/users/philippbosch.json b/users/philippbosch.json index 4704fdee..cc79a977 100644 --- a/users/philippbosch.json +++ b/users/philippbosch.json @@ -1,4 +1,4 @@ { "copyright": "Philipp Bosch, http://pb.io/", "url": "http://pb.io/" -} \ No newline at end of file +} diff --git a/users/philippwiddra.json b/users/philippwiddra.json index b8bf452a..2d2779fc 100644 --- a/users/philippwiddra.json +++ b/users/philippwiddra.json @@ -2,4 +2,4 @@ "copyright": "Philipp Widdra", "theme": "double-windsor", "email": "philipp.widdra@gmail.com" -} \ No newline at end of file +} diff --git a/users/philtr.json b/users/philtr.json index 613c12e4..28a8b5fa 100644 --- a/users/philtr.json +++ b/users/philtr.json @@ -2,4 +2,4 @@ "copyright": "Phillip Ridlen", "url": "http://phillipridlen.com", "email": "p@rdln.net" -} \ No newline at end of file +} diff --git a/users/philworthington.json b/users/philworthington.json index 2097dd44..db392829 100644 --- a/users/philworthington.json +++ b/users/philworthington.json @@ -3,4 +3,4 @@ "url": "https://github.com/philworthington", "email": "phil.worthington22@gmail.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/phlipper.json b/users/phlipper.json index 59a726da..fdbdb199 100644 --- a/users/phlipper.json +++ b/users/phlipper.json @@ -4,4 +4,4 @@ "format": "txt", "email": "github@phlippers.net", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/phlux.json b/users/phlux.json index eae2c6a7..93a200cb 100644 --- a/users/phlux.json +++ b/users/phlux.json @@ -4,4 +4,4 @@ "email": "ehgoodenough@gmail.com", "gravatar": true, "theme": "friendly" -} \ No newline at end of file +} diff --git a/users/phm.json b/users/phm.json index c6295c28..06324a4e 100644 --- a/users/phm.json +++ b/users/phm.json @@ -3,4 +3,4 @@ "url": "http://phm.link", "email": "moonpunter@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/phucnm.json b/users/phucnm.json index d8d3d905..c8412725 100644 --- a/users/phucnm.json +++ b/users/phucnm.json @@ -1,3 +1,3 @@ { "copyright": "Phuc Nguyen" -} \ No newline at end of file +} diff --git a/users/phuu.json b/users/phuu.json index 1d3e78f0..e876110c 100644 --- a/users/phuu.json +++ b/users/phuu.json @@ -3,4 +3,4 @@ "url": "http://phuu.net", "email": "tom@phuu.net", "gravatar": true -} \ No newline at end of file +} diff --git a/users/pid.json b/users/pid.json index 0e510ab8..af8bb8ab 100644 --- a/users/pid.json +++ b/users/pid.json @@ -4,4 +4,4 @@ "email": "sascha.droste@gmail.com", "gravatar": true, "theme": "black beauty" -} \ No newline at end of file +} diff --git a/users/piecioshka.json b/users/piecioshka.json index 00243580..21b4b2c0 100644 --- a/users/piecioshka.json +++ b/users/piecioshka.json @@ -1,3 +1,3 @@ { "copyright": "Piotr Kowalski" -} \ No newline at end of file +} diff --git a/users/pierre.json b/users/pierre.json index d558c606..c8ca2b08 100644 --- a/users/pierre.json +++ b/users/pierre.json @@ -1,4 +1,4 @@ { "copyright": "Pierre Bertet, http://pierrebertet.net", "url": "http://pierrebertet.net" -} \ No newline at end of file +} diff --git a/users/pietervanderwerff.json b/users/pietervanderwerff.json index 96bd4086..ff69077a 100644 --- a/users/pietervanderwerff.json +++ b/users/pietervanderwerff.json @@ -1,4 +1,4 @@ { "copyright": "Pieter Vanderwerff", "url": "http://pieter.io/" -} \ No newline at end of file +} diff --git a/users/pigmon.json b/users/pigmon.json index c7c06364..2f62b659 100644 --- a/users/pigmon.json +++ b/users/pigmon.json @@ -1,3 +1,3 @@ { "copyright": "Seungbeom Lee" -} \ No newline at end of file +} diff --git a/users/pikesley.json b/users/pikesley.json index ab1c29d0..a2d7e88b 100644 --- a/users/pikesley.json +++ b/users/pikesley.json @@ -3,4 +3,4 @@ "url": "http://pikesley.org", "email": "sam@cruft.co", "gravatar": true -} \ No newline at end of file +} diff --git a/users/piksel.json b/users/piksel.json index 06943a02..77bd8696 100644 --- a/users/piksel.json +++ b/users/piksel.json @@ -4,4 +4,4 @@ "email": "nils@piksel.se", "gravatar": true, "theme": "default" -} \ No newline at end of file +} diff --git a/users/pine.json b/users/pine.json index 9b6bb9a8..f4d11c77 100644 --- a/users/pine.json +++ b/users/pine.json @@ -1,4 +1,4 @@ { "copyright": "Pine Mizune", "url": "https://github.com/pine613" -} \ No newline at end of file +} diff --git a/users/pinjasaur.json b/users/pinjasaur.json index 028434ec..131b2944 100644 --- a/users/pinjasaur.json +++ b/users/pinjasaur.json @@ -5,4 +5,4 @@ "theme": "material-deep-purple", "gravatar": true, "format": "html" -} \ No newline at end of file +} diff --git a/users/pipwerks.json b/users/pipwerks.json index 6c52c880..6c5378b6 100644 --- a/users/pipwerks.json +++ b/users/pipwerks.json @@ -1,3 +1,3 @@ { "copyright": "Philip Hutchison" -} \ No newline at end of file +} diff --git a/users/pirosikick.json b/users/pirosikick.json index e2d18a6d..a2fd60dc 100644 --- a/users/pirosikick.json +++ b/users/pirosikick.json @@ -1,4 +1,4 @@ { "copyright": "Hiroyuki Anai", "url": "https://github.com/pirosikick" -} \ No newline at end of file +} diff --git a/users/pitomba.json b/users/pitomba.json index 4bd07d6a..0bfd8a65 100644 --- a/users/pitomba.json +++ b/users/pitomba.json @@ -2,4 +2,4 @@ "copyright": "Pitomba Team", "url": "http://pitomba.org/", "format": "html" -} \ No newline at end of file +} diff --git a/users/piyush.json b/users/piyush.json index 680f9a0e..b28f5b04 100644 --- a/users/piyush.json +++ b/users/piyush.json @@ -4,4 +4,4 @@ "email": "sonar0324@gmail.com", "gravatar": true, "theme": "material" -} \ No newline at end of file +} diff --git a/users/piyushvarshney.json b/users/piyushvarshney.json index 97d33ee9..5c5c7bf0 100644 --- a/users/piyushvarshney.json +++ b/users/piyushvarshney.json @@ -3,4 +3,4 @@ "url": "http://piyushvarshney.cf", "email": "piyushvarshney@outlook.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/pjbgf.json b/users/pjbgf.json index a50661e1..3b7a4381 100644 --- a/users/pjbgf.json +++ b/users/pjbgf.json @@ -2,4 +2,4 @@ "copyright": "Paulo Gomes", "url": "http://pjbgf.xyz", "email": "paulo.gomes.uk@gmail.com" -} \ No newline at end of file +} diff --git a/users/pjhampton.json b/users/pjhampton.json index 0a90eea1..07919279 100644 --- a/users/pjhampton.json +++ b/users/pjhampton.json @@ -1,3 +1,3 @@ { "copyright": "Pj Hampton" -} \ No newline at end of file +} diff --git a/users/plasticpanda.json b/users/plasticpanda.json index 47669bd9..cc8da7d7 100644 --- a/users/plasticpanda.json +++ b/users/plasticpanda.json @@ -1,3 +1,3 @@ { "copyright": "Plastic Panda" -} \ No newline at end of file +} diff --git a/users/pluma.json b/users/pluma.json index de4cbfa3..94b3c6af 100644 --- a/users/pluma.json +++ b/users/pluma.json @@ -1,4 +1,4 @@ { "copyright": "Alan Plum", "email": "me@pluma.io" -} \ No newline at end of file +} diff --git a/users/pluschnikow.json b/users/pluschnikow.json index 6c4d6d1e..91ecc586 100644 --- a/users/pluschnikow.json +++ b/users/pluschnikow.json @@ -2,4 +2,4 @@ "copyright": "Konstantin Pluschnikow", "url": "http://pluschnikow.de", "format": "txt" -} \ No newline at end of file +} diff --git a/users/pm.json b/users/pm.json index a83e78d0..08a9cc1b 100644 --- a/users/pm.json +++ b/users/pm.json @@ -1,4 +1,4 @@ { "copyright": "Paul Miller (http://paulmillr.com/)", "format": "txt" -} \ No newline at end of file +} diff --git a/users/pm5.json b/users/pm5.json index f8cb9f36..b1a3bf02 100644 --- a/users/pm5.json +++ b/users/pm5.json @@ -1,3 +1,3 @@ { "copyright": "Pomin Wu" -} \ No newline at end of file +} diff --git a/users/pmac.json b/users/pmac.json index 3879bd2c..3c713c5c 100644 --- a/users/pmac.json +++ b/users/pmac.json @@ -2,4 +2,4 @@ "copyright": "Paul McLanahan", "url": "http://pmac.io", "email": "paul@mclanahan.net" -} \ No newline at end of file +} diff --git a/users/pmk.json b/users/pmk.json index dc7a0092..c9e6ae77 100644 --- a/users/pmk.json +++ b/users/pmk.json @@ -2,4 +2,4 @@ "copyright": "PMKlaassen (PMK), http://pmklaassen.com", "url": "http://pmklaassen.com", "email": "license@pmklaassen.com" -} \ No newline at end of file +} diff --git a/users/pmowrer.json b/users/pmowrer.json index e34a1214..76a8d896 100644 --- a/users/pmowrer.json +++ b/users/pmowrer.json @@ -1,4 +1,4 @@ { "copyright": "Patrick Mowrer", "url": "https://github.com/pmowrer" -} \ No newline at end of file +} diff --git a/users/pmuellr.json b/users/pmuellr.json index 83f2d513..0d156f50 100644 --- a/users/pmuellr.json +++ b/users/pmuellr.json @@ -1,4 +1,4 @@ { "copyright": "Patrick Mueller, http://muellerware.org", "url": "http://muellerware.org" -} \ No newline at end of file +} diff --git a/users/poapfel.json b/users/poapfel.json index 11756357..1fbc264e 100644 --- a/users/poapfel.json +++ b/users/poapfel.json @@ -1,3 +1,3 @@ { "copyright": "Poapfel" -} \ No newline at end of file +} diff --git a/users/polem.json b/users/polem.json index 8552e1cf..57f35cfd 100644 --- a/users/polem.json +++ b/users/polem.json @@ -1,3 +1,3 @@ { "copyright": "Paul-Emile MINY" -} \ No newline at end of file +} diff --git a/users/polossk.json b/users/polossk.json index 3f44590e..3884a42e 100644 --- a/users/polossk.json +++ b/users/polossk.json @@ -3,4 +3,4 @@ "url": "http://polossk.com", "email": "polossk_dev@126.com", "theme": "white cherry" -} \ No newline at end of file +} diff --git a/users/ponko2.json b/users/ponko2.json index 8cc393f8..dd969325 100644 --- a/users/ponko2.json +++ b/users/ponko2.json @@ -1,4 +1,4 @@ { "copyright": "Takahito Nakano", "url": "https://github.com/ponko2/" -} \ No newline at end of file +} diff --git a/users/popomore.json b/users/popomore.json index d4810642..7db2a8f3 100644 --- a/users/popomore.json +++ b/users/popomore.json @@ -3,4 +3,4 @@ "url": "http://chuo.me", "email": "sakura9515@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/popoway.json b/users/popoway.json index b790f576..67e329b2 100644 --- a/users/popoway.json +++ b/users/popoway.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "dusk" -} \ No newline at end of file +} diff --git a/users/porada.json b/users/porada.json index 0840eda0..b7d85363 100644 --- a/users/porada.json +++ b/users/porada.json @@ -1,4 +1,4 @@ { "copyright": "Dominik Porada", "url": "http://dominikporada.com" -} \ No newline at end of file +} diff --git a/users/porras.json b/users/porras.json index 9501793a..6b183ca4 100644 --- a/users/porras.json +++ b/users/porras.json @@ -1,3 +1,3 @@ { "copyright": "Sergio Gil Pérez de la Manga" -} \ No newline at end of file +} diff --git a/users/posa88.json b/users/posa88.json index 86e3933b..9c5a38a5 100644 --- a/users/posa88.json +++ b/users/posa88.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "friendly" -} \ No newline at end of file +} diff --git a/users/pothibo.json b/users/pothibo.json index 45f71744..2d3028a6 100644 --- a/users/pothibo.json +++ b/users/pothibo.json @@ -1,3 +1,3 @@ { "copyright": "Pier-Olivier Thibault" -} \ No newline at end of file +} diff --git a/users/pouya.json b/users/pouya.json index f7e9d028..c59a9d35 100644 --- a/users/pouya.json +++ b/users/pouya.json @@ -5,4 +5,4 @@ "email": "pouya.saadeghi@gmail.com", "gravatar": true, "theme": "opensans" -} \ No newline at end of file +} diff --git a/users/poying.json b/users/poying.json index 0b7c0a43..f4c77c68 100644 --- a/users/poying.json +++ b/users/poying.json @@ -2,4 +2,4 @@ "copyright": "Po-Ying Chen", "url": "http://poying.me", "email": "poying.me@gmail.com" -} \ No newline at end of file +} diff --git a/users/poyu.json b/users/poyu.json index ef6ef3b9..2e67930f 100644 --- a/users/poyu.json +++ b/users/poyu.json @@ -2,4 +2,4 @@ "copyright": "Po-Yu Chen", "url": "https://poyu.xyz", "email": "me@poyu.xyz" -} \ No newline at end of file +} diff --git a/users/pragai.json b/users/pragai.json index e271d156..bfc451b0 100644 --- a/users/pragai.json +++ b/users/pragai.json @@ -3,4 +3,4 @@ "url": "http://abasys.hu", "email": "info@abasys.hu", "format": "txt" -} \ No newline at end of file +} diff --git a/users/pragmaticivan.json b/users/pragmaticivan.json index 3ef4ee1e..2bccde8a 100644 --- a/users/pragmaticivan.json +++ b/users/pragmaticivan.json @@ -1,3 +1,3 @@ { "copyright": "Ivan Santos" -} \ No newline at end of file +} diff --git a/users/prajankya.json b/users/prajankya.json index 909267ea..ecabcf73 100644 --- a/users/prajankya.json +++ b/users/prajankya.json @@ -4,4 +4,4 @@ "email": "prajankya@rig.solutions", "gravatar": true, "theme": "material-teal" -} \ No newline at end of file +} diff --git a/users/pranavrajs.json b/users/pranavrajs.json index 3dcac23f..b1f261fb 100644 --- a/users/pranavrajs.json +++ b/users/pranavrajs.json @@ -1,3 +1,3 @@ { "copyright": "RePranav Raj S" -} \ No newline at end of file +} diff --git a/users/pranay.json b/users/pranay.json index 03de7a0b..6b3d9eb6 100644 --- a/users/pranay.json +++ b/users/pranay.json @@ -3,4 +3,4 @@ "email": "contact@prny.me", "gravatar": false, "theme": "material" -} \ No newline at end of file +} diff --git a/users/pranayt.json b/users/pranayt.json index 03de7a0b..6b3d9eb6 100644 --- a/users/pranayt.json +++ b/users/pranayt.json @@ -3,4 +3,4 @@ "email": "contact@prny.me", "gravatar": false, "theme": "material" -} \ No newline at end of file +} diff --git a/users/pranjal.json b/users/pranjal.json index a9e23702..21b2758e 100644 --- a/users/pranjal.json +++ b/users/pranjal.json @@ -3,4 +3,4 @@ "url": "https://prankshaw.github.io/", "email": "pranjalrastogi1998@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/prankshaw.json b/users/prankshaw.json index 68c49b44..a4fe109d 100644 --- a/users/prankshaw.json +++ b/users/prankshaw.json @@ -3,4 +3,4 @@ "url": "https://prankshaw.github.io/", "email": "pranjalrastogi1998@gmail.com", "theme": "8bits-monochrome-blue-white" -} \ No newline at end of file +} diff --git a/users/prashant0598.json b/users/prashant0598.json index cbf5c39d..3432cc31 100644 --- a/users/prashant0598.json +++ b/users/prashant0598.json @@ -4,4 +4,4 @@ "gravatar": true, "theme": "material-deep-orange", "format": "html" -} \ No newline at end of file +} diff --git a/users/prashcr.json b/users/prashcr.json index 589f2c8f..874261f8 100644 --- a/users/prashcr.json +++ b/users/prashcr.json @@ -3,4 +3,4 @@ "url": "http://prashcr.xyz", "email": "hi@prashcr.xyz", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/pratyk.json b/users/pratyk.json index 332817a8..bcfd05b3 100644 --- a/users/pratyk.json +++ b/users/pratyk.json @@ -3,4 +3,4 @@ "url": "http://pratyk.com", "email": "mail@pratyk.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/praveen.json b/users/praveen.json index f9e37004..c90a55a9 100644 --- a/users/praveen.json +++ b/users/praveen.json @@ -1,4 +1,4 @@ { "copyright": "Praveen Kumar, http://apnerve.com", "url": "http://apnerve.com" -} \ No newline at end of file +} diff --git a/users/pravj.json b/users/pravj.json index 26f42346..31cee4aa 100644 --- a/users/pravj.json +++ b/users/pravj.json @@ -1,4 +1,4 @@ { "copyright": "Pravendra Singh", "email": "hackpravj@gmail.com" -} \ No newline at end of file +} diff --git a/users/preco.json b/users/preco.json index 28e0fc6b..2a34c887 100644 --- a/users/preco.json +++ b/users/preco.json @@ -3,4 +3,4 @@ "email": "plusb21@gmail.com", "gravatar": true, "theme": "material-light-blue" -} \ No newline at end of file +} diff --git a/users/prescott.json b/users/prescott.json index f87da76a..647fd70c 100644 --- a/users/prescott.json +++ b/users/prescott.json @@ -3,4 +3,4 @@ "url": "http://debug.so", "email": "mooyoul@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/preston.json b/users/preston.json index a5884025..257f0549 100644 --- a/users/preston.json +++ b/users/preston.json @@ -1,3 +1,3 @@ { "copyright": "Preston Lee" -} \ No newline at end of file +} diff --git a/users/probablywrong.json b/users/probablywrong.json index d554040d..b8eb0c52 100644 --- a/users/probablywrong.json +++ b/users/probablywrong.json @@ -3,4 +3,4 @@ "url": "http://wereprobablywrong.com", "email": "github@wereprobablywrong.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/prodicus.json b/users/prodicus.json index 85bfffe9..d4b9c76a 100644 --- a/users/prodicus.json +++ b/users/prodicus.json @@ -1,3 +1,3 @@ { "copyright": "Tasdik Rahman" -} \ No newline at end of file +} diff --git a/users/proudlygeek.json b/users/proudlygeek.json index 837115f8..45682341 100644 --- a/users/proudlygeek.json +++ b/users/proudlygeek.json @@ -1,4 +1,4 @@ { "copyright": "Gianluca Bargelli", "email": "g.bargelli@gmail.com" -} \ No newline at end of file +} diff --git a/users/prsly.json b/users/prsly.json index 47053e82..a96b1e92 100644 --- a/users/prsly.json +++ b/users/prsly.json @@ -1,4 +1,4 @@ { "copyright": "Michael Petrin", "email": "i@prsly.ru" -} \ No newline at end of file +} diff --git a/users/pschlosser.json b/users/pschlosser.json index 6b709290..02bc5e9c 100644 --- a/users/pschlosser.json +++ b/users/pschlosser.json @@ -2,4 +2,4 @@ "copyright": "Peter Schlosser", "email": "pschlosser@sonic.net", "gravatar": true -} \ No newline at end of file +} diff --git a/users/psykzz.json b/users/psykzz.json index 610679a6..cd84aa13 100644 --- a/users/psykzz.json +++ b/users/psykzz.json @@ -5,4 +5,4 @@ "format": "txt", "theme": "black-beauty", "gravatar": true -} \ No newline at end of file +} diff --git a/users/psyrendust.json b/users/psyrendust.json index d0de8cdf..fe646442 100644 --- a/users/psyrendust.json +++ b/users/psyrendust.json @@ -2,4 +2,4 @@ "copyright": "Larry Gordon, https://github.com/psyrendust", "url": "https://github.com/psyrendust", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/pt.json b/users/pt.json index e0d8cf20..ad896114 100644 --- a/users/pt.json +++ b/users/pt.json @@ -3,4 +3,4 @@ "email": "pranay.thangeda@gmail.com", "gravatar": true, "theme": "material" -} \ No newline at end of file +} diff --git a/users/pthangeda.json b/users/pthangeda.json index 03de7a0b..6b3d9eb6 100644 --- a/users/pthangeda.json +++ b/users/pthangeda.json @@ -3,4 +3,4 @@ "email": "contact@prny.me", "gravatar": false, "theme": "material" -} \ No newline at end of file +} diff --git a/users/pti.json b/users/pti.json index c3345232..42304589 100644 --- a/users/pti.json +++ b/users/pti.json @@ -2,4 +2,4 @@ "copyright": "Pyramid Technologies Inc, https://pyramidacceptors.com", "url": "https://pyramidacceptors.com/", "theme": "friendly" -} \ No newline at end of file +} diff --git a/users/punkish.json b/users/punkish.json index 87f8e78f..0aa532b1 100644 --- a/users/punkish.json +++ b/users/punkish.json @@ -3,4 +3,4 @@ "url": "http://punkish.org", "email": "1@punkish.org", "format": "txt" -} \ No newline at end of file +} diff --git a/users/purdy.json b/users/purdy.json index 9d255c3b..38452b7a 100644 --- a/users/purdy.json +++ b/users/purdy.json @@ -5,4 +5,4 @@ "gravatar": true, "theme": "material-blue", "format": "html" -} \ No newline at end of file +} diff --git a/users/pushandplay.json b/users/pushandplay.json index ce9fdf33..b00733ce 100644 --- a/users/pushandplay.json +++ b/users/pushandplay.json @@ -5,4 +5,4 @@ "email": "hello@pushandplay.ru", "gravatar": true, "theme": "default" -} \ No newline at end of file +} diff --git a/users/pwmckenna.json b/users/pwmckenna.json index 032135cf..ae056b43 100644 --- a/users/pwmckenna.json +++ b/users/pwmckenna.json @@ -1,3 +1,3 @@ { "copyright": "Patrick Williams" -} \ No newline at end of file +} diff --git a/users/pwn.json b/users/pwn.json index 28682974..26e13ea4 100644 --- a/users/pwn.json +++ b/users/pwn.json @@ -3,4 +3,4 @@ "url": "http://pwn.buzz", "email": "hi@pwn.buzz", "format": "txt" -} \ No newline at end of file +} diff --git a/users/pwnall.json b/users/pwnall.json index f174e3cb..4c9d41ed 100644 --- a/users/pwnall.json +++ b/users/pwnall.json @@ -2,4 +2,4 @@ "copyright": "Victor Costan", "email": "victor@costan.us", "gravatar": true -} \ No newline at end of file +} diff --git a/users/px.json b/users/px.json index 7985387e..581b657c 100644 --- a/users/px.json +++ b/users/px.json @@ -4,4 +4,4 @@ "email": "px@ns1.net", "format": "html", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/pxc.json b/users/pxc.json index 38b41362..bc704664 100644 --- a/users/pxc.json +++ b/users/pxc.json @@ -2,4 +2,4 @@ "copyright": "Matthew Strawbridge", "url": "http://www.matthewstrawbridge.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/pxgamer.json b/users/pxgamer.json index ec44b4e5..461ff691 100644 --- a/users/pxgamer.json +++ b/users/pxgamer.json @@ -5,4 +5,4 @@ "gravatar": true, "theme": "material-teal", "format": "html" -} \ No newline at end of file +} diff --git a/users/pyyoshi.json b/users/pyyoshi.json index 25376fb6..5536c83d 100644 --- a/users/pyyoshi.json +++ b/users/pyyoshi.json @@ -1,3 +1,3 @@ { "copyright": "Yoshihiro Misawa" -} \ No newline at end of file +} diff --git a/users/qfox.json b/users/qfox.json index 86e25833..db029993 100644 --- a/users/qfox.json +++ b/users/qfox.json @@ -3,4 +3,4 @@ "url": "http://qfox.ru", "email": "alex@qfox.ru", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/qing.json b/users/qing.json index 6be0d7c5..2566702c 100644 --- a/users/qing.json +++ b/users/qing.json @@ -1,3 +1,3 @@ { "copyright": "Qing Ma" -} \ No newline at end of file +} diff --git a/users/qix1986.json b/users/qix1986.json index 714d87e4..7f3d8440 100644 --- a/users/qix1986.json +++ b/users/qix1986.json @@ -4,4 +4,4 @@ "email": "qix1986@gmail.com", "theme": "default", "gravatar": true -} \ No newline at end of file +} diff --git a/users/qorbani.json b/users/qorbani.json index bddee6a4..7bace2dd 100644 --- a/users/qorbani.json +++ b/users/qorbani.json @@ -5,4 +5,4 @@ "format": "txt", "gravatar": true, "theme": "friendly" -} \ No newline at end of file +} diff --git a/users/qrawl.json b/users/qrawl.json index 3ab00a66..5c336015 100644 --- a/users/qrawl.json +++ b/users/qrawl.json @@ -3,4 +3,4 @@ "url": "https://www.pierreprinetti.net", "email": "me@qrawl.net", "gravatar": true -} \ No newline at end of file +} diff --git a/users/quantumgraph.json b/users/quantumgraph.json index aaf1c32b..1dd5e0b7 100644 --- a/users/quantumgraph.json +++ b/users/quantumgraph.json @@ -1,3 +1,3 @@ { "copyright": "QuantumGraph" -} \ No newline at end of file +} diff --git a/users/queryli.json b/users/queryli.json index ddbc841f..f11d58c9 100644 --- a/users/queryli.json +++ b/users/queryli.json @@ -4,4 +4,4 @@ "email": "hello@query.li", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/questbeat.json b/users/questbeat.json index 82d09ea0..263a2477 100644 --- a/users/questbeat.json +++ b/users/questbeat.json @@ -1,3 +1,3 @@ { "copyright": "Katsuma Tanaka" -} \ No newline at end of file +} diff --git a/users/qwertypants.json b/users/qwertypants.json index 36e89f6b..a582cda4 100644 --- a/users/qwertypants.json +++ b/users/qwertypants.json @@ -1,3 +1,3 @@ { "copyright": "Wilkins Fernandez" -} \ No newline at end of file +} diff --git a/users/r15ch13.json b/users/r15ch13.json index d4cd4131..be963264 100644 --- a/users/r15ch13.json +++ b/users/r15ch13.json @@ -5,4 +5,4 @@ "theme": "material-green", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/raananw.json b/users/raananw.json index 5c4da786..b09965f4 100644 --- a/users/raananw.json +++ b/users/raananw.json @@ -3,4 +3,4 @@ "url": "https://github.com/RaananW", "email": "info@raananweber.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/racklin.json b/users/racklin.json index cd0599e2..e4f060bc 100644 --- a/users/racklin.json +++ b/users/racklin.json @@ -1,4 +1,4 @@ { "copyright": "Rack Lin", "email": "racklin@gmail.com" -} \ No newline at end of file +} diff --git a/users/radic.json b/users/radic.json index 4a5f97ef..cd230844 100644 --- a/users/radic.json +++ b/users/radic.json @@ -5,4 +5,4 @@ "format": "html", "theme": "xtansia", "gravatar": true -} \ No newline at end of file +} diff --git a/users/radio-t.json b/users/radio-t.json index a159b949..d6cc7705 100644 --- a/users/radio-t.json +++ b/users/radio-t.json @@ -2,4 +2,4 @@ "copyright": "Radio-T", "email": "podcast@radio-t.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/raegen.json b/users/raegen.json index 9e2bca21..0fcfe894 100644 --- a/users/raegen.json +++ b/users/raegen.json @@ -4,4 +4,4 @@ "email": "raegen@raegen.tech", "theme": "material", "gravatar": true -} \ No newline at end of file +} diff --git a/users/raf.json b/users/raf.json index fb65df13..47376b92 100644 --- a/users/raf.json +++ b/users/raf.json @@ -3,4 +3,4 @@ "url": "http://blog.yux.ch", "email": "raffael@yux.ch", "theme": "xtansia" -} \ No newline at end of file +} diff --git a/users/rafamello.json b/users/rafamello.json index f58899ba..6e2610e9 100644 --- a/users/rafamello.json +++ b/users/rafamello.json @@ -4,4 +4,4 @@ "email": "lab.rafamello@gmail.com", "format": "txt", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/raindrop.json b/users/raindrop.json index 3e1e1936..bd1f9080 100644 --- a/users/raindrop.json +++ b/users/raindrop.json @@ -2,4 +2,4 @@ "copyright": "Kim Ki-hong, http://www.underfront.com/", "url": "http://www.underfront.com/", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/raja.json b/users/raja.json index d39000a0..0d3555e8 100644 --- a/users/raja.json +++ b/users/raja.json @@ -1,4 +1,4 @@ { "copyright": "Rajesh Cherukuri, http://rxc178.github.com", "url": "http://rxc178.github.com" -} \ No newline at end of file +} diff --git a/users/rajarshi.json b/users/rajarshi.json index 923adec1..289be29f 100644 --- a/users/rajarshi.json +++ b/users/rajarshi.json @@ -3,4 +3,4 @@ "email": "admin@distribure.cf", "gravatar": true, "format": "html" -} \ No newline at end of file +} diff --git a/users/rajeevkannav.json b/users/rajeevkannav.json index 64eadca7..abcf9f43 100644 --- a/users/rajeevkannav.json +++ b/users/rajeevkannav.json @@ -5,4 +5,4 @@ "format": "txt", "gravatar": true, "theme": "8bits-monochrome" -} \ No newline at end of file +} diff --git a/users/rajinwonderland.json b/users/rajinwonderland.json index 05eb48fb..1ca1f53e 100644 --- a/users/rajinwonderland.json +++ b/users/rajinwonderland.json @@ -5,4 +5,4 @@ "format": "html", "theme": "default", "gravatar": true -} \ No newline at end of file +} diff --git a/users/ramanan.json b/users/ramanan.json index a14f4426..27ae7354 100644 --- a/users/ramanan.json +++ b/users/ramanan.json @@ -3,4 +3,4 @@ "url": "http://www.ramanan.info", "email": "ramanan@ramanan.info", "theme": "default" -} \ No newline at end of file +} diff --git a/users/ramin.json b/users/ramin.json index 6c9bf2c5..c68289c2 100644 --- a/users/ramin.json +++ b/users/ramin.json @@ -3,4 +3,4 @@ "url": "http://ramin.sedighi.com", "email": "rsedighi@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/ramirio.json b/users/ramirio.json index 418199ab..ac169272 100644 --- a/users/ramirio.json +++ b/users/ramirio.json @@ -1,4 +1,4 @@ { "copyright": "Cleberson Ramirio", "email": "cleberson.ramirio@gmail.com" -} \ No newline at end of file +} diff --git a/users/ramonpage.json b/users/ramonpage.json index 343629fa..2d34961d 100644 --- a/users/ramonpage.json +++ b/users/ramonpage.json @@ -3,4 +3,4 @@ "url": "http://ramonpage.com", "email": "contact@ramonpage.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/ramsey.json b/users/ramsey.json index b4958aa9..b4ea2f50 100644 --- a/users/ramsey.json +++ b/users/ramsey.json @@ -4,4 +4,4 @@ "email": "ben@benramsey.com", "theme": "material-blue", "gravatar": true -} \ No newline at end of file +} diff --git a/users/random-rem.json b/users/random-rem.json index d95d0699..c9cfc2a4 100644 --- a/users/random-rem.json +++ b/users/random-rem.json @@ -1,3 +1,3 @@ { "copyright": "Random Remy Sharp" -} \ No newline at end of file +} diff --git a/users/randsonjs.json b/users/randsonjs.json index dd0e7f2d..adad19f3 100644 --- a/users/randsonjs.json +++ b/users/randsonjs.json @@ -3,4 +3,4 @@ "url": "http://randsonjs.com", "email": "randson@randsonjs.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/raphael.json b/users/raphael.json index 7785a5f9..87ed5c07 100644 --- a/users/raphael.json +++ b/users/raphael.json @@ -1,4 +1,4 @@ { "copyright": "Raphaël Bastide, http://raphaelbastide.com", "url": "http://raphaelbastide.com" -} \ No newline at end of file +} diff --git a/users/raphaelbronsveld.json b/users/raphaelbronsveld.json index 413d86dd..7bad799d 100644 --- a/users/raphaelbronsveld.json +++ b/users/raphaelbronsveld.json @@ -1,3 +1,3 @@ { "copyright": "Raphael Bronsveld" -} \ No newline at end of file +} diff --git a/users/raphaelfabeni.json b/users/raphaelfabeni.json index ebf7243d..cf0c07f5 100644 --- a/users/raphaelfabeni.json +++ b/users/raphaelfabeni.json @@ -2,4 +2,4 @@ "copyright": "Raphael Fabeni", "url": "http://raphaelfabeni.com.br", "email": "contato@raphaelfabeni.com.br" -} \ No newline at end of file +} diff --git a/users/rappa.json b/users/rappa.json index 83c7b6d7..9d5fa5ac 100644 --- a/users/rappa.json +++ b/users/rappa.json @@ -4,4 +4,4 @@ "email": "rappa819@gmail.com", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/rappasoft.json b/users/rappasoft.json index 83c7b6d7..9d5fa5ac 100644 --- a/users/rappasoft.json +++ b/users/rappasoft.json @@ -4,4 +4,4 @@ "email": "rappa819@gmail.com", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/rapson.json b/users/rapson.json index d5180236..c36ca14b 100644 --- a/users/rapson.json +++ b/users/rapson.json @@ -1,3 +1,3 @@ { "copyright": "David Rapson" -} \ No newline at end of file +} diff --git a/users/rares.json b/users/rares.json index 1460938f..a63a7cf9 100644 --- a/users/rares.json +++ b/users/rares.json @@ -3,4 +3,4 @@ "url": "http://www.robares.com", "email": "rob.ares+mit@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/rasch.json b/users/rasch.json index e79e0264..cd27dfc7 100644 --- a/users/rasch.json +++ b/users/rasch.json @@ -3,4 +3,4 @@ "url": "http://randyschneck.com", "email": "me@randyschneck.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/ravigehlot.json b/users/ravigehlot.json index c3c6f1ce..3921d759 100644 --- a/users/ravigehlot.json +++ b/users/ravigehlot.json @@ -1,3 +1,3 @@ { "copyright": "Ravi Gehlot" -} \ No newline at end of file +} diff --git a/users/raw-engineering.json b/users/raw-engineering.json index efbe9351..e1c60ac2 100644 --- a/users/raw-engineering.json +++ b/users/raw-engineering.json @@ -2,4 +2,4 @@ "copyright": "raw engineering", "url": "http://raweng.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/raweng.json b/users/raweng.json index cf63f16d..89f9d2eb 100644 --- a/users/raweng.json +++ b/users/raweng.json @@ -1,4 +1,4 @@ { "copyright": "raw engineering", "url": "http://raweng.com" -} \ No newline at end of file +} diff --git a/users/rawengineering.json b/users/rawengineering.json index cf63f16d..89f9d2eb 100644 --- a/users/rawengineering.json +++ b/users/rawengineering.json @@ -1,4 +1,4 @@ { "copyright": "raw engineering", "url": "http://raweng.com" -} \ No newline at end of file +} diff --git a/users/raypatterson.json b/users/raypatterson.json index 0384b843..9abd856b 100644 --- a/users/raypatterson.json +++ b/users/raypatterson.json @@ -3,4 +3,4 @@ "url": "http://theraypattersonstory.com", "theme": "friendly", "gravatar": true -} \ No newline at end of file +} diff --git a/users/rbardini.json b/users/rbardini.json index a2159d07..0f42e96a 100644 --- a/users/rbardini.json +++ b/users/rbardini.json @@ -4,4 +4,4 @@ "email": "rafael@rbardini.com", "theme": "double-windsor", "gravatar": true -} \ No newline at end of file +} diff --git a/users/rcpeters.json b/users/rcpeters.json index 1a811f29..eb66178a 100644 --- a/users/rcpeters.json +++ b/users/rcpeters.json @@ -2,4 +2,4 @@ "copyright": "Robert Peters, http://rcpeters.com", "url": "http://rcpeters.com", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/rcta.json b/users/rcta.json index f2743b11..ca6f7e29 100644 --- a/users/rcta.json +++ b/users/rcta.json @@ -3,4 +3,4 @@ "url": "http://ternaryalchemy.com", "email": "rick@ternaryalchemy.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/readytalk.json b/users/readytalk.json index 0a5a3bea..dda5c9b8 100644 --- a/users/readytalk.json +++ b/users/readytalk.json @@ -1,3 +1,3 @@ { "copyright": "ReadyTalk and Contributors" -} \ No newline at end of file +} diff --git a/users/recoye.json b/users/recoye.json index e3e6805f..f1928a03 100644 --- a/users/recoye.json +++ b/users/recoye.json @@ -3,4 +3,4 @@ "url": "http://www.recoye.com", "email": "mail@recoye.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/redpumpkin.json b/users/redpumpkin.json index 15ba4405..41cee7f5 100644 --- a/users/redpumpkin.json +++ b/users/redpumpkin.json @@ -3,4 +3,4 @@ "url": "http://rp.pe.kr/", "email": "kkkyyy03@naver.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/reedia.json b/users/reedia.json index aa580340..64067171 100644 --- a/users/reedia.json +++ b/users/reedia.json @@ -1,3 +1,3 @@ { "copyright": "Reedia Limited" -} \ No newline at end of file +} diff --git a/users/reefaq.json b/users/reefaq.json index 541eb8f0..2c278231 100644 --- a/users/reefaq.json +++ b/users/reefaq.json @@ -1,4 +1,4 @@ { "copyright": "Reefaq Mohammed", "email": "reefaq.mohammed@gmail.com" -} \ No newline at end of file +} diff --git a/users/rei.json b/users/rei.json index b3924b26..ee4b933f 100644 --- a/users/rei.json +++ b/users/rei.json @@ -2,4 +2,4 @@ "copyright": "Mark Vasilkov", "url": "http://animuchan.net/", "format": "txt" -} \ No newline at end of file +} diff --git a/users/rejack.json b/users/rejack.json index 1fe17300..0d707ff2 100644 --- a/users/rejack.json +++ b/users/rejack.json @@ -4,4 +4,4 @@ "email": "info@rejack.de", "theme": "black-beauty", "gravatar": true -} \ No newline at end of file +} diff --git a/users/relequestual.json b/users/relequestual.json index 31df5411..54ff30ea 100644 --- a/users/relequestual.json +++ b/users/relequestual.json @@ -1,3 +1,3 @@ { "copyright": "Ben Hutton" -} \ No newline at end of file +} diff --git a/users/relu.json b/users/relu.json index 97915e9d..08dfd92d 100644 --- a/users/relu.json +++ b/users/relu.json @@ -1,3 +1,3 @@ { "copyright": "Aurel Canciu" -} \ No newline at end of file +} diff --git a/users/rem-test.json b/users/rem-test.json index 2718a070..a72af9fc 100644 --- a/users/rem-test.json +++ b/users/rem-test.json @@ -3,4 +3,4 @@ "url": "http://remysharp.com", "email": "me@mysite.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/rem-test2.json b/users/rem-test2.json index ba20bb8c..3c56803c 100644 --- a/users/rem-test2.json +++ b/users/rem-test2.json @@ -3,4 +3,4 @@ "url": "http://remysharp.com", "email": "me@mysite.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/rem.json b/users/rem.json index b8df0792..131dcacc 100644 --- a/users/rem.json +++ b/users/rem.json @@ -4,4 +4,4 @@ "email": "remy@remysharp.com", "theme": "material-pink", "gravatar": true -} \ No newline at end of file +} diff --git a/users/rem123.json b/users/rem123.json index 2718a070..a72af9fc 100644 --- a/users/rem123.json +++ b/users/rem123.json @@ -3,4 +3,4 @@ "url": "http://remysharp.com", "email": "me@mysite.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/rematin.json b/users/rematin.json index 194558e7..ed92be1c 100644 --- a/users/rematin.json +++ b/users/rematin.json @@ -1,3 +1,3 @@ { "copyright": "ReFouad Matin" -} \ No newline at end of file +} diff --git a/users/reminisceme.json b/users/reminisceme.json index 4da35089..8b82eb68 100644 --- a/users/reminisceme.json +++ b/users/reminisceme.json @@ -2,4 +2,4 @@ "copyright": "Reminisce.me", "url": "http://reminisce.me", "email": "info@reminisce.me" -} \ No newline at end of file +} diff --git a/users/remybach.json b/users/remybach.json index 2d59c865..578b2c07 100644 --- a/users/remybach.json +++ b/users/remybach.json @@ -2,4 +2,4 @@ "copyright": "Remy Bach, http://remy.bach.me.uk", "theme": "double-windsor", "url": "http://remy.bach.me.uk" -} \ No newline at end of file +} diff --git a/users/remyg.json b/users/remyg.json index 35720e6f..dab6e082 100644 --- a/users/remyg.json +++ b/users/remyg.json @@ -3,4 +3,4 @@ "url": "http://remyg.com", "email": "remy.gardette@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/remz.json b/users/remz.json index a0ae7156..a04c7b08 100644 --- a/users/remz.json +++ b/users/remz.json @@ -1,3 +1,3 @@ { "copyright": "Remy12312321 Sharp1111322321333" -} \ No newline at end of file +} diff --git a/users/renatoargh.json b/users/renatoargh.json index 77ae3059..ff775aec 100644 --- a/users/renatoargh.json +++ b/users/renatoargh.json @@ -2,4 +2,4 @@ "copyright": "Renato Gama", "email": "renatoargh@gmail.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/rene.json b/users/rene.json index 850a8843..b7e32b5b 100644 --- a/users/rene.json +++ b/users/rene.json @@ -3,4 +3,4 @@ "url": "http://rene.kooi.me", "email": "rene@kooi.me", "format": "html" -} \ No newline at end of file +} diff --git a/users/ress.json b/users/ress.json index 9eb2b14e..5705383e 100644 --- a/users/ress.json +++ b/users/ress.json @@ -3,4 +3,4 @@ "url": "https://x39.dev", "format": "html", "theme": "material-deep-purple" -} \ No newline at end of file +} diff --git a/users/ressendpanda.json b/users/ressendpanda.json index 64308fd9..d6a3a782 100644 --- a/users/ressendpanda.json +++ b/users/ressendpanda.json @@ -5,4 +5,4 @@ "gravatar": true, "theme": "friendly", "format": "html" -} \ No newline at end of file +} diff --git a/users/return1.json b/users/return1.json index e9be1f43..ac5765a9 100644 --- a/users/return1.json +++ b/users/return1.json @@ -1,4 +1,4 @@ { "copyright": "Dominique Lederer", "url": "http://www.return1.at" -} \ No newline at end of file +} diff --git a/users/revathskumar.json b/users/revathskumar.json index c1d25cc6..729fc109 100644 --- a/users/revathskumar.json +++ b/users/revathskumar.json @@ -1,3 +1,3 @@ { "copyright": "Revath S Kumar" -} \ No newline at end of file +} diff --git a/users/revi.json b/users/revi.json index a4a43235..011ddb6a 100644 --- a/users/revi.json +++ b/users/revi.json @@ -3,4 +3,4 @@ "url": "https://revi.me", "email": "revi@pobox.com", "theme": "cherry" -} \ No newline at end of file +} diff --git a/users/revolunet.json b/users/revolunet.json index 95f995c4..3f8b6070 100644 --- a/users/revolunet.json +++ b/users/revolunet.json @@ -2,4 +2,4 @@ "copyright": "Julien Bouquillon, revolunet", "url": "http://revolunet.com", "email": "julien@revolunet.com" -} \ No newline at end of file +} diff --git a/users/reza.json b/users/reza.json index bc3cf5d8..4b6ddb86 100644 --- a/users/reza.json +++ b/users/reza.json @@ -4,4 +4,4 @@ "email": "reza.wikrama3@gmail.com", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/rflpazini.json b/users/rflpazini.json index 71346f43..74761ccf 100644 --- a/users/rflpazini.json +++ b/users/rflpazini.json @@ -2,4 +2,4 @@ "copyright": "Rafael Pazini", "url": "http://rflpazini.github.io", "email": "rflpazini@gmail.com" -} \ No newline at end of file +} diff --git a/users/rg.json b/users/rg.json index 423b94df..07175df8 100644 --- a/users/rg.json +++ b/users/rg.json @@ -2,4 +2,4 @@ "copyright": "Ramiro Gómez", "url": "http://ramiro.org/", "email": "www@ramiro.org" -} \ No newline at end of file +} diff --git a/users/rgoyard.json b/users/rgoyard.json index 298a9b61..4d590163 100644 --- a/users/rgoyard.json +++ b/users/rgoyard.json @@ -1,3 +1,3 @@ { "copyright": "Remi Goyard" -} \ No newline at end of file +} diff --git a/users/rhardih.json b/users/rhardih.json index 57ff0334..ddc80c4b 100644 --- a/users/rhardih.json +++ b/users/rhardih.json @@ -1,3 +1,3 @@ { "copyright": "René Hansen" -} \ No newline at end of file +} diff --git a/users/rhiokim.json b/users/rhiokim.json index 7a150f17..befa1675 100644 --- a/users/rhiokim.json +++ b/users/rhiokim.json @@ -1,3 +1,3 @@ { "copyright": "Rhio Kim" -} \ No newline at end of file +} diff --git a/users/rhlnair.json b/users/rhlnair.json index 440cac55..e4f092c2 100644 --- a/users/rhlnair.json +++ b/users/rhlnair.json @@ -1,3 +1,3 @@ { "copyright": "Rahul Nair" -} \ No newline at end of file +} diff --git a/users/rhnvrm.json b/users/rhnvrm.json index 6465a92c..cdbaa621 100644 --- a/users/rhnvrm.json +++ b/users/rhnvrm.json @@ -3,4 +3,4 @@ "url": "http://rohanverma.net", "email": "rohanverma2004@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/rhynl.json b/users/rhynl.json index ef001188..80d24372 100644 --- a/users/rhynl.json +++ b/users/rhynl.json @@ -4,4 +4,4 @@ "email": "me@rhynl.io", "theme": "material-green", "gravatar": true -} \ No newline at end of file +} diff --git a/users/ri7nz.json b/users/ri7nz.json index c5fec174..a6a385c6 100644 --- a/users/ri7nz.json +++ b/users/ri7nz.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": "false", "theme": "afterdark" -} \ No newline at end of file +} diff --git a/users/riadloukili.json b/users/riadloukili.json index da7b1cb2..296e8ca3 100644 --- a/users/riadloukili.json +++ b/users/riadloukili.json @@ -4,4 +4,4 @@ "email": "riad.loukili@outlook.com", "gravatar": true, "theme": "black-beauty" -} \ No newline at end of file +} diff --git a/users/ribeiroevandro.json b/users/ribeiroevandro.json index f984ec74..2e5f5bd0 100644 --- a/users/ribeiroevandro.json +++ b/users/ribeiroevandro.json @@ -4,4 +4,4 @@ "email": "ribeiroevandro@live.com", "theme": "default", "gravatar": true -} \ No newline at end of file +} diff --git a/users/ricardo.json b/users/ricardo.json index c73fe70b..9650fda5 100644 --- a/users/ricardo.json +++ b/users/ricardo.json @@ -3,4 +3,4 @@ "url": "http://ricardo.cc/", "email": "ricardobeat@gmail.com", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/ricardogouveia3.json b/users/ricardogouveia3.json index c16b456b..a127ead5 100644 --- a/users/ricardogouveia3.json +++ b/users/ricardogouveia3.json @@ -4,4 +4,4 @@ "email": "contato@rcrd.me", "gravatar": true, "theme": "dusk" -} \ No newline at end of file +} diff --git a/users/richardcooper.json b/users/richardcooper.json index 4de47ed3..a5c78620 100644 --- a/users/richardcooper.json +++ b/users/richardcooper.json @@ -4,4 +4,4 @@ "email": "richard.cooper@bennetts.co.uk", "gravatar": true, "theme": "eula-modern" -} \ No newline at end of file +} diff --git a/users/richie-bendall.json b/users/richie-bendall.json index 45005d0c..633f98f5 100644 --- a/users/richie-bendall.json +++ b/users/richie-bendall.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "material-indigo" -} \ No newline at end of file +} diff --git a/users/richiebendall.json b/users/richiebendall.json index 45005d0c..633f98f5 100644 --- a/users/richiebendall.json +++ b/users/richiebendall.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "material-indigo" -} \ No newline at end of file +} diff --git a/users/richo.json b/users/richo.json index 28ec7d55..89a1c9b7 100644 --- a/users/richo.json +++ b/users/richo.json @@ -3,4 +3,4 @@ "url": "http://psych0.tk", "theme": "afterdark", "email": "richo@psych0tik.net" -} \ No newline at end of file +} diff --git a/users/richsage.json b/users/richsage.json index 4e32da1a..73b7dd20 100644 --- a/users/richsage.json +++ b/users/richsage.json @@ -1,3 +1,3 @@ { "copyright": "Rich Sage" -} \ No newline at end of file +} diff --git a/users/rickary.json b/users/rickary.json index 83e20321..8f5aeba5 100644 --- a/users/rickary.json +++ b/users/rickary.json @@ -1,4 +1,4 @@ { "copyright": "Rick Chadwick", "url": "http://madeinbeta.co.uk" -} \ No newline at end of file +} diff --git a/users/rictorres.json b/users/rictorres.json index 2dc26867..73dcb8ac 100644 --- a/users/rictorres.json +++ b/users/rictorres.json @@ -2,4 +2,4 @@ "copyright": "Ricardo Torres, http://rictorres.com", "url": "http://rictorres.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/rigging.json b/users/rigging.json index a1d8bbce..cff43f83 100644 --- a/users/rigging.json +++ b/users/rigging.json @@ -1,3 +1,3 @@ { "copyright": "Mike McNeil" -} \ No newline at end of file +} diff --git a/users/riju.json b/users/riju.json index 50c6014e..55ec74d8 100644 --- a/users/riju.json +++ b/users/riju.json @@ -4,4 +4,4 @@ "email": "ghoshriju33@gmail.com", "gravatar": true, "theme": "material-light-blue" -} \ No newline at end of file +} diff --git a/users/rinaldi.json b/users/rinaldi.json index cd66c47b..361b064b 100644 --- a/users/rinaldi.json +++ b/users/rinaldi.json @@ -1,4 +1,4 @@ { "copyright": "Rafael Rinaldi", "url": "http://rinaldi.io" -} \ No newline at end of file +} diff --git a/users/ringe.json b/users/ringe.json index 3ef5fb40..2a77a425 100644 --- a/users/ringe.json +++ b/users/ringe.json @@ -3,4 +3,4 @@ "url": "http://rin.no", "email": "runar@rin.no", "format": "txt" -} \ No newline at end of file +} diff --git a/users/rip.json b/users/rip.json index 4986f7f3..7e5d100e 100644 --- a/users/rip.json +++ b/users/rip.json @@ -1,4 +1,4 @@ { "copyright": "Thomas Ingram, http://www.rip-lang.org", "url": "http://www.rip-lang.org/" -} \ No newline at end of file +} diff --git a/users/river24.json b/users/river24.json index 94172041..42617461 100644 --- a/users/river24.json +++ b/users/river24.json @@ -3,4 +3,4 @@ "url": "http://nao.river24.net", "email": "river2470@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/rixius.json b/users/rixius.json index d8b9747a..e25c9c21 100644 --- a/users/rixius.json +++ b/users/rixius.json @@ -2,4 +2,4 @@ "copyright": "Stephen \"Rixius\" Middleton", "url": "http://rixi.us", "email": "stephen@rixi.us" -} \ No newline at end of file +} diff --git a/users/rizky.json b/users/rizky.json index 4c0ebf96..a2c0383d 100644 --- a/users/rizky.json +++ b/users/rizky.json @@ -1,4 +1,4 @@ { "copyright": "Rizky Farhan", "email": "rizky.farhan@gmail.com" -} \ No newline at end of file +} diff --git a/users/rjw57.json b/users/rjw57.json index 925c04eb..d499d66a 100644 --- a/users/rjw57.json +++ b/users/rjw57.json @@ -2,4 +2,4 @@ "copyright": "Rich Wareham", "url": "https://www.richwareham.com", "email": "rich.licensing@richwareham.com" -} \ No newline at end of file +} diff --git a/users/rkh.json b/users/rkh.json index 58143b38..ae482198 100644 --- a/users/rkh.json +++ b/users/rkh.json @@ -1,3 +1,3 @@ { "copyright": "Konstantin Haase" -} \ No newline at end of file +} diff --git a/users/rkjun.json b/users/rkjun.json index 49245186..8542b503 100644 --- a/users/rkjun.json +++ b/users/rkjun.json @@ -1,4 +1,4 @@ { "copyright": "Juntai Park", "format": "txt" -} \ No newline at end of file +} diff --git a/users/rko.json b/users/rko.json index c7649df2..ed301d0e 100644 --- a/users/rko.json +++ b/users/rko.json @@ -1,4 +1,4 @@ { "copyright": "Remo Koch", "url": "http://rko.io" -} \ No newline at end of file +} diff --git a/users/rl.json b/users/rl.json index d1b028fe..2f6bb6a5 100644 --- a/users/rl.json +++ b/users/rl.json @@ -4,4 +4,4 @@ "email": "riad.loukili@outlook.com", "gravatar": true, "theme": "black-beauty" -} \ No newline at end of file +} diff --git a/users/rloopteam.json b/users/rloopteam.json index 6d7e2e1b..76b65d6f 100644 --- a/users/rloopteam.json +++ b/users/rloopteam.json @@ -2,4 +2,4 @@ "copyright": "rLoop, Incorporated", "url": "http://rloop.org", "email": "hi@rloop.org" -} \ No newline at end of file +} diff --git a/users/rm.json b/users/rm.json index bc0fa2ef..4e2055c8 100644 --- a/users/rm.json +++ b/users/rm.json @@ -1,3 +1,3 @@ { "copyright": "Raphael Michel" -} \ No newline at end of file +} diff --git a/users/rmartin.json b/users/rmartin.json index 98b76bfb..7f916fda 100644 --- a/users/rmartin.json +++ b/users/rmartin.json @@ -2,4 +2,4 @@ "copyright": "Remy Martin, http://rmartin.co", "url": "http://rmartin.co", "theme": "afterdark" -} \ No newline at end of file +} diff --git a/users/rmf.json b/users/rmf.json index c0b99705..05975e51 100644 --- a/users/rmf.json +++ b/users/rmf.json @@ -4,4 +4,4 @@ "email": "license@robfrawley.com", "theme": "material-pink", "gravatar": true -} \ No newline at end of file +} diff --git a/users/rmlewisuk.json b/users/rmlewisuk.json index 0e61d343..99536b3f 100644 --- a/users/rmlewisuk.json +++ b/users/rmlewisuk.json @@ -3,4 +3,4 @@ "url": "http://robblewis.me", "gravatar": true, "theme": "opensans" -} \ No newline at end of file +} diff --git a/users/rmm5t.json b/users/rmm5t.json index 6e54351a..dbf389bc 100644 --- a/users/rmm5t.json +++ b/users/rmm5t.json @@ -4,4 +4,4 @@ "email": "ryan@mcgeary.org", "gravatar": true, "theme": "hmt-blue" -} \ No newline at end of file +} diff --git a/users/rmsubekti.json b/users/rmsubekti.json index 869bf6dd..0311d54d 100644 --- a/users/rmsubekti.json +++ b/users/rmsubekti.json @@ -2,4 +2,4 @@ "copyright": "Rahmat Subekti", "email": "rahmatsubekti@live.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/rmunn.json b/users/rmunn.json index 9f4e1942..44659f82 100644 --- a/users/rmunn.json +++ b/users/rmunn.json @@ -1,4 +1,4 @@ { "copyright": "Robin Munn", "email": "rmunn@pobox.com" -} \ No newline at end of file +} diff --git a/users/rnelson.json b/users/rnelson.json index eaa8c264..1b5fbd3c 100644 --- a/users/rnelson.json +++ b/users/rnelson.json @@ -4,4 +4,4 @@ "email": "ross.nelson@gmail.com", "gravatar": true, "theme": "friendly" -} \ No newline at end of file +} diff --git a/users/rob.json b/users/rob.json index d13ffab6..c9574eff 100644 --- a/users/rob.json +++ b/users/rob.json @@ -3,4 +3,4 @@ "url": "http://robm.me.uk", "email": "r@robm.me.uk", "format": "txt" -} \ No newline at end of file +} diff --git a/users/robario.json b/users/robario.json index 3f8c2bc8..e615da26 100644 --- a/users/robario.json +++ b/users/robario.json @@ -1,4 +1,4 @@ { "copyright": "Hironori Yoshida", "url": "https://github.com/robario" -} \ No newline at end of file +} diff --git a/users/robdodson.json b/users/robdodson.json index 0cb6e1ce..b98bbbab 100644 --- a/users/robdodson.json +++ b/users/robdodson.json @@ -3,4 +3,4 @@ "url": "http://robdodson.me", "email": "lets.email.rob@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/roberthernandez.json b/users/roberthernandez.json index 4d949919..8b406ec8 100644 --- a/users/roberthernandez.json +++ b/users/roberthernandez.json @@ -4,4 +4,4 @@ "email": "RHernandez513@gmail.com", "format": "html", "theme": "solarized" -} \ No newline at end of file +} diff --git a/users/robertlucian.json b/users/robertlucian.json index 44591adf..1e8756bc 100644 --- a/users/robertlucian.json +++ b/users/robertlucian.json @@ -4,4 +4,4 @@ "email": "robert.lucian.chiriac@gmail.com", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/robin.json b/users/robin.json index 2c72fe6c..fcf43232 100644 --- a/users/robin.json +++ b/users/robin.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "material-indigo" -} \ No newline at end of file +} diff --git a/users/robotblake.json b/users/robotblake.json index 12b87ada..48112cd4 100644 --- a/users/robotblake.json +++ b/users/robotblake.json @@ -3,4 +3,4 @@ "url": "http://retroco.de", "email": "blake@retroco.de", "format": "txt" -} \ No newline at end of file +} diff --git a/users/robxu9.json b/users/robxu9.json index 3c90d735..086cefca 100644 --- a/users/robxu9.json +++ b/users/robxu9.json @@ -3,4 +3,4 @@ "url": "http://www.robxu9.com", "email": "robxu9@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/rock.json b/users/rock.json index 5ae8c898..2cb7f6c6 100644 --- a/users/rock.json +++ b/users/rock.json @@ -2,4 +2,4 @@ "copyright": "Denis Pushkarev", "url": "http://zloirock.ru", "email": "zloirock@zloirock.ru" -} \ No newline at end of file +} diff --git a/users/rodchyn.json b/users/rodchyn.json index cf5d06fc..32ca0c06 100644 --- a/users/rodchyn.json +++ b/users/rodchyn.json @@ -2,4 +2,4 @@ "copyright": "Yura Rodchyn", "email": "rodchyn@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/rogeriopradoj.json b/users/rogeriopradoj.json index 3437221d..1c521def 100644 --- a/users/rogeriopradoj.json +++ b/users/rogeriopradoj.json @@ -2,4 +2,4 @@ "copyright": "Rogerio Prado de Jesus, http://rogeriopradoj.com", "url": "http://rogeriopradoj.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/rogeriorc.json b/users/rogeriorc.json index d829fa84..0378ad61 100644 --- a/users/rogeriorc.json +++ b/users/rogeriorc.json @@ -4,4 +4,4 @@ "email": "rogeriorc@gmail.com", "theme": "material-indigo", "gravatar": true -} \ No newline at end of file +} diff --git a/users/rohanc.json b/users/rohanc.json index fdbe50ea..3c0f850a 100644 --- a/users/rohanc.json +++ b/users/rohanc.json @@ -3,4 +3,4 @@ "email": "rohanchacko007@gmail.com", "format": "html", "theme": "material-cyan" -} \ No newline at end of file +} diff --git a/users/rohithasrk.json b/users/rohithasrk.json index beede7ae..a916e7ff 100644 --- a/users/rohithasrk.json +++ b/users/rohithasrk.json @@ -4,4 +4,4 @@ "format": "html", "gravatar": true, "theme": "material" -} \ No newline at end of file +} diff --git a/users/rok.json b/users/rok.json index b87115c9..33580360 100644 --- a/users/rok.json +++ b/users/rok.json @@ -5,4 +5,4 @@ "gravatar": true, "format": "html", "theme": "default" -} \ No newline at end of file +} diff --git a/users/romac.json b/users/romac.json index f5b751f5..a2d38fbf 100644 --- a/users/romac.json +++ b/users/romac.json @@ -2,4 +2,4 @@ "copyright": "Romain Ruetschi", "url": "http://romac.me", "email": "romain.ruetschi@gmail.com" -} \ No newline at end of file +} diff --git a/users/romain.json b/users/romain.json index c854d4f1..2ee0574e 100644 --- a/users/romain.json +++ b/users/romain.json @@ -1,3 +1,3 @@ { "copyright": "Romain Pouclet" -} \ No newline at end of file +} diff --git a/users/roman-boiko.json b/users/roman-boiko.json index f54fbe1f..0b62ae91 100644 --- a/users/roman-boiko.json +++ b/users/roman-boiko.json @@ -3,4 +3,4 @@ "url": "https://www.linkedin.com/in/romanboiko", "email": "boiko.roman@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/romanboiko.json b/users/romanboiko.json index cfdc0824..04e148b5 100644 --- a/users/romanboiko.json +++ b/users/romanboiko.json @@ -3,4 +3,4 @@ "url": "https://www.linkedin.com/in/romanboiko", "email": "boiko.roman@gmail.com", "gravatar": "true" -} \ No newline at end of file +} diff --git a/users/romkey.json b/users/romkey.json index 30b24bae..e8b1aca7 100644 --- a/users/romkey.json +++ b/users/romkey.json @@ -3,4 +3,4 @@ "url": "https://romkey.com/", "email": "romkey@romkey.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/ron975test.json b/users/ron975test.json index d435ec81..2b28a7f6 100644 --- a/users/ron975test.json +++ b/users/ron975test.json @@ -1,3 +1,3 @@ { "copyright": "Ronny Chan" -} \ No newline at end of file +} diff --git a/users/ronnchyran.json b/users/ronnchyran.json index 0b8509f1..206ec7bc 100644 --- a/users/ronnchyran.json +++ b/users/ronnchyran.json @@ -4,4 +4,4 @@ "email": "ronny@ronnchyran.com", "gravatar": true, "theme": "material-teal" -} \ No newline at end of file +} diff --git a/users/rootulp.json b/users/rootulp.json index 35fa5173..4a3812ae 100644 --- a/users/rootulp.json +++ b/users/rootulp.json @@ -1,3 +1,3 @@ { "copyright": "Rootul Patel" -} \ No newline at end of file +} diff --git a/users/rosarior.json b/users/rosarior.json index 195f7313..890b7234 100644 --- a/users/rosarior.json +++ b/users/rosarior.json @@ -3,4 +3,4 @@ "url": "http://robertorosario.com", "email": "me@robertorosario.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/rosebudandmoon.json b/users/rosebudandmoon.json index d0802d1d..6ca88fcf 100644 --- a/users/rosebudandmoon.json +++ b/users/rosebudandmoon.json @@ -1,3 +1,3 @@ { "copyright": "Rosebud and Moon" -} \ No newline at end of file +} diff --git a/users/ross.json b/users/ross.json index fd9ba774..3311f0a2 100644 --- a/users/ross.json +++ b/users/ross.json @@ -1,3 +1,3 @@ { "copyright": "Ross Masters" -} \ No newline at end of file +} diff --git a/users/rossjones.json b/users/rossjones.json index 0fe0c2e6..cb5137ce 100644 --- a/users/rossjones.json +++ b/users/rossjones.json @@ -1,3 +1,3 @@ { "copyright": "Ross Jones" -} \ No newline at end of file +} diff --git a/users/roy.json b/users/roy.json index fc781f1d..ecb5ef3e 100644 --- a/users/roy.json +++ b/users/roy.json @@ -1,3 +1,3 @@ { "copyright": "Roy Riojas" -} \ No newline at end of file +} diff --git a/users/rpavlik.json b/users/rpavlik.json index ba20a657..5af500b2 100644 --- a/users/rpavlik.json +++ b/users/rpavlik.json @@ -2,4 +2,4 @@ "copyright": "Ryan Pavlik", "url": "http://academic.cleardefinition.com", "email": "ryan.pavlik@gmail.com" -} \ No newline at end of file +} diff --git a/users/rpetz.json b/users/rpetz.json index 6332e4b3..370e632c 100644 --- a/users/rpetz.json +++ b/users/rpetz.json @@ -3,4 +3,4 @@ "url": "http://robertpetz.com", "email": "rpetz@ignitelabs.net", "format": "txt" -} \ No newline at end of file +} diff --git a/users/rpetz1.json b/users/rpetz1.json index 6332e4b3..370e632c 100644 --- a/users/rpetz1.json +++ b/users/rpetz1.json @@ -3,4 +3,4 @@ "url": "http://robertpetz.com", "email": "rpetz@ignitelabs.net", "format": "txt" -} \ No newline at end of file +} diff --git a/users/rpowis.json b/users/rpowis.json index 9d347c05..9d6d5e18 100644 --- a/users/rpowis.json +++ b/users/rpowis.json @@ -1,3 +1,3 @@ { "copyright": "Rory Powis" -} \ No newline at end of file +} diff --git a/users/rubensfernandes.json b/users/rubensfernandes.json index bf4b6413..aa64eee7 100644 --- a/users/rubensfernandes.json +++ b/users/rubensfernandes.json @@ -2,4 +2,4 @@ "copyright": "Rubens D. Fernandes", "url": "http://rubensfernandes.com.br", "email": "hi@rubensfernandes.com.br" -} \ No newline at end of file +} diff --git a/users/rud.json b/users/rud.json index 094a0b3d..882e8c99 100644 --- a/users/rud.json +++ b/users/rud.json @@ -4,4 +4,4 @@ "url": "http://www.downinit.com/", "gravatar": true, "theme": "default-dark" -} \ No newline at end of file +} diff --git a/users/ruedap.json b/users/ruedap.json index 57b0c484..548d8863 100644 --- a/users/ruedap.json +++ b/users/ruedap.json @@ -2,4 +2,4 @@ "copyright": "ruedap, http://ruedap.com", "url": "http://ruedap.com", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/ruhland.json b/users/ruhland.json index 4bb596b4..752359fe 100644 --- a/users/ruhland.json +++ b/users/ruhland.json @@ -4,4 +4,4 @@ "email": "contact@joelruhland.net", "format": "txt", "theme": "opensans" -} \ No newline at end of file +} diff --git a/users/rumpl.json b/users/rumpl.json index 9bbf21d1..1ce4cced 100644 --- a/users/rumpl.json +++ b/users/rumpl.json @@ -1,4 +1,4 @@ { "copyright": "Djordje Lukic, http://rumpl.org", "url": "http://rumpl.org" -} \ No newline at end of file +} diff --git a/users/runphp.json b/users/runphp.json index 264c3a70..6bc90f72 100644 --- a/users/runphp.json +++ b/users/runphp.json @@ -4,4 +4,4 @@ "email": "runphp@qq.com", "theme": "material-blue", "gravatar": true -} \ No newline at end of file +} diff --git a/users/rur.json b/users/rur.json index f76a0deb..f7a3c788 100644 --- a/users/rur.json +++ b/users/rur.json @@ -3,4 +3,4 @@ "url": "https://github.com/rauluranga/", "email": "ruranga@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/ruucm.json b/users/ruucm.json index b2446d31..e7bacc12 100644 --- a/users/ruucm.json +++ b/users/ruucm.json @@ -3,4 +3,4 @@ "url": "http://ruucm.work", "email": "ruucm@ruucm.work", "gravatar": true -} \ No newline at end of file +} diff --git a/users/rverrips.json b/users/rverrips.json index 444d88f1..2a863aec 100644 --- a/users/rverrips.json +++ b/users/rverrips.json @@ -3,4 +3,4 @@ "url": "https://verrips.org", "email": "roy@verrips.org", "gravatar": true -} \ No newline at end of file +} diff --git a/users/rx14.json b/users/rx14.json index 47e2ea04..39eda95b 100644 --- a/users/rx14.json +++ b/users/rx14.json @@ -1,3 +1,3 @@ { "copyright": "Chris Hobbs" -} \ No newline at end of file +} diff --git a/users/ryan.json b/users/ryan.json index 147fa2d2..bcd9b45f 100644 --- a/users/ryan.json +++ b/users/ryan.json @@ -1,3 +1,3 @@ { "copyright": "Ryan Lester" -} \ No newline at end of file +} diff --git a/users/ryanjacobs.json b/users/ryanjacobs.json index 4a5b79a9..984609ab 100644 --- a/users/ryanjacobs.json +++ b/users/ryanjacobs.json @@ -3,4 +3,4 @@ "url": "http://ryanjacobs.io", "format": "html", "theme": "default" -} \ No newline at end of file +} diff --git a/users/ryanleland.json b/users/ryanleland.json index 6e519e2c..15b8362a 100644 --- a/users/ryanleland.json +++ b/users/ryanleland.json @@ -1,3 +1,3 @@ { "copyright": "Fynt Inc." -} \ No newline at end of file +} diff --git a/users/ryanmjacobs.json b/users/ryanmjacobs.json index f32baf08..18089027 100644 --- a/users/ryanmjacobs.json +++ b/users/ryanmjacobs.json @@ -3,4 +3,4 @@ "url": "http://ryanjacobs.io", "email": "ryan.mjacobs@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/ryanscott.json b/users/ryanscott.json index 1b7ef59a..1b8501fe 100644 --- a/users/ryanscott.json +++ b/users/ryanscott.json @@ -2,4 +2,4 @@ "copyright": "Ryan Scott", "url": "https://github.com/Archytaus", "format": "html" -} \ No newline at end of file +} diff --git a/users/ryanseddon.json b/users/ryanseddon.json index f117f8b3..e7b32735 100644 --- a/users/ryanseddon.json +++ b/users/ryanseddon.json @@ -1,4 +1,4 @@ { "copyright": "Ryan Seddon", "url": "http://thecssninja.com" -} \ No newline at end of file +} diff --git a/users/ryanwu.json b/users/ryanwu.json index 654b09d6..5a42f9b6 100644 --- a/users/ryanwu.json +++ b/users/ryanwu.json @@ -4,4 +4,4 @@ "email": "hello@ryanwu.me", "gravatar": true, "theme": "hilula" -} \ No newline at end of file +} diff --git a/users/ryck.json b/users/ryck.json index d2132c48..58310bbe 100644 --- a/users/ryck.json +++ b/users/ryck.json @@ -1,3 +1,3 @@ { "copyright": "Ricardo González, http://ryck.me" -} \ No newline at end of file +} diff --git a/users/ryepdx.json b/users/ryepdx.json index bd0f98e8..618e5b6e 100644 --- a/users/ryepdx.json +++ b/users/ryepdx.json @@ -3,4 +3,4 @@ "url": "http://ryepdx.com", "email": "ryepdx@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/ryf.json b/users/ryf.json index 1932784d..6d6968c0 100644 --- a/users/ryf.json +++ b/users/ryf.json @@ -1,3 +1,3 @@ { "copyright": "Ry Ferguson" -} \ No newline at end of file +} diff --git a/users/rylee.json b/users/rylee.json index a4b5de3f..6523ce9b 100644 --- a/users/rylee.json +++ b/users/rylee.json @@ -2,4 +2,4 @@ "copyright": "Rylee Harrison", "email": "ryleeharrison@icloud.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/ryotahirano.json b/users/ryotahirano.json index 03eaff03..32411862 100644 --- a/users/ryotahirano.json +++ b/users/ryotahirano.json @@ -1,3 +1,3 @@ { "copyright": "RyotaHirano" -} \ No newline at end of file +} diff --git a/users/s-a.json b/users/s-a.json index 1dd85a50..ed77ceb2 100644 --- a/users/s-a.json +++ b/users/s-a.json @@ -3,4 +3,4 @@ "url": "https://github.com/s-a", "email": "stephan.ahlf@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/s.json b/users/s.json index 50e6f468..7534afec 100644 --- a/users/s.json +++ b/users/s.json @@ -2,4 +2,4 @@ "copyright": "Sam Epstein", "email": "license@samepstein.com", "theme": "afterdark" -} \ No newline at end of file +} diff --git a/users/saas-ninja.json b/users/saas-ninja.json index 32495f16..ef0e3b8b 100644 --- a/users/saas-ninja.json +++ b/users/saas-ninja.json @@ -4,4 +4,4 @@ "email": "public88878878887@hotmail.com", "theme": "hipster-gray", "gravatar": true -} \ No newline at end of file +} diff --git a/users/sachinjain.json b/users/sachinjain.json index f6daa88e..9599ab06 100644 --- a/users/sachinjain.json +++ b/users/sachinjain.json @@ -3,4 +3,4 @@ "email": "sachinjain024@gmail.com", "format": "html", "theme": "cherry" -} \ No newline at end of file +} diff --git a/users/sadko.json b/users/sadko.json index a83e78d0..08a9cc1b 100644 --- a/users/sadko.json +++ b/users/sadko.json @@ -1,4 +1,4 @@ { "copyright": "Paul Miller (http://paulmillr.com/)", "format": "txt" -} \ No newline at end of file +} diff --git a/users/saeid.json b/users/saeid.json index c3a8f0d6..c8096581 100644 --- a/users/saeid.json +++ b/users/saeid.json @@ -3,4 +3,4 @@ "url": "http://zebardast.com", "email": "saeid.zebardast@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/sagru.json b/users/sagru.json index 0102ddc7..723da27a 100644 --- a/users/sagru.json +++ b/users/sagru.json @@ -5,4 +5,4 @@ "theme": "opensans", "url": "https://simpleappgroup.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/sails-spinnaker.json b/users/sails-spinnaker.json index 2a332e55..e4e90246 100644 --- a/users/sails-spinnaker.json +++ b/users/sails-spinnaker.json @@ -3,4 +3,4 @@ "url": "http://blakeowens.com", "email": "blake@blakeowens.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/sails.json b/users/sails.json index bd304a70..1c12ced4 100644 --- a/users/sails.json +++ b/users/sails.json @@ -1,3 +1,3 @@ { "copyright": "Mike McNeil & Balderdash Design Co." -} \ No newline at end of file +} diff --git a/users/sailxjx.json b/users/sailxjx.json index 7c834302..69a835ef 100644 --- a/users/sailxjx.json +++ b/users/sailxjx.json @@ -4,4 +4,4 @@ "theme": "double-windsor", "email": "sailxjx@163.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/sallar.json b/users/sallar.json index c310a0ed..bd71647d 100644 --- a/users/sallar.json +++ b/users/sallar.json @@ -4,4 +4,4 @@ "email": "sallar.kaboli@gmail.com", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/sam.json b/users/sam.json index 8f806964..4ad068a5 100644 --- a/users/sam.json +++ b/users/sam.json @@ -1,4 +1,4 @@ { "copyright": "Sam Strasser", "url": "http://samstrasser.com" -} \ No newline at end of file +} diff --git a/users/sambhav2612.json b/users/sambhav2612.json index 3054efcb..e43bd525 100644 --- a/users/sambhav2612.json +++ b/users/sambhav2612.json @@ -3,4 +3,4 @@ "url": "https://sambhavjain.netlify.com", "email": "sambhavjain2612@gmail.com", "theme": "8bits-monochrome-blue-white" -} \ No newline at end of file +} diff --git a/users/samirtalwar.json b/users/samirtalwar.json index a4543dcf..38e21e63 100644 --- a/users/samirtalwar.json +++ b/users/samirtalwar.json @@ -3,4 +3,4 @@ "url": "http://samirtalwar.com", "email": "samir@noodlesandwich.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/sammyt.json b/users/sammyt.json index 0d1c44f8..a4ccf7b0 100644 --- a/users/sammyt.json +++ b/users/sammyt.json @@ -1,3 +1,3 @@ { "copyright": "Samuel Williams" -} \ No newline at end of file +} diff --git a/users/samsoffes.json b/users/samsoffes.json index bcd73723..6dfa96da 100644 --- a/users/samsoffes.json +++ b/users/samsoffes.json @@ -1,3 +1,3 @@ { "copyright": "Sam Soffes, http://sstoolk.it" -} \ No newline at end of file +} diff --git a/users/samuel.json b/users/samuel.json index cdf36b09..53d82d00 100644 --- a/users/samuel.json +++ b/users/samuel.json @@ -3,4 +3,4 @@ "url": "http://samuelmesquita.com.br", "email": "samuelmesq@gmail.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/samuelstiles.json b/users/samuelstiles.json index 61bd9749..b2ffb690 100644 --- a/users/samuelstiles.json +++ b/users/samuelstiles.json @@ -1,3 +1,3 @@ { "copyright": "Samuel Stiles" -} \ No newline at end of file +} diff --git a/users/san.json b/users/san.json index 4d81098b..a545bb0e 100644 --- a/users/san.json +++ b/users/san.json @@ -5,4 +5,4 @@ "gravatar": true, "format": "html", "theme": "eula-modern" -} \ No newline at end of file +} diff --git a/users/sand.json b/users/sand.json index 811254dd..4f374e9b 100644 --- a/users/sand.json +++ b/users/sand.json @@ -3,4 +3,4 @@ "url": "http://marcin.spoczynski.com", "email": "marcin@spoczynski.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/sandeep.json b/users/sandeep.json index cf1e79f7..8868b063 100644 --- a/users/sandeep.json +++ b/users/sandeep.json @@ -3,4 +3,4 @@ "email": "sandeep.anand.bhat@gmail.com", "gravatar": true, "theme": "magic-mint" -} \ No newline at end of file +} diff --git a/users/sandropadin.json b/users/sandropadin.json index 88cae6f6..42afabda 100644 --- a/users/sandropadin.json +++ b/users/sandropadin.json @@ -1,3 +1,3 @@ { "copyright": "Sandro Padin" -} \ No newline at end of file +} diff --git a/users/sanfyin.json b/users/sanfyin.json index d0dab9de..525fe58f 100644 --- a/users/sanfyin.json +++ b/users/sanfyin.json @@ -4,4 +4,4 @@ "email": "me@sanfy.in", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/sangliere.json b/users/sangliere.json index 1b1debca..77698d3c 100644 --- a/users/sangliere.json +++ b/users/sangliere.json @@ -1,3 +1,3 @@ { "copyright": "La Sanglière (JM Marcastel)" -} \ No newline at end of file +} diff --git a/users/santtu.json b/users/santtu.json index 51989bdf..9a8ee747 100644 --- a/users/santtu.json +++ b/users/santtu.json @@ -3,4 +3,4 @@ "url": "http://santtu.iki.fi", "email": "santtu@iki.fi", "format": "txt" -} \ No newline at end of file +} diff --git a/users/saravanan.json b/users/saravanan.json index d8f52b48..8c630246 100644 --- a/users/saravanan.json +++ b/users/saravanan.json @@ -1,3 +1,3 @@ { "copyright": "Saravanan Rajaraman" -} \ No newline at end of file +} diff --git a/users/sarith.json b/users/sarith.json index 2a1332f4..38d9258e 100644 --- a/users/sarith.json +++ b/users/sarith.json @@ -3,4 +3,4 @@ "url": "http://sarithdemuni.com", "email": "sarith@nullandvoid.co", "gravatar": true -} \ No newline at end of file +} diff --git a/users/sarkasper.json b/users/sarkasper.json index 7827dbab..af472f7d 100644 --- a/users/sarkasper.json +++ b/users/sarkasper.json @@ -1,3 +1,3 @@ { "copyright": "Kasper Menten" -} \ No newline at end of file +} diff --git a/users/sascha.json b/users/sascha.json index 85f13c0f..b0333a1d 100644 --- a/users/sascha.json +++ b/users/sascha.json @@ -1,3 +1,3 @@ { "copyright": "Sascha Linn" -} \ No newline at end of file +} diff --git a/users/saschame.json b/users/saschame.json index 3ad4e184..7d8c9061 100644 --- a/users/saschame.json +++ b/users/saschame.json @@ -1,3 +1,3 @@ { "copyright": "Sascha Merkofer" -} \ No newline at end of file +} diff --git a/users/saschamzh.json b/users/saschamzh.json index 19ce4390..6b3383b8 100644 --- a/users/saschamzh.json +++ b/users/saschamzh.json @@ -4,4 +4,4 @@ "email": "sascha@mzh.name", "theme": "rokkitt", "gravatar": true -} \ No newline at end of file +} diff --git a/users/sasha.json b/users/sasha.json index a568fb80..38aa2d1c 100644 --- a/users/sasha.json +++ b/users/sasha.json @@ -1,3 +1,3 @@ { "copyright": "Sasha Gerrand" -} \ No newline at end of file +} diff --git a/users/sashko.json b/users/sashko.json index e21005d3..47ab9c91 100644 --- a/users/sashko.json +++ b/users/sashko.json @@ -3,4 +3,4 @@ "url": "https://sashko.rv.ua", "email": "dev@sashko.rv.ua", "gravatar": true -} \ No newline at end of file +} diff --git a/users/sauerlo.json b/users/sauerlo.json index 0eda7f41..64a5c0fb 100644 --- a/users/sauerlo.json +++ b/users/sauerlo.json @@ -5,4 +5,4 @@ "email": "lorenz.lo.sauer@gmail.com", "gravatar": true, "theme": "eula-modern" -} \ No newline at end of file +} diff --git a/users/saulhardman.json b/users/saulhardman.json index 27302f1e..8a8ef941 100644 --- a/users/saulhardman.json +++ b/users/saulhardman.json @@ -3,4 +3,4 @@ "url": "http://iamsaul.co.uk", "email": "hello@iamsaul.co.uk", "gravatar": true -} \ No newline at end of file +} diff --git a/users/sauravtom.json b/users/sauravtom.json index f0d014e3..af18f29c 100644 --- a/users/sauravtom.json +++ b/users/sauravtom.json @@ -3,4 +3,4 @@ "url": "http://sauravtom.com", "email": "stomatrix@gmail.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/sbuzonas.json b/users/sbuzonas.json index e9b68943..b3c33780 100644 --- a/users/sbuzonas.json +++ b/users/sbuzonas.json @@ -4,4 +4,4 @@ "email": "steve@fancyguy.com", "gravatar": true, "theme": "opensans" -} \ No newline at end of file +} diff --git a/users/scarf.json b/users/scarf.json index bab08e01..8c4f7ee7 100644 --- a/users/scarf.json +++ b/users/scarf.json @@ -3,4 +3,4 @@ "url": "http://www.f-list.net/", "email": "nobody@f-list.net", "format": "html" -} \ No newline at end of file +} diff --git a/users/schiff.json b/users/schiff.json index 45664922..741d6d5c 100644 --- a/users/schiff.json +++ b/users/schiff.json @@ -3,4 +3,4 @@ "url": "http://schiff.io", "email": "haydenschiff@gmail.com", "theme": "friendly" -} \ No newline at end of file +} diff --git a/users/schjetne.json b/users/schjetne.json index f64adf8e..03d69574 100644 --- a/users/schjetne.json +++ b/users/schjetne.json @@ -1,3 +1,3 @@ { "copyright": "Jan Schjetne" -} \ No newline at end of file +} diff --git a/users/schlaus.json b/users/schlaus.json index d8c62a35..304d1a9c 100644 --- a/users/schlaus.json +++ b/users/schlaus.json @@ -4,4 +4,4 @@ "email": "klaus@karkia.me", "gravatar": true, "theme": "friendly" -} \ No newline at end of file +} diff --git a/users/schoolapply.json b/users/schoolapply.json index a489230b..d7240f23 100644 --- a/users/schoolapply.json +++ b/users/schoolapply.json @@ -3,4 +3,4 @@ "email": "opensource@schoolapply.com", "format": "html", "theme": "friendly" -} \ No newline at end of file +} diff --git a/users/scio.json b/users/scio.json index eaaa61f4..450a1749 100644 --- a/users/scio.json +++ b/users/scio.json @@ -4,4 +4,4 @@ "email": "sayantan.chaudhuri@gmail.com", "theme": "open-sans", "gravatar": true -} \ No newline at end of file +} diff --git a/users/scottrobertson.json b/users/scottrobertson.json index aa51d52b..a25c99b5 100644 --- a/users/scottrobertson.json +++ b/users/scottrobertson.json @@ -3,4 +3,4 @@ "url": "https://scottrobertson.me", "email": "scottymeuk@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/scottsauyet.json b/users/scottsauyet.json index ab2526d9..8399bcff 100644 --- a/users/scottsauyet.json +++ b/users/scottsauyet.json @@ -4,4 +4,4 @@ "email": "scott@sauyet.com", "gravatar": true, "theme": "afterdark" -} \ No newline at end of file +} diff --git a/users/scoundrels.json b/users/scoundrels.json index 1fdb9e02..c4c56d57 100644 --- a/users/scoundrels.json +++ b/users/scoundrels.json @@ -4,4 +4,4 @@ "email": "support@thescoundrels.net", "gravatar": true, "theme": "afterdark" -} \ No newline at end of file +} diff --git a/users/scr.json b/users/scr.json index 6f8fedb7..4f85519c 100644 --- a/users/scr.json +++ b/users/scr.json @@ -3,4 +3,4 @@ "url": "https://scribenet.com", "email": "systems@scribenet.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/scribe.json b/users/scribe.json index 239580aa..6cb68856 100644 --- a/users/scribe.json +++ b/users/scribe.json @@ -4,4 +4,4 @@ "email": "open@scribe.tools", "format": "html", "theme": "default" -} \ No newline at end of file +} diff --git a/users/scritt.json b/users/scritt.json index 04c1593d..4af9e060 100644 --- a/users/scritt.json +++ b/users/scritt.json @@ -4,4 +4,4 @@ "format": "html", "gravatar": false, "theme": "plaintext" -} \ No newline at end of file +} diff --git a/users/scrittit.json b/users/scrittit.json index 04c1593d..4af9e060 100644 --- a/users/scrittit.json +++ b/users/scrittit.json @@ -4,4 +4,4 @@ "format": "html", "gravatar": false, "theme": "plaintext" -} \ No newline at end of file +} diff --git a/users/sdailey.json b/users/sdailey.json index dfe59658..ba12f9fc 100644 --- a/users/sdailey.json +++ b/users/sdailey.json @@ -1,4 +1,4 @@ { "copyright": "Sam Dailey", "url": "http://samdailey.com" -} \ No newline at end of file +} diff --git a/users/sdqali.json b/users/sdqali.json index 050108d9..a9ceafd3 100644 --- a/users/sdqali.json +++ b/users/sdqali.json @@ -1,3 +1,3 @@ { "copyright": "Sadique Ali" -} \ No newline at end of file +} diff --git a/users/sean-vieira.json b/users/sean-vieira.json index deae753d..65485007 100644 --- a/users/sean-vieira.json +++ b/users/sean-vieira.json @@ -1,4 +1,4 @@ { "copyright": "Sean Vieira, http://dedeodesigns.com", "url": "http://dedeodesigns.com" -} \ No newline at end of file +} diff --git a/users/seanecoffey.json b/users/seanecoffey.json index 75870397..c2c93b03 100644 --- a/users/seanecoffey.json +++ b/users/seanecoffey.json @@ -2,4 +2,4 @@ "copyright": "Sean Coffey, http://seanecoffey.com/", "url": "http://seanecoffey.com/", "email": "seanedwardcoffey@gmail.com" -} \ No newline at end of file +} diff --git a/users/seanirby.json b/users/seanirby.json index d53ff7a9..4f3998d9 100644 --- a/users/seanirby.json +++ b/users/seanirby.json @@ -1,3 +1,3 @@ { "copyright": "Sean Irby" -} \ No newline at end of file +} diff --git a/users/seb.json b/users/seb.json index 4c2ff59e..a97876eb 100644 --- a/users/seb.json +++ b/users/seb.json @@ -1,3 +1,3 @@ { "copyright": "Seb Richards" -} \ No newline at end of file +} diff --git a/users/sebacruz.json b/users/sebacruz.json index f634b597..1a5ab861 100644 --- a/users/sebacruz.json +++ b/users/sebacruz.json @@ -2,4 +2,4 @@ "copyright": "Sebastian Cruz", "url": "http://sebacruz.com", "email": "sebacruzcode@gmail.com" -} \ No newline at end of file +} diff --git a/users/sebelga.json b/users/sebelga.json index a58505f8..c661f2fa 100644 --- a/users/sebelga.json +++ b/users/sebelga.json @@ -1,3 +1,3 @@ { "copyright": "Sébastien Loix" -} \ No newline at end of file +} diff --git a/users/secretery.json b/users/secretery.json index 33ec710b..14b353fa 100644 --- a/users/secretery.json +++ b/users/secretery.json @@ -3,4 +3,4 @@ "url": "http://www.wesrc.com", "email": "code@wesrc.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/seikichi.json b/users/seikichi.json index 862183c7..665500cc 100644 --- a/users/seikichi.json +++ b/users/seikichi.json @@ -1,4 +1,4 @@ { "copyright": "Seiichi KONDO", "url": "https://github.com/seikichi" -} \ No newline at end of file +} diff --git a/users/seiran.json b/users/seiran.json index 1257c2bb..c2bd1dd1 100644 --- a/users/seiran.json +++ b/users/seiran.json @@ -1,4 +1,4 @@ { "copyright": "Seiran Hana", "email": "pochy2008@qq.com" -} \ No newline at end of file +} diff --git a/users/selwin.json b/users/selwin.json index 07024c15..f9eb6be5 100644 --- a/users/selwin.json +++ b/users/selwin.json @@ -3,4 +3,4 @@ "url": "http://ong.co.id", "email": "selwin.ong@gmail.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/sendcloud.json b/users/sendcloud.json index 04235ccf..008c2f69 100644 --- a/users/sendcloud.json +++ b/users/sendcloud.json @@ -1,3 +1,3 @@ { "copyright": "sendcloud" -} \ No newline at end of file +} diff --git a/users/senura.json b/users/senura.json index 56d5fba9..de237ccc 100644 --- a/users/senura.json +++ b/users/senura.json @@ -1,3 +1,3 @@ { "copyright": "Senura Seneviratne" -} \ No newline at end of file +} diff --git a/users/senuraa.json b/users/senuraa.json index aaab42ce..ee10cb68 100644 --- a/users/senuraa.json +++ b/users/senuraa.json @@ -2,4 +2,4 @@ "copyright": "Senura Seneviratne", "url": "http://senuraa.com", "email": "senuraa@msn.com" -} \ No newline at end of file +} diff --git a/users/serdar.json b/users/serdar.json index 7213417e..fc37920d 100644 --- a/users/serdar.json +++ b/users/serdar.json @@ -1,3 +1,3 @@ { "copyright": "Serdar Öztürk" -} \ No newline at end of file +} diff --git a/users/sergeibelov.json b/users/sergeibelov.json index 2625d006..dd78e945 100644 --- a/users/sergeibelov.json +++ b/users/sergeibelov.json @@ -1,3 +1,3 @@ { "copyright": "Sergei Belov" -} \ No newline at end of file +} diff --git a/users/sergey.json b/users/sergey.json index 63f0a85f..57aa28e9 100644 --- a/users/sergey.json +++ b/users/sergey.json @@ -3,4 +3,4 @@ "url": "http://sergeylukin.com", "email": "contact@sergeylukin.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/serverside-boilerplate.json b/users/serverside-boilerplate.json index 92736ef5..115425c2 100644 --- a/users/serverside-boilerplate.json +++ b/users/serverside-boilerplate.json @@ -3,4 +3,4 @@ "theme": "default", "email": "support@icodeclarity.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/serversidetools.json b/users/serversidetools.json index 96e2dda3..04a27d99 100644 --- a/users/serversidetools.json +++ b/users/serversidetools.json @@ -3,4 +3,4 @@ "theme": "$2", "email": "$3", "format": "$4" -} \ No newline at end of file +} diff --git a/users/sesser.json b/users/sesser.json index 6ea02dfa..9be0bc5e 100644 --- a/users/sesser.json +++ b/users/sesser.json @@ -3,4 +3,4 @@ "url": "http://www.randys.org", "email": "sesser@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/sevagf.json b/users/sevagf.json index 6ef65a1f..a5f49f8a 100644 --- a/users/sevagf.json +++ b/users/sevagf.json @@ -1,3 +1,3 @@ { "copyright": "Sevag Frankian" -} \ No newline at end of file +} diff --git a/users/sevos.json b/users/sevos.json index 0ab28991..da0a7d8e 100644 --- a/users/sevos.json +++ b/users/sevos.json @@ -1,3 +1,3 @@ { "copyright": "Artur Roszczyk" -} \ No newline at end of file +} diff --git a/users/sexyfishhorse.json b/users/sexyfishhorse.json index 2379aa03..d74bd6d8 100644 --- a/users/sexyfishhorse.json +++ b/users/sexyfishhorse.json @@ -3,4 +3,4 @@ "url": "http://sexy.fish.horse", "format": "html", "theme": "material-red" -} \ No newline at end of file +} diff --git a/users/seyedi.json b/users/seyedi.json index aa3f6e27..9ca3dcb7 100644 --- a/users/seyedi.json +++ b/users/seyedi.json @@ -2,4 +2,4 @@ "copyright": "Seyed Mojtaba Seyedi, http://seyedi.github.com", "url": "http://seyedi.github.com", "theme": "default" -} \ No newline at end of file +} diff --git a/users/sg.json b/users/sg.json index a568fb80..38aa2d1c 100644 --- a/users/sg.json +++ b/users/sg.json @@ -1,3 +1,3 @@ { "copyright": "Sasha Gerrand" -} \ No newline at end of file +} diff --git a/users/sgehlich.json b/users/sgehlich.json index 70448b2b..23815a61 100644 --- a/users/sgehlich.json +++ b/users/sgehlich.json @@ -3,4 +3,4 @@ "url": "http://filshmedia.net", "email": "sascha@gehlich.us", "format": "html" -} \ No newline at end of file +} diff --git a/users/sgerrand.json b/users/sgerrand.json index a568fb80..38aa2d1c 100644 --- a/users/sgerrand.json +++ b/users/sgerrand.json @@ -1,3 +1,3 @@ { "copyright": "Sasha Gerrand" -} \ No newline at end of file +} diff --git a/users/sguidetti.json b/users/sguidetti.json index cee9e970..5c781609 100644 --- a/users/sguidetti.json +++ b/users/sguidetti.json @@ -3,4 +3,4 @@ "url": "http://www.ultramegasoft.com", "email": "sguidetti@ultramegasoft.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/sha2nk.json b/users/sha2nk.json index b2efba7b..c1511211 100644 --- a/users/sha2nk.json +++ b/users/sha2nk.json @@ -3,4 +3,4 @@ "url": "http://loudcurtain.com", "email": "sha2nk@hailhumanity.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/shad0wcore.json b/users/shad0wcore.json index 257aded9..e97f73bd 100644 --- a/users/shad0wcore.json +++ b/users/shad0wcore.json @@ -5,4 +5,4 @@ "email": "shad0wcoretv@gmail.com", "gravatar": true, "theme": "material-cyan" -} \ No newline at end of file +} diff --git a/users/shagen.json b/users/shagen.json index 452f94a9..c51f5306 100644 --- a/users/shagen.json +++ b/users/shagen.json @@ -5,4 +5,4 @@ "format": "html", "theme": "material-gray", "gravatar": true -} \ No newline at end of file +} diff --git a/users/shagun.json b/users/shagun.json index 15aa3223..2315effc 100644 --- a/users/shagun.json +++ b/users/shagun.json @@ -4,4 +4,4 @@ "email": "sshagunsodhani@gmail.com", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/shaieilat.json b/users/shaieilat.json index d322a7cd..38ff33a8 100644 --- a/users/shaieilat.json +++ b/users/shaieilat.json @@ -1,3 +1,3 @@ { "copyright": "Shai Eilat" -} \ No newline at end of file +} diff --git a/users/shaun.json b/users/shaun.json index a9cd5f2a..764589ea 100644 --- a/users/shaun.json +++ b/users/shaun.json @@ -1,4 +1,4 @@ { "copyright": "Shaun Hare, http://shaunhare.co.uk", "url": "http://shaunhare.co.uk" -} \ No newline at end of file +} diff --git a/users/shawnsi.json b/users/shawnsi.json index 08bf5863..7fb50c0f 100644 --- a/users/shawnsi.json +++ b/users/shawnsi.json @@ -3,4 +3,4 @@ "url": "https://github.com/shawnsi", "email": "shawn@siefk.as", "format": "txt" -} \ No newline at end of file +} diff --git a/users/sheedy.json b/users/sheedy.json index ba618fb8..723a0cdf 100644 --- a/users/sheedy.json +++ b/users/sheedy.json @@ -1,4 +1,4 @@ { "copyright": "Michael Sheedy, http://michaelsheedy.com", "url": "http://michaelsheedy.com" -} \ No newline at end of file +} diff --git a/users/sheknows.json b/users/sheknows.json index a007020d..9bb77aeb 100644 --- a/users/sheknows.json +++ b/users/sheknows.json @@ -1,4 +1,4 @@ { "copyright": "SheKnows, LLC", "url": "http://www.sheknows.com" -} \ No newline at end of file +} diff --git a/users/sheldonrupp.json b/users/sheldonrupp.json index b04d8155..1798332f 100644 --- a/users/sheldonrupp.json +++ b/users/sheldonrupp.json @@ -3,4 +3,4 @@ "url": "https://shel.io", "email": "me@shel.io", "format": "txt" -} \ No newline at end of file +} diff --git a/users/shepjeng.json b/users/shepjeng.json index c51dc3c3..3ec8d009 100644 --- a/users/shepjeng.json +++ b/users/shepjeng.json @@ -3,4 +3,4 @@ "url": "http://shepjeng.net", "email": "shepjeng@gmail.com", "format": "text" -} \ No newline at end of file +} diff --git a/users/shibu.json b/users/shibu.json index ccc6d075..5dd8bfc1 100644 --- a/users/shibu.json +++ b/users/shibu.json @@ -1,4 +1,4 @@ { "copyright": "Yoshiki Shibukawa", "url": "http://www.shibu.jp" -} \ No newline at end of file +} diff --git a/users/shidhincr.json b/users/shidhincr.json index 1b0e291c..5dd7e484 100644 --- a/users/shidhincr.json +++ b/users/shidhincr.json @@ -1,3 +1,3 @@ { "copyright": "Shidhin C R" -} \ No newline at end of file +} diff --git a/users/shiftkey.json b/users/shiftkey.json index 14e63916..50a0fc86 100644 --- a/users/shiftkey.json +++ b/users/shiftkey.json @@ -3,4 +3,4 @@ "url": "http://brendanforster.com", "email": "me@brendanforster.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/shimizukawa.json b/users/shimizukawa.json index 3dfe00ca..a0112670 100644 --- a/users/shimizukawa.json +++ b/users/shimizukawa.json @@ -1,3 +1,3 @@ { "copyright": "Takayuki Shimizukawa" -} \ No newline at end of file +} diff --git a/users/shionryuu.json b/users/shionryuu.json index d546c936..389fcb90 100644 --- a/users/shionryuu.json +++ b/users/shionryuu.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/shirkey.json b/users/shirkey.json index f406e2e4..fe1c3c20 100644 --- a/users/shirkey.json +++ b/users/shirkey.json @@ -3,4 +3,4 @@ "url": "http://dev.shirkey.me", "email": "dev@shirkey.me", "gravatar": true -} \ No newline at end of file +} diff --git a/users/shivapoudel.json b/users/shivapoudel.json index 3889f7d0..33b87d94 100644 --- a/users/shivapoudel.json +++ b/users/shivapoudel.json @@ -2,4 +2,4 @@ "copyright": "Shiva Poudel", "url": "https://github.com/shivapoudel", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/shldrs.json b/users/shldrs.json index a1a877a8..4c2acc19 100644 --- a/users/shldrs.json +++ b/users/shldrs.json @@ -3,4 +3,4 @@ "url": "http://shldrs.com", "email": "james@atomless.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/shps.json b/users/shps.json index ada5363c..1d6fba62 100644 --- a/users/shps.json +++ b/users/shps.json @@ -2,4 +2,4 @@ "copyright": "Sergii Shpak", "email": "sergii.shpak.web@gmail.com", "theme": "afterdark" -} \ No newline at end of file +} diff --git a/users/shreyas.json b/users/shreyas.json index c5c09442..3dd116a4 100644 --- a/users/shreyas.json +++ b/users/shreyas.json @@ -3,4 +3,4 @@ "url": "https://shreyasminocha.me", "email": "shreyasminocha@protonmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/shumate.json b/users/shumate.json index 5bd49cb7..2977638a 100644 --- a/users/shumate.json +++ b/users/shumate.json @@ -3,4 +3,4 @@ "url": "http://brianshumate.com", "email": "brian@brianshumate.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/shy.json b/users/shy.json index 164d3fa3..2cb2810d 100644 --- a/users/shy.json +++ b/users/shy.json @@ -1,4 +1,4 @@ { "copyright": "Sung Hoon Yang", "email": "sunghoonyang90@gmail.com" -} \ No newline at end of file +} diff --git a/users/siamak.json b/users/siamak.json index ba524cd2..ad392f76 100644 --- a/users/siamak.json +++ b/users/siamak.json @@ -2,4 +2,4 @@ "copyright": "Siamak Mokhtari", "email": "s.mokhtari75@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/sid.json b/users/sid.json index 7f0a6fe9..651f912c 100644 --- a/users/sid.json +++ b/users/sid.json @@ -4,4 +4,4 @@ "email": "sid@sidisinsane.com", "gravatar": false, "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/sidak.json b/users/sidak.json index 78191804..e48a51f1 100644 --- a/users/sidak.json +++ b/users/sidak.json @@ -1,3 +1,3 @@ { "copyright": "Sidak Pal Singh" -} \ No newline at end of file +} diff --git a/users/sienikasvusto.json b/users/sienikasvusto.json index 4a492762..b29e7953 100644 --- a/users/sienikasvusto.json +++ b/users/sienikasvusto.json @@ -3,4 +3,4 @@ "Url": "http://emblica.org", "email": "sienikasvusto@pistoke.org", "format": "txt" -} \ No newline at end of file +} diff --git a/users/sigfried.json b/users/sigfried.json index 384e13e9..f3480a21 100644 --- a/users/sigfried.json +++ b/users/sigfried.json @@ -1,3 +1,3 @@ { "copyright": "Sigfried Gold" -} \ No newline at end of file +} diff --git a/users/signicode.json b/users/signicode.json index a3437ac1..1b4811f8 100644 --- a/users/signicode.json +++ b/users/signicode.json @@ -3,4 +3,4 @@ "url": "http://www.signicode.com/", "email": "budleigh.salterton@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/sija.json b/users/sija.json index 9f7e36cd..203cc25a 100644 --- a/users/sija.json +++ b/users/sija.json @@ -3,4 +3,4 @@ "url": "https://sija.pl", "email": "sija@sija.pl", "gravatar": true -} \ No newline at end of file +} diff --git a/users/sil.json b/users/sil.json index e36f3815..5d4257be 100644 --- a/users/sil.json +++ b/users/sil.json @@ -1,3 +1,3 @@ { "copyright": "SIL International" -} \ No newline at end of file +} diff --git a/users/sillysina.json b/users/sillysina.json index 6263d183..c5703321 100644 --- a/users/sillysina.json +++ b/users/sillysina.json @@ -5,4 +5,4 @@ "format": "html", "theme": "default-dark", "gravatar": "true" -} \ No newline at end of file +} diff --git a/users/silvers.json b/users/silvers.json index 345061fe..fa83072f 100644 --- a/users/silvers.json +++ b/users/silvers.json @@ -3,4 +3,4 @@ "url": "https://github.com/silvers", "email": "ofsilvers+github@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/sim.json b/users/sim.json index deec92ad..221034ef 100644 --- a/users/sim.json +++ b/users/sim.json @@ -2,4 +2,4 @@ "copyright": "Sim Inc.", "format": "html", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/simbo.json b/users/simbo.json index 4df57fb6..806a8fdd 100644 --- a/users/simbo.json +++ b/users/simbo.json @@ -3,4 +3,4 @@ "url": "http://simonlepel.de", "email": "hallo@simonlepel.de", "gravatar": true -} \ No newline at end of file +} diff --git a/users/simgeker.json b/users/simgeker.json index 0aca9679..18a6d83e 100644 --- a/users/simgeker.json +++ b/users/simgeker.json @@ -4,4 +4,4 @@ "email": "me@anuragsimgeker.com", "format": "txt", "gravatar": true -} \ No newline at end of file +} diff --git a/users/simon.json b/users/simon.json index 22f9b14b..5bf1bd14 100644 --- a/users/simon.json +++ b/users/simon.json @@ -1,3 +1,3 @@ { "copyright": "Simon MacDonald, http://simonmacdonald.com" -} \ No newline at end of file +} diff --git a/users/simonkberg.json b/users/simonkberg.json index 63ed3610..d07004fc 100644 --- a/users/simonkberg.json +++ b/users/simonkberg.json @@ -4,4 +4,4 @@ "email": "simon.kjellberg@gmail.com", "theme": "default", "gravatar": true -} \ No newline at end of file +} diff --git a/users/simonwalsh.json b/users/simonwalsh.json index 4161b163..ebb8b050 100644 --- a/users/simonwalsh.json +++ b/users/simonwalsh.json @@ -3,4 +3,4 @@ "url": "http://www.walsh.si", "email": "simon@walsh.si", "format": "txt" -} \ No newline at end of file +} diff --git a/users/singh.json b/users/singh.json index a4c836bf..eb3c1f76 100644 --- a/users/singh.json +++ b/users/singh.json @@ -1,4 +1,4 @@ { "copyright": "Hardeep Singh", "email": "h@rdeep.ca" -} \ No newline at end of file +} diff --git a/users/singingwolfboy.json b/users/singingwolfboy.json index 8a500a17..8710386b 100644 --- a/users/singingwolfboy.json +++ b/users/singingwolfboy.json @@ -2,4 +2,4 @@ "copyright": "David Baumgold", "url": "http://davidbaumgold.com", "email": "david@davidbaumgold.com" -} \ No newline at end of file +} diff --git a/users/siteware.json b/users/siteware.json index 19a75b51..27f776a3 100644 --- a/users/siteware.json +++ b/users/siteware.json @@ -2,4 +2,4 @@ "copyright": "Edwin Mol", "email": "edwin@siteware.be", "gravatar": true -} \ No newline at end of file +} diff --git a/users/siutsin.json b/users/siutsin.json index 55b7e0a8..ebc4a6f7 100644 --- a/users/siutsin.json +++ b/users/siutsin.json @@ -5,4 +5,4 @@ "theme": "double-windsor", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/sivasankarnc.json b/users/sivasankarnc.json index 4f8eaa5c..757ea736 100644 --- a/users/sivasankarnc.json +++ b/users/sivasankarnc.json @@ -5,4 +5,4 @@ "email": "sivasankarnc@gmail.com", "gravatar": true, "theme": "default" -} \ No newline at end of file +} diff --git a/users/siwatpru.json b/users/siwatpru.json index fab6247f..5aaccde8 100644 --- a/users/siwatpru.json +++ b/users/siwatpru.json @@ -3,4 +3,4 @@ "email": "siwat.pru@outlook.com", "gravatar": true, "theme": "material-deep-orange" -} \ No newline at end of file +} diff --git a/users/sjs.json b/users/sjs.json index 5983fe58..ff825145 100644 --- a/users/sjs.json +++ b/users/sjs.json @@ -2,4 +2,4 @@ "copyright": "Sami Samhuri, http://samhuri.net", "url": "http://samhuri.net", "email": "sami@samhuri.net" -} \ No newline at end of file +} diff --git a/users/sjwilliams.json b/users/sjwilliams.json index 85f00c2c..91954755 100644 --- a/users/sjwilliams.json +++ b/users/sjwilliams.json @@ -2,4 +2,4 @@ "copyright": "Josh Williams", "url": "http://joshwilliams.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/skeletonframework.json b/users/skeletonframework.json index 8b4c03b0..8c002f83 100644 --- a/users/skeletonframework.json +++ b/users/skeletonframework.json @@ -1,3 +1,3 @@ { "copyright": "Skeleton Framework" -} \ No newline at end of file +} diff --git a/users/sketchmore.json b/users/sketchmore.json index 8e94c6f1..ba257a1f 100644 --- a/users/sketchmore.json +++ b/users/sketchmore.json @@ -2,4 +2,4 @@ "copyright": "Sketchmore", "url": "http://sketchmore.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/skidding.json b/users/skidding.json index 8ce0d8ff..382f5d0f 100644 --- a/users/skidding.json +++ b/users/skidding.json @@ -1,4 +1,4 @@ { "copyright": "@skidding — Ovidiu Cherecheș", "url": "http://ovidiu.ch" -} \ No newline at end of file +} diff --git a/users/skinofstars.json b/users/skinofstars.json index 51fc82b3..a774fedb 100644 --- a/users/skinofstars.json +++ b/users/skinofstars.json @@ -3,4 +3,4 @@ "url": "http://skinofstars.com", "email": "kevin@skinofstars.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/skip.json b/users/skip.json index 17927460..f40c8da4 100644 --- a/users/skip.json +++ b/users/skip.json @@ -2,4 +2,4 @@ "copyright": "Matthew 'Skip' Rotter, http://codechops.com", "url": "http://codechops.com", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/skwasha.json b/users/skwasha.json index 85f13c0f..b0333a1d 100644 --- a/users/skwasha.json +++ b/users/skwasha.json @@ -1,3 +1,3 @@ { "copyright": "Sascha Linn" -} \ No newline at end of file +} diff --git a/users/skymaiden.json b/users/skymaiden.json index c3b25fd6..b68b8275 100644 --- a/users/skymaiden.json +++ b/users/skymaiden.json @@ -1,4 +1,4 @@ { "copyright": "Hinerangi Courtenay", "url": "http://skymaiden.com" -} \ No newline at end of file +} diff --git a/users/slackit.json b/users/slackit.json index c5b62c30..1deb8c07 100644 --- a/users/slackit.json +++ b/users/slackit.json @@ -1,4 +1,4 @@ { "copyright": "OrgaChem", "url": "https://github.com/OrgaChem/slackit" -} \ No newline at end of file +} diff --git a/users/slashsbin.json b/users/slashsbin.json index 2e37ead2..0a0c4bd6 100644 --- a/users/slashsbin.json +++ b/users/slashsbin.json @@ -4,4 +4,4 @@ "email": "shokri.md@gmail.com", "gravatar": true, "theme": "material-blue" -} \ No newline at end of file +} diff --git a/users/sliceofcode.json b/users/sliceofcode.json index b9edaabd..45d97260 100644 --- a/users/sliceofcode.json +++ b/users/sliceofcode.json @@ -1,3 +1,3 @@ { "copyright": "Slice of Code" -} \ No newline at end of file +} diff --git a/users/slikts.json b/users/slikts.json index cf709cb5..b4fa5131 100644 --- a/users/slikts.json +++ b/users/slikts.json @@ -3,4 +3,4 @@ "url": "http://untu.ms", "email": "dabas@untu.ms", "format": "txt" -} \ No newline at end of file +} diff --git a/users/sloria.json b/users/sloria.json index ce87f53e..49ae44af 100644 --- a/users/sloria.json +++ b/users/sloria.json @@ -1,3 +1,3 @@ { "copyright": "Steven Loria" -} \ No newline at end of file +} diff --git a/users/sm.json b/users/sm.json index 594412a2..4eadf382 100644 --- a/users/sm.json +++ b/users/sm.json @@ -3,4 +3,4 @@ "url": "http://shashankmehta.in", "email": "me@shashankmehta.in", "format": "txt" -} \ No newline at end of file +} diff --git a/users/smg.json b/users/smg.json index a568fb80..38aa2d1c 100644 --- a/users/smg.json +++ b/users/smg.json @@ -1,3 +1,3 @@ { "copyright": "Sasha Gerrand" -} \ No newline at end of file +} diff --git a/users/smirking-ninja.json b/users/smirking-ninja.json index 63dfbf24..b253b0ec 100644 --- a/users/smirking-ninja.json +++ b/users/smirking-ninja.json @@ -3,4 +3,4 @@ "url": "https://smirking.ninja", "email": "connor@smirking.ninja", "format": "txt" -} \ No newline at end of file +} diff --git a/users/smly.json b/users/smly.json index 78031cce..184cd6ef 100644 --- a/users/smly.json +++ b/users/smly.json @@ -1,3 +1,3 @@ { "copyright": "Kohei Ozaki" -} \ No newline at end of file +} diff --git a/users/smt.json b/users/smt.json index f56ca54a..83ec4270 100644 --- a/users/smt.json +++ b/users/smt.json @@ -2,4 +2,4 @@ "copyright": "Stephen Tudor, http://www.stephentudor.com", "url": "http://www.stephentudor.com", "theme": "hipster-gray" -} \ No newline at end of file +} diff --git a/users/sndnvaps.json b/users/sndnvaps.json index 72c53000..ac488ead 100644 --- a/users/sndnvaps.json +++ b/users/sndnvaps.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "orange" -} \ No newline at end of file +} diff --git a/users/snhack.json b/users/snhack.json index 1224c272..6997d101 100644 --- a/users/snhack.json +++ b/users/snhack.json @@ -3,4 +3,4 @@ "url": "swindon.hackspace.org.uk", "email": "snhackspace@gmail.com", "gravatar": "true" -} \ No newline at end of file +} diff --git a/users/snhackspace.json b/users/snhackspace.json index 175c4ab1..c13a9e17 100644 --- a/users/snhackspace.json +++ b/users/snhackspace.json @@ -1,4 +1,4 @@ { "copyright": "Swindon Hackspace", "url": "http://swindon.hackspace.org.uk" -} \ No newline at end of file +} diff --git a/users/snig.json b/users/snig.json index 37af4833..4ae12c59 100644 --- a/users/snig.json +++ b/users/snig.json @@ -3,4 +3,4 @@ "url": "http://snig.ga", "email": "snigavig@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/snwflake.json b/users/snwflake.json index 01596bb5..29d8dc18 100644 --- a/users/snwflake.json +++ b/users/snwflake.json @@ -3,4 +3,4 @@ "url": "https://me.snwflake.ml", "email": "me@snwflake.ml", "theme": "black-beauty" -} \ No newline at end of file +} diff --git a/users/softcreatr.json b/users/softcreatr.json index 875e9bca..588491e5 100644 --- a/users/softcreatr.json +++ b/users/softcreatr.json @@ -4,4 +4,4 @@ "email": "sascha@softcreatr.de", "theme": "material-blue", "gravatar": true -} \ No newline at end of file +} diff --git a/users/softnayr.json b/users/softnayr.json index 05e61d17..e686e6b6 100644 --- a/users/softnayr.json +++ b/users/softnayr.json @@ -3,4 +3,4 @@ "email": "b.softnayr@gmail.com", "theme": "dusk", "gravatar": true -} \ No newline at end of file +} diff --git a/users/softwave.json b/users/softwave.json index e93b00e6..15a405ed 100644 --- a/users/softwave.json +++ b/users/softwave.json @@ -3,4 +3,4 @@ "url": "http://softwavestudios.com/", "theme": "default", "gravatar": true -} \ No newline at end of file +} diff --git a/users/sohalt.json b/users/sohalt.json index c8c8da91..f25741be 100644 --- a/users/sohalt.json +++ b/users/sohalt.json @@ -3,4 +3,4 @@ "url": "http://www.sohalt.net", "email": "sohalt@sohalt.net", "format": "txt" -} \ No newline at end of file +} diff --git a/users/solid-constructs.json b/users/solid-constructs.json index 1b4b609b..546ccb9d 100644 --- a/users/solid-constructs.json +++ b/users/solid-constructs.json @@ -1,3 +1,3 @@ { "copyright": "Solid Constructs, LLC" -} \ No newline at end of file +} diff --git a/users/solidworx.json b/users/solidworx.json index 7e2112f0..4fc0e5ba 100644 --- a/users/solidworx.json +++ b/users/solidworx.json @@ -2,4 +2,4 @@ "copyright": "SolidWorx", "url": "https://solidworx.co", "email": "open-source@solidworx.co" -} \ No newline at end of file +} diff --git a/users/somya.json b/users/somya.json index 45c40e9b..14ee1512 100644 --- a/users/somya.json +++ b/users/somya.json @@ -1,3 +1,3 @@ { "copyright": "Somya Anand, somyaanand214@gmail.com" -} \ No newline at end of file +} diff --git a/users/sonalraj.json b/users/sonalraj.json index 25c446c0..049d605d 100644 --- a/users/sonalraj.json +++ b/users/sonalraj.json @@ -3,4 +3,4 @@ "url": "http://sonalraj.com", "email": "sonal.nitjsr@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/songdu.json b/users/songdu.json index 256cdaa4..ab403a6d 100644 --- a/users/songdu.json +++ b/users/songdu.json @@ -3,4 +3,4 @@ "url": "http://rollingcode.org", "email": "freewizard@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/songmu.json b/users/songmu.json index e7247e6e..0f0b11f3 100644 --- a/users/songmu.json +++ b/users/songmu.json @@ -1,3 +1,3 @@ { "copyright": "Masayuki Matsuki" -} \ No newline at end of file +} diff --git a/users/sonnywebdesign.json b/users/sonnywebdesign.json index 629cae06..f90a6f9d 100644 --- a/users/sonnywebdesign.json +++ b/users/sonnywebdesign.json @@ -2,4 +2,4 @@ "copyright": "SonnyWebDesign", "url": "https://github.com/SonnyWebDesign", "theme": "black-beauty" -} \ No newline at end of file +} diff --git a/users/soong.json b/users/soong.json index a245c9b8..0ac89ac5 100644 --- a/users/soong.json +++ b/users/soong.json @@ -3,4 +3,4 @@ "url": "http://volfox.cn", "email": "nonkr@hotmail.com", "theme": "default" -} \ No newline at end of file +} diff --git a/users/sorairo.json b/users/sorairo.json index 083d6e87..536d6852 100644 --- a/users/sorairo.json +++ b/users/sorairo.json @@ -2,4 +2,4 @@ "copyright": "Sora Iro Fansubs, https://sorairo.fansub.site", "url": "https://sorairo.fansub.site", "theme": "default-dark" -} \ No newline at end of file +} diff --git a/users/soralv9.json b/users/soralv9.json index e34a3ac7..cec64cc0 100644 --- a/users/soralv9.json +++ b/users/soralv9.json @@ -2,4 +2,4 @@ "copyright": "Sora@Lv9, http://sora.lv9.org", "url": "http://sora.lv9.org", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/soren121.json b/users/soren121.json index 659cede8..bce1492f 100644 --- a/users/soren121.json +++ b/users/soren121.json @@ -1,4 +1,4 @@ { "copyright": "Nicholas Narsing", "email": "soren121@sorenstudios.com" -} \ No newline at end of file +} diff --git a/users/sotayamashita.json b/users/sotayamashita.json index d2f629c4..c0e326c1 100644 --- a/users/sotayamashita.json +++ b/users/sotayamashita.json @@ -3,4 +3,4 @@ "url": "https://github.com/sotayamshita", "email": "sota.yamashita@gmail.com", "gravatar": false -} \ No newline at end of file +} diff --git a/users/soulis.json b/users/soulis.json index 6dc6abf8..ced747d7 100644 --- a/users/soulis.json +++ b/users/soulis.json @@ -5,4 +5,4 @@ "email": "t.selalmasidis@gmail.com", "gravatar": true, "theme": "opensans" -} \ No newline at end of file +} diff --git a/users/souri.json b/users/souri.json index 75ebd0cc..5228085a 100644 --- a/users/souri.json +++ b/users/souri.json @@ -2,4 +2,4 @@ "copyright": "Souri Guha", "url": "http://souriguha.wordpress.com", "email": "souriguha@gmail.com" -} \ No newline at end of file +} diff --git a/users/specimen.json b/users/specimen.json index 27f93990..59b06834 100644 --- a/users/specimen.json +++ b/users/specimen.json @@ -1,3 +1,3 @@ { "copyright": "Specimen" -} \ No newline at end of file +} diff --git a/users/sphw.json b/users/sphw.json index 24bc7597..458ee5fe 100644 --- a/users/sphw.json +++ b/users/sphw.json @@ -1,3 +1,3 @@ { "copyright": "Sascha Wise" -} \ No newline at end of file +} diff --git a/users/spier.json b/users/spier.json index 34e294b1..20b56e8d 100644 --- a/users/spier.json +++ b/users/spier.json @@ -1,4 +1,4 @@ { "copyright": "Sebastian Spier, http://spier.hu", "url": "http://spier.hu" -} \ No newline at end of file +} diff --git a/users/spirited.json b/users/spirited.json index 6965d0fe..aed0051d 100644 --- a/users/spirited.json +++ b/users/spirited.json @@ -1,3 +1,3 @@ { "copyright": "Spirited Media Inc." -} \ No newline at end of file +} diff --git a/users/spockz.json b/users/spockz.json index c295e22f..7d0cdd67 100644 --- a/users/spockz.json +++ b/users/spockz.json @@ -1,3 +1,3 @@ { "copyright": "Alessandro Vermeulen" -} \ No newline at end of file +} diff --git a/users/spooky.json b/users/spooky.json index f1a4652c..5039dc56 100644 --- a/users/spooky.json +++ b/users/spooky.json @@ -1,3 +1,3 @@ { "copyright": "Rylee Harrison" -} \ No newline at end of file +} diff --git a/users/sputnik27.json b/users/sputnik27.json index 8914b807..cf64cd23 100644 --- a/users/sputnik27.json +++ b/users/sputnik27.json @@ -3,4 +3,4 @@ "url": "http://sputnik27.github.io", "email": "florian-wilhelm@onlinehome.de", "format": "txt" -} \ No newline at end of file +} diff --git a/users/sqneffect.json b/users/sqneffect.json index 2427a580..16b54675 100644 --- a/users/sqneffect.json +++ b/users/sqneffect.json @@ -1,3 +1,3 @@ { "copyright": "Robert Karbarz" -} \ No newline at end of file +} diff --git a/users/src-run.json b/users/src-run.json index 8050c8b1..07440795 100644 --- a/users/src-run.json +++ b/users/src-run.json @@ -4,4 +4,4 @@ "email": "src@src.run", "theme": "material-pink", "gravatar": false -} \ No newline at end of file +} diff --git a/users/srezic.json b/users/srezic.json index 9ac628af..97c99d1f 100644 --- a/users/srezic.json +++ b/users/srezic.json @@ -1,3 +1,3 @@ { "copyright": "Slaven Rezic" -} \ No newline at end of file +} diff --git a/users/srivathsa.json b/users/srivathsa.json index 72168850..3718ee99 100644 --- a/users/srivathsa.json +++ b/users/srivathsa.json @@ -3,4 +3,4 @@ "email": "srivathsaeric@gmail.com", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/srmor.json b/users/srmor.json index ea89567f..d732cc60 100644 --- a/users/srmor.json +++ b/users/srmor.json @@ -4,4 +4,4 @@ "gravatar": true, "format": "html", "theme": "afterdark" -} \ No newline at end of file +} diff --git a/users/ss.json b/users/ss.json index 1ea5d62a..aa80316f 100644 --- a/users/ss.json +++ b/users/ss.json @@ -1,3 +1,3 @@ { "copyright": "Sidney San Martín" -} \ No newline at end of file +} diff --git a/users/ssiefkas.json b/users/ssiefkas.json index 08bf5863..7fb50c0f 100644 --- a/users/ssiefkas.json +++ b/users/ssiefkas.json @@ -3,4 +3,4 @@ "url": "https://github.com/shawnsi", "email": "shawn@siefk.as", "format": "txt" -} \ No newline at end of file +} diff --git a/users/stacey.json b/users/stacey.json index cf70770d..8e2e3e39 100644 --- a/users/stacey.json +++ b/users/stacey.json @@ -1,4 +1,4 @@ { "copyright": "Stacey Moore", "url": "http://www.staceymoore.com" -} \ No newline at end of file +} diff --git a/users/stack72.json b/users/stack72.json index 1dd585ab..dfe46f33 100644 --- a/users/stack72.json +++ b/users/stack72.json @@ -1,3 +1,3 @@ { "copyright": "Paul Stack" -} \ No newline at end of file +} diff --git a/users/stakats.json b/users/stakats.json index 06658926..5180fbaf 100644 --- a/users/stakats.json +++ b/users/stakats.json @@ -2,4 +2,4 @@ "copyright": "Sean Takats", "email": "sean@takats.org", "format": "html" -} \ No newline at end of file +} diff --git a/users/stanzheng.json b/users/stanzheng.json index 3d0498f3..19323a4b 100644 --- a/users/stanzheng.json +++ b/users/stanzheng.json @@ -1,3 +1,3 @@ { "copyright": "Stanley Zheng" -} \ No newline at end of file +} diff --git a/users/stefan.json b/users/stefan.json index 7d1d00bd..fdcf49e5 100644 --- a/users/stefan.json +++ b/users/stefan.json @@ -4,4 +4,4 @@ "email": "stefan.bruvik@gmail.com", "theme": "eula-modern", "gravatar": true -} \ No newline at end of file +} diff --git a/users/stephdatu.json b/users/stephdatu.json index 0eb81ea3..945221c6 100644 --- a/users/stephdatu.json +++ b/users/stephdatu.json @@ -3,4 +3,4 @@ "url": "http://stephdatu.com", "email": "stephdatu@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/stephendavis89.json b/users/stephendavis89.json index af12a606..440df901 100644 --- a/users/stephendavis89.json +++ b/users/stephendavis89.json @@ -2,4 +2,4 @@ "copyright": "Stephen Davis", "url": "http://stephendavis.im/", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/stephenhay.json b/users/stephenhay.json index c6ce6024..b3a15c99 100644 --- a/users/stephenhay.json +++ b/users/stephenhay.json @@ -1,3 +1,3 @@ { "copyright": "Stephen Hay" -} \ No newline at end of file +} diff --git a/users/steve.json b/users/steve.json index 2cebc238..4fe7ca0f 100644 --- a/users/steve.json +++ b/users/steve.json @@ -4,4 +4,4 @@ "email": "steve.g.banton@gmail.com", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/stevegraham.json b/users/stevegraham.json index 684e9925..e013fa02 100644 --- a/users/stevegraham.json +++ b/users/stevegraham.json @@ -1,3 +1,3 @@ { "copyright": "Stevie Graham" -} \ No newline at end of file +} diff --git a/users/stevegrunwell.json b/users/stevegrunwell.json index 72285f65..1e38085a 100644 --- a/users/stevegrunwell.json +++ b/users/stevegrunwell.json @@ -3,4 +3,4 @@ "url": "https://stevegrunwell.com", "email": "steve@stevegrunwell.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/stever.json b/users/stever.json index 48f927b4..c04c6579 100644 --- a/users/stever.json +++ b/users/stever.json @@ -2,4 +2,4 @@ "copyright": "Steven Robertson", "url": "http://stever.org.uk", "email": "steverobertson@gmail.com" -} \ No newline at end of file +} diff --git a/users/stewart.json b/users/stewart.json index 069c9df2..bbf2da89 100644 --- a/users/stewart.json +++ b/users/stewart.json @@ -1,3 +1,3 @@ { "copyright": "Andrew Stewart" -} \ No newline at end of file +} diff --git a/users/stoshiya.json b/users/stoshiya.json index abc22c94..ff9ffd57 100644 --- a/users/stoshiya.json +++ b/users/stoshiya.json @@ -1,4 +1,4 @@ { "copyright": "Toshiya SAITOH", "email": "stoshiya@gmail.com" -} \ No newline at end of file +} diff --git a/users/strainno.json b/users/strainno.json index d89bd178..f607e47b 100644 --- a/users/strainno.json +++ b/users/strainno.json @@ -3,4 +3,4 @@ "url": "https://gitlab.com/strainno", "email": "pratim.chaudhuri@barclays.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/straub.json b/users/straub.json index cc1c2482..c6e11f15 100644 --- a/users/straub.json +++ b/users/straub.json @@ -3,4 +3,4 @@ "url": "http://www.davidstraub.com", "email": "himself@davidstraub.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/strawson.json b/users/strawson.json index 1b6b1861..5e5443cb 100644 --- a/users/strawson.json +++ b/users/strawson.json @@ -1,3 +1,3 @@ { "copyright": "Adam Strawson" -} \ No newline at end of file +} diff --git a/users/streethub.json b/users/streethub.json index 7bedc560..7860a80e 100644 --- a/users/streethub.json +++ b/users/streethub.json @@ -3,4 +3,4 @@ "url": "http://streethub.com", "email": "hello@streethub.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/struktur.json b/users/struktur.json index 587a4be2..88aea3da 100644 --- a/users/struktur.json +++ b/users/struktur.json @@ -3,4 +3,4 @@ "url": "https://bitbucket.org/larste/struktur", "email": "larste@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/stuart.json b/users/stuart.json index 8a9a6978..541460ac 100644 --- a/users/stuart.json +++ b/users/stuart.json @@ -1,3 +1,3 @@ { "copyright": "Stuart Richardson" -} \ No newline at end of file +} diff --git a/users/studer.json b/users/studer.json index d01e44af..236f0dc3 100644 --- a/users/studer.json +++ b/users/studer.json @@ -1,3 +1,3 @@ { "copyright": "Théophile Studer" -} \ No newline at end of file +} diff --git a/users/styleshare.json b/users/styleshare.json index cb319c0a..39b84ffd 100644 --- a/users/styleshare.json +++ b/users/styleshare.json @@ -2,4 +2,4 @@ "copyright": "StyleShare", "url": "https://stylesha.re/", "email": "dev@stylesha.re" -} \ No newline at end of file +} diff --git a/users/suaoc.json b/users/suaoc.json index 2f5efdf1..d3baa5e8 100644 --- a/users/suaoc.json +++ b/users/suaoc.json @@ -1,3 +1,3 @@ { "copyright": "Saleem Ullah" -} \ No newline at end of file +} diff --git a/users/sublee.json b/users/sublee.json index 9392899e..8f8f237c 100644 --- a/users/sublee.json +++ b/users/sublee.json @@ -3,4 +3,4 @@ "url": "http://subl.ee/", "email": "h@subl.ee", "theme": "plaintext" -} \ No newline at end of file +} diff --git a/users/subtub.json b/users/subtub.json index 48434c2c..c94bb625 100644 --- a/users/subtub.json +++ b/users/subtub.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": false, "theme": "plaintext" -} \ No newline at end of file +} diff --git a/users/succhiello.json b/users/succhiello.json index 9f9ada9c..78becdf9 100644 --- a/users/succhiello.json +++ b/users/succhiello.json @@ -1,4 +1,4 @@ { "copyright": "Satoshi Ebihara", "url": "https://github.com/succhiello" -} \ No newline at end of file +} diff --git a/users/sudhq.json b/users/sudhq.json index 2e9f0621..e54988f2 100644 --- a/users/sudhq.json +++ b/users/sudhq.json @@ -3,4 +3,4 @@ "url": "http://sudhq.com", "email": "hello@sudhq.com", "theme": "default" -} \ No newline at end of file +} diff --git a/users/sue445.json b/users/sue445.json index 9bc90f32..2a8990a4 100644 --- a/users/sue445.json +++ b/users/sue445.json @@ -1,3 +1,3 @@ { "copyright": "sue445" -} \ No newline at end of file +} diff --git a/users/sugarshin.json b/users/sugarshin.json index ce40bc7c..cd1b66a7 100644 --- a/users/sugarshin.json +++ b/users/sugarshin.json @@ -1,3 +1,3 @@ { "copyright": "sugarshin" -} \ No newline at end of file +} diff --git a/users/sun.json b/users/sun.json index 1a454ca4..312f61a4 100644 --- a/users/sun.json +++ b/users/sun.json @@ -1,4 +1,4 @@ { "copyright": "Daniel F. Kudwien", "url": "http://unleashedmind.com" -} \ No newline at end of file +} diff --git a/users/sungchi.json b/users/sungchi.json index 639be1e5..9dc81ed5 100644 --- a/users/sungchi.json +++ b/users/sungchi.json @@ -1,3 +1,3 @@ { "copyright": "sungchi, http://www.feed9.com/" -} \ No newline at end of file +} diff --git a/users/sunny.json b/users/sunny.json index e8d5d9f3..6c4307ac 100644 --- a/users/sunny.json +++ b/users/sunny.json @@ -2,4 +2,4 @@ "copyright": "Sunny Mittal", "email": "sunnymittal2003@gmail.com", "url": "http://www.sunnymittal.com" -} \ No newline at end of file +} diff --git a/users/sunoru.json b/users/sunoru.json index d0300c56..90b1e99a 100644 --- a/users/sunoru.json +++ b/users/sunoru.json @@ -4,4 +4,4 @@ "email": "s@sunoru.com", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/superbil.json b/users/superbil.json index 63371c7b..7c2f2695 100644 --- a/users/superbil.json +++ b/users/superbil.json @@ -1,3 +1,3 @@ { "copyright": "Kai-Yuan Cheng" -} \ No newline at end of file +} diff --git a/users/superdev.json b/users/superdev.json index 58c2bc75..f8a6ca35 100644 --- a/users/superdev.json +++ b/users/superdev.json @@ -1,3 +1,3 @@ { "copyright": "SuperDev" -} \ No newline at end of file +} diff --git a/users/surender.json b/users/surender.json index 3b637bac..1925fd9d 100644 --- a/users/surender.json +++ b/users/surender.json @@ -2,4 +2,4 @@ "copyright": "Surender Lohia, https://www.surender.net/", "url": "https://www.surender.net/", "email": "surender.lohia.e@gmail.com" -} \ No newline at end of file +} diff --git a/users/suriyaakudo.json b/users/suriyaakudo.json index 7e6d1ecf..30a83c15 100644 --- a/users/suriyaakudo.json +++ b/users/suriyaakudo.json @@ -5,4 +5,4 @@ "email": "isc.suriyaa@gmail.com", "gravatar": true, "theme": "default" -} \ No newline at end of file +} diff --git a/users/susheel.json b/users/susheel.json index 6956a42d..a86776e4 100644 --- a/users/susheel.json +++ b/users/susheel.json @@ -1,3 +1,3 @@ { "copyright": "Susheel Varma" -} \ No newline at end of file +} diff --git a/users/swarnava.json b/users/swarnava.json index 19b57b60..f6393d60 100644 --- a/users/swarnava.json +++ b/users/swarnava.json @@ -5,4 +5,4 @@ "email": "swarnavabhattacharyawork@gmail.com", "gravatar": true, "theme": "material-teal" -} \ No newline at end of file +} diff --git a/users/swarnavabhattacharya.json b/users/swarnavabhattacharya.json index b5d557f4..aaa54151 100644 --- a/users/swarnavabhattacharya.json +++ b/users/swarnavabhattacharya.json @@ -5,4 +5,4 @@ "email": "swarnavabhattacharyawork@gmail.com", "gravatar": true, "theme": "dusk" -} \ No newline at end of file +} diff --git a/users/swinton.json b/users/swinton.json index 4c1dfd13..b607a681 100644 --- a/users/swinton.json +++ b/users/swinton.json @@ -1,3 +1,3 @@ { "copyright": "Steve Winton" -} \ No newline at end of file +} diff --git a/users/symphonycms.json b/users/symphonycms.json index 8f02d6d9..0b473e9f 100644 --- a/users/symphonycms.json +++ b/users/symphonycms.json @@ -3,4 +3,4 @@ "url": "https://www.getsymphony.com", "theme": "flesch", "gravatar": true -} \ No newline at end of file +} diff --git a/users/synack.json b/users/synack.json index ef6bab4c..b0cff1f4 100644 --- a/users/synack.json +++ b/users/synack.json @@ -2,4 +2,4 @@ "copyright": "Synack AB", "url": "http://synack.se", "theme": "default" -} \ No newline at end of file +} diff --git a/users/synvox.json b/users/synvox.json index 2840f3d0..f854e210 100644 --- a/users/synvox.json +++ b/users/synvox.json @@ -3,4 +3,4 @@ "url": "http://ryan.allred.xyz", "email": "ryan@allred.xyz", "format": "txt" -} \ No newline at end of file +} diff --git a/users/szelcsanyi.json b/users/szelcsanyi.json index 9dfdf738..82fd5f44 100644 --- a/users/szelcsanyi.json +++ b/users/szelcsanyi.json @@ -3,4 +3,4 @@ "email": "szelcsanyi.gabor@gmail.com", "format": "html", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/szgal.json b/users/szgal.json index a9ad981d..9a3fbdc9 100644 --- a/users/szgal.json +++ b/users/szgal.json @@ -1,3 +1,3 @@ { "copyright": "szgal" -} \ No newline at end of file +} diff --git a/users/t-ashula.json b/users/t-ashula.json index 24c466f1..2ee456b3 100644 --- a/users/t-ashula.json +++ b/users/t-ashula.json @@ -3,4 +3,4 @@ "url": "https://ashula.info", "email": "office@ashula.info", "theme": "opensans" -} \ No newline at end of file +} diff --git a/users/t.json b/users/t.json index c734dfde..9366d6fe 100644 --- a/users/t.json +++ b/users/t.json @@ -3,4 +3,4 @@ "url": "http://tadeokondrak.com/", "email": "tadeo@kondrak.tk", "format": "html" -} \ No newline at end of file +} diff --git a/users/tad.json b/users/tad.json index 2eeefa90..5fe1ca55 100644 --- a/users/tad.json +++ b/users/tad.json @@ -5,4 +5,4 @@ "format": "txt", "gravatar": true, "theme": "plaintext" -} \ No newline at end of file +} diff --git a/users/tadejm.json b/users/tadejm.json index 72785eed..86eb53a6 100644 --- a/users/tadejm.json +++ b/users/tadejm.json @@ -3,4 +3,4 @@ "url": "http://twitter.com/tadejm", "email": "tadej.murovec@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/tadeo.json b/users/tadeo.json index d06cff77..4b6ddb20 100644 --- a/users/tadeo.json +++ b/users/tadeo.json @@ -3,4 +3,4 @@ "url": "http://tadeokondrak.com", "email": "tadeo@kondrak.tk", "format": "html" -} \ No newline at end of file +} diff --git a/users/takano32.json b/users/takano32.json index 29464d3f..07b927a2 100644 --- a/users/takano32.json +++ b/users/takano32.json @@ -3,4 +3,4 @@ "email": "takano32@gmail.com", "url": "http://taka.no32.tk/", "theme": "afterdark" -} \ No newline at end of file +} diff --git a/users/takanopontaro.json b/users/takanopontaro.json index 864cb089..ae994d32 100644 --- a/users/takanopontaro.json +++ b/users/takanopontaro.json @@ -1,4 +1,4 @@ { "copyright": "Shinji Takano", "url": "https://github.com/takanopontaro" -} \ No newline at end of file +} diff --git a/users/takashi.json b/users/takashi.json index 48fca946..9f881934 100644 --- a/users/takashi.json +++ b/users/takashi.json @@ -1,3 +1,3 @@ { "copyright": "Takashi Nakagawa" -} \ No newline at end of file +} diff --git a/users/takashisite.json b/users/takashisite.json index 37d3be10..99aea3a9 100644 --- a/users/takashisite.json +++ b/users/takashisite.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "opensans" -} \ No newline at end of file +} diff --git a/users/takuro.json b/users/takuro.json index 3e9ede9f..87faed7d 100644 --- a/users/takuro.json +++ b/users/takuro.json @@ -1,3 +1,3 @@ { "copyright": "Takuro Wada" -} \ No newline at end of file +} diff --git a/users/talkative.json b/users/talkative.json index 8c66b682..4373d180 100644 --- a/users/talkative.json +++ b/users/talkative.json @@ -1,3 +1,3 @@ { "copyright": "Talkative, Aesculus AB" -} \ No newline at end of file +} diff --git a/users/tam.json b/users/tam.json index 9f7fbeeb..eaba0651 100644 --- a/users/tam.json +++ b/users/tam.json @@ -3,4 +3,4 @@ "url": "http://tam.sx", "email": "hi@tam.sx", "gravatar": true -} \ No newline at end of file +} diff --git a/users/tamberg.json b/users/tamberg.json index baadcb1f..885c089e 100644 --- a/users/tamberg.json +++ b/users/tamberg.json @@ -1,3 +1,3 @@ { "copyright": "Thomas Amberg" -} \ No newline at end of file +} diff --git a/users/tameraydin.json b/users/tameraydin.json index c2766e3d..765a2aff 100644 --- a/users/tameraydin.json +++ b/users/tameraydin.json @@ -1,4 +1,4 @@ { "copyright": "Tamer Aydin, http://tamerayd.in", "url": "http://tamerayd.in" -} \ No newline at end of file +} diff --git a/users/tanel.json b/users/tanel.json index 5238b65f..d94916d9 100644 --- a/users/tanel.json +++ b/users/tanel.json @@ -1,3 +1,3 @@ { "copyright": "Tanel Puhu" -} \ No newline at end of file +} diff --git a/users/tangocoder.json b/users/tangocoder.json index 6d23398b..b4fd4a59 100644 --- a/users/tangocoder.json +++ b/users/tangocoder.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "eula-modern" -} \ No newline at end of file +} diff --git a/users/tanja.json b/users/tanja.json index 6d180a68..2923ca18 100644 --- a/users/tanja.json +++ b/users/tanja.json @@ -2,4 +2,4 @@ "copyright": "Tanja Pislar", "url": "http://heroesneverpanic.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/tantalor.json b/users/tantalor.json index f2680fad..9c33b0eb 100644 --- a/users/tantalor.json +++ b/users/tantalor.json @@ -2,4 +2,4 @@ "copyright": "John Tantalo", "url": "http://johntantalo.com", "email": "john.tantalo@gmail.com" -} \ No newline at end of file +} diff --git a/users/tap5.json b/users/tap5.json index 32ae6b40..5585255f 100644 --- a/users/tap5.json +++ b/users/tap5.json @@ -1,3 +1,3 @@ { "copyright": "Björn Söderqvist" -} \ No newline at end of file +} diff --git a/users/tarcisio.json b/users/tarcisio.json index 7e670f39..a14fd5fd 100644 --- a/users/tarcisio.json +++ b/users/tarcisio.json @@ -1,4 +1,4 @@ { "copyright": "Tarcísio Sassara", "url": "https://github.com/tarcisio" -} \ No newline at end of file +} diff --git a/users/taschetto.json b/users/taschetto.json index e7730351..34b9cc58 100644 --- a/users/taschetto.json +++ b/users/taschetto.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "friendly" -} \ No newline at end of file +} diff --git a/users/tastapod.json b/users/tastapod.json index 0002a70a..c94898a8 100644 --- a/users/tastapod.json +++ b/users/tastapod.json @@ -3,4 +3,4 @@ "url": "http://dannorth.net", "email": "dan@dannorth.net", "format": "txt" -} \ No newline at end of file +} diff --git a/users/taye.json b/users/taye.json index 43da3fc7..18b2f082 100644 --- a/users/taye.json +++ b/users/taye.json @@ -3,4 +3,4 @@ "url": "http://taye.me", "email": "dev@taye.me", "gravatar": true -} \ No newline at end of file +} diff --git a/users/taylor.json b/users/taylor.json index 604c642a..587c51c1 100644 --- a/users/taylor.json +++ b/users/taylor.json @@ -1,3 +1,3 @@ { "copyright": "Taylor Carpenter" -} \ No newline at end of file +} diff --git a/users/taylorcc.json b/users/taylorcc.json index 604c642a..587c51c1 100644 --- a/users/taylorcc.json +++ b/users/taylorcc.json @@ -1,3 +1,3 @@ { "copyright": "Taylor Carpenter" -} \ No newline at end of file +} diff --git a/users/tbaltrushaitis.json b/users/tbaltrushaitis.json index 1869c6e1..d9bce144 100644 --- a/users/tbaltrushaitis.json +++ b/users/tbaltrushaitis.json @@ -3,4 +3,4 @@ "url": "https://github.com/tbaltrushaitis", "email": "tbaltrushaitis@gmail.com", "theme": "blackwood" -} \ No newline at end of file +} diff --git a/users/tbekolay.json b/users/tbekolay.json index e546f996..78c52fc4 100644 --- a/users/tbekolay.json +++ b/users/tbekolay.json @@ -3,4 +3,4 @@ "url": "http://tbekolay.github.com/", "email": "tbekolay@gmail.com", "theme": "hipster-gray" -} \ No newline at end of file +} diff --git a/users/tbr.json b/users/tbr.json index c346e88b..2c6b064e 100644 --- a/users/tbr.json +++ b/users/tbr.json @@ -4,4 +4,4 @@ "email": "anders@thebarricade.net", "format": "html", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/tbrennan.json b/users/tbrennan.json index 600eda5a..12766df2 100644 --- a/users/tbrennan.json +++ b/users/tbrennan.json @@ -1,3 +1,3 @@ { "copyright": "Todd F. Brennan" -} \ No newline at end of file +} diff --git a/users/tc.json b/users/tc.json index 265255e2..863781e1 100644 --- a/users/tc.json +++ b/users/tc.json @@ -3,4 +3,4 @@ "url": "http://thomchap.com.au", "email": "hola@thomchap.com.au", "format": "txt" -} \ No newline at end of file +} diff --git a/users/tchel.json b/users/tchel.json index 022082a7..2c09edd1 100644 --- a/users/tchel.json +++ b/users/tchel.json @@ -4,4 +4,4 @@ "email": "seistche@gmail.com", "format": "afterdark", "gravatar": true -} \ No newline at end of file +} diff --git a/users/tclh123.json b/users/tclh123.json index 06e5b32d..5d49ee90 100644 --- a/users/tclh123.json +++ b/users/tclh123.json @@ -3,4 +3,4 @@ "url": "http://tclh123.com", "email": "tclh123@gmail.com", "theme": "eula-modern" -} \ No newline at end of file +} diff --git a/users/tdsh.json b/users/tdsh.json index bc0445a7..4304fe4d 100644 --- a/users/tdsh.json +++ b/users/tdsh.json @@ -1,4 +1,4 @@ { "copyright": "Tadashi Abe", "email": "tadashi.abe@gmail.com" -} \ No newline at end of file +} diff --git a/users/tdue21.json b/users/tdue21.json index 1a2a753c..64fc8698 100644 --- a/users/tdue21.json +++ b/users/tdue21.json @@ -2,4 +2,4 @@ "copyright": "Thomas Due", "email": "tho.due@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/teambition.json b/users/teambition.json index e125cffa..92f45198 100644 --- a/users/teambition.json +++ b/users/teambition.json @@ -3,4 +3,4 @@ "url": "http://teambition.com", "email": "dev@teambition.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/teamosc.json b/users/teamosc.json index 3ff76beb..d34b12ab 100644 --- a/users/teamosc.json +++ b/users/teamosc.json @@ -3,4 +3,4 @@ "url": "http://tosc.in", "email": "toscapps@gmail.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/tec.json b/users/tec.json index 70297c63..01af4601 100644 --- a/users/tec.json +++ b/users/tec.json @@ -3,4 +3,4 @@ "url": "http://golega.de", "email": "silvan@golega.de", "format": "txt" -} \ No newline at end of file +} diff --git a/users/teenst.json b/users/teenst.json index 77c9f50b..bdf8a690 100644 --- a/users/teenst.json +++ b/users/teenst.json @@ -1,3 +1,3 @@ { "copyright": "teenst" -} \ No newline at end of file +} diff --git a/users/tellnes.json b/users/tellnes.json index 72996fd5..5070c884 100644 --- a/users/tellnes.json +++ b/users/tellnes.json @@ -1,3 +1,3 @@ { "copyright": "Christian Tellnes" -} \ No newline at end of file +} diff --git a/users/tenacioushusky.json b/users/tenacioushusky.json index ddbbf0bd..e0c4e902 100644 --- a/users/tenacioushusky.json +++ b/users/tenacioushusky.json @@ -4,4 +4,4 @@ "email": "joshuaha@mtu.edu", "theme": "material-light-blue", "format": "html" -} \ No newline at end of file +} diff --git a/users/teppeis.json b/users/teppeis.json index 1bce0056..1a7d1970 100644 --- a/users/teppeis.json +++ b/users/teppeis.json @@ -3,4 +3,4 @@ "url": "https://github.com/teppeis", "email": "teppeis@gmail.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/terkel.json b/users/terkel.json index c96aa533..2fce97dd 100644 --- a/users/terkel.json +++ b/users/terkel.json @@ -1,4 +1,4 @@ { "copyright": "Takeru Suzuki", "url": "http://terkel.jp" -} \ No newline at end of file +} diff --git a/users/test.json b/users/test.json index a1d8bbce..cff43f83 100644 --- a/users/test.json +++ b/users/test.json @@ -1,3 +1,3 @@ { "copyright": "Mike McNeil" -} \ No newline at end of file +} diff --git a/users/test12.json b/users/test12.json index 700c53fb..5c9484e3 100644 --- a/users/test12.json +++ b/users/test12.json @@ -3,4 +3,4 @@ "url": "http://alisharp.com", "email": "ale@my.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/testdouble.json b/users/testdouble.json index 728af71a..548727e4 100644 --- a/users/testdouble.json +++ b/users/testdouble.json @@ -3,4 +3,4 @@ "url": "http://testdouble.com", "email": "hello@testdouble.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/testermotherfucker.json b/users/testermotherfucker.json index e45dcd66..adafc9ff 100644 --- a/users/testermotherfucker.json +++ b/users/testermotherfucker.json @@ -1,3 +1,3 @@ { "copyright": "Tester Mother Fucker" -} \ No newline at end of file +} diff --git a/users/tetwis.json b/users/tetwis.json index 9adf3c8a..c15e8434 100644 --- a/users/tetwis.json +++ b/users/tetwis.json @@ -3,4 +3,4 @@ "url": "ehgoodenough.com", "email": "ehgoodenough@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/texty.json b/users/texty.json index b8af0c98..a51a817e 100644 --- a/users/texty.json +++ b/users/texty.json @@ -3,4 +3,4 @@ "url": "{{URL}}", "email": "{{EMAIL}}", "format": "txt" -} \ No newline at end of file +} diff --git a/users/texty1.json b/users/texty1.json index 10ed4374..d43ff411 100644 --- a/users/texty1.json +++ b/users/texty1.json @@ -2,4 +2,4 @@ "copyright": "{{TEXTY}}", "url": "{{URL}}", "format": "txt" -} \ No newline at end of file +} diff --git a/users/texty2.json b/users/texty2.json index 11e5a2a6..1de05b49 100644 --- a/users/texty2.json +++ b/users/texty2.json @@ -2,4 +2,4 @@ "copyright": "{{TEXTY}}, {{URL}}", "url": "{{URL}}", "format": "txt" -} \ No newline at end of file +} diff --git a/users/tf.json b/users/tf.json index e413c310..3bb8fd37 100644 --- a/users/tf.json +++ b/users/tf.json @@ -1,4 +1,4 @@ { "copyright": "Johannes J. Schmidt, TF, http://die-tf.de", "url": "http://die-tf.de" -} \ No newline at end of file +} diff --git a/users/th.json b/users/th.json index 7d4b87b1..9acf3ce9 100644 --- a/users/th.json +++ b/users/th.json @@ -2,4 +2,4 @@ "copyright": "Trey Hunner", "url": "http://treyhunner.com", "theme": "default" -} \ No newline at end of file +} diff --git a/users/thangeda.json b/users/thangeda.json index 03de7a0b..6b3d9eb6 100644 --- a/users/thangeda.json +++ b/users/thangeda.json @@ -3,4 +3,4 @@ "email": "contact@prny.me", "gravatar": false, "theme": "material" -} \ No newline at end of file +} diff --git a/users/thasmo.json b/users/thasmo.json index 285c18f3..2d62eba2 100644 --- a/users/thasmo.json +++ b/users/thasmo.json @@ -4,4 +4,4 @@ "email": "thasmo@gmail.com", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/the-zumata-team.json b/users/the-zumata-team.json index 9f191a40..5deed055 100644 --- a/users/the-zumata-team.json +++ b/users/the-zumata-team.json @@ -3,4 +3,4 @@ "url": "https://github.com/Zumata", "email": "gary.theis@zumata.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/theboshy.json b/users/theboshy.json index 519891a2..b8ae9688 100644 --- a/users/theboshy.json +++ b/users/theboshy.json @@ -4,4 +4,4 @@ "email": "akumaokami10@gmail.com", "gravatar": true, "theme": "dusk" -} \ No newline at end of file +} diff --git a/users/thedersen.json b/users/thedersen.json index 6e6f8952..a6c6a68a 100644 --- a/users/thedersen.json +++ b/users/thedersen.json @@ -1,4 +1,4 @@ { "copyright": "Thomas Pedersen, http://thedersen.com", "url": "http://thedersen.com" -} \ No newline at end of file +} diff --git a/users/theflow0360.json b/users/theflow0360.json index 5259bd7b..3c913a85 100644 --- a/users/theflow0360.json +++ b/users/theflow0360.json @@ -4,4 +4,4 @@ "format": "html", "gravatar": true, "theme": "hipster-gray" -} \ No newline at end of file +} diff --git a/users/thehippo.json b/users/thehippo.json index 6207b6bb..c2d09a35 100644 --- a/users/thehippo.json +++ b/users/thehippo.json @@ -1,3 +1,3 @@ { "copyright": "Philipp Klose" -} \ No newline at end of file +} diff --git a/users/thehodge.json b/users/thehodge.json index 19f49ff8..64000338 100644 --- a/users/thehodge.json +++ b/users/thehodge.json @@ -1,4 +1,4 @@ { "copyright": "Dom Hodgson", "url": "http://thehodge.co.uk/" -} \ No newline at end of file +} diff --git a/users/thekhenzie.json b/users/thekhenzie.json index 6b54dfda..ad65dc39 100644 --- a/users/thekhenzie.json +++ b/users/thekhenzie.json @@ -3,4 +3,4 @@ "url": "http://khendaniel.com", "email": "thekhenzie@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/thelonelyghost.json b/users/thelonelyghost.json index 087d2981..661c8453 100644 --- a/users/thelonelyghost.json +++ b/users/thelonelyghost.json @@ -4,4 +4,4 @@ "email": "opensource@thelonelyghost.com", "gravatar": true, "theme": "material-brown" -} \ No newline at end of file +} diff --git a/users/theodi.json b/users/theodi.json index 2443dd49..50ee328f 100644 --- a/users/theodi.json +++ b/users/theodi.json @@ -3,4 +3,4 @@ "url": "http://theodi.org", "email": "ops@theodi.org", "gravatar": true -} \ No newline at end of file +} diff --git a/users/therebelrobot.json b/users/therebelrobot.json index 54ea4bdb..dcd562da 100644 --- a/users/therebelrobot.json +++ b/users/therebelrobot.json @@ -5,4 +5,4 @@ "gravatar": true, "format": "html", "theme": "material-deep-orange" -} \ No newline at end of file +} diff --git a/users/thescoundrels.json b/users/thescoundrels.json index 739bd454..14fa23d7 100644 --- a/users/thescoundrels.json +++ b/users/thescoundrels.json @@ -3,4 +3,4 @@ "url": "http://thescoundrels.net", "email": "support@thescoundrels.net", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/theuves.json b/users/theuves.json index 4ad1a203..1027e057 100644 --- a/users/theuves.json +++ b/users/theuves.json @@ -1,3 +1,3 @@ { "copyright": "Matheus Alves" -} \ No newline at end of file +} diff --git a/users/thewebguy.json b/users/thewebguy.json index 475d6311..0e6556bc 100644 --- a/users/thewebguy.json +++ b/users/thewebguy.json @@ -3,4 +3,4 @@ "url": "http://kevin.fm", "email": "kevinkhandjian@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/theyranos.json b/users/theyranos.json index 509c0803..d43feaa4 100644 --- a/users/theyranos.json +++ b/users/theyranos.json @@ -1,3 +1,3 @@ { "copyright": "Dan Charney" -} \ No newline at end of file +} diff --git a/users/thi.json b/users/thi.json index 57bbcccd..d611e03f 100644 --- a/users/thi.json +++ b/users/thi.json @@ -1,3 +1,3 @@ { "copyright": "Doan Truong Thi" -} \ No newline at end of file +} diff --git a/users/thiagohagy.json b/users/thiagohagy.json index 618187f8..f5fd5d2d 100644 --- a/users/thiagohagy.json +++ b/users/thiagohagy.json @@ -2,4 +2,4 @@ "copyright": "Thiago A. Hagy", "email": "thiagohagy@hotmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/thibautd.json b/users/thibautd.json index 1db74c2f..06dc5392 100644 --- a/users/thibautd.json +++ b/users/thibautd.json @@ -1,4 +1,4 @@ { "copyright": "Thibaut DIRLIK", "email": "thibaut.dirlik@gmail.com" -} \ No newline at end of file +} diff --git a/users/thingsinjars.json b/users/thingsinjars.json index ed28fbaa..960a8c1c 100644 --- a/users/thingsinjars.json +++ b/users/thingsinjars.json @@ -3,4 +3,4 @@ "url": "http://thingsinjars.com", "email": "simon@thingsinjars.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/thj.json b/users/thj.json index 9f17e501..ce730b16 100644 --- a/users/thj.json +++ b/users/thj.json @@ -1,4 +1,4 @@ { "copyright": "The Humble Jester", "email": "the.humble.jester@gmail.com" -} \ No newline at end of file +} diff --git a/users/tholu.json b/users/tholu.json index 7ee5bbf6..33d31a5e 100644 --- a/users/tholu.json +++ b/users/tholu.json @@ -1,3 +1,3 @@ { "copyright": "Thomas Lutz" -} \ No newline at end of file +} diff --git a/users/thomas.json b/users/thomas.json index 8604c311..6edd7a89 100644 --- a/users/thomas.json +++ b/users/thomas.json @@ -3,4 +3,4 @@ "email": "thomas@stachl.me", "url": "http://stachl.me", "theme": "opensans" -} \ No newline at end of file +} diff --git a/users/thomd.json b/users/thomd.json index fb7c108a..80f6f46e 100644 --- a/users/thomd.json +++ b/users/thomd.json @@ -1,3 +1,3 @@ { "copyright": "Thomas Depierre" -} \ No newline at end of file +} diff --git a/users/thompsonemerson.json b/users/thompsonemerson.json index 5b77b47b..d694e7af 100644 --- a/users/thompsonemerson.json +++ b/users/thompsonemerson.json @@ -1,3 +1,3 @@ { "copyright": "Emerson Thompson" -} \ No newline at end of file +} diff --git a/users/throger.json b/users/throger.json index 1d1ff6e4..c5839411 100644 --- a/users/throger.json +++ b/users/throger.json @@ -1,3 +1,3 @@ { "copyright": "Thomas Roger" -} \ No newline at end of file +} diff --git a/users/thulioph.json b/users/thulioph.json index 6c2f512c..4099ddc9 100644 --- a/users/thulioph.json +++ b/users/thulioph.json @@ -3,4 +3,4 @@ "url": "http://thulioph.com", "email": "thulioph@gmail.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/thypon.json b/users/thypon.json index 57eebbe8..71856196 100644 --- a/users/thypon.json +++ b/users/thypon.json @@ -2,4 +2,4 @@ "copyright": "Andrea Brancaleoni", "email": "miwaxe@github.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/tiaan.json b/users/tiaan.json index 0d696c2e..b995d7cb 100644 --- a/users/tiaan.json +++ b/users/tiaan.json @@ -3,4 +3,4 @@ "url": "https://github.com/mightyCrow", "email": "tiaanduplessis@hotmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/tian.json b/users/tian.json index 638832f8..c570e4b8 100644 --- a/users/tian.json +++ b/users/tian.json @@ -3,4 +3,4 @@ "url": "http://hello.tianpermana.com", "email": "hello@tianpermana.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/ticking.json b/users/ticking.json index cd1a0789..16db19af 100644 --- a/users/ticking.json +++ b/users/ticking.json @@ -3,4 +3,4 @@ "url": "http://undeadco.de", "email": "ticking@me.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/tigra.json b/users/tigra.json index a9e8ac7c..75a48d12 100644 --- a/users/tigra.json +++ b/users/tigra.json @@ -1,3 +1,3 @@ { "copyright": "Tigra Astronomy" -} \ No newline at end of file +} diff --git a/users/tih.json b/users/tih.json index 7be01e2e..58a15188 100644 --- a/users/tih.json +++ b/users/tih.json @@ -3,4 +3,4 @@ "url": "http://www.thisishugo.com", "email": "me@thisishugo.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/tilgovi.json b/users/tilgovi.json index 1d4ee4e0..c5f03fd3 100644 --- a/users/tilgovi.json +++ b/users/tilgovi.json @@ -2,4 +2,4 @@ "copyright": "Randall Leeds", "email": "randall@bleeds.info", "url": "http://randall.bleeds.info/" -} \ No newline at end of file +} diff --git a/users/tim.json b/users/tim.json index d63740e5..8bbe68ab 100644 --- a/users/tim.json +++ b/users/tim.json @@ -1,3 +1,3 @@ { "copyright": "Timothy Andrew" -} \ No newline at end of file +} diff --git a/users/timjb.json b/users/timjb.json index be04a425..d095af84 100644 --- a/users/timjb.json +++ b/users/timjb.json @@ -1,3 +1,3 @@ { "copyright": "Tim Baumann, http://timbaumann.info" -} \ No newline at end of file +} diff --git a/users/timmolendijk.json b/users/timmolendijk.json index 61d85590..7d137ad0 100644 --- a/users/timmolendijk.json +++ b/users/timmolendijk.json @@ -1,4 +1,4 @@ { "copyright": "Tim Molendijk", "url": "http://timmolendijk.nl/" -} \ No newline at end of file +} diff --git a/users/timon-josh.json b/users/timon-josh.json index ab778bda..b3141771 100644 --- a/users/timon-josh.json +++ b/users/timon-josh.json @@ -1,3 +1,3 @@ { "copyright": "Timon Vonk & Josh Kalderimis" -} \ No newline at end of file +} diff --git a/users/timothy.json b/users/timothy.json index d63740e5..8bbe68ab 100644 --- a/users/timothy.json +++ b/users/timothy.json @@ -1,3 +1,3 @@ { "copyright": "Timothy Andrew" -} \ No newline at end of file +} diff --git a/users/timothyandrew.json b/users/timothyandrew.json index d63740e5..8bbe68ab 100644 --- a/users/timothyandrew.json +++ b/users/timothyandrew.json @@ -1,3 +1,3 @@ { "copyright": "Timothy Andrew" -} \ No newline at end of file +} diff --git a/users/timtjtim.json b/users/timtjtim.json index 68d61101..32f8b828 100644 --- a/users/timtjtim.json +++ b/users/timtjtim.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "material" -} \ No newline at end of file +} diff --git a/users/timuruski.json b/users/timuruski.json index a6e8e74e..4c9a8c60 100644 --- a/users/timuruski.json +++ b/users/timuruski.json @@ -1,3 +1,3 @@ { "copyright": "Tim Uruski" -} \ No newline at end of file +} diff --git a/users/timzenner.json b/users/timzenner.json index 757b4bde..aa238410 100644 --- a/users/timzenner.json +++ b/users/timzenner.json @@ -3,4 +3,4 @@ "url": "http://zennsoftworks.dyndns.org/", "email": "epidemicz@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/tiryoh.json b/users/tiryoh.json index c7632d2c..7496d831 100644 --- a/users/tiryoh.json +++ b/users/tiryoh.json @@ -4,4 +4,4 @@ "email": "tiryoh@gmail.com", "theme": "material", "gravatar": true -} \ No newline at end of file +} diff --git a/users/tkahn.json b/users/tkahn.json index f0841579..b532f0be 100644 --- a/users/tkahn.json +++ b/users/tkahn.json @@ -3,4 +3,4 @@ "url": "http://tkahn.se", "theme": "flesch", "gravatar": true -} \ No newline at end of file +} diff --git a/users/tleb.json b/users/tleb.json index 32860217..89723a66 100644 --- a/users/tleb.json +++ b/users/tleb.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": false, "theme": "plaintext" -} \ No newline at end of file +} diff --git a/users/tloep.json b/users/tloep.json index 9206d16f..07f91abe 100644 --- a/users/tloep.json +++ b/users/tloep.json @@ -2,4 +2,4 @@ "copyright": "The League of Extraordinary Programmers", "url": "http://tloep.tk/", "theme": "afterdark" -} \ No newline at end of file +} diff --git a/users/tlvince.json b/users/tlvince.json index 11424b98..bcba2d01 100644 --- a/users/tlvince.json +++ b/users/tlvince.json @@ -1,4 +1,4 @@ { "copyright": "Tom Vincent", "url": "https://tlvince.com/contact" -} \ No newline at end of file +} diff --git a/users/tmn.json b/users/tmn.json index 4bfbde31..a8ef404e 100644 --- a/users/tmn.json +++ b/users/tmn.json @@ -4,4 +4,4 @@ "email": "mail@trimn.net", "format": "html", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/tmpvar.json b/users/tmpvar.json index 3b804a7c..96f94c78 100644 --- a/users/tmpvar.json +++ b/users/tmpvar.json @@ -3,4 +3,4 @@ "url": "http://tmpvar.com", "email": "tmpvar@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/tmw.json b/users/tmw.json index 64aab221..0192b3f1 100644 --- a/users/tmw.json +++ b/users/tmw.json @@ -1,4 +1,4 @@ { "copyright": "TMWUnlimited...", "url": "http://tmwunlimited.com" -} \ No newline at end of file +} diff --git a/users/tnoda.json b/users/tnoda.json index feb3bb23..c4ba8d7c 100644 --- a/users/tnoda.json +++ b/users/tnoda.json @@ -1,3 +1,3 @@ { "copyright": "Takahiro Noda" -} \ No newline at end of file +} diff --git a/users/tnviking.json b/users/tnviking.json index c7af6a52..bac3aa4b 100644 --- a/users/tnviking.json +++ b/users/tnviking.json @@ -5,4 +5,4 @@ "gravatar": true, "url": "https://bratteng.xyz", "theme": "material-deep-purple" -} \ No newline at end of file +} diff --git a/users/to4iki.json b/users/to4iki.json index c6f243f4..3e652cc5 100644 --- a/users/to4iki.json +++ b/users/to4iki.json @@ -1,4 +1,4 @@ { "copyright": "Tsk Takezawa", "url": "https://github.com/to4iki" -} \ No newline at end of file +} diff --git a/users/toblea.json b/users/toblea.json index 5e273d04..f57d9f88 100644 --- a/users/toblea.json +++ b/users/toblea.json @@ -1,3 +1,3 @@ { "copyright": "Tobias Leander" -} \ No newline at end of file +} diff --git a/users/tocttou.json b/users/tocttou.json index 63c3e4c2..16d0e702 100644 --- a/users/tocttou.json +++ b/users/tocttou.json @@ -3,4 +3,4 @@ "url": "https://ashishchaudhary.in", "email": "me@ashishchaudhary.in", "theme": "black-beauty" -} \ No newline at end of file +} diff --git a/users/todor.json b/users/todor.json index 298a3c16..2aa857df 100644 --- a/users/todor.json +++ b/users/todor.json @@ -1,4 +1,4 @@ { "copyright": "Todor Dimitrov, http://todordimitrov.de", "url": "http://todordimitrov.de" -} \ No newline at end of file +} diff --git a/users/toedter.json b/users/toedter.json index e1982ee0..e71c88cc 100644 --- a/users/toedter.json +++ b/users/toedter.json @@ -2,4 +2,4 @@ "copyright": "Kai Toedter", "url": "http://toedter.com", "email": "kai@toedter.com" -} \ No newline at end of file +} diff --git a/users/tokuhirom.json b/users/tokuhirom.json index c2337c82..7a9b16f8 100644 --- a/users/tokuhirom.json +++ b/users/tokuhirom.json @@ -3,4 +3,4 @@ "email": "tokuhirom@gmail.com", "url": "http://64p.org", "theme": "orange" -} \ No newline at end of file +} diff --git a/users/tolu.json b/users/tolu.json index d2c4eb61..f9c1f64c 100644 --- a/users/tolu.json +++ b/users/tolu.json @@ -4,4 +4,4 @@ "email": "tobias.lundin@gmail.com", "gravatar": true, "theme": "material" -} \ No newline at end of file +} diff --git a/users/tom.json b/users/tom.json index e01c10f8..0992b632 100644 --- a/users/tom.json +++ b/users/tom.json @@ -4,4 +4,4 @@ "format": "html", "gravatar": "false", "theme": "dusk" -} \ No newline at end of file +} diff --git a/users/tomalec.json b/users/tomalec.json index a9c9bc5a..60a104f9 100644 --- a/users/tomalec.json +++ b/users/tomalec.json @@ -1,4 +1,4 @@ { "copyright": "Tomek Wytrebowicz", "url": "https://github.com/tomalec" -} \ No newline at end of file +} diff --git a/users/tomasmcguinness.json b/users/tomasmcguinness.json index d5df4aa9..7bb52941 100644 --- a/users/tomasmcguinness.json +++ b/users/tomasmcguinness.json @@ -2,4 +2,4 @@ "copyright": "Tomas McGuinness, http://www.tomasmcguinness.com", "url": "http://www.tomasmcguinness.com", "email": "tomas@tomasmcguinness.com" -} \ No newline at end of file +} diff --git a/users/tomass1996.json b/users/tomass1996.json index fbef8f79..f60d549f 100644 --- a/users/tomass1996.json +++ b/users/tomass1996.json @@ -4,4 +4,4 @@ "email": "farr.thomas@gmail.com", "format": "html", "theme": "xtansia" -} \ No newline at end of file +} diff --git a/users/tombuildsstuff.json b/users/tombuildsstuff.json index 8f584dc3..4324b815 100644 --- a/users/tombuildsstuff.json +++ b/users/tombuildsstuff.json @@ -1,3 +1,3 @@ { "copyright": "Tom Harvey" -} \ No newline at end of file +} diff --git a/users/tomchentw.json b/users/tomchentw.json index 0f08c646..6507bc25 100644 --- a/users/tomchentw.json +++ b/users/tomchentw.json @@ -3,4 +3,4 @@ "url": "http://www.tomchentw.com", "email": "developer@tomchentw.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/tomdavies.json b/users/tomdavies.json index 5993535b..af5aaf1e 100644 --- a/users/tomdavies.json +++ b/users/tomdavies.json @@ -3,4 +3,4 @@ "url": "http://tomdavies.net", "email": "mail@tomdavies.net", "format": "txt" -} \ No newline at end of file +} diff --git a/users/tommarshall.json b/users/tommarshall.json index 7759619e..e900f85f 100644 --- a/users/tommarshall.json +++ b/users/tommarshall.json @@ -1,3 +1,3 @@ { "copyright": "Tom Marshall" -} \ No newline at end of file +} diff --git a/users/tommy.json b/users/tommy.json index 8b55fd96..56aedad0 100644 --- a/users/tommy.json +++ b/users/tommy.json @@ -4,4 +4,4 @@ "email": "tommy@pujol.cf", "format": "html", "theme": "hacker" -} \ No newline at end of file +} diff --git a/users/tomohiro.json b/users/tomohiro.json index 5d266ef6..00616956 100644 --- a/users/tomohiro.json +++ b/users/tomohiro.json @@ -2,4 +2,4 @@ "copyright": "Tomohiro Taira, http://tomohiro.me", "url": "http://tomohiro.me", "theme": "afterdark" -} \ No newline at end of file +} diff --git a/users/tomoya.json b/users/tomoya.json index aff80f79..3817fc3a 100644 --- a/users/tomoya.json +++ b/users/tomoya.json @@ -2,4 +2,4 @@ "copyright": "Tomoya Otake", "url": "http://d.hatena.ne.jp/tomoya/", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/tomraithel.json b/users/tomraithel.json index bea85506..c8936508 100644 --- a/users/tomraithel.json +++ b/users/tomraithel.json @@ -4,4 +4,4 @@ "email": "hello@tomraithel.de", "format": "html", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/toneden.json b/users/toneden.json index 912217fd..ab68ba15 100644 --- a/users/toneden.json +++ b/users/toneden.json @@ -1,3 +1,3 @@ { "copyright": "ToneDen, Inc" -} \ No newline at end of file +} diff --git a/users/tonekk.json b/users/tonekk.json index 17b3258c..24cbf33b 100644 --- a/users/tonekk.json +++ b/users/tonekk.json @@ -1,4 +1,4 @@ { "copyright": "Finn Heemeyer", "url": "https://github.com/tonekk" -} \ No newline at end of file +} diff --git a/users/tonivdv.json b/users/tonivdv.json index 4ec7f5e6..c228f015 100644 --- a/users/tonivdv.json +++ b/users/tonivdv.json @@ -3,4 +3,4 @@ "email": "toni.vdv@gmail.com", "format": "html", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/tony.json b/users/tony.json index 12a781f1..bace46ca 100644 --- a/users/tony.json +++ b/users/tony.json @@ -4,4 +4,4 @@ "email": "kontakt@tonyfindeisen.de", "theme": "friendly", "gravatar": true -} \ No newline at end of file +} diff --git a/users/tonyb.json b/users/tonyb.json index 29cad5a8..6fe3c511 100644 --- a/users/tonyb.json +++ b/users/tonyb.json @@ -1,3 +1,3 @@ { "copyright": "Tony Biondo" -} \ No newline at end of file +} diff --git a/users/tonyb486.json b/users/tonyb486.json index 29cad5a8..6fe3c511 100644 --- a/users/tonyb486.json +++ b/users/tonyb486.json @@ -1,3 +1,3 @@ { "copyright": "Tony Biondo" -} \ No newline at end of file +} diff --git a/users/tonypelletier.json b/users/tonypelletier.json index 12cdcae2..2997d354 100644 --- a/users/tonypelletier.json +++ b/users/tonypelletier.json @@ -1,3 +1,3 @@ { "copyright": "Tony Pelletier" -} \ No newline at end of file +} diff --git a/users/tonyphelps.json b/users/tonyphelps.json index fa1f759e..70a1df29 100644 --- a/users/tonyphelps.json +++ b/users/tonyphelps.json @@ -2,4 +2,4 @@ "copyright": "Anthony Phelps", "url": "http://tonyphelps.net", "email": "anthonypphelps@gmail.com" -} \ No newline at end of file +} diff --git a/users/tonyskn.json b/users/tonyskn.json index 6fd59c20..75d2a0ca 100644 --- a/users/tonyskn.json +++ b/users/tonyskn.json @@ -1,4 +1,4 @@ { "copyright": "Tony Sokhon, http://twitter.com/tonyskn", "url": "http://tonyskn.me" -} \ No newline at end of file +} diff --git a/users/toolbear.json b/users/toolbear.json index 49642022..4033ab12 100644 --- a/users/toolbear.json +++ b/users/toolbear.json @@ -3,4 +3,4 @@ "url": "http://tool-man.org/", "email": "tim@tool-man.org", "gravatar": true -} \ No newline at end of file +} diff --git a/users/toomore.json b/users/toomore.json index 96486ae1..0b09151d 100644 --- a/users/toomore.json +++ b/users/toomore.json @@ -4,4 +4,4 @@ "theme": "silver-style", "email": "toomore0929@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/toonketels.json b/users/toonketels.json index d084be1a..3464eddc 100644 --- a/users/toonketels.json +++ b/users/toonketels.json @@ -1,4 +1,4 @@ { "copyright": "Toon Ketels", "url": "http://toon.io" -} \ No newline at end of file +} diff --git a/users/torjue.json b/users/torjue.json index 9d7d415c..421dd895 100644 --- a/users/torjue.json +++ b/users/torjue.json @@ -2,4 +2,4 @@ "copyright": "Torjus Eidet", "email": "torjue@gmail.com", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/tornqvist.json b/users/tornqvist.json index 7af6a5e1..596f8211 100644 --- a/users/tornqvist.json +++ b/users/tornqvist.json @@ -2,4 +2,4 @@ "copyright": "Carl Törnqvist", "email": "calle.tornqvist@gmail.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/towry.json b/users/towry.json index 4cf86d08..58b04f07 100644 --- a/users/towry.json +++ b/users/towry.json @@ -3,4 +3,4 @@ "url": "https://github.com/towry", "email": "tovvry@gmail.com", "theme": "plaintext" -} \ No newline at end of file +} diff --git a/users/tpojka.json b/users/tpojka.json index 0c50b7f1..91e47eb3 100644 --- a/users/tpojka.json +++ b/users/tpojka.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "black-beauty" -} \ No newline at end of file +} diff --git a/users/tracking.json b/users/tracking.json index bd106566..fa11dc42 100644 --- a/users/tracking.json +++ b/users/tracking.json @@ -4,4 +4,4 @@ "email": "tracking@mura.la", "theme": "dusk", "gravatar": true -} \ No newline at end of file +} diff --git a/users/transrate.json b/users/transrate.json index 07345886..57756d97 100644 --- a/users/transrate.json +++ b/users/transrate.json @@ -2,4 +2,4 @@ "copyright": "Richard Smith-Unna and Chris Boursnell", "url": "http://hibberdlab.com/transrate", "format": "txt" -} \ No newline at end of file +} diff --git a/users/tregusti.json b/users/tregusti.json index d5ac7328..56e456eb 100644 --- a/users/tregusti.json +++ b/users/tregusti.json @@ -1,4 +1,4 @@ { "copyright": "Glenn Jorde, http://tregusti.com/", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/trev.json b/users/trev.json index 627c1581..228e8790 100644 --- a/users/trev.json +++ b/users/trev.json @@ -2,4 +2,4 @@ "copyright": "Trevor Cook", "email": "trevdc@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/trevorburnham.json b/users/trevorburnham.json index 9157eb24..1a450e4d 100644 --- a/users/trevorburnham.json +++ b/users/trevorburnham.json @@ -1,3 +1,3 @@ { "copyright": "Trevor Burnham" -} \ No newline at end of file +} diff --git a/users/trey.json b/users/trey.json index 3fbea553..5fc7dddb 100644 --- a/users/trey.json +++ b/users/trey.json @@ -1,4 +1,4 @@ { "copyright": "Arthur L Piepmeier III, http://treypiepmeier.com", "url": "http://treypiepmeier.com" -} \ No newline at end of file +} diff --git a/users/trialtrialtrial.json b/users/trialtrialtrial.json index f23346d1..2ef0abd4 100644 --- a/users/trialtrialtrial.json +++ b/users/trialtrialtrial.json @@ -4,4 +4,4 @@ "email": "me@mysite.com", "theme": "solarized", "gravatar": true -} \ No newline at end of file +} diff --git a/users/triplein.json b/users/triplein.json index 3a9bccad..6adafd66 100644 --- a/users/triplein.json +++ b/users/triplein.json @@ -3,4 +3,4 @@ "url": "https://www.triplein.at", "email": "office@triplein.at", "format": "html" -} \ No newline at end of file +} diff --git a/users/trisk.json b/users/trisk.json index a9f2493f..69547e67 100644 --- a/users/trisk.json +++ b/users/trisk.json @@ -1,4 +1,4 @@ { "copyright": "Albert Lee", "email": "trisk@forkgnu.org" -} \ No newline at end of file +} diff --git a/users/tristancode.json b/users/tristancode.json index 8d42ab7b..75cf8b1c 100644 --- a/users/tristancode.json +++ b/users/tristancode.json @@ -3,4 +3,4 @@ "url": "www.test.com", "email": "legal@test.com", "theme": "afterdark" -} \ No newline at end of file +} diff --git a/users/troopjs.json b/users/troopjs.json index cbae2322..1c7e7ead 100644 --- a/users/troopjs.json +++ b/users/troopjs.json @@ -1,4 +1,4 @@ { "copyright": "TroopJS", "url": "http://troopjs.com" -} \ No newline at end of file +} diff --git a/users/troutowicz.json b/users/troutowicz.json index b5caed07..7e199dd3 100644 --- a/users/troutowicz.json +++ b/users/troutowicz.json @@ -1,3 +1,3 @@ { "copyright": "Tim Routowicz" -} \ No newline at end of file +} diff --git a/users/troy.json b/users/troy.json index baf7160b..7932102d 100644 --- a/users/troy.json +++ b/users/troy.json @@ -1,3 +1,3 @@ { "copyright": "Troy Deck" -} \ No newline at end of file +} diff --git a/users/true.json b/users/true.json index 649b7a6e..53bac217 100644 --- a/users/true.json +++ b/users/true.json @@ -1,3 +1,3 @@ { "copyright": "TrueServer B.V." -} \ No newline at end of file +} diff --git a/users/trueserver.json b/users/trueserver.json index 649b7a6e..53bac217 100644 --- a/users/trueserver.json +++ b/users/trueserver.json @@ -1,3 +1,3 @@ { "copyright": "TrueServer B.V." -} \ No newline at end of file +} diff --git a/users/trykickoff.json b/users/trykickoff.json index 40052f4b..042a8dd6 100644 --- a/users/trykickoff.json +++ b/users/trykickoff.json @@ -2,4 +2,4 @@ "copyright": "TryKickoff", "url": "http://trykickoff.github.io", "format": "txt" -} \ No newline at end of file +} diff --git a/users/tschaub.json b/users/tschaub.json index cc87b58c..73474dc1 100644 --- a/users/tschaub.json +++ b/users/tschaub.json @@ -1,4 +1,4 @@ { "copyright": "Tim Schaub, http://tschaub.net", "url": "http://tschaub.net" -} \ No newline at end of file +} diff --git a/users/tscm.json b/users/tscm.json index 6ea4ed2d..2ef19bc7 100644 --- a/users/tscm.json +++ b/users/tscm.json @@ -1,4 +1,4 @@ { "copyright": "Tsujimoto Sir Christopher Mamoru", "url": "https://github.com/MamoruTsujimoto/" -} \ No newline at end of file +} diff --git a/users/tulos.json b/users/tulos.json index 9da62f0f..4037b814 100644 --- a/users/tulos.json +++ b/users/tulos.json @@ -2,4 +2,4 @@ "copyright": "Tulos Capital", "url": "http://tuloscapital.com", "email": "admin@tuloscapital.com" -} \ No newline at end of file +} diff --git a/users/turnbullm.json b/users/turnbullm.json index 58a7f014..3c917fdf 100644 --- a/users/turnbullm.json +++ b/users/turnbullm.json @@ -2,4 +2,4 @@ "copyright": "Matthew Turnbull", "url": "http://turnbullm.com", "email": "turnbullm@gmail.com" -} \ No newline at end of file +} diff --git a/users/tvsloot.json b/users/tvsloot.json index 051510e9..5d76f1e2 100644 --- a/users/tvsloot.json +++ b/users/tvsloot.json @@ -2,4 +2,4 @@ "copyright": "travis vander sloot ", "url": "http://tvsloot.com", "email": "travis@tvsloot.com" -} \ No newline at end of file +} diff --git a/users/twada.json b/users/twada.json index 16e178cf..91768909 100644 --- a/users/twada.json +++ b/users/twada.json @@ -1,4 +1,4 @@ { "copyright": "Takuto Wada", "url": "https://github.com/twada" -} \ No newline at end of file +} diff --git a/users/twotoasters.json b/users/twotoasters.json index a9699750..d087548b 100644 --- a/users/twotoasters.json +++ b/users/twotoasters.json @@ -2,4 +2,4 @@ "copyright": "Two Toasters", "url": "http://twotoasters.com", "email": "general@twotoasters.com" -} \ No newline at end of file +} diff --git a/users/tyabe.json b/users/tyabe.json index 8cd4d96b..e47a31e0 100644 --- a/users/tyabe.json +++ b/users/tyabe.json @@ -1,4 +1,4 @@ { "copyright": "Takeshi Yabe", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/tzi.json b/users/tzi.json index 6ce6241e..27a19dca 100644 --- a/users/tzi.json +++ b/users/tzi.json @@ -1,4 +1,4 @@ { "copyright": "Thomas ZILLIOX", "url": "http://tzi.fr" -} \ No newline at end of file +} diff --git a/users/tzmartin.json b/users/tzmartin.json index 2f2b382b..e42c155e 100644 --- a/users/tzmartin.json +++ b/users/tzmartin.json @@ -5,4 +5,4 @@ "format": "txt", "gravatar": true, "theme": "default" -} \ No newline at end of file +} diff --git a/users/uda.json b/users/uda.json index 60c8250f..6653525a 100644 --- a/users/uda.json +++ b/users/uda.json @@ -4,4 +4,4 @@ "email": "yeh@uda.co.il", "gravatar": true, "theme": "eula-modern" -} \ No newline at end of file +} diff --git a/users/udondokodoon.json b/users/udondokodoon.json index 111de992..e2a9683f 100644 --- a/users/udondokodoon.json +++ b/users/udondokodoon.json @@ -2,4 +2,4 @@ "copyright": "Usoda Dondokodoon", "url": "http://udondokodoon.github.com", "email": "usoda.dondokodoon@gmail.com" -} \ No newline at end of file +} diff --git a/users/udzura.json b/users/udzura.json index 35cc3f78..c3611441 100644 --- a/users/udzura.json +++ b/users/udzura.json @@ -1,3 +1,3 @@ { "copyright": "Uchio KONDO" -} \ No newline at end of file +} diff --git a/users/uec-azlab.json b/users/uec-azlab.json index ff0878dc..5b5ef494 100644 --- a/users/uec-azlab.json +++ b/users/uec-azlab.json @@ -1,4 +1,4 @@ { "copyright": "AnZen-Lab (UEC, Tokyo)", "url": "http://www.az.inf.uec.ac.jp/" -} \ No newline at end of file +} diff --git a/users/uersi.json b/users/uersi.json index 373618a9..ac24b517 100644 --- a/users/uersi.json +++ b/users/uersi.json @@ -1,4 +1,4 @@ { "copyright": "Elena Utkina", "email": "uersi@yandex.ru" -} \ No newline at end of file +} diff --git a/users/uglybugger.json b/users/uglybugger.json index 8c7ae4f9..0ad1f2d8 100644 --- a/users/uglybugger.json +++ b/users/uglybugger.json @@ -3,4 +3,4 @@ "url": "http://www.codingforfunandprofit.com/", "email": "andrewh@uglybugger.org", "format": "txt" -} \ No newline at end of file +} diff --git a/users/ugurceylan.json b/users/ugurceylan.json index eba15b24..b44c44fe 100644 --- a/users/ugurceylan.json +++ b/users/ugurceylan.json @@ -3,4 +3,4 @@ "url": "https://github.com/ugurceylan", "theme": "ecijol", "gravatar": true -} \ No newline at end of file +} diff --git a/users/uiwwnw.json b/users/uiwwnw.json index 18ac6a2e..1dcf1bab 100644 --- a/users/uiwwnw.json +++ b/users/uiwwnw.json @@ -2,4 +2,4 @@ "copyright": "uiwwnw", "email": "uiwwnw@icloud.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/ulysse.json b/users/ulysse.json index 6c064c0a..4bc056fe 100644 --- a/users/ulysse.json +++ b/users/ulysse.json @@ -1,4 +1,4 @@ { "copyright": "Ulysse Buonomo", "email": "buonomo.ulysse@gmail.com" -} \ No newline at end of file +} diff --git a/users/umaar.json b/users/umaar.json index f42e6626..d09d90fb 100644 --- a/users/umaar.json +++ b/users/umaar.json @@ -1,3 +1,3 @@ { "copyright": "Umar Hansa" -} \ No newline at end of file +} diff --git a/users/umputun.json b/users/umputun.json index 39f1efa9..c6a573c7 100644 --- a/users/umputun.json +++ b/users/umputun.json @@ -3,4 +3,4 @@ "url": "http://umputun.com", "email": "umputun@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/undozen.json b/users/undozen.json index 100c1f20..b8af1430 100644 --- a/users/undozen.json +++ b/users/undozen.json @@ -4,4 +4,4 @@ "url": "http://www.undozen.com", "gravatar": true, "theme": "friendly" -} \ No newline at end of file +} diff --git a/users/unicodejs.json b/users/unicodejs.json index 40a71004..c01665b7 100644 --- a/users/unicodejs.json +++ b/users/unicodejs.json @@ -3,4 +3,4 @@ "url": "https://www.mediawiki.org/wiki/UnicodeJS", "format": "html", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/unisharp.json b/users/unisharp.json index e66a9107..33b95576 100644 --- a/users/unisharp.json +++ b/users/unisharp.json @@ -5,4 +5,4 @@ "format": "html", "theme": "eula-modern", "gravatar": true -} \ No newline at end of file +} diff --git a/users/unmoremaster.json b/users/unmoremaster.json index 7510150f..3eba2243 100644 --- a/users/unmoremaster.json +++ b/users/unmoremaster.json @@ -3,4 +3,4 @@ "url": "http://unmoremaster.hatenablog.com", "email": "unmoremaster@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/uservoice.json b/users/uservoice.json index f97747a3..d58817d1 100644 --- a/users/uservoice.json +++ b/users/uservoice.json @@ -3,4 +3,4 @@ "url": "https://developer.uservoice.com/", "email": "dev@uservoice.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/usuck.json b/users/usuck.json index 808bb43c..d3b8012e 100644 --- a/users/usuck.json +++ b/users/usuck.json @@ -1,3 +1,3 @@ { "copyright": "USuck" -} \ No newline at end of file +} diff --git a/users/utkarsh.json b/users/utkarsh.json index 68d0f345..ff4f5a7f 100644 --- a/users/utkarsh.json +++ b/users/utkarsh.json @@ -1,3 +1,3 @@ { "copyright": "Utkarsh Sengar" -} \ No newline at end of file +} diff --git a/users/uu59.json b/users/uu59.json index 65515d0f..2653c41f 100644 --- a/users/uu59.json +++ b/users/uu59.json @@ -2,4 +2,4 @@ "copyright": "uu59", "url": "http://uu59.org/", "email": "k@uu59.org" -} \ No newline at end of file +} diff --git a/users/uv.json b/users/uv.json index e4beadac..541e1915 100644 --- a/users/uv.json +++ b/users/uv.json @@ -3,4 +3,4 @@ "url": "https://developer.uservoice.com/", "email": "dev@uservoice.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/uvd.json b/users/uvd.json index 40621e4c..15ff6bc3 100644 --- a/users/uvd.json +++ b/users/uvd.json @@ -1,3 +1,3 @@ { "copyright": "Ultraviolet Design Ltd" -} \ No newline at end of file +} diff --git a/users/v.json b/users/v.json index bdb6b062..59b19342 100644 --- a/users/v.json +++ b/users/v.json @@ -3,4 +3,4 @@ "url": "http://avi.im/", "email": "hi@avi.im", "theme": "afterdark" -} \ No newline at end of file +} diff --git a/users/vagnersantana.json b/users/vagnersantana.json index 2b50f85e..3f049666 100644 --- a/users/vagnersantana.json +++ b/users/vagnersantana.json @@ -3,4 +3,4 @@ "url": "http://vagnersantana.com", "email": "vagnervjs@gmail.com.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/vagnervjs.json b/users/vagnervjs.json index 5e966de5..a47c2e34 100644 --- a/users/vagnervjs.json +++ b/users/vagnervjs.json @@ -3,4 +3,4 @@ "url": "http://vagnersantana.com", "email": "vagnervjs@gmail.com.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/vaibhavsingh97.json b/users/vaibhavsingh97.json index 561833f1..36e6ec5d 100644 --- a/users/vaibhavsingh97.json +++ b/users/vaibhavsingh97.json @@ -4,4 +4,4 @@ "email": "vaibhav.singh.14cse@bml.edu.in", "theme": "material-teal", "gravatar": true -} \ No newline at end of file +} diff --git a/users/vakiliy.json b/users/vakiliy.json index bbe82f37..efa1dad1 100644 --- a/users/vakiliy.json +++ b/users/vakiliy.json @@ -1,4 +1,4 @@ { "copyright": "Dmitriy Sergeev", "email": "vakiliy@gmail.com" -} \ No newline at end of file +} diff --git a/users/vardy.json b/users/vardy.json index 5b3d4cbd..f8178077 100644 --- a/users/vardy.json +++ b/users/vardy.json @@ -4,4 +4,4 @@ "format": "html", "gravatar": true, "theme": "material-orange" -} \ No newline at end of file +} diff --git a/users/varundey.json b/users/varundey.json index 62fb4615..00a77210 100644 --- a/users/varundey.json +++ b/users/varundey.json @@ -4,4 +4,4 @@ "theme": "afterdark", "email": "varundey20@gmail.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/varunkumar.json b/users/varunkumar.json index 310a979c..f971bf1c 100644 --- a/users/varunkumar.json +++ b/users/varunkumar.json @@ -3,4 +3,4 @@ "url": "http://www.varunkumar.me", "email": "varunkumar.n@gmail.com", "theme": "xtansia" -} \ No newline at end of file +} diff --git a/users/varzea.json b/users/varzea.json index ed0771e4..479ccda6 100644 --- a/users/varzea.json +++ b/users/varzea.json @@ -1,4 +1,4 @@ { "copyright": "Maxwell Brown", "url": "https://github.com/varzea/" -} \ No newline at end of file +} diff --git a/users/vbalien.json b/users/vbalien.json index 3a9ff148..9aa46f00 100644 --- a/users/vbalien.json +++ b/users/vbalien.json @@ -3,4 +3,4 @@ "url": "http://alien.moe", "email": "vbalien@live.jp", "format": "txt" -} \ No newline at end of file +} diff --git a/users/ve.json b/users/ve.json index b0d92592..27782d39 100644 --- a/users/ve.json +++ b/users/ve.json @@ -3,4 +3,4 @@ "url": "https://phabricator.wikimedia.org/diffusion/GVED/browse/master/AUTHORS.txt", "format": "html", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/venomvendor.json b/users/venomvendor.json index 8a2ade49..0a870383 100644 --- a/users/venomvendor.json +++ b/users/venomvendor.json @@ -3,4 +3,4 @@ "url": "http://VenomVendor.com", "email": "info@VenomVendor.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/vevix.json b/users/vevix.json index d4b62a51..0188654c 100644 --- a/users/vevix.json +++ b/users/vevix.json @@ -2,4 +2,4 @@ "copyright": "Thomas McNiven", "email": "hello@vevix.net", "url": "http://vevix.net" -} \ No newline at end of file +} diff --git a/users/vi3okryulfqjthl6.json b/users/vi3okryulfqjthl6.json index 005c9409..e07cf797 100644 --- a/users/vi3okryulfqjthl6.json +++ b/users/vi3okryulfqjthl6.json @@ -1,3 +1,3 @@ { "copyright": "test" -} \ No newline at end of file +} diff --git a/users/via.json b/users/via.json index c0c8d2a8..d2611f81 100644 --- a/users/via.json +++ b/users/via.json @@ -1,3 +1,3 @@ { "copyright": "Vereniging Informatiewetenschappen Amsterdam" -} \ No newline at end of file +} diff --git a/users/vicey.json b/users/vicey.json index 3198bf49..aee8b69f 100644 --- a/users/vicey.json +++ b/users/vicey.json @@ -3,4 +3,4 @@ "url": "https://vicey.com", "email": "vicey@live.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/vicnicius.json b/users/vicnicius.json index 6af055b6..2741bc11 100644 --- a/users/vicnicius.json +++ b/users/vicnicius.json @@ -3,4 +3,4 @@ "url": "http://vicnicius.github.io", "email": "vchavesster@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/victor.json b/users/victor.json index 55f9d107..0832f84e 100644 --- a/users/victor.json +++ b/users/victor.json @@ -3,4 +3,4 @@ "email": "felladrin@gmail.com", "gravatar": true, "theme": "black-beauty" -} \ No newline at end of file +} diff --git a/users/victordavydov.json b/users/victordavydov.json index c8aea5bc..93511a49 100644 --- a/users/victordavydov.json +++ b/users/victordavydov.json @@ -1,3 +1,3 @@ { "copyright": "Victor Davydov" -} \ No newline at end of file +} diff --git a/users/victordieggo.json b/users/victordieggo.json index cd19d5e3..50645f27 100644 --- a/users/victordieggo.json +++ b/users/victordieggo.json @@ -2,4 +2,4 @@ "copyright": "Victor Diego", "url": "http://victordiego.com", "email": "victordieggo@gmail.com" -} \ No newline at end of file +} diff --git a/users/viditor.json b/users/viditor.json index 9adf3c8a..c15e8434 100644 --- a/users/viditor.json +++ b/users/viditor.json @@ -3,4 +3,4 @@ "url": "ehgoodenough.com", "email": "ehgoodenough@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/vieiralucas.json b/users/vieiralucas.json index c2261eb9..ac01edb5 100644 --- a/users/vieiralucas.json +++ b/users/vieiralucas.json @@ -2,4 +2,4 @@ "copyright": "Lucas Vieira", "url": "http://vieiralucas.com", "email": "vieiralucas4@gmail.com" -} \ No newline at end of file +} diff --git a/users/vijayendra.json b/users/vijayendra.json index 06d21391..af8d02aa 100644 --- a/users/vijayendra.json +++ b/users/vijayendra.json @@ -4,4 +4,4 @@ "email": "vijayendra.bapte@gmail.com", "theme": "material-pink", "gravatar": true -} \ No newline at end of file +} diff --git a/users/viktorbergehall.json b/users/viktorbergehall.json index 6ee4fd5f..969cffe6 100644 --- a/users/viktorbergehall.json +++ b/users/viktorbergehall.json @@ -1,3 +1,3 @@ { "copyright": "Viktor Bergehall" -} \ No newline at end of file +} diff --git a/users/viktort.json b/users/viktort.json index c954d07f..9fe32d4c 100644 --- a/users/viktort.json +++ b/users/viktort.json @@ -1,3 +1,3 @@ { "copyright": "Viktor Trako" -} \ No newline at end of file +} diff --git a/users/vineetdhanawat.json b/users/vineetdhanawat.json index 1e6caaad..52820421 100644 --- a/users/vineetdhanawat.json +++ b/users/vineetdhanawat.json @@ -1,4 +1,4 @@ { "copyright": "Vineet Dhanawat", "url": "http://www.vineetdhanawat.com/" -} \ No newline at end of file +} diff --git a/users/vinipalma.json b/users/vinipalma.json index 0e080609..42a7c04a 100644 --- a/users/vinipalma.json +++ b/users/vinipalma.json @@ -4,4 +4,4 @@ "email": "vini_palma@outlook.com", "format": "txt", "gravatar": true -} \ No newline at end of file +} diff --git a/users/vinnyguitar.json b/users/vinnyguitar.json index 27ade3b2..c1fe99d2 100644 --- a/users/vinnyguitar.json +++ b/users/vinnyguitar.json @@ -2,4 +2,4 @@ "copyright": "vinnyguitar", "email": "vinnyguitar@126.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/vinwz.json b/users/vinwz.json index 366d8616..483554c8 100644 --- a/users/vinwz.json +++ b/users/vinwz.json @@ -1,3 +1,3 @@ { "copyright": "Vincent Watremez" -} \ No newline at end of file +} diff --git a/users/visav.json b/users/visav.json index 787535de..6c8b7fc3 100644 --- a/users/visav.json +++ b/users/visav.json @@ -1,3 +1,3 @@ { "copyright": "Visa Varjus" -} \ No newline at end of file +} diff --git a/users/vishal.json b/users/vishal.json index 5783e7d7..48337432 100644 --- a/users/vishal.json +++ b/users/vishal.json @@ -2,4 +2,4 @@ "copyright": "Vishal Singal", "email": "vishalsingal94@gmail.com", "theme": "xtansia" -} \ No newline at end of file +} diff --git a/users/visionmedia.json b/users/visionmedia.json index 9074e04f..5aae7162 100644 --- a/users/visionmedia.json +++ b/users/visionmedia.json @@ -1,3 +1,3 @@ { "copyright": "TJ Holowaychuk" -} \ No newline at end of file +} diff --git a/users/vitalk.json b/users/vitalk.json index 5c728eb9..e471aa29 100644 --- a/users/vitalk.json +++ b/users/vitalk.json @@ -1,4 +1,4 @@ { "copyright": "Vital Kudzelka", "email": "vital.kudzelka@gmail.com" -} \ No newline at end of file +} diff --git a/users/vito.json b/users/vito.json index 29536a11..33ce4ded 100644 --- a/users/vito.json +++ b/users/vito.json @@ -3,4 +3,4 @@ "url": "http://vit0.com", "email": "vvitozhang@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/vitor.json b/users/vitor.json index 370344e0..2b7c0e5e 100644 --- a/users/vitor.json +++ b/users/vitor.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "opensans" -} \ No newline at end of file +} diff --git a/users/vitorbal.json b/users/vitorbal.json index 1961b1ef..02694f4c 100644 --- a/users/vitorbal.json +++ b/users/vitorbal.json @@ -2,4 +2,4 @@ "copyright": "Vitor Balocco", "url": "http://github.com/vitorbal", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/vitorbritto.json b/users/vitorbritto.json index 45afd1bf..ea8e68c5 100644 --- a/users/vitorbritto.json +++ b/users/vitorbritto.json @@ -2,4 +2,4 @@ "copyright": "Vitor Britto", "url": "http://vitorbritto.com.br", "email": "code@vitorbritto.com.br" -} \ No newline at end of file +} diff --git a/users/vitornogueira.json b/users/vitornogueira.json index 5ed41c23..655f0e66 100644 --- a/users/vitornogueira.json +++ b/users/vitornogueira.json @@ -1,3 +1,3 @@ { "copyright": "Vitor Nogueira" -} \ No newline at end of file +} diff --git a/users/vjpr.json b/users/vjpr.json index 7957071f..b91c52d5 100644 --- a/users/vjpr.json +++ b/users/vjpr.json @@ -1,3 +1,3 @@ { "copyright": "Vaughan Rouesnel" -} \ No newline at end of file +} diff --git a/users/vko-online.json b/users/vko-online.json index 450b17ff..e6a0f605 100644 --- a/users/vko-online.json +++ b/users/vko-online.json @@ -1,3 +1,3 @@ { "copyright": "Medet Tleukabiluly" -} \ No newline at end of file +} diff --git a/users/vmanot.json b/users/vmanot.json index b9a6b3e5..a3c42baf 100644 --- a/users/vmanot.json +++ b/users/vmanot.json @@ -1,3 +1,3 @@ { "copyright": "Vatsal Manot" -} \ No newline at end of file +} diff --git a/users/vnk.json b/users/vnk.json index 50ddc779..07552d75 100644 --- a/users/vnk.json +++ b/users/vnk.json @@ -3,4 +3,4 @@ "url": "http://lapartequefalta.com", "email": "venkman@lapartequefalta.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/vocksel.json b/users/vocksel.json index 1491cab6..a25eea0d 100644 --- a/users/vocksel.json +++ b/users/vocksel.json @@ -2,4 +2,4 @@ "copyright": "David Minnerly", "url": "http://davidminnerly.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/voltdb.json b/users/voltdb.json index b61809c5..eb949f27 100644 --- a/users/voltdb.json +++ b/users/voltdb.json @@ -3,4 +3,4 @@ "url": "http://www.voltdb.com", "email": "info@voltdb.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/voodootikigod.json b/users/voodootikigod.json index 54fb2ed7..d7bfc257 100644 --- a/users/voodootikigod.json +++ b/users/voodootikigod.json @@ -1,3 +1,3 @@ { "copyright": "Chris Williams" -} \ No newline at end of file +} diff --git a/users/voxpelli.json b/users/voxpelli.json index 080bbcff..22812146 100644 --- a/users/voxpelli.json +++ b/users/voxpelli.json @@ -3,4 +3,4 @@ "url": "http://kodfabrik.se", "email": "pelle@kodfabrik.se", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/vsisk.json b/users/vsisk.json index 6dd7aed4..06ed3454 100644 --- a/users/vsisk.json +++ b/users/vsisk.json @@ -2,4 +2,4 @@ "copyright": "Vincent Sisk, https://github.com/sappharx", "email": "vinnysisk@gmail.com", "theme": "solarized" -} \ No newline at end of file +} diff --git a/users/vsouza.json b/users/vsouza.json index a25289b0..2d77aaa8 100644 --- a/users/vsouza.json +++ b/users/vsouza.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/vsr.json b/users/vsr.json index 22614625..2c5c1abc 100644 --- a/users/vsr.json +++ b/users/vsr.json @@ -1,4 +1,4 @@ { "copyright": "Vinay Raikar, http://vinayraikar.com", "url": "http://vinayraikar.com" -} \ No newline at end of file +} diff --git a/users/vt47.json b/users/vt47.json index d19b0f9c..575daa23 100644 --- a/users/vt47.json +++ b/users/vt47.json @@ -4,4 +4,4 @@ "email": "vutran.1710@gmail.com", "format": "html", "theme": "dusk" -} \ No newline at end of file +} diff --git a/users/vtalbot.json b/users/vtalbot.json index 610a9e09..2e7e6863 100644 --- a/users/vtalbot.json +++ b/users/vtalbot.json @@ -2,4 +2,4 @@ "copyright": "Vincent Talbot", "url": "http://github.com/vtalbot", "email": "vincent.talbot@gmail.com" -} \ No newline at end of file +} diff --git a/users/vtence.json b/users/vtence.json index 2139df8e..7d90a3d7 100644 --- a/users/vtence.json +++ b/users/vtence.json @@ -1,3 +1,3 @@ { "copyright": "Vincent Tencé" -} \ No newline at end of file +} diff --git a/users/vulk.json b/users/vulk.json index d4146ec2..eac5f753 100644 --- a/users/vulk.json +++ b/users/vulk.json @@ -1,4 +1,4 @@ { "copyright": "Vulk", "email": "wolfpack@vulk.co" -} \ No newline at end of file +} diff --git a/users/vuquochuy.json b/users/vuquochuy.json index 67b7c097..09cce0a9 100644 --- a/users/vuquochuy.json +++ b/users/vuquochuy.json @@ -3,4 +3,4 @@ "url": "http://huyvq.com", "email": "vuquochuy@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/vvakame.json b/users/vvakame.json index 6a4fd7e1..85876e51 100644 --- a/users/vvakame.json +++ b/users/vvakame.json @@ -1,4 +1,4 @@ { "copyright": "Masahiro Wakame", "url": "https://github.com/vvakame" -} \ No newline at end of file +} diff --git a/users/vzool.json b/users/vzool.json index 216287e3..f0cc38d1 100644 --- a/users/vzool.json +++ b/users/vzool.json @@ -1,4 +1,4 @@ { "copyright": "Abdelaziz Elrashed", "email": "aeemh.sdn@gmail.com" -} \ No newline at end of file +} diff --git a/users/w.json b/users/w.json index 9a83d983..c9a1ebb9 100644 --- a/users/w.json +++ b/users/w.json @@ -5,4 +5,4 @@ "format": "html", "theme": "material-brown", "gravatar": true -} \ No newline at end of file +} diff --git a/users/wangbin.json b/users/wangbin.json index e4bf2a2b..9f4acbc6 100644 --- a/users/wangbin.json +++ b/users/wangbin.json @@ -2,4 +2,4 @@ "copyright": "Wang Bin", "email": "wangbin.zibo@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/wangchi.json b/users/wangchi.json index 2b9ac868..b87f0d8d 100644 --- a/users/wangchi.json +++ b/users/wangchi.json @@ -4,4 +4,4 @@ "email": "hiwangchi@gmail.com", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/wangeleile.json b/users/wangeleile.json index a209edca..477e73eb 100644 --- a/users/wangeleile.json +++ b/users/wangeleile.json @@ -2,4 +2,4 @@ "copyright": "Horst Wangeleile, http://wangeleile.de", "url": "http://wangeleile.de", "email": "wangeleile@googlemail.com" -} \ No newline at end of file +} diff --git a/users/wanja.json b/users/wanja.json index d6580829..29270c6a 100644 --- a/users/wanja.json +++ b/users/wanja.json @@ -1,3 +1,3 @@ { "copyright": "Wanja Stier" -} \ No newline at end of file +} diff --git a/users/warwick.json b/users/warwick.json index c315750d..2b25362c 100644 --- a/users/warwick.json +++ b/users/warwick.json @@ -1,4 +1,4 @@ { "copyright": "University of Warwick", "url": "http://warwick.ac.uk/" -} \ No newline at end of file +} diff --git a/users/warwickmasson.json b/users/warwickmasson.json index b83a7647..9f5e6415 100644 --- a/users/warwickmasson.json +++ b/users/warwickmasson.json @@ -1,3 +1,3 @@ { "copyright": "Warwick Masson" -} \ No newline at end of file +} diff --git a/users/watchout.json b/users/watchout.json index 8e2735be..c0fdfb09 100644 --- a/users/watchout.json +++ b/users/watchout.json @@ -3,4 +3,4 @@ "url": "http://watchout.tw/", "email": "info@watchout.tw", "format": "txt" -} \ No newline at end of file +} diff --git a/users/wavell.json b/users/wavell.json index 2709a889..e8412c88 100644 --- a/users/wavell.json +++ b/users/wavell.json @@ -1,4 +1,4 @@ { "copyright": "Wavell Watson", "url": "https://github.com/wavell" -} \ No newline at end of file +} diff --git a/users/waynesan.json b/users/waynesan.json index af5d529a..26c88c72 100644 --- a/users/waynesan.json +++ b/users/waynesan.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "default" -} \ No newline at end of file +} diff --git a/users/wbinnssmith.json b/users/wbinnssmith.json index cf713c4b..28b01325 100644 --- a/users/wbinnssmith.json +++ b/users/wbinnssmith.json @@ -1,4 +1,4 @@ { "copyright": "Will Binns-Smith", "email": "wbinnssmith@gmail.com" -} \ No newline at end of file +} diff --git a/users/wd.json b/users/wd.json index 988594da..1b3fddc4 100644 --- a/users/wd.json +++ b/users/wd.json @@ -2,4 +2,4 @@ "copyright": "Oleg Korsunsky", "url": "http://wd.dizaina.net", "email": "wd@dizaina.net" -} \ No newline at end of file +} diff --git a/users/web-xaser.json b/users/web-xaser.json index b6cd835d..82807c89 100644 --- a/users/web-xaser.json +++ b/users/web-xaser.json @@ -3,4 +3,4 @@ "url": "http://www.web-xaser.ru", "email": "admin@web-xaser.ru", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/web.json b/users/web.json index 91650cda..4d43654d 100644 --- a/users/web.json +++ b/users/web.json @@ -4,4 +4,4 @@ "email": "chrisweber@live.com", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/webbson.json b/users/webbson.json index 053cdbc1..e21b04da 100644 --- a/users/webbson.json +++ b/users/webbson.json @@ -4,4 +4,4 @@ "email": "tom@stevens.se", "gravatar": true, "theme": "black-beauty" -} \ No newline at end of file +} diff --git a/users/webcomponentsorg.json b/users/webcomponentsorg.json index e5d79e51..90b2db68 100644 --- a/users/webcomponentsorg.json +++ b/users/webcomponentsorg.json @@ -2,4 +2,4 @@ "copyright": "WebComponents.org", "url": "http://webcomponents.org", "email": "webcomponentsdotorg@gmail.com" -} \ No newline at end of file +} diff --git a/users/webdevrich.json b/users/webdevrich.json index 1ad58da5..4c999dc8 100644 --- a/users/webdevrich.json +++ b/users/webdevrich.json @@ -4,4 +4,4 @@ "email": "web_dev_rich@keyzor.net", "format": "txt", "gravatar": true -} \ No newline at end of file +} diff --git a/users/webpro.json b/users/webpro.json index 30b1416a..9de54ac5 100644 --- a/users/webpro.json +++ b/users/webpro.json @@ -4,4 +4,4 @@ "email": "lars@webpro.nl", "theme": "default", "gravatar": true -} \ No newline at end of file +} diff --git a/users/weejames.json b/users/weejames.json index a30dd01e..a9b48e3b 100644 --- a/users/weejames.json +++ b/users/weejames.json @@ -3,4 +3,4 @@ "url": "http://jamesconstable.co.uk", "email": "me@jamesconstable.co.uk", "format": "txt" -} \ No newline at end of file +} diff --git a/users/wei.json b/users/wei.json index 8ccc99c5..1968f413 100644 --- a/users/wei.json +++ b/users/wei.json @@ -4,4 +4,4 @@ "email": "github@weispot.com", "theme": "material-blue", "gravatar": true -} \ No newline at end of file +} diff --git a/users/weijunji.json b/users/weijunji.json index c9275314..51ffd1ac 100644 --- a/users/weijunji.json +++ b/users/weijunji.json @@ -4,4 +4,4 @@ "email": "990628wjy@gmail.com", "gravatar": true, "theme": "dusk" -} \ No newline at end of file +} diff --git a/users/werle.json b/users/werle.json index 10f63931..6df1fce4 100644 --- a/users/werle.json +++ b/users/werle.json @@ -2,4 +2,4 @@ "copyright": "Joseph Werle, http://werle.io", "url": "http://werle.io", "theme": "afterdark" -} \ No newline at end of file +} diff --git a/users/wesbos.json b/users/wesbos.json index df1e2f71..6120c78a 100644 --- a/users/wesbos.json +++ b/users/wesbos.json @@ -1,4 +1,4 @@ { "copyright": "Wes Bos, http://wesbos.com", "url": "http://wesbos.com" -} \ No newline at end of file +} diff --git a/users/wesley.json b/users/wesley.json index 7d9bceb6..4a62f687 100644 --- a/users/wesley.json +++ b/users/wesley.json @@ -3,4 +3,4 @@ "url": "http://suijy.com", "email": "wesleysui@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/wesleydesouza.json b/users/wesleydesouza.json index 1e02d030..5a68f6e2 100644 --- a/users/wesleydesouza.json +++ b/users/wesleydesouza.json @@ -4,4 +4,4 @@ "email": "me@wesley.so", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/weslly.json b/users/weslly.json index 0c5c1261..ee503968 100644 --- a/users/weslly.json +++ b/users/weslly.json @@ -2,4 +2,4 @@ "copyright": "Weslly Honorato, http://about.me/weslly", "url": "http://about.me/weslly", "format": "html" -} \ No newline at end of file +} diff --git a/users/wfxr.json b/users/wfxr.json index 59d8eda2..6957e911 100644 --- a/users/wfxr.json +++ b/users/wfxr.json @@ -3,4 +3,4 @@ "url": "https://github.com/wfxr", "email": "wenxuangm@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/wglab.json b/users/wglab.json index 2a3c31e8..811b1293 100644 --- a/users/wglab.json +++ b/users/wglab.json @@ -1,3 +1,3 @@ { "copyright": "Wang Genomics Lab" -} \ No newline at end of file +} diff --git a/users/whatsim.json b/users/whatsim.json index 8d068441..d541e762 100644 --- a/users/whatsim.json +++ b/users/whatsim.json @@ -1,3 +1,3 @@ { "copyright": "Will Ruby" -} \ No newline at end of file +} diff --git a/users/whittle.json b/users/whittle.json index 83826d45..3e85509b 100644 --- a/users/whittle.json +++ b/users/whittle.json @@ -1,3 +1,3 @@ { "copyright": "Jason Whittle" -} \ No newline at end of file +} diff --git a/users/whizark.json b/users/whizark.json index e72ce17c..59836267 100644 --- a/users/whizark.json +++ b/users/whizark.json @@ -1,4 +1,4 @@ { "copyright": "Whizark", "url": "https://github.com/whizark" -} \ No newline at end of file +} diff --git a/users/whostolemyhat.json b/users/whostolemyhat.json index a32c490e..b1d8c5fc 100644 --- a/users/whostolemyhat.json +++ b/users/whostolemyhat.json @@ -1,4 +1,4 @@ { "copyright": "James Tease", "url": "http://jamestease.co.uk" -} \ No newline at end of file +} diff --git a/users/whym.json b/users/whym.json index 9bff9b1b..1f9a74cd 100644 --- a/users/whym.json +++ b/users/whym.json @@ -4,4 +4,4 @@ "email": "whym@whym.org", "gravatar": true, "theme": "eula-modern" -} \ No newline at end of file +} diff --git a/users/wickett.json b/users/wickett.json index bc5612bc..d72f6cf4 100644 --- a/users/wickett.json +++ b/users/wickett.json @@ -1,4 +1,4 @@ { "copyright": "James Wickett, wickett.me", "url": "http://wickett.me/" -} \ No newline at end of file +} diff --git a/users/widged.json b/users/widged.json index 3961f2df..ae5c9689 100644 --- a/users/widged.json +++ b/users/widged.json @@ -2,4 +2,4 @@ "copyright": "Marielle Lange, http://widged.com", "url": "http://widged.com", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/widnyana.json b/users/widnyana.json index 5d7d80f3..3a6f686c 100644 --- a/users/widnyana.json +++ b/users/widnyana.json @@ -4,4 +4,4 @@ "email": "me@widnyana.web.id", "format": "html", "theme": "white cherry" -} \ No newline at end of file +} diff --git a/users/wiesner.json b/users/wiesner.json index 6379d575..4c74b034 100644 --- a/users/wiesner.json +++ b/users/wiesner.json @@ -2,4 +2,4 @@ "copyright": "Michael Wiesner", "url": "https://mwiesner.com", "email": "impressum@mwiesner.com" -} \ No newline at end of file +} diff --git a/users/wilddog.json b/users/wilddog.json index 86712f59..6034704d 100644 --- a/users/wilddog.json +++ b/users/wilddog.json @@ -2,4 +2,4 @@ "copyright": "Wilddog", "url": "https://wilddog.com", "email": "opensource@wilddog.com" -} \ No newline at end of file +} diff --git a/users/will.json b/users/will.json index 4ad6b964..39154f2f 100644 --- a/users/will.json +++ b/users/will.json @@ -2,4 +2,4 @@ "copyright": "Will Mayner, http://willmayner.com", "url": "http://willmayner.com", "theme": "blackwood" -} \ No newline at end of file +} diff --git a/users/will3942.json b/users/will3942.json index 4b3ec2a1..65a98f93 100644 --- a/users/will3942.json +++ b/users/will3942.json @@ -3,4 +3,4 @@ "url": "http://will3942.com", "email": "will@will3942.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/william17.json b/users/william17.json index 703d7b98..4335cb48 100644 --- a/users/william17.json +++ b/users/william17.json @@ -1,4 +1,4 @@ { "copyright": "William Leung", "url": "https://github.com/William17" -} \ No newline at end of file +} diff --git a/users/willianduarte.json b/users/willianduarte.json index e2444d1e..a7afc83b 100644 --- a/users/willianduarte.json +++ b/users/willianduarte.json @@ -3,4 +3,4 @@ "url": "http://willianduarte.com", "theme": "blackwood", "email": "contato@willianduarte.com" -} \ No newline at end of file +} diff --git a/users/willin.json b/users/willin.json index b49e544b..2c8ee1c0 100644 --- a/users/willin.json +++ b/users/willin.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "material" -} \ No newline at end of file +} diff --git a/users/willpower.json b/users/willpower.json index c97c02fa..150bc556 100644 --- a/users/willpower.json +++ b/users/willpower.json @@ -4,4 +4,4 @@ "email": "felipe@willpower.art.br", "theme": "willpower", "gravatar": true -} \ No newline at end of file +} diff --git a/users/wind4869.json b/users/wind4869.json index 60e373ef..8f69300e 100644 --- a/users/wind4869.json +++ b/users/wind4869.json @@ -3,4 +3,4 @@ "url": "http://wind4869.me", "email": "windv587@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/witchard.json b/users/witchard.json index 2e610ebf..aad0b57f 100644 --- a/users/witchard.json +++ b/users/witchard.json @@ -1,4 +1,4 @@ { "copyright": "witchard, http://witchard.github.io/", "url": "http://witchard.github.io/" -} \ No newline at end of file +} diff --git a/users/wjr3.json b/users/wjr3.json index 52d99f4d..69731530 100644 --- a/users/wjr3.json +++ b/users/wjr3.json @@ -4,4 +4,4 @@ "email": "wrainaud@outlook.com", "format": "html", "theme": "mitserrat" -} \ No newline at end of file +} diff --git a/users/wmwragg.json b/users/wmwragg.json index 70a41789..6aae2b0e 100644 --- a/users/wmwragg.json +++ b/users/wmwragg.json @@ -1,3 +1,3 @@ { "copyright": "William Wragg" -} \ No newline at end of file +} diff --git a/users/wolfiezero.json b/users/wolfiezero.json index f86c94e7..8ca01e1b 100644 --- a/users/wolfiezero.json +++ b/users/wolfiezero.json @@ -3,4 +3,4 @@ "url": "http://wolfiezero.com/", "email": "neil@wolfiezero.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/wolflee.json b/users/wolflee.json index 2dc87c67..2e9aa354 100644 --- a/users/wolflee.json +++ b/users/wolflee.json @@ -1,3 +1,3 @@ { "copyright": "WolfLee" -} \ No newline at end of file +} diff --git a/users/wong2.json b/users/wong2.json index 627d63a0..125362e5 100644 --- a/users/wong2.json +++ b/users/wong2.json @@ -1,4 +1,4 @@ { "copyright": "Wang Dapeng", "url": "http://wong2.cn" -} \ No newline at end of file +} diff --git a/users/wordpresspokhara.json b/users/wordpresspokhara.json index 4c01ee7c..b49406e2 100644 --- a/users/wordpresspokhara.json +++ b/users/wordpresspokhara.json @@ -2,4 +2,4 @@ "copyright": "WordPress Pokhara", "url": "https://www.facebook.com/groups/wordpress.pokhara", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/wouterjanson.json b/users/wouterjanson.json index ff13b454..34976497 100644 --- a/users/wouterjanson.json +++ b/users/wouterjanson.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "mitserrat" -} \ No newline at end of file +} diff --git a/users/wozozo.json b/users/wozozo.json index 73cbce2f..f7dc0d9a 100644 --- a/users/wozozo.json +++ b/users/wozozo.json @@ -2,4 +2,4 @@ "copyright": "Yoichi Fujimoto, http://wozozo.jp/", "url": "http://wozozo.jp/", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/wp-blank-canvas-framework.json b/users/wp-blank-canvas-framework.json index 96e2dda3..04a27d99 100644 --- a/users/wp-blank-canvas-framework.json +++ b/users/wp-blank-canvas-framework.json @@ -3,4 +3,4 @@ "theme": "$2", "email": "$3", "format": "$4" -} \ No newline at end of file +} diff --git a/users/wp-freelancer-client-panel.json b/users/wp-freelancer-client-panel.json index a82c3e74..b8d90e27 100644 --- a/users/wp-freelancer-client-panel.json +++ b/users/wp-freelancer-client-panel.json @@ -3,4 +3,4 @@ "theme": "flesch", "email": "support@icodeclarity.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/wp-uptimerobot-dashboard-widget.json b/users/wp-uptimerobot-dashboard-widget.json index 035af349..f0dfd271 100644 --- a/users/wp-uptimerobot-dashboard-widget.json +++ b/users/wp-uptimerobot-dashboard-widget.json @@ -3,4 +3,4 @@ "theme": "orange", "email": "support@icodeclarity.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/wph.json b/users/wph.json index 99be50f9..bb2bdeff 100644 --- a/users/wph.json +++ b/users/wph.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "black beauty" -} \ No newline at end of file +} diff --git a/users/wpk.json b/users/wpk.json index 21fefe02..4592bebc 100644 --- a/users/wpk.json +++ b/users/wpk.json @@ -1,4 +1,4 @@ { "copyright": "Paul Koppen, http://paulkoppen.com", "url": "http://paulkoppen.com" -} \ No newline at end of file +} diff --git a/users/wpsitecare.json b/users/wpsitecare.json index 0676de5f..0185962b 100644 --- a/users/wpsitecare.json +++ b/users/wpsitecare.json @@ -3,4 +3,4 @@ "url": "http://www.wpsitecare.com", "email": "hello@wpsitecare.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/wraithan.json b/users/wraithan.json index ceeb3bb2..f452f497 100644 --- a/users/wraithan.json +++ b/users/wraithan.json @@ -4,4 +4,4 @@ "email": "xwraithanx@gmail.com", "theme": "flesch", "gravatar": true -} \ No newline at end of file +} diff --git a/users/wrl.json b/users/wrl.json index aeea11c5..c265ac30 100644 --- a/users/wrl.json +++ b/users/wrl.json @@ -2,4 +2,4 @@ "copyright": "William Light", "email": "wrl@illest.net", "format": "txt" -} \ No newline at end of file +} diff --git a/users/wrong-entertainment.json b/users/wrong-entertainment.json index 8919fb51..3fb67fa3 100644 --- a/users/wrong-entertainment.json +++ b/users/wrong-entertainment.json @@ -4,4 +4,4 @@ "format": "html", "gravatar": false, "theme": "plaintext" -} \ No newline at end of file +} diff --git a/users/wsmoak.json b/users/wsmoak.json index b39fb263..331fa19f 100644 --- a/users/wsmoak.json +++ b/users/wsmoak.json @@ -3,4 +3,4 @@ "url": "http://wsmoak.net", "email": "wsmoak@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/wtigert.json b/users/wtigert.json index f938e794..12a856c7 100644 --- a/users/wtigert.json +++ b/users/wtigert.json @@ -1,3 +1,3 @@ { "copyright": "Wyatt Tigert" -} \ No newline at end of file +} diff --git a/users/wttw.json b/users/wttw.json index df4686b6..dce3be54 100644 --- a/users/wttw.json +++ b/users/wttw.json @@ -3,4 +3,4 @@ "url": "http://labs.wordtothewise.com/", "email": "steve@wordtothewise.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/wty.json b/users/wty.json index d417ea48..3f2b4f3c 100644 --- a/users/wty.json +++ b/users/wty.json @@ -1,3 +1,3 @@ { "copyright": "Tianyu Wang" -} \ No newline at end of file +} diff --git a/users/wty21cn.json b/users/wty21cn.json index d417ea48..3f2b4f3c 100644 --- a/users/wty21cn.json +++ b/users/wty21cn.json @@ -1,3 +1,3 @@ { "copyright": "Tianyu Wang" -} \ No newline at end of file +} diff --git a/users/wuan.json b/users/wuan.json index 74b3f372..0093f7be 100644 --- a/users/wuan.json +++ b/users/wuan.json @@ -1,3 +1,3 @@ { "copyright": "Andreas Würl" -} \ No newline at end of file +} diff --git a/users/wuthefwasthat.json b/users/wuthefwasthat.json index bd34c7dc..864f8902 100644 --- a/users/wuthefwasthat.json +++ b/users/wuthefwasthat.json @@ -1,3 +1,3 @@ { "copyright": "Jeff Wu" -} \ No newline at end of file +} diff --git a/users/ww24.json b/users/ww24.json index 9d489a7e..289f38b8 100644 --- a/users/ww24.json +++ b/users/ww24.json @@ -1,4 +1,4 @@ { "copyright": "Takenori Nakagawa", "url": "https://github.com/ww24" -} \ No newline at end of file +} diff --git a/users/wwalker.json b/users/wwalker.json index 09f99e97..e48eeac6 100644 --- a/users/wwalker.json +++ b/users/wwalker.json @@ -1,4 +1,4 @@ { "copyright": "Wayne Walker", "email": "wwalker@solid-constructs.com" -} \ No newline at end of file +} diff --git a/users/wwbrannon.json b/users/wwbrannon.json index ed7e7d3b..66b05de4 100644 --- a/users/wwbrannon.json +++ b/users/wwbrannon.json @@ -4,4 +4,4 @@ "email": "will.brannon@gmail.com", "gravatar": true, "format": "html" -} \ No newline at end of file +} diff --git a/users/wy.json b/users/wy.json index 388a1c05..a879f7c3 100644 --- a/users/wy.json +++ b/users/wy.json @@ -2,4 +2,4 @@ "copyright": "William Youmans", "url": "http://www.williamyoumans.com", "email": "hello@williamyoumans.com" -} \ No newline at end of file +} diff --git a/users/wychoe.json b/users/wychoe.json index a4e78986..bc22ba23 100644 --- a/users/wychoe.json +++ b/users/wychoe.json @@ -1,3 +1,3 @@ { "copyright": "Choe Wooyeong" -} \ No newline at end of file +} diff --git a/users/wytrivail.json b/users/wytrivail.json index e586bcf8..58c79063 100644 --- a/users/wytrivail.json +++ b/users/wytrivail.json @@ -1,3 +1,3 @@ { "copyright": "wytrivail" -} \ No newline at end of file +} diff --git a/users/xcuze.json b/users/xcuze.json index 1b0b547a..44b44c55 100644 --- a/users/xcuze.json +++ b/users/xcuze.json @@ -3,4 +3,4 @@ "url": "http://xcuze.me", "email": "florian.krueger@projectserver.org", "theme": "afterdark" -} \ No newline at end of file +} diff --git a/users/xerula.json b/users/xerula.json index 96904dfd..d7144a60 100644 --- a/users/xerula.json +++ b/users/xerula.json @@ -3,4 +3,4 @@ "url": "http://xerula.com", "email": "xerula@gmail.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/xffljjqbqvsywxqakpvdbwyqqyt.json b/users/xffljjqbqvsywxqakpvdbwyqqyt.json index 087944fc..96cc1e31 100644 --- a/users/xffljjqbqvsywxqakpvdbwyqqyt.json +++ b/users/xffljjqbqvsywxqakpvdbwyqqyt.json @@ -1,3 +1,3 @@ { "copyright": "xffljjqbqvsywxqakpvdbwyqqyt" -} \ No newline at end of file +} diff --git a/users/xhh.json b/users/xhh.json index 1b70c8e4..db9889bd 100644 --- a/users/xhh.json +++ b/users/xhh.json @@ -3,4 +3,4 @@ "url": "http://xhh.me", "email": "xhh@xhh.me", "format": "txt" -} \ No newline at end of file +} diff --git a/users/xiaods.json b/users/xiaods.json index fc1c4bba..713220c4 100644 --- a/users/xiaods.json +++ b/users/xiaods.json @@ -3,4 +3,4 @@ "url": "http://coder.858go.com/", "email": "xiaods@gmail.com", "format": "html" -} \ No newline at end of file +} diff --git a/users/xight.json b/users/xight.json index ce0a87cd..52a0cf1d 100644 --- a/users/xight.json +++ b/users/xight.json @@ -2,4 +2,4 @@ "copyright": "Yoshiki Sato", "url": "http://xight.org", "gravatar": true -} \ No newline at end of file +} diff --git a/users/ximi.json b/users/ximi.json index 25430cce..85e3a9f1 100644 --- a/users/ximi.json +++ b/users/ximi.json @@ -3,4 +3,4 @@ "url": "http://ximi.io", "email": "max@ximi.io", "format": "txt" -} \ No newline at end of file +} diff --git a/users/xinuc.json b/users/xinuc.json index c232c4c1..106ee9f3 100644 --- a/users/xinuc.json +++ b/users/xinuc.json @@ -1,3 +1,3 @@ { "copyright": "Nugroho Herucahyono" -} \ No newline at end of file +} diff --git a/users/xkerman.json b/users/xkerman.json index b48764e7..a453eedd 100644 --- a/users/xkerman.json +++ b/users/xkerman.json @@ -1,4 +1,4 @@ { "copyright": "xKerman", "url": "https://github.com/xKerman" -} \ No newline at end of file +} diff --git a/users/xlab.json b/users/xlab.json index c2efd396..c86b7308 100644 --- a/users/xlab.json +++ b/users/xlab.json @@ -3,4 +3,4 @@ "url": "https://xlab.is", "email": "max@kc.vc", "format": "txt" -} \ No newline at end of file +} diff --git a/users/xlune.json b/users/xlune.json index 994125cd..47a24b28 100644 --- a/users/xlune.json +++ b/users/xlune.json @@ -3,4 +3,4 @@ "url": "http://xlune.com", "gravatar": true, "theme": "silver-style" -} \ No newline at end of file +} diff --git a/users/xoebus.json b/users/xoebus.json index 28c3f1b1..f49f6e03 100644 --- a/users/xoebus.json +++ b/users/xoebus.json @@ -3,4 +3,4 @@ "url": "http://xoeb.us", "email": "chris@xoeb.us", "format": "txt" -} \ No newline at end of file +} diff --git a/users/xsc.json b/users/xsc.json index c57a094a..f9879510 100644 --- a/users/xsc.json +++ b/users/xsc.json @@ -3,4 +3,4 @@ "url": "https://xsc.github.io", "email": "yannick.scherer@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/xtansia.json b/users/xtansia.json index b3a6f0cd..44bf32ac 100644 --- a/users/xtansia.json +++ b/users/xtansia.json @@ -4,4 +4,4 @@ "email": "farr.thomas@gmail.com", "format": "html", "theme": "xtansia" -} \ No newline at end of file +} diff --git a/users/xuhong.json b/users/xuhong.json index 2c4527ec..899df726 100644 --- a/users/xuhong.json +++ b/users/xuhong.json @@ -2,4 +2,4 @@ "copyright": "xuhong chen", "url": "http://xuhong.github.com", "email": "cxh710200711@gmail.com" -} \ No newline at end of file +} diff --git a/users/xuncheng.json b/users/xuncheng.json index 555e71fa..46adb8c4 100644 --- a/users/xuncheng.json +++ b/users/xuncheng.json @@ -2,4 +2,4 @@ "copyright": "Xuncheng Wang", "url": "https://xuncheng.github.io", "email": "w.xun.cheng@gmail.com" -} \ No newline at end of file +} diff --git a/users/xyc.json b/users/xyc.json index 7bf9f39e..031eb0e2 100644 --- a/users/xyc.json +++ b/users/xyc.json @@ -1,3 +1,3 @@ { "copyright": "Xiaoyi Chen" -} \ No newline at end of file +} diff --git a/users/y3sh.json b/users/y3sh.json index 2ca7d7c7..a45b978c 100644 --- a/users/y3sh.json +++ b/users/y3sh.json @@ -3,4 +3,4 @@ "url": "http://y3sh.com", "email": "joshhibschman@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/y6nH.json b/users/y6nH.json index aca8463b..b037ec0a 100644 --- a/users/y6nH.json +++ b/users/y6nH.json @@ -1,4 +1,4 @@ { "copyright": "Hugh Spiller", "url": "https://y6nh.github.io/" -} \ No newline at end of file +} diff --git a/users/ya-ota.json b/users/ya-ota.json index 4332a273..119aa1aa 100644 --- a/users/ya-ota.json +++ b/users/ya-ota.json @@ -3,4 +3,4 @@ "url": "http://ccm-lulu.com", "email": "ya-ota@ccm-lulu.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/yadavjpr.json b/users/yadavjpr.json index d58d5db1..cbc345a4 100644 --- a/users/yadavjpr.json +++ b/users/yadavjpr.json @@ -3,4 +3,4 @@ "url": "http://kailashyadav.in", "email": "yadavjpr@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/yaler.json b/users/yaler.json index 87b48a38..b0b53b19 100644 --- a/users/yaler.json +++ b/users/yaler.json @@ -1,3 +1,3 @@ { "copyright": "Yaler GmbH" -} \ No newline at end of file +} diff --git a/users/yantene.json b/users/yantene.json index 1b133232..332e1038 100644 --- a/users/yantene.json +++ b/users/yantene.json @@ -1,4 +1,4 @@ { "copyright": "yantene", "url": "http://yantene.net" -} \ No newline at end of file +} diff --git a/users/yanyiwu.json b/users/yanyiwu.json index f19b0f85..8f7edb81 100644 --- a/users/yanyiwu.json +++ b/users/yanyiwu.json @@ -3,4 +3,4 @@ "url": "http://yanyiwu.com", "email": "i@yanyiwu.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/yappo.json b/users/yappo.json index 7debda0a..251dee3f 100644 --- a/users/yappo.json +++ b/users/yappo.json @@ -3,4 +3,4 @@ "email": "yappo@shibuya.pl", "url": "http://search.cpan.org/~yappo/", "theme": "plaintext" -} \ No newline at end of file +} diff --git a/users/yarmomackenbach.json b/users/yarmomackenbach.json index 44dcaadb..eb62ec98 100644 --- a/users/yarmomackenbach.json +++ b/users/yarmomackenbach.json @@ -3,4 +3,4 @@ "url": "http://medea.one", "email": "yarmo@medea.one", "format": "html" -} \ No newline at end of file +} diff --git a/users/yaro.json b/users/yaro.json index 2dbee273..a7349242 100644 --- a/users/yaro.json +++ b/users/yaro.json @@ -4,4 +4,4 @@ "email": "yaro@moca.li", "format": "html", "theme": "hipster-gray" -} \ No newline at end of file +} diff --git a/users/yashar.json b/users/yashar.json index 495e3311..902e0081 100644 --- a/users/yashar.json +++ b/users/yashar.json @@ -3,4 +3,4 @@ "url": "http://yash.im", "email": "me@yash.im", "format": "html" -} \ No newline at end of file +} diff --git a/users/yasyf.json b/users/yasyf.json index dc9997e0..8b451797 100644 --- a/users/yasyf.json +++ b/users/yasyf.json @@ -3,4 +3,4 @@ "url": "http://www.yasyf.com", "gravatar": true, "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/yatil.json b/users/yatil.json index 54638f03..b8cf4e7e 100644 --- a/users/yatil.json +++ b/users/yatil.json @@ -1,4 +1,4 @@ { "copyright": "Eric Eggert, http://yatil.net", "url": "http://yatil.net" -} \ No newline at end of file +} diff --git a/users/yeltsin.json b/users/yeltsin.json index f24777b7..93c9b116 100644 --- a/users/yeltsin.json +++ b/users/yeltsin.json @@ -1,3 +1,3 @@ { "copyright": "Yeltsin Lima" -} \ No newline at end of file +} diff --git a/users/yhnavein.json b/users/yhnavein.json index fe033709..9ab59181 100644 --- a/users/yhnavein.json +++ b/users/yhnavein.json @@ -1,3 +1,3 @@ { "copyright": "Piotrek Dąbrowski" -} \ No newline at end of file +} diff --git a/users/yimengtianya.json b/users/yimengtianya.json index 11f6e013..000e8267 100644 --- a/users/yimengtianya.json +++ b/users/yimengtianya.json @@ -1,3 +1,3 @@ { "copyright": "yimengtianya" -} \ No newline at end of file +} diff --git a/users/yimengtianya1.json b/users/yimengtianya1.json index 64dae92a..4b1a577f 100644 --- a/users/yimengtianya1.json +++ b/users/yimengtianya1.json @@ -3,4 +3,4 @@ "url": "http://remysharp.com", "email": "support@wilddog.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/yimengtianya444.json b/users/yimengtianya444.json index 64dae92a..4b1a577f 100644 --- a/users/yimengtianya444.json +++ b/users/yimengtianya444.json @@ -3,4 +3,4 @@ "url": "http://remysharp.com", "email": "support@wilddog.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/yiramang.json b/users/yiramang.json index 928a528f..0eee6843 100644 --- a/users/yiramang.json +++ b/users/yiramang.json @@ -1,3 +1,3 @@ { "copyright": "Yiramang" -} \ No newline at end of file +} diff --git a/users/ylrxeidx.json b/users/ylrxeidx.json index bc59bd26..6393f79f 100644 --- a/users/ylrxeidx.json +++ b/users/ylrxeidx.json @@ -2,4 +2,4 @@ "copyright": "Aldo Iljazi", "email": "ylrxeidx@openmailbox.org", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/yoelp.json b/users/yoelp.json index cef118a6..5caaadd6 100644 --- a/users/yoelp.json +++ b/users/yoelp.json @@ -1,3 +1,3 @@ { "copyright": "Yoel Porgesz" -} \ No newline at end of file +} diff --git a/users/yogesh.json b/users/yogesh.json index ba080b38..c5d887a8 100644 --- a/users/yogesh.json +++ b/users/yogesh.json @@ -2,4 +2,4 @@ "copyright": "Yogesh Chaudhari, http://www.cyogesh.com", "url": "http://www.cyogesh.com", "email": "mr.yogesh@gmail.com" -} \ No newline at end of file +} diff --git a/users/yoggy.json b/users/yoggy.json index 0056e682..7dc27eed 100644 --- a/users/yoggy.json +++ b/users/yoggy.json @@ -1,4 +1,4 @@ { "copyright": "yoggy", "url": "https://github.com/yoggy" -} \ No newline at end of file +} diff --git a/users/yoginth.json b/users/yoginth.json index d99801bf..d734f55f 100644 --- a/users/yoginth.json +++ b/users/yoginth.json @@ -3,4 +3,4 @@ "url": "https://yoginth.ml", "email": "yoginth@zoho.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/yoloconfessions.json b/users/yoloconfessions.json index 611dccf6..9d7fe99f 100644 --- a/users/yoloconfessions.json +++ b/users/yoloconfessions.json @@ -1,3 +1,3 @@ { "copyright": "John Jensen and Jonah Kirangi" -} \ No newline at end of file +} diff --git a/users/yoruaki.json b/users/yoruaki.json index e15f1339..a9f5961a 100644 --- a/users/yoruaki.json +++ b/users/yoruaki.json @@ -2,4 +2,4 @@ "copyright": "yoruaki", "url": "http://simpleism.net/", "theme": "default" -} \ No newline at end of file +} diff --git a/users/yoshuki.json b/users/yoshuki.json index f3744a0d..300234fd 100644 --- a/users/yoshuki.json +++ b/users/yoshuki.json @@ -1,4 +1,4 @@ { "copyright": "MIKAMI Yoshiyuki", "url": "http://saikyoline.jp/" -} \ No newline at end of file +} diff --git a/users/yosida95.json b/users/yosida95.json index 1f328f4d..bd7f0e87 100644 --- a/users/yosida95.json +++ b/users/yosida95.json @@ -4,4 +4,4 @@ "email": "license@yosida95.com", "theme": "friendly", "gravatar": true -} \ No newline at end of file +} diff --git a/users/yosugi.json b/users/yosugi.json index f2927e11..bf3f24d6 100644 --- a/users/yosugi.json +++ b/users/yosugi.json @@ -1,3 +1,3 @@ { "copyright": "yosugi" -} \ No newline at end of file +} diff --git a/users/yotpo.json b/users/yotpo.json index 59fc601a..9fa32148 100644 --- a/users/yotpo.json +++ b/users/yotpo.json @@ -3,4 +3,4 @@ "url": "https://www.yotpo.com", "email": "vlad@yotpo.com", "format": "md" -} \ No newline at end of file +} diff --git a/users/youhide.json b/users/youhide.json index e3120be0..d037cdb6 100644 --- a/users/youhide.json +++ b/users/youhide.json @@ -1,3 +1,3 @@ { "copyright": "YouHide" -} \ No newline at end of file +} diff --git a/users/yousuf.json b/users/yousuf.json index 84f5552f..8666997e 100644 --- a/users/yousuf.json +++ b/users/yousuf.json @@ -3,4 +3,4 @@ "url": "http://fauzism.com", "email": "yousuffauzan@gmail.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/yousuf2.json b/users/yousuf2.json index 09c45b7d..3701059b 100644 --- a/users/yousuf2.json +++ b/users/yousuf2.json @@ -4,4 +4,4 @@ "email": "yousuffauzan@gmail.com", "format": "txt", "theme": "default" -} \ No newline at end of file +} diff --git a/users/yousuf3.json b/users/yousuf3.json index 21d0786d..74210182 100644 --- a/users/yousuf3.json +++ b/users/yousuf3.json @@ -3,4 +3,4 @@ "url": "http://fauzism.com", "email": "yousuffauzan@gmail.com", "theme": "default" -} \ No newline at end of file +} diff --git a/users/yrosen.json b/users/yrosen.json index 24dd0ac0..b06d4dfa 100644 --- a/users/yrosen.json +++ b/users/yrosen.json @@ -1,4 +1,4 @@ { "copyright": "Yudi Rosen, http://yudirosen.com", "url": "http://yudirosen.com" -} \ No newline at end of file +} diff --git a/users/ysarbabi.json b/users/ysarbabi.json index 33a31ce4..e1c228e5 100644 --- a/users/ysarbabi.json +++ b/users/ysarbabi.json @@ -4,4 +4,4 @@ "email": "yahya.arbabi@gmail.com", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/yshrsmz.json b/users/yshrsmz.json index 77b38724..6fd79c03 100644 --- a/users/yshrsmz.json +++ b/users/yshrsmz.json @@ -2,4 +2,4 @@ "copyright": "Yasuhiro Shimizu", "email": "yshrsmz.lab@gmail.com", "theme": "eula-modern" -} \ No newline at end of file +} diff --git a/users/ysong.json b/users/ysong.json index 199ef2a5..942ec3b2 100644 --- a/users/ysong.json +++ b/users/ysong.json @@ -3,4 +3,4 @@ "url": "http://github.com/ysong", "email": "ysong@139.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/ytaler.json b/users/ytaler.json index dbf76622..8f4fd3f4 100644 --- a/users/ytaler.json +++ b/users/ytaler.json @@ -4,4 +4,4 @@ "email": "yamil.taler@gmail.com", "gravatar": true, "theme": "eula-modern" -} \ No newline at end of file +} diff --git a/users/yu-cheng-chuang.json b/users/yu-cheng-chuang.json index e3111030..286a0ba3 100644 --- a/users/yu-cheng-chuang.json +++ b/users/yu-cheng-chuang.json @@ -2,4 +2,4 @@ "copyright": "Yu-Cheng Chuang", "url": "http://yorkxin.org", "theme": "hipster-gray" -} \ No newline at end of file +} diff --git a/users/yuanyan.json b/users/yuanyan.json index e287137b..a24cf70b 100644 --- a/users/yuanyan.json +++ b/users/yuanyan.json @@ -3,4 +3,4 @@ "url": "http://madscript.com", "theme": "flesch", "gravatar": true -} \ No newline at end of file +} diff --git a/users/yuchi.json b/users/yuchi.json index 906ede24..45f4d3e7 100644 --- a/users/yuchi.json +++ b/users/yuchi.json @@ -1,3 +1,3 @@ { "copyright": "Pier Paolo Ramon" -} \ No newline at end of file +} diff --git a/users/yudoufu.json b/users/yudoufu.json index 89da5b52..dce73114 100644 --- a/users/yudoufu.json +++ b/users/yudoufu.json @@ -2,4 +2,4 @@ "copyright": "Daichi Kamemoto(a.k.a:yudoufu)", "url": "http://yudoufu.com/", "theme": "default" -} \ No newline at end of file +} diff --git a/users/yudppp.json b/users/yudppp.json index 7519dfd1..461f9717 100644 --- a/users/yudppp.json +++ b/users/yudppp.json @@ -1,3 +1,3 @@ { "copyright": "yudppp" -} \ No newline at end of file +} diff --git a/users/yuhki50.json b/users/yuhki50.json index f5b1f3e5..72a77e1c 100644 --- a/users/yuhki50.json +++ b/users/yuhki50.json @@ -1,4 +1,4 @@ { "copyright": "Yuuki Taguchi", "url": "https://github.com/yuhki50" -} \ No newline at end of file +} diff --git a/users/yulun.json b/users/yulun.json index 5c3f8f4d..bd0dbb66 100644 --- a/users/yulun.json +++ b/users/yulun.json @@ -4,4 +4,4 @@ "theme": "black-beauty", "email": "shih@yulun.me", "gravatar": true -} \ No newline at end of file +} diff --git a/users/yungsang.json b/users/yungsang.json index 83791ee4..6d6d376e 100644 --- a/users/yungsang.json +++ b/users/yungsang.json @@ -4,4 +4,4 @@ "email": "info@yungsang.com", "theme": "flesch", "gravatar": "ture" -} \ No newline at end of file +} diff --git a/users/yuniorusop.json b/users/yuniorusop.json index 1a6b01f5..8ce2c4b9 100644 --- a/users/yuniorusop.json +++ b/users/yuniorusop.json @@ -4,4 +4,4 @@ "email": "yonkyunior@gmail.com", "theme": "black-beauty", "gravatar": true -} \ No newline at end of file +} diff --git a/users/yuriel.json b/users/yuriel.json index 7af614f4..390adfa1 100644 --- a/users/yuriel.json +++ b/users/yuriel.json @@ -2,4 +2,4 @@ "copyright": "Yuriel, http://www.zyy1217.com", "url": "http://www.zyy1217.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/yuriy.json b/users/yuriy.json index 94c93c27..a7c1180a 100644 --- a/users/yuriy.json +++ b/users/yuriy.json @@ -1,3 +1,3 @@ { "copyright": "Yuriy Arabskyy" -} \ No newline at end of file +} diff --git a/users/yurrriq.json b/users/yurrriq.json index 64955f50..858ed52f 100644 --- a/users/yurrriq.json +++ b/users/yurrriq.json @@ -3,4 +3,4 @@ "url": "http://ericb.me", "email": "eric@ericb.me", "format": "txt" -} \ No newline at end of file +} diff --git a/users/yusuke.json b/users/yusuke.json index 27d4b644..c8a87394 100644 --- a/users/yusuke.json +++ b/users/yusuke.json @@ -1,4 +1,4 @@ { "copyright": "Yusuke Matsubara", "url": "http://whym.org" -} \ No newline at end of file +} diff --git a/users/yzlow.json b/users/yzlow.json index e256395f..69586721 100644 --- a/users/yzlow.json +++ b/users/yzlow.json @@ -1,3 +1,3 @@ { "copyright": "Low Yong Zhen" -} \ No newline at end of file +} diff --git a/users/z.json b/users/z.json index 1a267901..035fb372 100644 --- a/users/z.json +++ b/users/z.json @@ -2,4 +2,4 @@ "copyright": "文强 宋", "email": "z.tar.gz@gmail.com", "theme": "double-windsor" -} \ No newline at end of file +} diff --git a/users/zachary.json b/users/zachary.json index 774d7f4e..2e465b35 100644 --- a/users/zachary.json +++ b/users/zachary.json @@ -2,4 +2,4 @@ "copyright": "Zachary Espiritu, ", "url": "http://zacharyespiritu.com", "email": "me@zacharyespiritu.com" -} \ No newline at end of file +} diff --git a/users/zaki-yama.json b/users/zaki-yama.json index db274246..aa5dedac 100644 --- a/users/zaki-yama.json +++ b/users/zaki-yama.json @@ -2,4 +2,4 @@ "copyright": "Shingo Yamazaki", "url": "https://github.com/zaki-yama", "email": "shingoyamazaki00@gmail.com" -} \ No newline at end of file +} diff --git a/users/zander.json b/users/zander.json index d09c1b06..c3bf7842 100644 --- a/users/zander.json +++ b/users/zander.json @@ -1,4 +1,4 @@ { "copyright": "Zander Martineau", "url": "http://martineau.tv" -} \ No newline at end of file +} diff --git a/users/zaploink.json b/users/zaploink.json index 93293334..1010d718 100644 --- a/users/zaploink.json +++ b/users/zaploink.json @@ -3,4 +3,4 @@ "url": "http://code.zaploink.org", "email": "zaploink@code.zaploink.org", "theme": "willpower" -} \ No newline at end of file +} diff --git a/users/zaurus.json b/users/zaurus.json index 41914287..962cf263 100644 --- a/users/zaurus.json +++ b/users/zaurus.json @@ -1,3 +1,3 @@ { "copyright": "Edge.Blogger" -} \ No newline at end of file +} diff --git a/users/zaz600.json b/users/zaz600.json index 08f62d6a..4b6ee814 100644 --- a/users/zaz600.json +++ b/users/zaz600.json @@ -2,4 +2,4 @@ "copyright": "Dmitriy Denisov", "email": "zaz600@gmail.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/zdwolfe.json b/users/zdwolfe.json index f1ec9a56..5eb039bb 100644 --- a/users/zdwolfe.json +++ b/users/zdwolfe.json @@ -4,4 +4,4 @@ "email": "wolfe.zach@gmail.com", "format": "txt", "gravatar": true -} \ No newline at end of file +} diff --git a/users/zebmccorkle.json b/users/zebmccorkle.json index d42f6de8..2afbfe9b 100644 --- a/users/zebmccorkle.json +++ b/users/zebmccorkle.json @@ -5,4 +5,4 @@ "format": "html", "gravatar": true, "theme": "friendly" -} \ No newline at end of file +} diff --git a/users/zellio.json b/users/zellio.json index 8b82dfae..3a58deed 100644 --- a/users/zellio.json +++ b/users/zellio.json @@ -2,4 +2,4 @@ "copyright": "Zachary Elliott", "email": "zach@nyu.edu", "format": "txt" -} \ No newline at end of file +} diff --git a/users/zen.json b/users/zen.json index a189c8d7..d13030e7 100644 --- a/users/zen.json +++ b/users/zen.json @@ -3,4 +3,4 @@ "url": "http://zensavona.com", "email": "z@zensavona.com", "format": "txt" -} \ No newline at end of file +} diff --git a/users/zenjoy.json b/users/zenjoy.json index 01923585..8af469ad 100644 --- a/users/zenjoy.json +++ b/users/zenjoy.json @@ -3,4 +3,4 @@ "url": "http://www.zenjoy.be", "email": "hello@zenjoy.be", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/zenorocha.json b/users/zenorocha.json index 906f2bf3..7583620a 100644 --- a/users/zenorocha.json +++ b/users/zenorocha.json @@ -2,4 +2,4 @@ "copyright": "Zeno Rocha", "url": "http://zenorocha.com", "email": "hi@zenorocha.com" -} \ No newline at end of file +} diff --git a/users/zenry.json b/users/zenry.json index e7025059..e87c3307 100644 --- a/users/zenry.json +++ b/users/zenry.json @@ -4,4 +4,4 @@ "email": "henry@postb.us", "format": "html", "gravatar": true -} \ No newline at end of file +} diff --git a/users/zhengyi.json b/users/zhengyi.json index 64c46642..3e3af061 100644 --- a/users/zhengyi.json +++ b/users/zhengyi.json @@ -3,4 +3,4 @@ "url": "http://zhengyi.one", "email": "zhengyi.one@outlook.com", "gravatar": true -} \ No newline at end of file +} diff --git a/users/zhiyuan.json b/users/zhiyuan.json index 7f3679aa..7722aa6e 100644 --- a/users/zhiyuan.json +++ b/users/zhiyuan.json @@ -1,3 +1,3 @@ { "copyright": "Zhiyuan Shi" -} \ No newline at end of file +} diff --git a/users/zhiyuanshi.json b/users/zhiyuanshi.json index 7f3679aa..7722aa6e 100644 --- a/users/zhiyuanshi.json +++ b/users/zhiyuanshi.json @@ -1,3 +1,3 @@ { "copyright": "Zhiyuan Shi" -} \ No newline at end of file +} diff --git a/users/ziloi.json b/users/ziloi.json index b11aa9d3..f815d446 100644 --- a/users/ziloi.json +++ b/users/ziloi.json @@ -3,4 +3,4 @@ "url": "http://ziloi.com", "email": "info@ziloi.com", "theme": "flesch" -} \ No newline at end of file +} diff --git a/users/zimozito.json b/users/zimozito.json index 64ea3ff7..5e44d81f 100644 --- a/users/zimozito.json +++ b/users/zimozito.json @@ -1,4 +1,4 @@ { "copyright": "ZimoZito", "url": "http://zimozito.com" -} \ No newline at end of file +} diff --git a/users/zimp.json b/users/zimp.json index 8364a771..76287855 100644 --- a/users/zimp.json +++ b/users/zimp.json @@ -2,4 +2,4 @@ "copyright": "Zimp Recompensas", "url": "http://zimp.me", "email": "suporte@zimp.me" -} \ No newline at end of file +} diff --git a/users/zinc.json b/users/zinc.json index a99df936..68ff8819 100644 --- a/users/zinc.json +++ b/users/zinc.json @@ -2,4 +2,4 @@ "copyright": "Mihir Singh", "url": "http://citruspi.github.com/Zinc", "email": "me@mihirsingh.com" -} \ No newline at end of file +} diff --git a/users/znck.json b/users/znck.json index 6012f7e6..7b0d1f8f 100644 --- a/users/znck.json +++ b/users/znck.json @@ -1,3 +1,3 @@ { "copyright": "Rahul Kadyan" -} \ No newline at end of file +} diff --git a/users/zonble.json b/users/zonble.json index 3d75f9fb..4d9dade7 100644 --- a/users/zonble.json +++ b/users/zonble.json @@ -1,3 +1,3 @@ { "copyright": "Weizhong Yang" -} \ No newline at end of file +} diff --git a/users/zzeris.json b/users/zzeris.json index 0e9af084..88d28e7e 100644 --- a/users/zzeris.json +++ b/users/zzeris.json @@ -1,4 +1,4 @@ { "copyright": "José Luiz", "email": "zzeris@gmail.com" -} \ No newline at end of file +} diff --git a/users/zzimbler.json b/users/zzimbler.json index 14020096..fc25330c 100644 --- a/users/zzimbler.json +++ b/users/zzimbler.json @@ -1,3 +1,3 @@ { "copyright": "Zachary Zimbler" -} \ No newline at end of file +} diff --git a/users/zzzzbov.json b/users/zzzzbov.json index 3e1ae712..82ac277d 100644 --- a/users/zzzzbov.json +++ b/users/zzzzbov.json @@ -2,4 +2,4 @@ "copyright": "zzzzBov", "email": "zzzzbov@gmail.com", "url": "http://zzzzbov.com" -} \ No newline at end of file +} From b5a616fb3fe3679a4a38474d029b19d4e6b13cfe Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Fri, 28 Jun 2019 20:43:50 +1200 Subject: [PATCH 47/53] fix: Don't wait for user input during yarn install --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 12cec136..7ea3eaa1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ cache: before_install: npm i -g yarn -install: yarn install +install: yarn install --non-interactive script: - yarn test From 933584ed03db408ffe3f2520f7b88d945512254a Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Sun, 30 Jun 2019 16:09:51 +1200 Subject: [PATCH 48/53] chore: Underscore req param to show unused --- middleware/cors.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/middleware/cors.js b/middleware/cors.js index 35aafa6d..894bcf9f 100644 --- a/middleware/cors.js +++ b/middleware/cors.js @@ -1,4 +1,4 @@ -module.exports = (req, res, next) => { +module.exports = (_req, res, next) => { res.header('Access-Control-Allow-Origin', '*'); res.header( 'Access-Control-Allow-Headers', From 370c575c5fe03288b64d533d4a3dfa4bd6d17670 Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Wed, 3 Jul 2019 19:45:44 +1200 Subject: [PATCH 49/53] fix: Properly serve favicons and update deps Signed-off-by: Richie Bendall --- package.json | 108 +++++++++++++++++++++++++-------------------------- server.js | 2 + yarn.lock | Bin 171640 -> 173363 bytes 3 files changed, 56 insertions(+), 54 deletions(-) diff --git a/package.json b/package.json index 8c1ebd75..c87ada53 100644 --- a/package.json +++ b/package.json @@ -1,56 +1,56 @@ { - "author": "Remy Sharp (http://remysharp.com/)", - "name": "mit-licence", - "description": "Hosted MIT License with details controlled through this repo", - "private": true, - "version": "2.0.0", - "main": "server.js", - "repository": { - "type": "git", - "url": "git@github.com:remy/mit-license.git" - }, - "engines": { - "node": ">=10.x.x" - }, - "scripts": { - "start": "node .", - "dev": "nodemon .", - "serve": "node server.js", - "test": "node test.js", - "lint": "eslint server.js middleware/*.js routes/*.js --color" - }, - "bugs": { - "url": "https://github.com/remy/mit-license/issues" - }, - "license": "MIT", - "dependencies": { - "@octokit/rest": "^16.28.2", - "btoa": "^1.2.1", - "ejs": "^2.6.2", - "express": "^4.17.1", - "express-minify": "^1.0.0", - "md5": "^2.2.1", - "node-html-parser": "^1.1.15", - "postcss-middleware": "^1.1.4", - "postcss-preset-env": "^6.6.0" - }, - "devDependencies": { - "@types/btoa": "^1.2.3", - "@types/compression": "^0.0.36", - "@types/css": "^0.0.31", - "@types/ejs": "^2.6.3", - "@types/express": "^4.17.0", - "@types/express-minify": "^0.1.34", - "@types/md5": "^2.1.33", - "@types/node": "^12.0.8", - "css": "^2.2.4", - "eslint": "^5.16.0", - "eslint-plugin-node": "^9.1.0", - "has-flag": "^4.0.0", - "nodemon": "^1.19.1" - }, - "resolutions": { - "postcss-middleware/vinyl-fs/glob-stream/micromatch/braces": "^2.3.1", - "caniuse-lite": "1.0.30000974" - } + "author": "Remy Sharp (http://remysharp.com/)", + "name": "mit-licence", + "description": "Hosted MIT License with details controlled through this repo", + "private": true, + "version": "2.0.0", + "main": "server.js", + "repository": { + "type": "git", + "url": "git@github.com:remy/mit-license.git" + }, + "engines": { + "node": ">=10.x.x" + }, + "scripts": { + "start": "node .", + "dev": "nodemon .", + "serve": "node server.js", + "test": "node test.js", + "lint": "eslint server.js middleware/*.js routes/*.js --color" + }, + "bugs": { + "url": "https://github.com/remy/mit-license/issues" + }, + "license": "MIT", + "dependencies": { + "@octokit/rest": "^16.28.2", + "btoa": "^1.2.1", + "ejs": "^2.6.2", + "express": "^4.17.1", + "express-minify": "^1.0.0", + "md5": "^2.2.1", + "node-html-parser": "^1.1.15", + "postcss-middleware": "^1.1.4", + "postcss-preset-env": "^6.6.0", + "serve-favicon": "^2.5.0" + }, + "devDependencies": { + "@types/btoa": "^1.2.3", + "@types/compression": "^0.0.36", + "@types/css": "^0.0.31", + "@types/ejs": "^2.6.3", + "@types/express": "^4.17.0", + "@types/express-minify": "^0.1.34", + "@types/md5": "^2.1.33", + "@types/node": "^12.0.8", + "css": "^2.2.4", + "eslint": "^6.0.1", + "eslint-plugin-node": "^9.1.0", + "has-flag": "^4.0.0", + "nodemon": "^1.19.1" + }, + "resolutions": { + "postcss-middleware/vinyl-fs/glob-stream/micromatch/braces": "^3.0.2" + } } diff --git a/server.js b/server.js index 34824383..595a22fb 100644 --- a/server.js +++ b/server.js @@ -7,6 +7,7 @@ Server port: The `PORT` environment variable can also be set to control the port */ const express = require('express'); const minify = require('express-minify'); +const favicon = require('serve-favicon'); const postcssMiddleware = require('postcss-middleware'); const tmpdir = require('os').tmpdir(); const path = require('path'); @@ -19,6 +20,7 @@ const app = express(); app.use(minify({ cache: tmpdir })); +app.use(favicon(path.join(__dirname, 'favicon.ico'))); app.set('views', path.join(__dirname, '/licenses')); app.set('view engine', 'ejs'); diff --git a/yarn.lock b/yarn.lock index 1b35e1e476eceb11744efbc612ecc3b53fbb1bf3..b4687237247d2a8637cd33c9528f27e03d9ffab3 100644 GIT binary patch delta 2981 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 F{{S(Lv6KJ+ delta 1951 zcmY*aO|0Wa9hbAaW!Xc!UCQp3U6r@5t!S0^k{OTf8B-2T@{%~;&ew}$q)OxQIC1jw z;rQjtNE9I zMc?eLfSMkrR?cF$I!k5KEss?+UMBUi?)6JPkIR0e<)ZOyDNc*a*5pL&EJ|b8?k|?x zo1g!CRlp(L9*6NaKoX-pFcHg^YEco%l7uZ)b{GcMpF2_(jpkrDE3`!H zGGOKXS-iFIy0i9JsrR=3dPBN#OHM!~0X}=};9$XLzB?Ho9A1n^B!(prtC)%A1au~~nrH77G;G@H)F9_S4V=~E-+Wu}2MF$){`?bz+` zOTyIk`?=SXuZ9?B1bWR;in#~uO1w}f)g+yhOa+ZUmy6#YdSiMW+(ws0)#KW z^WG=udH>k;kKM8F+B~|7A{74jo%`YO!*uw;yVu42TYI{)t;nL{P|0D~0hkafGbgeQ z$_@fZL|k+TjJWUVdYzQXI(^B=CL7D3T;v0XO&p)~DooALQA25sVccjK)nK-0H=CB5 z8suw*q|@sK=YxWa*Xn6m_r`@xrJ%d{^^6p$3Bo7u+}{4=z26>gfAqJHT@LSm<0$;g zKW;{3FQP5WP!ugiMhd5rs#uaGNkm1QiwYo6f;I%Uszy#;xY3Afq+qhMLgdDPS0j zt}31F*FGpbbxAxr*#7RrUtHOI`Gr_=^V2KBT?i9U-eYte3j@R^SACbC1$KGDS!(A#CIojv@bARt$wT2806vnBBAck# zkwn0#1-OEth?I*-Jgn1sj-sbKTZ=VCWowQ)*4cPgm8beSJ-(sVgfU7Mz9mEw}# znuD5do|n%mh1mk)teu`@pxjhTW5R|-wPm)}B@3;W)vUaRYksm?~s(2Q8zOm*Ui8$8-Aa9btgY+ zk(@JE0#)aeNXC*}UyM$=NoDP%2Q?iwPjabd#{=1N`uyY~jk~XIgr{RsnSF%sPu~%q zNjz#an_~&64i;?=B#DYnR9`GAW=BGbMTr`TsYZW$uiJAEx@D|(2TnHwI>tn^GRZ(B zUQ(Ub&d9K-QNxbROfgcO#I2L1H#DuFPz+?bm#nmXz1Pf-)Ut`|&9)V^m?obG5)SW4 zw|B37S9s!Tc=@fP%^$xfT;BZkb>Z$Y+=mgWK#`d3sD#**08SC(T#{vk2v%(sKvlG& zG;X{Pqg@bhF}sGfVv$U_>vsDKedT9Q`Z=T*bNP0@!E%0n!O>#1SlMh^6HUp)v*E;V zRKTz^P|A)~O6s6DM|Loj8*S(~iyYeneDnLln|F4-2f`OF-8ed!{$C%x{7U%vkJGzP z|5|v}-Tm-5_Ql6G4-bUI#z3*_QB6n1wr2vcsww~xh_Djn*iuApiQHy{qKE(l3^Ru# zxZi50fuwtGW;z+=&pU%CE@;A2wlRXye(J>Is73g6Xm-a-_q12&7K)&*`9Z%h?lz09 r?uuLKbzQ@y(@ZusCJoh|2WCgq`}Lp8v4hx-k=Uy*?e5NFx4{1ZlN)ui From 934edc4e25b3d2fcfecef24fd7f02718f0706f36 Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Thu, 11 Jul 2019 17:49:22 +1200 Subject: [PATCH 50/53] chore: Update deps Signed-off-by: Richie Bendall --- package.json | 6 +++--- yarn.lock | Bin 173363 -> 173767 bytes 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index c87ada53..14164b90 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ }, "license": "MIT", "dependencies": { - "@octokit/rest": "^16.28.2", + "@octokit/rest": "^16.28.3", "btoa": "^1.2.1", "ejs": "^2.6.2", "express": "^4.17.1", @@ -32,7 +32,7 @@ "md5": "^2.2.1", "node-html-parser": "^1.1.15", "postcss-middleware": "^1.1.4", - "postcss-preset-env": "^6.6.0", + "postcss-preset-env": "^6.7.0", "serve-favicon": "^2.5.0" }, "devDependencies": { @@ -43,7 +43,7 @@ "@types/express": "^4.17.0", "@types/express-minify": "^0.1.34", "@types/md5": "^2.1.33", - "@types/node": "^12.0.8", + "@types/node": "^12.6.2", "css": "^2.2.4", "eslint": "^6.0.1", "eslint-plugin-node": "^9.1.0", diff --git a/yarn.lock b/yarn.lock index b4687237247d2a8637cd33c9528f27e03d9ffab3..9aedc2acf704fae14b12baefc6022e3a518f0ee7 100644 GIT binary patch delta 4319 zcmZ8kTZ|;vSyqkL>-B6L+w87)wN*Q{7#CDa1xqr|R_m zeyQ$$;DHB_cp$7QP9+W!;UX>uB}QXuUXTbE3jrqBQFw@CS%4)TKu9==B?JO-rbjk7 z8fhL%{qX(Y|NYCDFV%K(JuU)I8}$-NJ(Fsvg^UHZtJ|M$k-l})Hpqr^P1Ty zWCN|7%(=Fiu!jSj>N;sdYXtr9@uzNuhgYsXD00?7^xr?VcPsqn)vKppxbn7e`J72` zCwljPgu5K~Q#)oaxb=W2da@5h)o~mk5x^9JM3u^fI0|tvWsa*z(d{>dYvJVfCCk_P zqao6!vBc6$6>`={F><*{GpT5aQie6!PQ4VfJGwkH2YRWp)mKPFexcP~$W#|QC}kIv zVKHWQy=uZ**!7^bGMmZpwsPMj4gJqN z7RNiXT?UvhyO>JA1(YfT6Usc%Wl&WBWQvS^<}#J-1ku?RQGHb(sbdhER{`0e$pm97 zBQ1;#XnGa2jU}{9N+P({>*NN_gjyJSD_k8`x?5oB@~kv1HGSArl3hDtmaL#YM9NMO z9P)mcc;xDXJ9@*Pd8F|Gii6XyKJwOQZ*b&4G7E~!(f!!oQTPwH9twZ&=|=(o$!;1) zqSU9dDO2zbI8|bd4l}&4L!iolwtfDHd=FVh#T6yOE z%h3zsUOc?_{9}L*u>&S640sM=6l2wsDRU){qe7y{xfWH1G4+V+`glh(8T$$<;l@d^ zr^V2=o>gGp0i&i(QWG;5GdG)DIW_@uuSWbf$z-!Q<5DZ%CC0X!8)&TKADgy6o^ph6 zXjaW!(`Xff@ZlGZLj9i(?>fCz;wZuYAIWhDK0Z2^5f3{IAxT0WQ$4O`)n%?PaaAC! z0-qo(sTTkP*fO1Zwxr7oWa%fpv=bPK)i~j0Nx3|$FRWoFS%b^t{dUz!l zveP7;Z{{Vq=`8i?;#k);oSk|rqebS^=D7}To!)uzTTfr(xIQIbH71fDZwJ2MUosb`tV)hX01M!8tV$KZ&sV*H9gjGN6Z*3 z(9Myo)bv)>n{sWhOeYDQQ_}}>)~su{R{Uv{r%MM>_yl9KuCu7voE4^JzPxS zAm~vjNdz(9#|&VJa%oW4RTL%@6*;Qvcn+3#itr}wVosBwVQ=)MvRtk+az^i$Vspx} zUP5*X>+~!E#g$==6L560rXFIQ%t}nQTe{m=8w=%_wI^=xc&d&l2Kh;1f|kK)EjNAm zC*(LjJaA{@V9vc_(48+{xhKZuxcI3J@GqhH%SYjpm4hR3r)cH@850*XLb$knil_`k z-vhp<@`YeUWyGfn4e!^Vu+p>R8kuHUWs#^ia@85k`BQtll|X8>&Mjt;)eCSa1^il_ z>?})sNPWU4HcI#GG@Ao8m9ksa)uQ602E|EZK1ecB81FXlFO|<-A@B}&x`TsId;NO& zT=mKxA>m8ar>;tO_V?Yz*f|<>zx-$C%lVtb(^sph%a;f^JP7}^b?Zs;X_-O39F83T zm4wdeVc4)=jFStSbhtw*0LYL!$ibqlK!O|y9I8kVs4i4hR~8i(nYV=}>WRT11zlU7 z2BrQ&gxY-7n-7Chd8~eEVVM=7*MLa-#7m5^n zp5ik3JS(j}^LgsU%+dx2)8$ef=k1wXtx9Vp$a>Xw$y}u%XyRE+vuCipnIn{IkiIrd z6<4J;ilv62=4YMsvP{~Uz)LpQL78Z$PkX-+ z93{rTtd#d)kr=sPm;q6 z6E98|r>P^^SjmZ5p)|~;uJZ=Iqk>P}YTjlJONu59>5^8usZDw+vgLfx%P%UhmN>^86+aLjihi{xJSN8buPZh z>iMEw*v7h8bJU^T9`$C4a%`o}mWDk)nUB1UGCi@&wBt_uh>mI&w4H%x7_pTyl*Go^ z$Zyu&Wznt~HIySTLz2Emv3*hE|3Bv6=m{S@et0k#d(OObo*+<(Lll1a&b3hZ_Tl*? zm!rSx3y;Mw(nFG zN!saIeVAAWXS0Fu^wBlxM+^bRQ8fLMa1_1qW#Llvov#Yd#--iu0g61ub14ry4|9Hf zz%!ahHvo!Ds0w(Kh8TMnth2n7Y%co*4~+EKPI)=p=8u$lsoeomBCs90Z1&r3x7DY9 zT8WwYVzb;<$w;;9%5aO6WUQabjixzjP3F|L2iZz>SexuvKl}P?!Y^V0pZ)l^g%{BAq-xuxx<{ zT7ya8Phx13H)2K%7z4X3CRZ6c@XNYRtwlgP5&X*Dttk3|@c1R(@9u>Err#38^YXMu zVD!&F5T@rL5>8V$&KuOD(a---cvZmB*MBHnkACIvgwI6cM?&QxauM~>=)1z_9zM8p zkDT`@c=nBtglIpy^93Qf8~xQU?mZ9xFMD{CQVHLTEHTC9XF@!{RK7C|R8d8;@3^9? z@}~7if6S{&^`yV(jwg$5)uJ8UXtf9nnV?XAIv6Ogt@ubGQUeK&6Kus^W>uIYr;lz~}{uy7;V-K87F70JrI(z?U@1_ua^JwpO`0PV> zqxTN?p8n*rT}AX9pYrAnA%C6|LS>QPgLnSHCs3l0A;!D!&WxCy4y>$OA1M9t(w@Vf z?iCB(LX|pReg$kl*Om+Xx_#O$+8sNVXnQ_?;{@%RR_V_&jr3$b>7})rwzaY+SyDp1 z<8I)d{cC*h{dxHOA09>@{pQ|}9bUYvcq>H;uXGY~L|Nih+l5TTgvpA?cpXxh#~(Cq z^loSGW}{%VEZEhW$4#rPHAkvd>2;T}VxzOMnz{LkO%!f}t)c2wEyDl_y|+)#2YPszsN~9ul|C_g^=ls#d!2a=f0{TV& z*TaEBZ@mA6XI;K^bY7!wT7+^@3?wqaoO6Z=)^$P&BS^Ll8S8*E#eeWm(#?7Y&tM@p zW2r2gE{$wug3@J_oo(W+VB6NF{Z_QrSuEkOoQUVUP9@%=vr>24F1hJkX&vn7nIzRC z=4iPpmy7NC%#};)QOUpiy!5;m+I!*x3Zdgy_db*^VF4h#=l$wipBL5M1~>%8=M+&2 zu}ozdVh1w}6$4wyfY=6Du>jY($!ytCbbtDL(zEq^X`2T<+viF>&bj-2^i?8^Uk>88r`x>qLX^DqgF_?Iv~kXDcg-h|L*ri zv0r@hN7vAmXJy;{U{&cv2K8=@GR2&>3~V-Q?Ri{V@?E8xA)W%hoN6AdILC z03nXabjMLRCnhrh@*`gsM9G`;lu>p^jk#{o^{7x>DdT8y`<<`|sb>`sG@0y(n$;bWx9#J7H@y%Z3em zxyx6_%|#RpD&-2xPTWN<+o?tAtVvBa8afCPj^Sk6kE(jP!;0yq%AIZ*FQF2jq$1ws zmyf*I;n6SmSK*_u-d`QjQ_#*~Z%tG+RIX}63vV$ zT6bIPmX^t+VQrN_izO~41Oc8qKKSgz7p~$Ee~h!-|A#lFuy+tUcq9e@LTFOM5)8Fu zU{VL3_Eks7(JjSvC?iu39$&l%q%&}wzD<%XwQcMMl5fl>QLshz|4ato6W`vF{9Zi=Ik0Z^@a65&C zQC*#bksZtE$w-%_*MsD`43o^RxuvCw^scN$(rL2=a9?l5mE^Y@N#%-L*OGb<n=^N&>EM?}2mZz1n^`r0_E^xa>e`0RS1*sp-hTq9#!w zGz==FU)GUDsRCsG^=aUy)-jiuY@I2JDy?863W!rGI5Uvwsl#ayE`uXFE2p>FVK3a+ zqOw*gru4d^MX=FMkm))Ysmpb(6s?AfqyvpzBwn9dtK|ClzuJd;-t9j<^eX1{M`lE@ zB2$AI%yArSiDn=Z%aDly2hcGvhO*^A%<*ZDv_4{qRfz=i=_bSdp-a2Cz8jU+Jy7p7 zC~Q=>fKn#g4z5yr; zVRBA~TuW6eCEZD-*M;O*jQ(u>l$hmt` zBt%CzyvQeRf~9Ab5k{$X>gQZxvUswwApjL3gMk8sLvmZk=#j4*V+E#paN2N7 zmE5)+cV#jv6|{*uYF0~;c`d7HT5C6(E!-ip@HQBk=lTxLtcP+Xm|51qAgNa1)PeG@;oBt%`&Yjph5WC*BHcKPN~ijv7@`6q)PqprIWjUZ6pdxT zpv(rQqcd6L5)&9_`Vr2qgVS<*gA?)AT(8mPPD$cawpvUUs#dOO*V}8<9_KVR+%D^# zUAWb##?*QwTWG6VSDoU7397Q&8gF~l5EsZc%{(dkQ#0_K?|x2t$NQ~^dnea|(!X%& zxBYJ=r0B_Owshx$=f4s1#nWZ~_q)=a@F&V`D@X^3i8O%-Asi}L47m&p&Z)vp%7IOp zW9XhfyndVP+<4dQK&_nwMkkXWHEdI_5I0C8{`dRRk$B&>C$+sF|LoD5_Qau>-g9e~ zMSR3ICx(tOus9@+1DIj5(@0JTqC!+4Lf*r-Z`{rSSQ;9WM7*7JSZ0+O*;TDLYHtdg z)+aCe-@f#dYmYHn#8xE)y$@eJJiX>6pADreN9Q@#K!P74$a34EKoK!TBtcp1367XO z!FUc$-Q)&4w#|n@pXOA9xw&bzHl=j0!U(hEn|&|@W^Nw|0S$A|tiZ%Lo> zBVUz1BP{ilP_j@ojtP|&KuiEdfMHNqbVr0(!mx?O7J-B!pNU<4y&cK@$--IY+;w3z zXwRLPTAPpAG@`j|HwxB!l?WXYt2nKj6DQVft7A31GK@*dZkjtMs9ELiarm^c5t@CvSa6dgr2~oS+{_B}w8Zzw?3A`OH=NbNWZm0**iVfwbqN z|B&th@rSe9P%PVu#i?wI@MX%jpqgbsDB^)FmNQP|Q=VDmd^|E}7wK(HXWE>UGs!qj zH@kVK(ahNENTbB;Q7N|zR@C`MueS{zpRlx%B!jvW#Eoq@vZ*5E2J=<7#EfC05lb(+ zpgoV}eb^S`vG$qU;9X!O2~isv2@e__IIT#{=a=B zy(!85m7hx2{r~x{^pyYZPo=7)_%Hsabi@DG52XFml*Gh^`H494_ivmfrpMYXPW%TS zO5`mm@De!t`3xQII7}AXpkm96BN-yofhGdBqZ6o`#IeLGz-0fmFN-Z}l2H?sMhtB* z!A`uQXzA#>T5RqjkzBUF#@bpLH!|U11+A9Dt)dp4POG^Z(H_ZklG|ZAl_T?Vc$1D8 zQKg7^NyVK;aeMMm3S7A$(UXT41KKM-4hNn;*$V|;mQHdY@WI^wl|PgY{oK2OUpPD; zC!Ls7tR%8wQ$lSK`wS+Fat$sd7&<_#walW(|JFQk Date: Fri, 19 Jul 2019 22:29:15 +1200 Subject: [PATCH 51/53] chore: Update deps Signed-off-by: Richie Bendall --- package.json | 5 ++--- yarn.lock | Bin 173767 -> 173632 bytes 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 14164b90..69248121 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ }, "license": "MIT", "dependencies": { - "@octokit/rest": "^16.28.3", + "@octokit/rest": "^16.28.5", "btoa": "^1.2.1", "ejs": "^2.6.2", "express": "^4.17.1", @@ -37,13 +37,12 @@ }, "devDependencies": { "@types/btoa": "^1.2.3", - "@types/compression": "^0.0.36", "@types/css": "^0.0.31", "@types/ejs": "^2.6.3", "@types/express": "^4.17.0", "@types/express-minify": "^0.1.34", "@types/md5": "^2.1.33", - "@types/node": "^12.6.2", + "@types/node": "^12.6.8", "css": "^2.2.4", "eslint": "^6.0.1", "eslint-plugin-node": "^9.1.0", diff --git a/yarn.lock b/yarn.lock index 9aedc2acf704fae14b12baefc6022e3a518f0ee7..72a9bb89cf902dc068cf573a258d7828ef545e0b 100644 GIT binary patch delta 2931 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 tWjYZxx@%MJ^*h_vr+fea delta 3031 zcmY*bS%_rS8K%mZ8G9U^i8DQ;RKNr+~u5FZ&g>- zt)=TB>VuFsBbRWAFCh;>12Hi4!+-&ekdPOZ7$E@(#3c{{nqbJYZ$CgmXiAi!wvaw1ppI*gEM#kz?l#V-66MZw8i#1on6MX*e z+5LMYB!B$C_2XC0z7`4w?}TFHYRbC|;~?;!C64}sPGi+xR$BfG;9>vib8nua{PNtjOX`j9ZSCwV`E1^wjCXE8 z5=G4a;`*Khea`3iU)WVo_iG6tII&b40}I$TWh%3Uqgev#6hJ|V%7rC@w|^df$p7f6 zZ`6C60%|N9V|@Z5^BQ1B=nZHzjzG()qD@4Jr4pE_2ZLT_)Kc`k>nzopTkUT^ zJx*rDX|cs&iyHloQYqF~4Hr>A^wX;n{MNB@{`;X2Ivzdn>+qBA;f&8uz(0HQgsUpK zd!W%-v4EIyV0Etj$F-a zfmD+>PTb_CfQ$Y8_SzcZ zVI3U|)FsKMr-nU0nit_wZxOF~`|)^8O;4R=uFdAt)(NMMKYY@-9z1_09QF58-;qqX zgUv+Hu_49`3C>jkRBWrdV_O!bf-oJKx^6mV5Q~McG@Qe3Arr$e*ExzW=wh)>kyLzG zjLdD3b`)af*U6azwPmh8QQ)||wjCsTsikIg+i|P8&UtiSbPuh;{!|~^D##uxhiI`n zKA(Q&zTm%Rc-Q}+ytAjBUROAPsLWCYV}uHBBbxw?JAga73V=#=!MIKB0Df0mU2?X6 zz@}+Y^^`_4Q=7pIpLRAI3=+$A#+yOW$U_&eBty*fEX_EyITME+lpJ)DVh;2~qSLM| zy{efQ6%L#8ks(-q;$O^N_5WZz5`zAll^bEkjz6iq_f7wu)>Z$DtGoV%_EURzT*H)x zK>;ApHj$}nghGZ)2uzz|2y~eyxg|k z^{1}D`Nk2iwH8JxaiH{Kg;cRo>M^b8)HjoUyI;#qCwN&=I~(54)cVR~l&Bp4sr~2T zHe+|O5JuG~WV(Or)m{G|uK|VWcT{6C4PeYIl{hNVOzFuOnGTZD;ZTLxgmUpvC&8_^ zvUoR1XOo>fN0 zQK2yK;5?R_AGD`}(#SlA76+^2-~8%{3&CH0CW-j$Z_oJQH?AlW>M1(iWEff|(>bTM zMu6O=(5Wq$uIjeTU&avS7@l6e)uHXdI6HD$5!5Q!gBk4%yUBTJpjg#psn{T3+UAC0 z4GOX8blTB2>)cVZ6){Tnq2pHFm_FK5HJxAV^H!vvE=SrleF$UybS7=JGVxMR8Fbv4xhlBxBrVjm%{Z%8^C&eRSkux` z!92=j$Ac0-8a8P;X%6Z`sH|7F*(mhkBKX0@&~EV2-$G}D)F+|GzbXQdQiLHAvYb6&y@<16XOf^2B9;-wNFFm zPZxdtf1yhO_;=|3+qq9eul~q4wswQZt?;+L@@hbIXmZ3Y>B(4Un90bOxi2HalBX6Y z?jySvKdpdC63;>9u)|T2;#s;=nRuy^<8GQ27|Z6pZrduvtk_`b&Or^1a5iCRbdy%c z@o_3`D60q^8|pGQ5mvqx&(KWSm@uMA-+6dzu-v(ElSE~-_>;FDy?xdW|22H--NAVg zz9H#&M=yYAk^s7;$%ZQ1pJfu0Sk$s5KLxfC)wt9SBL4fmOOF^soOOX`>D|RiBVgi4 zxAy@pcirHk7rJu$V-f!Bv1>>M1K8bJjQb~T$sFx1=6tqicKO%~zRXLCKKNpISEewO zpF3&H*pxYD+dw6z6t1QN+tOt@Wx^p$Dp-09(K+M6%dg85v%c4F(KNsZ3spMGfm3WF zVQ9I1R_J!}HLO*gG${{ Date: Mon, 22 Jul 2019 16:35:02 +1200 Subject: [PATCH 52/53] chore: Update deps & semantic commit Signed-off-by: Richie Bendall --- package.json | 2 +- routes/post.js | 2 +- yarn.lock | Bin 173632 -> 174526 bytes 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 69248121..de80a162 100644 --- a/package.json +++ b/package.json @@ -44,7 +44,7 @@ "@types/md5": "^2.1.33", "@types/node": "^12.6.8", "css": "^2.2.4", - "eslint": "^6.0.1", + "eslint": "^6.1.0", "eslint-plugin-node": "^9.1.0", "has-flag": "^4.0.0", "nodemon": "^1.19.1" diff --git a/routes/post.js b/routes/post.js index d13a7d49..16d03f7c 100644 --- a/routes/post.js +++ b/routes/post.js @@ -88,7 +88,7 @@ module.exports = async (req, res) => { owner: 'remy', repo: 'mit-license', path: `users/${id}.json`, - message: `Automated creation of user ${id}.`, + message: `chore: Automated creation of user ${id}.`, content: btoa(fileContent), committer: { name: 'MIT License Bot', diff --git a/yarn.lock b/yarn.lock index 72a9bb89cf902dc068cf573a258d7828ef545e0b..c53f2fc1063a07a893013a05253226dad7018ed3 100644 GIT binary patch delta 1544 zcmZ9MON`q@7{?X&!BU~}C|z1qRom^MMcM3*?eSv-l{V`n&U+K*9kfgB@i=j^$tF%5 zCponeNQetmR^7)Do@Qu_1yzJBRz+TA zS>P|4`{48;_u;9%tO(J{+30;W$b!byuewDXA?q z6N+7HHT!g1%C@y!E2CuUcC62UcsAdq6R0h&wm>wP-@1G9BzNKbg8NMEREXQ<0z`wr z;IXKRn4uBPaabch6hs1t0WmbF0z(iydL}Sirn?Q(X*c@eT22PZLZQ@SbESx!OQmWY zil&6DCCk-dd3CI&r0i7DvRJUIneHTr*>cjTkB6Hn)+r=9#gUAPXizna4ij{?zN-C_ z4Iua0`wQ;RAJ8GR3uYjdXH)@VT@?h8gDeeHM%4^MC!!{B9HNN|km_AK=Yus=+}w!h z@j?m;1CV71C(3aY&q#b7nmtf3I<=C@nNcmufpAJ)EmbE2HQB9Zj8qGZR~X2(Dq0Os zVug5c*krB#ASO1$TUS23e9(O`H|w?T2NvAr&z^8EeR`PY7J(m+L?xntMbV!GmWVn{ zum}wrt3DeKIm~jRW?<3Kya(@5v!%_N)l61|0?@|cSY%Y`Pe+-Y(&2l!fx8t9^W9BD z3ip+wV&o-|#183B<;F&FI7m+twq1!C?S4c?qbV=o?r>PpIaY6Z>MPXIt@e$}ly~JU zwd^zQcVGSdDM0^A2zbbfDpVOk)M)<)8X64*oq&E)`)Z|-5RgkxIET4&wb9s1auKSp8*Z+3d-1_@zbcQQA>&iLuF zTW{Vez3hJR=gfbS9ou>Fe{#_}M#umLi!=auoh69Deuxn8A}cZmzziUW^DcZGm@U;A z#WC$xPLVfklFRTd9-;OySsQn9y<|! zM3*OZI$U<5iqxl_rFz{_+!OGK`_ayUeb5J{x4zx^ZsAe(+gDEq5=Wn0m@@~V#>S@R z{rGzz;$^~t=eFgQz{AtqVmomDo_CL>cAj3C8<5V3Sj+3XC33%?KXaXfv7Rl0-?~H*3^OH2dh$-H$7B0?qmkR}pP!qM#YH#sUsw-)b!4 z2n0H#@=*2e+JV_hxj4y$ONQP7Q0O?Rji4={N<4_8;p zj|;sNT6+8_w5$9-oy_l35J8`uFd8q4*dUCEkZ$lqXD|mfVjx=Ah=w_(mnorh@rQ-T)vM6QYW2Ma^`hWtZ4a$|7lr$q>0& X8f438q7}7tLuZ{c+rM3)O3(idjDY|* delta 1039 zcmY+D%WoT16vj2v5>P;G(}pGpHFBLrDR%9-bML%BLUru;5!+)=Cb2z1q@CCGcpN`w z?AV#C*dWBJ5+gJcQWq5ey_YPo19BJ_SG!-1SiwQE~^sw-t9lILYhkuJsB8@yTP)0qrRYx-uc z!RPlI*_{No%r$At>^R!M0WC?EvbDTY7>abQ7%Q%6wA;BR);!b1yj&; zth1`YXof)}o#RYh0KBPkEDj!iOPuo`T{>B5GyQzYE~;AqH+#9Rq}i+MyH3)>byJVG zgf2GSW?Iq;t!m#XY#OaTpe@m|qcF zWJLx}R;-Uc|MbqOb7&GFd~G%q8klac(P@XmC^$MM;{Mfdp7n2i{USAOnA)kU6yza< zfWj=#3o4{p#PL8?dD>*5sR=qZIo?0Mu&~+XD!YBr1*N#;?s>gp2d*L}Z7Zn_v$o<< zjg6gtIW5XgK9R$AO0Fd%$gm?0_I6Xeh7&cn8u!?pDlBnqMODOd9(VJue-SN??7N?l zb5soc519>aRj0@^{+st+m}~^5z-WR9cwlg}t_i~AGBJYy0}RX=5ONdKF%NVj=w2fi zHdCIot`=LRbt$setIC$rlk2Ed-mn#h-39HWooMBf?kYbhR2{F7-?P%SQr{XDZ6GK3 zy&-l7RI-B$Vx{e9*t3Sordp!>x%{I4Hu0Q)@&1jOsgYs-t*;jSAMfAw|GECW|Nen} zf{xMtzX$IGi#Lg-;PEHq8UM=%t(Tb?69eH%ETK@Z?>4$u)ON2C3U5zDf(P^D1#+AA zl|wMPeJH;^diC$0qEB?je_bYWF9kJ)muB8ifRyI{1M_=XGXMYp From 921100429ef2373465f32ba25090403d606e707f Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Mon, 29 Jul 2019 16:36:06 +1200 Subject: [PATCH 53/53] chore: Update deps & check for removed `version` Signed-off-by: Richie Bendall --- test.js | 7 ++++++- users/codeclarity-jquerytools.json | 3 +-- users/delphidabbler.json | 3 +-- users/harry.json | 1 - users/jesusurrutia.json | 1 - users/mdag.json | 3 +-- yarn.lock | Bin 174526 -> 174526 bytes 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/test.js b/test.js index 111c35df..3bd29b8d 100644 --- a/test.js +++ b/test.js @@ -27,8 +27,13 @@ function report(content, fix) { try { const data = await readFile(path.join('users', user), "utf8") try { - const u = JSON.parse(data); + let u = JSON.parse(data); if (!u.locked && !u.copyright) report(`Copyright not specified in ${user}`) + if (u.version) report(`Version tag found in ${user}`, () => { + delete u.version + const stringified = `${JSON.stringify(u, 0, 2)}\n` + fs.writeFile(path.join('users', user), stringified, () => { }) + }) const stringified = `${JSON.stringify(u, 0, 2)}\n` if (data !== stringified) report(`Non-regular formatting in ${user}`, () => fs.writeFile(path.join('users', user), stringified, () => {})) } catch ({ diff --git a/users/codeclarity-jquerytools.json b/users/codeclarity-jquerytools.json index 30b78e81..167fe2c7 100644 --- a/users/codeclarity-jquerytools.json +++ b/users/codeclarity-jquerytools.json @@ -1,6 +1,5 @@ { "copyright": "Code Clarity", "theme": "double-windsor", - "email": "support@icodeclarity.com", - "version": "a526bf7ad1" + "email": "support@icodeclarity.com" } diff --git a/users/delphidabbler.json b/users/delphidabbler.json index 19615012..a414ece0 100644 --- a/users/delphidabbler.json +++ b/users/delphidabbler.json @@ -1,6 +1,5 @@ { "copyright": "Peter D Johnson", "url": "http://delphidabbler.com/", - "format": "text", - "version": "fdcf640" + "format": "text" } diff --git a/users/harry.json b/users/harry.json index 2342c893..17c84c1b 100644 --- a/users/harry.json +++ b/users/harry.json @@ -4,6 +4,5 @@ "email": "me@harryscheiner.com", "format": "html", "gravatar": true, - "version": "6d33a046", "theme": "default" } diff --git a/users/jesusurrutia.json b/users/jesusurrutia.json index f6b51246..03690ab0 100644 --- a/users/jesusurrutia.json +++ b/users/jesusurrutia.json @@ -2,7 +2,6 @@ "copyright": "Jesús Urrutia", "url": "http://jesusurrutia.com", "email": "jesus.urrutia@gmail.com", - "version": "html", "gravatar": true, "theme": "default" } diff --git a/users/mdag.json b/users/mdag.json index 76fc41af..cc2686eb 100644 --- a/users/mdag.json +++ b/users/mdag.json @@ -3,6 +3,5 @@ "url": "http://mdag.my", "email": "info+mitlicense@mdag.my", "format": "html", - "theme": "double-windsor", - "version": "a526bf7ad1" + "theme": "double-windsor" } diff --git a/yarn.lock b/yarn.lock index c53f2fc1063a07a893013a05253226dad7018ed3..df84dee1dbee2c0a4e1e85ef2cd79c949d1bc790 100644 GIT binary patch delta 1110 zcmX}rO^YK%7{GB7TvoFRqv$XfS;4~|GBaIO-Bn$E@Q_S8?=O={y3@%;s;b|TPCDr% zolbHS`~uQQVD;inL1bZ&1;M>}7xoJ%izhFxH*d~{W$(}7&+mDjXU}ubp68xO_YaDn zIZwmfJE?vD>;he`z5S=ic5H@hN;JWQ#+mBMDnL}VF(yRi4q_BgTRD97apu(UZYFC- zZ)r8+DkZvECk7fTsVHM7{NCSyW}o@Vmk#@NLLFS=U5r6F(lkP$79yxP>3 z@?KR;6Nq_z&<*`4+UZ>NF~fS~jX?UvCuiwr4_>B!esqz}bGg)c_av_#)ff`U=9tTn z+KehtQMkhyMK;s~WSY%w4%y+!kC_kCKOWud@56Ghsrx=cR!O#;sGeZhY4+S*6S<0Y-!tItc}M3FWdIqy~~qr|D?w<}(IU6;F+-utS1nqLpuk!MtFBd^fCB z<@I8K^)Q&Z3w<7SO0--M^WtVTl`Wr?tiTiN@zvJ3;?}~ymIB$Tuj~6+e%~q7`Is1_ zW(JGFsC)bS@UM0jf%N6sdHUjeAR!3~1nwi;SB!iTCP732E3=Jl|X^t@3Qmuk$m@yBRgR zqj9JgYYNc}QeKZM-ogr}%@v8p-P@mjxcBmv*x}^c%v*;Sk24S7xB*OL=kCgcY6}E} zi;*G(B^bFbyZZ*95~Rt8==1EU;f}6XvF{tzR)6XSeyLemyF&^}y?TGr5!-xJf)l)m zu7mh)#_Xxv>Zs;vx~`O}4cd`iuHtWha()6CarhhLQJgQvfKlVOh! z|3;b1Lz84bkmO5n^m81*h$1L+u|tL9FrpHwawy9xfp@Zw;5M}7qaT;Gev$Qiu1R*q zC0iI&TVS{01Ui~Y?IbMCMaNvm-Et2~8>i*j`}kUfotCV$$W^i(&`DLAZgqy2#d*mw Qk{DO3{p9I?B>UU)e{y&uJLx>T^XTMcbyanz^O`&- zkDDjYOQXTnvyY3o46-2X-n=XO7l?WjL~q{A?2fk|6ciu6KYq`iA3b}1^u2N``RA*% zWODR+B5vKe4<9U}-TR0^0ud)d!yHNh2$BXhI1Uk`1|=9lY`~E0fB7VR+CpPz<~2gu zbj@j_(z1#z3(B=YKkfEM@^v-FkWAtrrtV5vj%&01wt46Nkh+g$PUo%a=B-nC5)kqb( zJsUy|6)NYp%YoYH6cuv;JJzJrGs=fw8)o3wotiosNO^f$BwdZxrP)zvvcHrmKt~E*K#OMj8Z6WkDDUX#@mg3MB)S?cWPhr|pRG{^(rT zo`c8&R8@%$%cgcEulG>rT!)h&myI`e>UkRN7*yL1%2c4kHx29)j zmVIqLTbM>ad-dJ7ul;=}wmC@Fjn;+>1LPyW@@Kh6IG DGf`q%