├── .brackets.json ├── .gitignore ├── LICENSE ├── README.md ├── background.js ├── background_old.js ├── font-awesome ├── css │ ├── font-awesome.css │ └── font-awesome.min.css └── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── images ├── bot_icon.png ├── bot_icon_bw.png └── bot_loader.png ├── jquery-3.2.1.min.js ├── manifest.json ├── modules ├── facebook │ ├── background_fb.js │ └── content_fb.js ├── keepvid │ ├── background_kv.js │ └── content_kv.js ├── whatsapp │ ├── background_wa.js │ └── content_wa.js └── youtube │ ├── background_yt.js │ └── content_yt.js ├── options ├── options.css ├── options.html └── options.js ├── popup ├── popup.css ├── popup.html └── popup.js ├── sdk.js ├── universal.js └── universal_content.js /.brackets.json: -------------------------------------------------------------------------------- 1 | { 2 | "multihack-brackets.lastRoom": "chromebot", 3 | "multihack-brackets.hostname": "" 4 | } 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # https://git-scm.com/docs/gitignore 2 | # https://help.github.com/articles/ignoring-files 3 | # Example .gitignore files: https://github.com/github/gitignore 4 | /bower_components/ 5 | /node_modules/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 siphomateke 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ChromeBot 2 | A chrome extension to automate chrome tasks such as sending WhatsApp messages, getting Facebook friends or crawling web pages 3 | -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- 1 | /** This is easier than typing that chrome.whatever to open a new tab */ 2 | bot.ca.newTab = function (url, active, callback) { 3 | chrome.tabs.create({ 4 | active: active, 5 | url: url 6 | }, function (tab) { 7 | if (typeof callback !== 'undefined') { 8 | callback(tab); 9 | } 10 | }); 11 | } 12 | 13 | /** 14 | * Closes the specified tab 15 | * @param {object} tab The tab to close 16 | */ 17 | bot.ca.closeTab = function closeTab(tab) { 18 | chrome.tabs.remove(tab.id); 19 | } 20 | 21 | /** 22 | * Gets the active tab 23 | * @param {function} callback The function to call when the active tab is found 24 | */ 25 | bot.ca.onActiveTab = function (callback) { 26 | chrome.tabs.query({ 27 | active: true, 28 | currentWindow: true 29 | }, function (tabs) { 30 | var activetab = tabs[0]; 31 | callback(activetab); 32 | }); 33 | } 34 | 35 | /** 36 | * Closes the active tab 37 | */ 38 | bot.ca.closeActiveTab = () => {bot.ca.onActiveTab(bot.ca.closeTab)}; 39 | 40 | /** 41 | * Peforms a google search 42 | * @param {string} query The search query 43 | * @param {object} options Search options 44 | * @param {boolean} [options.lucky=false] Whether to use 'I'm feeling lucky' when searching 45 | * @param {boolean} [options.active] Whether chrome should switch to the google result when it is opened 46 | * @param {function} callback The function called when the new google search tab is opened 47 | */ 48 | bot.ca.google = function (query, options = {}, callback) { 49 | if (typeof options.lucky === 'undefined') options.lucky = false; 50 | if (!options.lucky) { 51 | bot.ca.newTab("https://www.google.co.zm/search?q=" + query, options.active, callback); 52 | } else { 53 | bot.ca.newTab("https://www.google.co.zm/search?btnI=I&q=" + query, options.active, callback); 54 | } 55 | }; 56 | 57 | // TODO: Document more core actions. e.g wikipedia, youtube, getYoutubeDownloadLink 58 | bot.ca.wikipedia = function (query, options={}, callback) { 59 | options.lucky = true; 60 | bot.ca.google("site%3Aen.wikipedia.org+" + query, options, callback); 61 | } 62 | 63 | bot.ca.youtube = function (query, options={}, callback) { 64 | options.lucky = true; 65 | bot.ca.google("site%3Awww.youtube.com+" + query, options, callback); 66 | } 67 | 68 | bot.ca.keepvid = function (youtubeUrl, active=false, callback) { 69 | bot.ca.newTab("http://keepvid.com/?url=" + youtubeUrl, active, callback) 70 | } 71 | 72 | bot.ca.getYoutubeDownloadLink = function (query, options={'type': 'audio'}, callback=()=>{}) { 73 | bot.ca.youtube(query, {'active':false}, (tab) => { 74 | var tabTracker = new TabTracker({'tabIds': [tab.id]}); 75 | tabTracker.events.addEventListener('onTabLoad', (tab) => { 76 | bot.ca.closeTab(tab); 77 | bot.ca.keepvid(tab.url, false, (keepvidTab) => { 78 | kv.requestDownload(keepvidTab.id, options, (response) => { 79 | bot.ca.closeTab(keepvidTab); 80 | callback(response); 81 | }); 82 | }); 83 | }); 84 | }); 85 | } 86 | 87 | bot.ca.downloadYoutube = function(query, options={}) { 88 | bot.ca.getYoutubeDownloadLink(query, {'type': 'audio'},(response) => { 89 | if (response.error == false) { 90 | var download = response.data; 91 | wam.confirmAction(" Are you sure you want to download '" + download.name + "'(" + download.size + ")?", (confirmed) => { 92 | if (confirmed) { 93 | bot.notify("Downloading '" + download.name + "'(" + download.size + ")"); 94 | chrome.downloads.download({ 95 | url: download.path, 96 | filename: download.name 97 | }, function (downloadId) { 98 | if (typeof downloadId === 'undefined') { 99 | wam.sendWhatsAppMessage("Error: Could not download youtube video."); 100 | bot.notify("Could not download youtube video.", "error"); 101 | } 102 | }); 103 | } 104 | }); 105 | } else { 106 | wam.sendWhatsAppMessage("Error: Could not download youtube video."); 107 | bot.notify("Could not download youtube video.", "error"); 108 | } 109 | }) 110 | } 111 | 112 | // "Is that a girl or a little boy?" ~ Temba asking about Rihanna 113 | 114 | let whatsappActions = { 115 | 'google': bot.ca.google, 116 | '\u{274C}': bot.ca.closeActiveTab, 117 | 'youtube': bot.ca.youtube, 118 | '\u{1F4D6}': bot.ca.wikipedia, 119 | 'keepvid': bot.ca.keepvid, 120 | //'\u{2B07}': getYouTubeURL, 121 | '\u{2B07}': bot.ca.downloadYoutube 122 | }; 123 | 124 | wam.events.addEventListener('onMessage', (msg) => { 125 | console.log("New message: "+msg); 126 | var firstword = msg.split(/\s/, 1)[0].toLowerCase(); 127 | var otherwords = msg.substring(firstword.length); 128 | if (firstword in whatsappActions) { 129 | whatsappActions[firstword](otherwords); 130 | } 131 | }); 132 | 133 | bot.popup.init(); 134 | 135 | /*function toYodaSpeak(sentence) { 136 | $.ajax({ 137 | url: 'https://yoda.p.mashape.com/yoda', 138 | method: 'GET', 139 | headers: {'X-Mashape-Key': 'rQXZXZFK6Emshnbw6BDqVR6kkcUKp1gJA9ljsn67K31a8X1Q4Y'}, 140 | data: {'sentence': sentence}, 141 | success: (response) => { 142 | console.log(response); 143 | } 144 | }) 145 | } 146 | 147 | function parseSentence(sentence) { 148 | $.ajax({ 149 | url: 'https://getpost-full-natural-language-parser-v1.p.mashape.com/parser', 150 | method: 'POST', 151 | headers: {'X-Mashape-Key': 'rQXZXZFK6Emshnbw6BDqVR6kkcUKp1gJA9ljsn67K31a8X1Q4Y'}, 152 | contentType: 'application/json; charset=utf-8', 153 | data: JSON.stringify({'sentence' : sentence}), 154 | dataType: 'json', 155 | success: (response) => { 156 | console.log(response); 157 | } 158 | }) 159 | } 160 | 161 | function duckDuckGo() { 162 | $.ajax({ 163 | url: 'https://duckduckgo-duckduckgo-zero-click-info.p.mashape.com/', 164 | method: 'GET', 165 | headers: {'X-Mashape-Key': 'rQXZXZFK6Emshnbw6BDqVR6kkcUKp1gJA9ljsn67K31a8X1Q4Y'}, 166 | data: {'q': 'Google', 'format': 'json', 'no_html': 1, 'no_redirect': 1, 'skip_disambig': 1}, 167 | dataType: 'json', 168 | success: (response) => { 169 | console.log(response); 170 | console.log(response.AbstractText); 171 | parseSentence(response.AbstractText); 172 | toYodaSpeak(response.AbstractText); 173 | } 174 | }) 175 | }*/ 176 | -------------------------------------------------------------------------------- /background_old.js: -------------------------------------------------------------------------------- 1 | //////////////////////// //////////////////////// 2 | //////////////////////// //////////////////////// 3 | //////////////////////// VARIABLE DEFINITIONS //////////////////////// 4 | //////////////////////// //////////////////////// 5 | //////////////////////// //////////////////////// 6 | 7 | var get_youtube_url = false; 8 | 9 | function emoji_equal(emoji1, emoji2) { 10 | return emoji1.codePointAt(0) == emoji2.codePointAt(0) 11 | } 12 | 13 | function WhatsAppBot() { 14 | this.listening = false; 15 | this.tabs_injected = []; 16 | this.whatsapp_tabs = []; 17 | this.last_msg = ''; 18 | this._confirm_check = function () {}; 19 | 20 | this.new_message = function (msg) { 21 | this.last_msg = msg; 22 | this._confirm_check(this.last_msg); 23 | } 24 | 25 | this.send_tab_message = function (data) { 26 | if (this.whatsapp_tabs.length == 1) { 27 | chrome.tabs.sendMessage(this.whatsapp_tabs[0], data); 28 | } else { 29 | console.log('Error: More than one tab found!'); 30 | } 31 | } 32 | 33 | this.send_whatsapp_msg = function (msg, to) { 34 | this.send_tab_message({ 35 | command: 'send_msg', 36 | msg: msg, 37 | to: to 38 | }); 39 | } 40 | 41 | this.confirm_action = function (action, callback) { 42 | this.send_whatsapp_msg(action); 43 | 44 | // Called when new message is received 45 | this._confirm_check = function (msg_original) { 46 | var msg = msg_original.toLowerCase(); 47 | var confirmed = false; 48 | if (msg == 'yes' || msg == 'y' || emoji_equal(msg, '\u{1F44D}')) { 49 | confirmed = true; 50 | } 51 | callback(confirmed); 52 | this._confirm_check = function () {}; 53 | } 54 | } 55 | } 56 | 57 | var wab = new WhatsAppBot(); 58 | 59 | var saved_tab; 60 | 61 | var dictionary_of_functions = { 62 | 'google': GoogleThis, 63 | '\u{274C}': closeActiveTab, 64 | 'youtube': YouTubeThis, 65 | '\u{1F4D6}': WikipediaThis, 66 | 'keepvid': openKeepVid, 67 | '\u{2B07}': getYouTubeURL, 68 | 'say': PLEASERENAMEMESOONTHANKS1 69 | }; 70 | 71 | var dictionary_of_dumb_chat = { 72 | "Yes it is": "No it isn't", 73 | "No it isn't": "Yes it is", 74 | "You're stupid": "No I'm not", 75 | "What's nine plus ten?": "Twenty-one?", 76 | "What's 9 plus 10?": "21?", 77 | "What's the answer to life the universe and everything?":"42", 78 | "Shut up": "", 79 | "Goodnight": "Goodnight", 80 | "nyt": "nyt", 81 | "night": "night", 82 | "I'm going to bed now": "so?" 83 | }; 84 | 85 | //////////////////////// //////////////////////// 86 | //////////////////////// //////////////////////// 87 | //////////////////////// FUNCTION DEFINITIONS //////////////////////// 88 | //////////////////////// //////////////////////// 89 | //////////////////////// //////////////////////// 90 | 91 | // // 92 | // BASIC STUFF // 93 | // // 94 | 95 | //When placed inside a function, this logs the name of the function to the console as "FUNCTION: [name of function here]" 96 | function logf() { 97 | var tmp = arguments.callee.caller.toString(); 98 | tmp = tmp.substr('function '.length); 99 | var functionname = tmp.substr(0, tmp.indexOf('(')); 100 | console.log("FUNCTION: " + functionname); 101 | } 102 | 103 | 104 | 105 | // // 106 | // TAB MANAGEMENT // 107 | // // 108 | 109 | //This is easier than typing that chrome.whatever to open a new tab 110 | function newTab(url, savetab, active) { 111 | logf(); 112 | chrome.tabs.create({ 113 | active: active, 114 | url: url 115 | }, function (tab) { 116 | if (savetab == true) { 117 | saved_tab = tab; 118 | } 119 | }); 120 | } 121 | 122 | //closes the specified tab 123 | function closeTab(tab) { 124 | logf(); 125 | chrome.tabs.remove(tab.id); 126 | } 127 | 128 | //executes callback function on the active tab 129 | function onActiveTab(callback) { 130 | logf(); 131 | chrome.tabs.query({ 132 | active: true, 133 | currentWindow: true 134 | }, function (tabs) { 135 | var activetab = tabs[0]; 136 | callback(activetab); 137 | }); 138 | } 139 | 140 | //closes the active tab 141 | function closeActiveTab() { 142 | logf(); 143 | onActiveTab(closeTab) 144 | } 145 | 146 | function getTab(url, callback, multiple) { 147 | logf(); 148 | chrome.tabs.query({ 149 | currentWindow: true, 150 | url: url 151 | }, 152 | function (tabs) { 153 | if (multiple != undefined && multiple) { 154 | callback(tabs); 155 | } else { 156 | callback(tabs[0]); 157 | } 158 | } 159 | ); 160 | return false; 161 | } 162 | 163 | 164 | 165 | 166 | 167 | // // 168 | // UNGROUPED // 169 | // // 170 | 171 | function GoogleThis(arg, lucky, savetab, active) { 172 | logf(); 173 | logf(); 174 | if (lucky == undefined || lucky == false) { 175 | newTab("https://www.google.co.zm/search?q=" + arg, savetab, active); 176 | } else if (lucky) { 177 | newTab("https://www.google.co.zm/search?btnI=I&q=" + arg, savetab, active); 178 | } 179 | } 180 | 181 | function WikipediaThis(arg) { 182 | logf(); 183 | GoogleThis("site%3Aen.wikipedia.org+" + arg, true); 184 | } 185 | 186 | function YouTubeThis(arg, savetab) { 187 | logf(); 188 | logf(); 189 | GoogleThis("site%3Awww.youtube.com+" + arg, true, savetab); 190 | } 191 | 192 | function getYouTubeURL(arg) { 193 | logf(); 194 | YouTubeThis(arg, true); 195 | get_youtube_url = true; 196 | 197 | } 198 | 199 | function openKeepVid(YouTube_url, savetab) { 200 | logf(); 201 | newTab("http://keepvid.com/?url=" + YouTube_url, savetab) 202 | } 203 | 204 | function browserActionColor(arg) { 205 | logf(); 206 | chrome.browserAction.setIcon({ 207 | path: "images/bot_icon_" + arg + ".png" 208 | }); 209 | } 210 | 211 | function PLEASERENAMEMESOONTHANKS1(arg) { 212 | wab.send_whatsapp_msg(arg) 213 | } 214 | 215 | function dumbChat(msg) { 216 | if (msg in dictionary_of_dumb_chat) { 217 | wab.send_whatsapp_msg(" "+dictionary_of_dumb_chat[msg]) 218 | } 219 | } 220 | 221 | 222 | 223 | 224 | 225 | function URLBeginsWith(url, txt) { 226 | return url.indexOf(txt) > -1; 227 | } 228 | 229 | function update_whatsapp_bot_status() { 230 | logf(); 231 | console.log("WhatsApp tabs: " + wab.whatsapp_tabs.length); 232 | if (wab.whatsapp_tabs.length > 0) { 233 | if (!wab.listening) { 234 | browserActionColor("bw"); // red 235 | } else { 236 | browserActionColor("green"); 237 | } 238 | } else { 239 | browserActionColor("bw"); 240 | wab.listening = false; 241 | } 242 | } 243 | 244 | function add_whatsapp_tab(id) { 245 | logf(); 246 | wab.whatsapp_tabs.push(id); 247 | update_whatsapp_bot_status(); 248 | } 249 | 250 | function remove_whatsapp_tab(id) { 251 | logf(); 252 | var idx = wab.whatsapp_tabs.indexOf(id); 253 | if (idx > -1) { 254 | wab.whatsapp_tabs.splice(idx, 1); 255 | update_whatsapp_bot_status(); 256 | } 257 | } 258 | 259 | function add_injected_tab(id) { 260 | logf(); 261 | wab.tabs_injected.push(id); 262 | } 263 | 264 | function remove_injected_tab(id) { 265 | logf(); 266 | var idx = wab.tabs_injected.indexOf(id); 267 | if (idx > -1) { 268 | wab.tabs_injected.splice(idx, 1); 269 | } 270 | } 271 | 272 | // Sends a chrome notification 273 | function notify(msg, type, progress) { 274 | logf(); 275 | if (type == "error") { 276 | chrome.notifications.create("", { 277 | type: "basic", 278 | iconUrl: chrome.runtime.getManifest().icons["128"], 279 | title: "WhatsApp Bot", 280 | message: "Error: " + msg, 281 | isClickable: false 282 | }); 283 | } else { 284 | chrome.notifications.create("", { 285 | type: "basic", 286 | iconUrl: chrome.runtime.getManifest().icons["128"], 287 | title: "WhatsApp Bot", 288 | message: msg, 289 | isClickable: false 290 | }); 291 | } 292 | } 293 | 294 | //////////////////////// //////////////////////// 295 | //////////////////////// //////////////////////// 296 | //////////////////////// FUNCTION EXECUTIONS //////////////////////// 297 | //////////////////////// //////////////////////// 298 | //////////////////////// //////////////////////// 299 | 300 | // // 301 | // NOT CONTEXT MENUS // 302 | // // 303 | 304 | chrome.runtime.onMessage.addListener( 305 | function (request, sender, sendResponse) { 306 | 307 | if ("type" in request) { 308 | if (URLBeginsWith(sender.url, "https://web.whatsapp.com/") && request.type == "loadstate") { 309 | var loadstate = request.loadstate; 310 | console.log(loadstate); 311 | if (loadstate == "loaded") { 312 | add_whatsapp_tab(sender.tab.id); 313 | } else if (loadstate == "unloaded") { 314 | remove_whatsapp_tab(sender.tab.id); 315 | } 316 | } else if (get_youtube_url == true) { 317 | //do you want to save a youtube video? 318 | if (URLBeginsWith(sender.url, "https://www.youtube.com") && request.type == "loadstate" && request.loadstate == "loaded") { 319 | //Has that tab just loaded? (rather than just closed) 320 | //Is it a youtube tab? (sometimes the tab isn't a youtube tab - for some random reason) 321 | if (saved_tab.id == sender.tab.id) { 322 | //Is the youtube tab that has just loaded the same as the one that you told to open? 323 | closeTab(saved_tab); 324 | console.log("Open Keep vid!"); 325 | openKeepVid(sender.url, true); 326 | } 327 | } 328 | if (URLBeginsWith(sender.url, "http://keepvid.com") && request.type == "download") { 329 | if (request.error == false) { 330 | var audio_download = request.download; 331 | if (saved_tab.id == sender.tab.id) { 332 | closeTab(saved_tab); 333 | wab.confirm_action(" Are you sure you want to download '" + audio_download.name + "'(" + audio_download.size + ")?", function (confirmed) { 334 | if (confirmed) { 335 | notify("Downloading '" + audio_download.name + "'(" + audio_download.size + ")"); 336 | chrome.downloads.download({ 337 | url: audio_download.path, 338 | filename: audio_download.name 339 | }, function (downloadId) { 340 | if (undefined) { 341 | wab.send_whatsapp_msg("Error: Could not download youtube video."); 342 | notify("Could not download youtube video.", "error"); 343 | } 344 | }); 345 | } 346 | get_youtube_url = false; 347 | }); 348 | } 349 | } else { 350 | wab.send_whatsapp_msg("Error: Could not download youtube video."); 351 | notify("Could not download youtube video.", "error"); 352 | } 353 | } 354 | } 355 | if (request.type == "whatsapp_message") { 356 | var msg = request.whatsapp_message; 357 | // If this is not a bot message 358 | if (!emoji_equal(msg, '\u{1F916}')) { 359 | wab.new_message(msg); 360 | var firstword = msg.split(/\s/, 1)[0].toLowerCase(); 361 | var otherwords = msg.substring(firstword.length); 362 | if (firstword in dictionary_of_functions) { 363 | dictionary_of_functions[firstword](otherwords); 364 | } 365 | /***********lol**************/ 366 | dumbChat(msg) 367 | } 368 | } 369 | } 370 | } 371 | ); 372 | 373 | //when you click that thing in the corner 374 | chrome.browserAction.onClicked.addListener(function (tab) { 375 | console.log("**CLICKED**: browserAction"); 376 | getTab("https://web.whatsapp.com/", function (tabs) { 377 | if (tabs != undefined && tabs.length == 1) { 378 | var tab = tabs[0]; 379 | if (tab != undefined) { 380 | console.log("Found whatsapp tab: " + tab.id); 381 | if (wab.listening == false) { 382 | chrome.tabs.sendMessage(tab.id, { 383 | command: "listen" 384 | }); 385 | } else if (wab.listening == true) { 386 | chrome.tabs.sendMessage(tab.id, { 387 | command: "stop_listen" 388 | }); 389 | } 390 | wab.listening = !wab.listening; 391 | update_whatsapp_bot_status(); 392 | } 393 | } else if (tabs.length > 1) { 394 | notify("Only one WhatsApp tab should be open. Please close all other WhatsApp tabs but one.", "error"); 395 | } else { 396 | notify("No WhatsApp tabs open.", "error"); 397 | } 398 | }, true); //HERE ME ME ME 399 | }); 400 | 401 | function inject_code(tab) { 402 | logf(); 403 | if (tab != undefined && tab.url != undefined && URLBeginsWith(tab.url, "https://web.whatsapp.com/")) { 404 | // Make sure we don't inject code twice 405 | if (wab.tabs_injected.indexOf(tab.id) == -1) { 406 | var js_scripts = chrome.runtime.getManifest().content_scripts[0].js; 407 | for (var i = 0; i < js_scripts.length; i++) { 408 | chrome.tabs.executeScript(tab.id, { 409 | file: js_scripts[i] 410 | }); 411 | } 412 | add_injected_tab(tab.id); 413 | } 414 | } 415 | } 416 | 417 | /***** Content.js Injection ******/ 418 | getTab("https://web.whatsapp.com/", inject_code); 419 | chrome.tabs.onCreated.addListener(inject_code); 420 | chrome.tabs.onUpdated.addListener(function (tabId, changeInfo, tab) { 421 | /*console.log(changeInfo.status); 422 | if (changeInfo.status == "complete") { 423 | if (get_youtube_url == true) { 424 | if ((URLBeginsWith(changeInfo.url,"https://www.youtube.com")) { 425 | //Has that tab just loaded? (rather than just closed) 426 | //Is it a youtube tab? (sometimes the tab isn't a youtube tab - for some random reason) 427 | if (saved_tab.id == sender.tab.id) { 428 | //Is the youtube tab that has just loaded the same as the one that you told to open? 429 | closeTab(saved_tab); 430 | console.log("Open Keep vid!"); 431 | openKeepVid(sender.url, true); 432 | } 433 | 434 | } 435 | }*/ 436 | inject_code(tab) 437 | }); 438 | -------------------------------------------------------------------------------- /font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | /* FONT PATH 6 | * -------------------------- */ 7 | @font-face { 8 | font-family: 'FontAwesome'; 9 | src: url('../fonts/fontawesome-webfont.eot?v=4.3.0'); 10 | src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg'); 11 | font-weight: normal; 12 | font-style: normal; 13 | } 14 | .fa { 15 | display: inline-block; 16 | font: normal normal normal 14px/1 FontAwesome; 17 | font-size: inherit; 18 | text-rendering: auto; 19 | -webkit-font-smoothing: antialiased; 20 | -moz-osx-font-smoothing: grayscale; 21 | transform: translate(0, 0); 22 | } 23 | /* makes the font 33% larger relative to the icon container */ 24 | .fa-lg { 25 | font-size: 1.33333333em; 26 | line-height: 0.75em; 27 | vertical-align: -15%; 28 | } 29 | .fa-2x { 30 | font-size: 2em; 31 | } 32 | .fa-3x { 33 | font-size: 3em; 34 | } 35 | .fa-4x { 36 | font-size: 4em; 37 | } 38 | .fa-5x { 39 | font-size: 5em; 40 | } 41 | .fa-fw { 42 | width: 1.28571429em; 43 | text-align: center; 44 | } 45 | .fa-ul { 46 | padding-left: 0; 47 | margin-left: 2.14285714em; 48 | list-style-type: none; 49 | } 50 | .fa-ul > li { 51 | position: relative; 52 | } 53 | .fa-li { 54 | position: absolute; 55 | left: -2.14285714em; 56 | width: 2.14285714em; 57 | top: 0.14285714em; 58 | text-align: center; 59 | } 60 | .fa-li.fa-lg { 61 | left: -1.85714286em; 62 | } 63 | .fa-border { 64 | padding: .2em .25em .15em; 65 | border: solid 0.08em #eeeeee; 66 | border-radius: .1em; 67 | } 68 | .pull-right { 69 | float: right; 70 | } 71 | .pull-left { 72 | float: left; 73 | } 74 | .fa.pull-left { 75 | margin-right: .3em; 76 | } 77 | .fa.pull-right { 78 | margin-left: .3em; 79 | } 80 | .fa-spin { 81 | -webkit-animation: fa-spin 2s infinite linear; 82 | animation: fa-spin 2s infinite linear; 83 | } 84 | .fa-pulse { 85 | -webkit-animation: fa-spin 1s infinite steps(8); 86 | animation: fa-spin 1s infinite steps(8); 87 | } 88 | @-webkit-keyframes fa-spin { 89 | 0% { 90 | -webkit-transform: rotate(0deg); 91 | transform: rotate(0deg); 92 | } 93 | 100% { 94 | -webkit-transform: rotate(359deg); 95 | transform: rotate(359deg); 96 | } 97 | } 98 | @keyframes fa-spin { 99 | 0% { 100 | -webkit-transform: rotate(0deg); 101 | transform: rotate(0deg); 102 | } 103 | 100% { 104 | -webkit-transform: rotate(359deg); 105 | transform: rotate(359deg); 106 | } 107 | } 108 | .fa-rotate-90 { 109 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); 110 | -webkit-transform: rotate(90deg); 111 | -ms-transform: rotate(90deg); 112 | transform: rotate(90deg); 113 | } 114 | .fa-rotate-180 { 115 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); 116 | -webkit-transform: rotate(180deg); 117 | -ms-transform: rotate(180deg); 118 | transform: rotate(180deg); 119 | } 120 | .fa-rotate-270 { 121 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); 122 | -webkit-transform: rotate(270deg); 123 | -ms-transform: rotate(270deg); 124 | transform: rotate(270deg); 125 | } 126 | .fa-flip-horizontal { 127 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1); 128 | -webkit-transform: scale(-1, 1); 129 | -ms-transform: scale(-1, 1); 130 | transform: scale(-1, 1); 131 | } 132 | .fa-flip-vertical { 133 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1); 134 | -webkit-transform: scale(1, -1); 135 | -ms-transform: scale(1, -1); 136 | transform: scale(1, -1); 137 | } 138 | :root .fa-rotate-90, 139 | :root .fa-rotate-180, 140 | :root .fa-rotate-270, 141 | :root .fa-flip-horizontal, 142 | :root .fa-flip-vertical { 143 | filter: none; 144 | } 145 | .fa-stack { 146 | position: relative; 147 | display: inline-block; 148 | width: 2em; 149 | height: 2em; 150 | line-height: 2em; 151 | vertical-align: middle; 152 | } 153 | .fa-stack-1x, 154 | .fa-stack-2x { 155 | position: absolute; 156 | left: 0; 157 | width: 100%; 158 | text-align: center; 159 | } 160 | .fa-stack-1x { 161 | line-height: inherit; 162 | } 163 | .fa-stack-2x { 164 | font-size: 2em; 165 | } 166 | .fa-inverse { 167 | color: #ffffff; 168 | } 169 | /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen 170 | readers do not read off random characters that represent icons */ 171 | .fa-glass:before { 172 | content: "\f000"; 173 | } 174 | .fa-music:before { 175 | content: "\f001"; 176 | } 177 | .fa-search:before { 178 | content: "\f002"; 179 | } 180 | .fa-envelope-o:before { 181 | content: "\f003"; 182 | } 183 | .fa-heart:before { 184 | content: "\f004"; 185 | } 186 | .fa-star:before { 187 | content: "\f005"; 188 | } 189 | .fa-star-o:before { 190 | content: "\f006"; 191 | } 192 | .fa-user:before { 193 | content: "\f007"; 194 | } 195 | .fa-film:before { 196 | content: "\f008"; 197 | } 198 | .fa-th-large:before { 199 | content: "\f009"; 200 | } 201 | .fa-th:before { 202 | content: "\f00a"; 203 | } 204 | .fa-th-list:before { 205 | content: "\f00b"; 206 | } 207 | .fa-check:before { 208 | content: "\f00c"; 209 | } 210 | .fa-remove:before, 211 | .fa-close:before, 212 | .fa-times:before { 213 | content: "\f00d"; 214 | } 215 | .fa-search-plus:before { 216 | content: "\f00e"; 217 | } 218 | .fa-search-minus:before { 219 | content: "\f010"; 220 | } 221 | .fa-power-off:before { 222 | content: "\f011"; 223 | } 224 | .fa-signal:before { 225 | content: "\f012"; 226 | } 227 | .fa-gear:before, 228 | .fa-cog:before { 229 | content: "\f013"; 230 | } 231 | .fa-trash-o:before { 232 | content: "\f014"; 233 | } 234 | .fa-home:before { 235 | content: "\f015"; 236 | } 237 | .fa-file-o:before { 238 | content: "\f016"; 239 | } 240 | .fa-clock-o:before { 241 | content: "\f017"; 242 | } 243 | .fa-road:before { 244 | content: "\f018"; 245 | } 246 | .fa-download:before { 247 | content: "\f019"; 248 | } 249 | .fa-arrow-circle-o-down:before { 250 | content: "\f01a"; 251 | } 252 | .fa-arrow-circle-o-up:before { 253 | content: "\f01b"; 254 | } 255 | .fa-inbox:before { 256 | content: "\f01c"; 257 | } 258 | .fa-play-circle-o:before { 259 | content: "\f01d"; 260 | } 261 | .fa-rotate-right:before, 262 | .fa-repeat:before { 263 | content: "\f01e"; 264 | } 265 | .fa-refresh:before { 266 | content: "\f021"; 267 | } 268 | .fa-list-alt:before { 269 | content: "\f022"; 270 | } 271 | .fa-lock:before { 272 | content: "\f023"; 273 | } 274 | .fa-flag:before { 275 | content: "\f024"; 276 | } 277 | .fa-headphones:before { 278 | content: "\f025"; 279 | } 280 | .fa-volume-off:before { 281 | content: "\f026"; 282 | } 283 | .fa-volume-down:before { 284 | content: "\f027"; 285 | } 286 | .fa-volume-up:before { 287 | content: "\f028"; 288 | } 289 | .fa-qrcode:before { 290 | content: "\f029"; 291 | } 292 | .fa-barcode:before { 293 | content: "\f02a"; 294 | } 295 | .fa-tag:before { 296 | content: "\f02b"; 297 | } 298 | .fa-tags:before { 299 | content: "\f02c"; 300 | } 301 | .fa-book:before { 302 | content: "\f02d"; 303 | } 304 | .fa-bookmark:before { 305 | content: "\f02e"; 306 | } 307 | .fa-print:before { 308 | content: "\f02f"; 309 | } 310 | .fa-camera:before { 311 | content: "\f030"; 312 | } 313 | .fa-font:before { 314 | content: "\f031"; 315 | } 316 | .fa-bold:before { 317 | content: "\f032"; 318 | } 319 | .fa-italic:before { 320 | content: "\f033"; 321 | } 322 | .fa-text-height:before { 323 | content: "\f034"; 324 | } 325 | .fa-text-width:before { 326 | content: "\f035"; 327 | } 328 | .fa-align-left:before { 329 | content: "\f036"; 330 | } 331 | .fa-align-center:before { 332 | content: "\f037"; 333 | } 334 | .fa-align-right:before { 335 | content: "\f038"; 336 | } 337 | .fa-align-justify:before { 338 | content: "\f039"; 339 | } 340 | .fa-list:before { 341 | content: "\f03a"; 342 | } 343 | .fa-dedent:before, 344 | .fa-outdent:before { 345 | content: "\f03b"; 346 | } 347 | .fa-indent:before { 348 | content: "\f03c"; 349 | } 350 | .fa-video-camera:before { 351 | content: "\f03d"; 352 | } 353 | .fa-photo:before, 354 | .fa-image:before, 355 | .fa-picture-o:before { 356 | content: "\f03e"; 357 | } 358 | .fa-pencil:before { 359 | content: "\f040"; 360 | } 361 | .fa-map-marker:before { 362 | content: "\f041"; 363 | } 364 | .fa-adjust:before { 365 | content: "\f042"; 366 | } 367 | .fa-tint:before { 368 | content: "\f043"; 369 | } 370 | .fa-edit:before, 371 | .fa-pencil-square-o:before { 372 | content: "\f044"; 373 | } 374 | .fa-share-square-o:before { 375 | content: "\f045"; 376 | } 377 | .fa-check-square-o:before { 378 | content: "\f046"; 379 | } 380 | .fa-arrows:before { 381 | content: "\f047"; 382 | } 383 | .fa-step-backward:before { 384 | content: "\f048"; 385 | } 386 | .fa-fast-backward:before { 387 | content: "\f049"; 388 | } 389 | .fa-backward:before { 390 | content: "\f04a"; 391 | } 392 | .fa-play:before { 393 | content: "\f04b"; 394 | } 395 | .fa-pause:before { 396 | content: "\f04c"; 397 | } 398 | .fa-stop:before { 399 | content: "\f04d"; 400 | } 401 | .fa-forward:before { 402 | content: "\f04e"; 403 | } 404 | .fa-fast-forward:before { 405 | content: "\f050"; 406 | } 407 | .fa-step-forward:before { 408 | content: "\f051"; 409 | } 410 | .fa-eject:before { 411 | content: "\f052"; 412 | } 413 | .fa-chevron-left:before { 414 | content: "\f053"; 415 | } 416 | .fa-chevron-right:before { 417 | content: "\f054"; 418 | } 419 | .fa-plus-circle:before { 420 | content: "\f055"; 421 | } 422 | .fa-minus-circle:before { 423 | content: "\f056"; 424 | } 425 | .fa-times-circle:before { 426 | content: "\f057"; 427 | } 428 | .fa-check-circle:before { 429 | content: "\f058"; 430 | } 431 | .fa-question-circle:before { 432 | content: "\f059"; 433 | } 434 | .fa-info-circle:before { 435 | content: "\f05a"; 436 | } 437 | .fa-crosshairs:before { 438 | content: "\f05b"; 439 | } 440 | .fa-times-circle-o:before { 441 | content: "\f05c"; 442 | } 443 | .fa-check-circle-o:before { 444 | content: "\f05d"; 445 | } 446 | .fa-ban:before { 447 | content: "\f05e"; 448 | } 449 | .fa-arrow-left:before { 450 | content: "\f060"; 451 | } 452 | .fa-arrow-right:before { 453 | content: "\f061"; 454 | } 455 | .fa-arrow-up:before { 456 | content: "\f062"; 457 | } 458 | .fa-arrow-down:before { 459 | content: "\f063"; 460 | } 461 | .fa-mail-forward:before, 462 | .fa-share:before { 463 | content: "\f064"; 464 | } 465 | .fa-expand:before { 466 | content: "\f065"; 467 | } 468 | .fa-compress:before { 469 | content: "\f066"; 470 | } 471 | .fa-plus:before { 472 | content: "\f067"; 473 | } 474 | .fa-minus:before { 475 | content: "\f068"; 476 | } 477 | .fa-asterisk:before { 478 | content: "\f069"; 479 | } 480 | .fa-exclamation-circle:before { 481 | content: "\f06a"; 482 | } 483 | .fa-gift:before { 484 | content: "\f06b"; 485 | } 486 | .fa-leaf:before { 487 | content: "\f06c"; 488 | } 489 | .fa-fire:before { 490 | content: "\f06d"; 491 | } 492 | .fa-eye:before { 493 | content: "\f06e"; 494 | } 495 | .fa-eye-slash:before { 496 | content: "\f070"; 497 | } 498 | .fa-warning:before, 499 | .fa-exclamation-triangle:before { 500 | content: "\f071"; 501 | } 502 | .fa-plane:before { 503 | content: "\f072"; 504 | } 505 | .fa-calendar:before { 506 | content: "\f073"; 507 | } 508 | .fa-random:before { 509 | content: "\f074"; 510 | } 511 | .fa-comment:before { 512 | content: "\f075"; 513 | } 514 | .fa-magnet:before { 515 | content: "\f076"; 516 | } 517 | .fa-chevron-up:before { 518 | content: "\f077"; 519 | } 520 | .fa-chevron-down:before { 521 | content: "\f078"; 522 | } 523 | .fa-retweet:before { 524 | content: "\f079"; 525 | } 526 | .fa-shopping-cart:before { 527 | content: "\f07a"; 528 | } 529 | .fa-folder:before { 530 | content: "\f07b"; 531 | } 532 | .fa-folder-open:before { 533 | content: "\f07c"; 534 | } 535 | .fa-arrows-v:before { 536 | content: "\f07d"; 537 | } 538 | .fa-arrows-h:before { 539 | content: "\f07e"; 540 | } 541 | .fa-bar-chart-o:before, 542 | .fa-bar-chart:before { 543 | content: "\f080"; 544 | } 545 | .fa-twitter-square:before { 546 | content: "\f081"; 547 | } 548 | .fa-facebook-square:before { 549 | content: "\f082"; 550 | } 551 | .fa-camera-retro:before { 552 | content: "\f083"; 553 | } 554 | .fa-key:before { 555 | content: "\f084"; 556 | } 557 | .fa-gears:before, 558 | .fa-cogs:before { 559 | content: "\f085"; 560 | } 561 | .fa-comments:before { 562 | content: "\f086"; 563 | } 564 | .fa-thumbs-o-up:before { 565 | content: "\f087"; 566 | } 567 | .fa-thumbs-o-down:before { 568 | content: "\f088"; 569 | } 570 | .fa-star-half:before { 571 | content: "\f089"; 572 | } 573 | .fa-heart-o:before { 574 | content: "\f08a"; 575 | } 576 | .fa-sign-out:before { 577 | content: "\f08b"; 578 | } 579 | .fa-linkedin-square:before { 580 | content: "\f08c"; 581 | } 582 | .fa-thumb-tack:before { 583 | content: "\f08d"; 584 | } 585 | .fa-external-link:before { 586 | content: "\f08e"; 587 | } 588 | .fa-sign-in:before { 589 | content: "\f090"; 590 | } 591 | .fa-trophy:before { 592 | content: "\f091"; 593 | } 594 | .fa-github-square:before { 595 | content: "\f092"; 596 | } 597 | .fa-upload:before { 598 | content: "\f093"; 599 | } 600 | .fa-lemon-o:before { 601 | content: "\f094"; 602 | } 603 | .fa-phone:before { 604 | content: "\f095"; 605 | } 606 | .fa-square-o:before { 607 | content: "\f096"; 608 | } 609 | .fa-bookmark-o:before { 610 | content: "\f097"; 611 | } 612 | .fa-phone-square:before { 613 | content: "\f098"; 614 | } 615 | .fa-twitter:before { 616 | content: "\f099"; 617 | } 618 | .fa-facebook-f:before, 619 | .fa-facebook:before { 620 | content: "\f09a"; 621 | } 622 | .fa-github:before { 623 | content: "\f09b"; 624 | } 625 | .fa-unlock:before { 626 | content: "\f09c"; 627 | } 628 | .fa-credit-card:before { 629 | content: "\f09d"; 630 | } 631 | .fa-rss:before { 632 | content: "\f09e"; 633 | } 634 | .fa-hdd-o:before { 635 | content: "\f0a0"; 636 | } 637 | .fa-bullhorn:before { 638 | content: "\f0a1"; 639 | } 640 | .fa-bell:before { 641 | content: "\f0f3"; 642 | } 643 | .fa-certificate:before { 644 | content: "\f0a3"; 645 | } 646 | .fa-hand-o-right:before { 647 | content: "\f0a4"; 648 | } 649 | .fa-hand-o-left:before { 650 | content: "\f0a5"; 651 | } 652 | .fa-hand-o-up:before { 653 | content: "\f0a6"; 654 | } 655 | .fa-hand-o-down:before { 656 | content: "\f0a7"; 657 | } 658 | .fa-arrow-circle-left:before { 659 | content: "\f0a8"; 660 | } 661 | .fa-arrow-circle-right:before { 662 | content: "\f0a9"; 663 | } 664 | .fa-arrow-circle-up:before { 665 | content: "\f0aa"; 666 | } 667 | .fa-arrow-circle-down:before { 668 | content: "\f0ab"; 669 | } 670 | .fa-globe:before { 671 | content: "\f0ac"; 672 | } 673 | .fa-wrench:before { 674 | content: "\f0ad"; 675 | } 676 | .fa-tasks:before { 677 | content: "\f0ae"; 678 | } 679 | .fa-filter:before { 680 | content: "\f0b0"; 681 | } 682 | .fa-briefcase:before { 683 | content: "\f0b1"; 684 | } 685 | .fa-arrows-alt:before { 686 | content: "\f0b2"; 687 | } 688 | .fa-group:before, 689 | .fa-users:before { 690 | content: "\f0c0"; 691 | } 692 | .fa-chain:before, 693 | .fa-link:before { 694 | content: "\f0c1"; 695 | } 696 | .fa-cloud:before { 697 | content: "\f0c2"; 698 | } 699 | .fa-flask:before { 700 | content: "\f0c3"; 701 | } 702 | .fa-cut:before, 703 | .fa-scissors:before { 704 | content: "\f0c4"; 705 | } 706 | .fa-copy:before, 707 | .fa-files-o:before { 708 | content: "\f0c5"; 709 | } 710 | .fa-paperclip:before { 711 | content: "\f0c6"; 712 | } 713 | .fa-save:before, 714 | .fa-floppy-o:before { 715 | content: "\f0c7"; 716 | } 717 | .fa-square:before { 718 | content: "\f0c8"; 719 | } 720 | .fa-navicon:before, 721 | .fa-reorder:before, 722 | .fa-bars:before { 723 | content: "\f0c9"; 724 | } 725 | .fa-list-ul:before { 726 | content: "\f0ca"; 727 | } 728 | .fa-list-ol:before { 729 | content: "\f0cb"; 730 | } 731 | .fa-strikethrough:before { 732 | content: "\f0cc"; 733 | } 734 | .fa-underline:before { 735 | content: "\f0cd"; 736 | } 737 | .fa-table:before { 738 | content: "\f0ce"; 739 | } 740 | .fa-magic:before { 741 | content: "\f0d0"; 742 | } 743 | .fa-truck:before { 744 | content: "\f0d1"; 745 | } 746 | .fa-pinterest:before { 747 | content: "\f0d2"; 748 | } 749 | .fa-pinterest-square:before { 750 | content: "\f0d3"; 751 | } 752 | .fa-google-plus-square:before { 753 | content: "\f0d4"; 754 | } 755 | .fa-google-plus:before { 756 | content: "\f0d5"; 757 | } 758 | .fa-money:before { 759 | content: "\f0d6"; 760 | } 761 | .fa-caret-down:before { 762 | content: "\f0d7"; 763 | } 764 | .fa-caret-up:before { 765 | content: "\f0d8"; 766 | } 767 | .fa-caret-left:before { 768 | content: "\f0d9"; 769 | } 770 | .fa-caret-right:before { 771 | content: "\f0da"; 772 | } 773 | .fa-columns:before { 774 | content: "\f0db"; 775 | } 776 | .fa-unsorted:before, 777 | .fa-sort:before { 778 | content: "\f0dc"; 779 | } 780 | .fa-sort-down:before, 781 | .fa-sort-desc:before { 782 | content: "\f0dd"; 783 | } 784 | .fa-sort-up:before, 785 | .fa-sort-asc:before { 786 | content: "\f0de"; 787 | } 788 | .fa-envelope:before { 789 | content: "\f0e0"; 790 | } 791 | .fa-linkedin:before { 792 | content: "\f0e1"; 793 | } 794 | .fa-rotate-left:before, 795 | .fa-undo:before { 796 | content: "\f0e2"; 797 | } 798 | .fa-legal:before, 799 | .fa-gavel:before { 800 | content: "\f0e3"; 801 | } 802 | .fa-dashboard:before, 803 | .fa-tachometer:before { 804 | content: "\f0e4"; 805 | } 806 | .fa-comment-o:before { 807 | content: "\f0e5"; 808 | } 809 | .fa-comments-o:before { 810 | content: "\f0e6"; 811 | } 812 | .fa-flash:before, 813 | .fa-bolt:before { 814 | content: "\f0e7"; 815 | } 816 | .fa-sitemap:before { 817 | content: "\f0e8"; 818 | } 819 | .fa-umbrella:before { 820 | content: "\f0e9"; 821 | } 822 | .fa-paste:before, 823 | .fa-clipboard:before { 824 | content: "\f0ea"; 825 | } 826 | .fa-lightbulb-o:before { 827 | content: "\f0eb"; 828 | } 829 | .fa-exchange:before { 830 | content: "\f0ec"; 831 | } 832 | .fa-cloud-download:before { 833 | content: "\f0ed"; 834 | } 835 | .fa-cloud-upload:before { 836 | content: "\f0ee"; 837 | } 838 | .fa-user-md:before { 839 | content: "\f0f0"; 840 | } 841 | .fa-stethoscope:before { 842 | content: "\f0f1"; 843 | } 844 | .fa-suitcase:before { 845 | content: "\f0f2"; 846 | } 847 | .fa-bell-o:before { 848 | content: "\f0a2"; 849 | } 850 | .fa-coffee:before { 851 | content: "\f0f4"; 852 | } 853 | .fa-cutlery:before { 854 | content: "\f0f5"; 855 | } 856 | .fa-file-text-o:before { 857 | content: "\f0f6"; 858 | } 859 | .fa-building-o:before { 860 | content: "\f0f7"; 861 | } 862 | .fa-hospital-o:before { 863 | content: "\f0f8"; 864 | } 865 | .fa-ambulance:before { 866 | content: "\f0f9"; 867 | } 868 | .fa-medkit:before { 869 | content: "\f0fa"; 870 | } 871 | .fa-fighter-jet:before { 872 | content: "\f0fb"; 873 | } 874 | .fa-beer:before { 875 | content: "\f0fc"; 876 | } 877 | .fa-h-square:before { 878 | content: "\f0fd"; 879 | } 880 | .fa-plus-square:before { 881 | content: "\f0fe"; 882 | } 883 | .fa-angle-double-left:before { 884 | content: "\f100"; 885 | } 886 | .fa-angle-double-right:before { 887 | content: "\f101"; 888 | } 889 | .fa-angle-double-up:before { 890 | content: "\f102"; 891 | } 892 | .fa-angle-double-down:before { 893 | content: "\f103"; 894 | } 895 | .fa-angle-left:before { 896 | content: "\f104"; 897 | } 898 | .fa-angle-right:before { 899 | content: "\f105"; 900 | } 901 | .fa-angle-up:before { 902 | content: "\f106"; 903 | } 904 | .fa-angle-down:before { 905 | content: "\f107"; 906 | } 907 | .fa-desktop:before { 908 | content: "\f108"; 909 | } 910 | .fa-laptop:before { 911 | content: "\f109"; 912 | } 913 | .fa-tablet:before { 914 | content: "\f10a"; 915 | } 916 | .fa-mobile-phone:before, 917 | .fa-mobile:before { 918 | content: "\f10b"; 919 | } 920 | .fa-circle-o:before { 921 | content: "\f10c"; 922 | } 923 | .fa-quote-left:before { 924 | content: "\f10d"; 925 | } 926 | .fa-quote-right:before { 927 | content: "\f10e"; 928 | } 929 | .fa-spinner:before { 930 | content: "\f110"; 931 | } 932 | .fa-circle:before { 933 | content: "\f111"; 934 | } 935 | .fa-mail-reply:before, 936 | .fa-reply:before { 937 | content: "\f112"; 938 | } 939 | .fa-github-alt:before { 940 | content: "\f113"; 941 | } 942 | .fa-folder-o:before { 943 | content: "\f114"; 944 | } 945 | .fa-folder-open-o:before { 946 | content: "\f115"; 947 | } 948 | .fa-smile-o:before { 949 | content: "\f118"; 950 | } 951 | .fa-frown-o:before { 952 | content: "\f119"; 953 | } 954 | .fa-meh-o:before { 955 | content: "\f11a"; 956 | } 957 | .fa-gamepad:before { 958 | content: "\f11b"; 959 | } 960 | .fa-keyboard-o:before { 961 | content: "\f11c"; 962 | } 963 | .fa-flag-o:before { 964 | content: "\f11d"; 965 | } 966 | .fa-flag-checkered:before { 967 | content: "\f11e"; 968 | } 969 | .fa-terminal:before { 970 | content: "\f120"; 971 | } 972 | .fa-code:before { 973 | content: "\f121"; 974 | } 975 | .fa-mail-reply-all:before, 976 | .fa-reply-all:before { 977 | content: "\f122"; 978 | } 979 | .fa-star-half-empty:before, 980 | .fa-star-half-full:before, 981 | .fa-star-half-o:before { 982 | content: "\f123"; 983 | } 984 | .fa-location-arrow:before { 985 | content: "\f124"; 986 | } 987 | .fa-crop:before { 988 | content: "\f125"; 989 | } 990 | .fa-code-fork:before { 991 | content: "\f126"; 992 | } 993 | .fa-unlink:before, 994 | .fa-chain-broken:before { 995 | content: "\f127"; 996 | } 997 | .fa-question:before { 998 | content: "\f128"; 999 | } 1000 | .fa-info:before { 1001 | content: "\f129"; 1002 | } 1003 | .fa-exclamation:before { 1004 | content: "\f12a"; 1005 | } 1006 | .fa-superscript:before { 1007 | content: "\f12b"; 1008 | } 1009 | .fa-subscript:before { 1010 | content: "\f12c"; 1011 | } 1012 | .fa-eraser:before { 1013 | content: "\f12d"; 1014 | } 1015 | .fa-puzzle-piece:before { 1016 | content: "\f12e"; 1017 | } 1018 | .fa-microphone:before { 1019 | content: "\f130"; 1020 | } 1021 | .fa-microphone-slash:before { 1022 | content: "\f131"; 1023 | } 1024 | .fa-shield:before { 1025 | content: "\f132"; 1026 | } 1027 | .fa-calendar-o:before { 1028 | content: "\f133"; 1029 | } 1030 | .fa-fire-extinguisher:before { 1031 | content: "\f134"; 1032 | } 1033 | .fa-rocket:before { 1034 | content: "\f135"; 1035 | } 1036 | .fa-maxcdn:before { 1037 | content: "\f136"; 1038 | } 1039 | .fa-chevron-circle-left:before { 1040 | content: "\f137"; 1041 | } 1042 | .fa-chevron-circle-right:before { 1043 | content: "\f138"; 1044 | } 1045 | .fa-chevron-circle-up:before { 1046 | content: "\f139"; 1047 | } 1048 | .fa-chevron-circle-down:before { 1049 | content: "\f13a"; 1050 | } 1051 | .fa-html5:before { 1052 | content: "\f13b"; 1053 | } 1054 | .fa-css3:before { 1055 | content: "\f13c"; 1056 | } 1057 | .fa-anchor:before { 1058 | content: "\f13d"; 1059 | } 1060 | .fa-unlock-alt:before { 1061 | content: "\f13e"; 1062 | } 1063 | .fa-bullseye:before { 1064 | content: "\f140"; 1065 | } 1066 | .fa-ellipsis-h:before { 1067 | content: "\f141"; 1068 | } 1069 | .fa-ellipsis-v:before { 1070 | content: "\f142"; 1071 | } 1072 | .fa-rss-square:before { 1073 | content: "\f143"; 1074 | } 1075 | .fa-play-circle:before { 1076 | content: "\f144"; 1077 | } 1078 | .fa-ticket:before { 1079 | content: "\f145"; 1080 | } 1081 | .fa-minus-square:before { 1082 | content: "\f146"; 1083 | } 1084 | .fa-minus-square-o:before { 1085 | content: "\f147"; 1086 | } 1087 | .fa-level-up:before { 1088 | content: "\f148"; 1089 | } 1090 | .fa-level-down:before { 1091 | content: "\f149"; 1092 | } 1093 | .fa-check-square:before { 1094 | content: "\f14a"; 1095 | } 1096 | .fa-pencil-square:before { 1097 | content: "\f14b"; 1098 | } 1099 | .fa-external-link-square:before { 1100 | content: "\f14c"; 1101 | } 1102 | .fa-share-square:before { 1103 | content: "\f14d"; 1104 | } 1105 | .fa-compass:before { 1106 | content: "\f14e"; 1107 | } 1108 | .fa-toggle-down:before, 1109 | .fa-caret-square-o-down:before { 1110 | content: "\f150"; 1111 | } 1112 | .fa-toggle-up:before, 1113 | .fa-caret-square-o-up:before { 1114 | content: "\f151"; 1115 | } 1116 | .fa-toggle-right:before, 1117 | .fa-caret-square-o-right:before { 1118 | content: "\f152"; 1119 | } 1120 | .fa-euro:before, 1121 | .fa-eur:before { 1122 | content: "\f153"; 1123 | } 1124 | .fa-gbp:before { 1125 | content: "\f154"; 1126 | } 1127 | .fa-dollar:before, 1128 | .fa-usd:before { 1129 | content: "\f155"; 1130 | } 1131 | .fa-rupee:before, 1132 | .fa-inr:before { 1133 | content: "\f156"; 1134 | } 1135 | .fa-cny:before, 1136 | .fa-rmb:before, 1137 | .fa-yen:before, 1138 | .fa-jpy:before { 1139 | content: "\f157"; 1140 | } 1141 | .fa-ruble:before, 1142 | .fa-rouble:before, 1143 | .fa-rub:before { 1144 | content: "\f158"; 1145 | } 1146 | .fa-won:before, 1147 | .fa-krw:before { 1148 | content: "\f159"; 1149 | } 1150 | .fa-bitcoin:before, 1151 | .fa-btc:before { 1152 | content: "\f15a"; 1153 | } 1154 | .fa-file:before { 1155 | content: "\f15b"; 1156 | } 1157 | .fa-file-text:before { 1158 | content: "\f15c"; 1159 | } 1160 | .fa-sort-alpha-asc:before { 1161 | content: "\f15d"; 1162 | } 1163 | .fa-sort-alpha-desc:before { 1164 | content: "\f15e"; 1165 | } 1166 | .fa-sort-amount-asc:before { 1167 | content: "\f160"; 1168 | } 1169 | .fa-sort-amount-desc:before { 1170 | content: "\f161"; 1171 | } 1172 | .fa-sort-numeric-asc:before { 1173 | content: "\f162"; 1174 | } 1175 | .fa-sort-numeric-desc:before { 1176 | content: "\f163"; 1177 | } 1178 | .fa-thumbs-up:before { 1179 | content: "\f164"; 1180 | } 1181 | .fa-thumbs-down:before { 1182 | content: "\f165"; 1183 | } 1184 | .fa-youtube-square:before { 1185 | content: "\f166"; 1186 | } 1187 | .fa-youtube:before { 1188 | content: "\f167"; 1189 | } 1190 | .fa-xing:before { 1191 | content: "\f168"; 1192 | } 1193 | .fa-xing-square:before { 1194 | content: "\f169"; 1195 | } 1196 | .fa-youtube-play:before { 1197 | content: "\f16a"; 1198 | } 1199 | .fa-dropbox:before { 1200 | content: "\f16b"; 1201 | } 1202 | .fa-stack-overflow:before { 1203 | content: "\f16c"; 1204 | } 1205 | .fa-instagram:before { 1206 | content: "\f16d"; 1207 | } 1208 | .fa-flickr:before { 1209 | content: "\f16e"; 1210 | } 1211 | .fa-adn:before { 1212 | content: "\f170"; 1213 | } 1214 | .fa-bitbucket:before { 1215 | content: "\f171"; 1216 | } 1217 | .fa-bitbucket-square:before { 1218 | content: "\f172"; 1219 | } 1220 | .fa-tumblr:before { 1221 | content: "\f173"; 1222 | } 1223 | .fa-tumblr-square:before { 1224 | content: "\f174"; 1225 | } 1226 | .fa-long-arrow-down:before { 1227 | content: "\f175"; 1228 | } 1229 | .fa-long-arrow-up:before { 1230 | content: "\f176"; 1231 | } 1232 | .fa-long-arrow-left:before { 1233 | content: "\f177"; 1234 | } 1235 | .fa-long-arrow-right:before { 1236 | content: "\f178"; 1237 | } 1238 | .fa-apple:before { 1239 | content: "\f179"; 1240 | } 1241 | .fa-windows:before { 1242 | content: "\f17a"; 1243 | } 1244 | .fa-android:before { 1245 | content: "\f17b"; 1246 | } 1247 | .fa-linux:before { 1248 | content: "\f17c"; 1249 | } 1250 | .fa-dribbble:before { 1251 | content: "\f17d"; 1252 | } 1253 | .fa-skype:before { 1254 | content: "\f17e"; 1255 | } 1256 | .fa-foursquare:before { 1257 | content: "\f180"; 1258 | } 1259 | .fa-trello:before { 1260 | content: "\f181"; 1261 | } 1262 | .fa-female:before { 1263 | content: "\f182"; 1264 | } 1265 | .fa-male:before { 1266 | content: "\f183"; 1267 | } 1268 | .fa-gittip:before, 1269 | .fa-gratipay:before { 1270 | content: "\f184"; 1271 | } 1272 | .fa-sun-o:before { 1273 | content: "\f185"; 1274 | } 1275 | .fa-moon-o:before { 1276 | content: "\f186"; 1277 | } 1278 | .fa-archive:before { 1279 | content: "\f187"; 1280 | } 1281 | .fa-bug:before { 1282 | content: "\f188"; 1283 | } 1284 | .fa-vk:before { 1285 | content: "\f189"; 1286 | } 1287 | .fa-weibo:before { 1288 | content: "\f18a"; 1289 | } 1290 | .fa-renren:before { 1291 | content: "\f18b"; 1292 | } 1293 | .fa-pagelines:before { 1294 | content: "\f18c"; 1295 | } 1296 | .fa-stack-exchange:before { 1297 | content: "\f18d"; 1298 | } 1299 | .fa-arrow-circle-o-right:before { 1300 | content: "\f18e"; 1301 | } 1302 | .fa-arrow-circle-o-left:before { 1303 | content: "\f190"; 1304 | } 1305 | .fa-toggle-left:before, 1306 | .fa-caret-square-o-left:before { 1307 | content: "\f191"; 1308 | } 1309 | .fa-dot-circle-o:before { 1310 | content: "\f192"; 1311 | } 1312 | .fa-wheelchair:before { 1313 | content: "\f193"; 1314 | } 1315 | .fa-vimeo-square:before { 1316 | content: "\f194"; 1317 | } 1318 | .fa-turkish-lira:before, 1319 | .fa-try:before { 1320 | content: "\f195"; 1321 | } 1322 | .fa-plus-square-o:before { 1323 | content: "\f196"; 1324 | } 1325 | .fa-space-shuttle:before { 1326 | content: "\f197"; 1327 | } 1328 | .fa-slack:before { 1329 | content: "\f198"; 1330 | } 1331 | .fa-envelope-square:before { 1332 | content: "\f199"; 1333 | } 1334 | .fa-wordpress:before { 1335 | content: "\f19a"; 1336 | } 1337 | .fa-openid:before { 1338 | content: "\f19b"; 1339 | } 1340 | .fa-institution:before, 1341 | .fa-bank:before, 1342 | .fa-university:before { 1343 | content: "\f19c"; 1344 | } 1345 | .fa-mortar-board:before, 1346 | .fa-graduation-cap:before { 1347 | content: "\f19d"; 1348 | } 1349 | .fa-yahoo:before { 1350 | content: "\f19e"; 1351 | } 1352 | .fa-google:before { 1353 | content: "\f1a0"; 1354 | } 1355 | .fa-reddit:before { 1356 | content: "\f1a1"; 1357 | } 1358 | .fa-reddit-square:before { 1359 | content: "\f1a2"; 1360 | } 1361 | .fa-stumbleupon-circle:before { 1362 | content: "\f1a3"; 1363 | } 1364 | .fa-stumbleupon:before { 1365 | content: "\f1a4"; 1366 | } 1367 | .fa-delicious:before { 1368 | content: "\f1a5"; 1369 | } 1370 | .fa-digg:before { 1371 | content: "\f1a6"; 1372 | } 1373 | .fa-pied-piper:before { 1374 | content: "\f1a7"; 1375 | } 1376 | .fa-pied-piper-alt:before { 1377 | content: "\f1a8"; 1378 | } 1379 | .fa-drupal:before { 1380 | content: "\f1a9"; 1381 | } 1382 | .fa-joomla:before { 1383 | content: "\f1aa"; 1384 | } 1385 | .fa-language:before { 1386 | content: "\f1ab"; 1387 | } 1388 | .fa-fax:before { 1389 | content: "\f1ac"; 1390 | } 1391 | .fa-building:before { 1392 | content: "\f1ad"; 1393 | } 1394 | .fa-child:before { 1395 | content: "\f1ae"; 1396 | } 1397 | .fa-paw:before { 1398 | content: "\f1b0"; 1399 | } 1400 | .fa-spoon:before { 1401 | content: "\f1b1"; 1402 | } 1403 | .fa-cube:before { 1404 | content: "\f1b2"; 1405 | } 1406 | .fa-cubes:before { 1407 | content: "\f1b3"; 1408 | } 1409 | .fa-behance:before { 1410 | content: "\f1b4"; 1411 | } 1412 | .fa-behance-square:before { 1413 | content: "\f1b5"; 1414 | } 1415 | .fa-steam:before { 1416 | content: "\f1b6"; 1417 | } 1418 | .fa-steam-square:before { 1419 | content: "\f1b7"; 1420 | } 1421 | .fa-recycle:before { 1422 | content: "\f1b8"; 1423 | } 1424 | .fa-automobile:before, 1425 | .fa-car:before { 1426 | content: "\f1b9"; 1427 | } 1428 | .fa-cab:before, 1429 | .fa-taxi:before { 1430 | content: "\f1ba"; 1431 | } 1432 | .fa-tree:before { 1433 | content: "\f1bb"; 1434 | } 1435 | .fa-spotify:before { 1436 | content: "\f1bc"; 1437 | } 1438 | .fa-deviantart:before { 1439 | content: "\f1bd"; 1440 | } 1441 | .fa-soundcloud:before { 1442 | content: "\f1be"; 1443 | } 1444 | .fa-database:before { 1445 | content: "\f1c0"; 1446 | } 1447 | .fa-file-pdf-o:before { 1448 | content: "\f1c1"; 1449 | } 1450 | .fa-file-word-o:before { 1451 | content: "\f1c2"; 1452 | } 1453 | .fa-file-excel-o:before { 1454 | content: "\f1c3"; 1455 | } 1456 | .fa-file-powerpoint-o:before { 1457 | content: "\f1c4"; 1458 | } 1459 | .fa-file-photo-o:before, 1460 | .fa-file-picture-o:before, 1461 | .fa-file-image-o:before { 1462 | content: "\f1c5"; 1463 | } 1464 | .fa-file-zip-o:before, 1465 | .fa-file-archive-o:before { 1466 | content: "\f1c6"; 1467 | } 1468 | .fa-file-sound-o:before, 1469 | .fa-file-audio-o:before { 1470 | content: "\f1c7"; 1471 | } 1472 | .fa-file-movie-o:before, 1473 | .fa-file-video-o:before { 1474 | content: "\f1c8"; 1475 | } 1476 | .fa-file-code-o:before { 1477 | content: "\f1c9"; 1478 | } 1479 | .fa-vine:before { 1480 | content: "\f1ca"; 1481 | } 1482 | .fa-codepen:before { 1483 | content: "\f1cb"; 1484 | } 1485 | .fa-jsfiddle:before { 1486 | content: "\f1cc"; 1487 | } 1488 | .fa-life-bouy:before, 1489 | .fa-life-buoy:before, 1490 | .fa-life-saver:before, 1491 | .fa-support:before, 1492 | .fa-life-ring:before { 1493 | content: "\f1cd"; 1494 | } 1495 | .fa-circle-o-notch:before { 1496 | content: "\f1ce"; 1497 | } 1498 | .fa-ra:before, 1499 | .fa-rebel:before { 1500 | content: "\f1d0"; 1501 | } 1502 | .fa-ge:before, 1503 | .fa-empire:before { 1504 | content: "\f1d1"; 1505 | } 1506 | .fa-git-square:before { 1507 | content: "\f1d2"; 1508 | } 1509 | .fa-git:before { 1510 | content: "\f1d3"; 1511 | } 1512 | .fa-hacker-news:before { 1513 | content: "\f1d4"; 1514 | } 1515 | .fa-tencent-weibo:before { 1516 | content: "\f1d5"; 1517 | } 1518 | .fa-qq:before { 1519 | content: "\f1d6"; 1520 | } 1521 | .fa-wechat:before, 1522 | .fa-weixin:before { 1523 | content: "\f1d7"; 1524 | } 1525 | .fa-send:before, 1526 | .fa-paper-plane:before { 1527 | content: "\f1d8"; 1528 | } 1529 | .fa-send-o:before, 1530 | .fa-paper-plane-o:before { 1531 | content: "\f1d9"; 1532 | } 1533 | .fa-history:before { 1534 | content: "\f1da"; 1535 | } 1536 | .fa-genderless:before, 1537 | .fa-circle-thin:before { 1538 | content: "\f1db"; 1539 | } 1540 | .fa-header:before { 1541 | content: "\f1dc"; 1542 | } 1543 | .fa-paragraph:before { 1544 | content: "\f1dd"; 1545 | } 1546 | .fa-sliders:before { 1547 | content: "\f1de"; 1548 | } 1549 | .fa-share-alt:before { 1550 | content: "\f1e0"; 1551 | } 1552 | .fa-share-alt-square:before { 1553 | content: "\f1e1"; 1554 | } 1555 | .fa-bomb:before { 1556 | content: "\f1e2"; 1557 | } 1558 | .fa-soccer-ball-o:before, 1559 | .fa-futbol-o:before { 1560 | content: "\f1e3"; 1561 | } 1562 | .fa-tty:before { 1563 | content: "\f1e4"; 1564 | } 1565 | .fa-binoculars:before { 1566 | content: "\f1e5"; 1567 | } 1568 | .fa-plug:before { 1569 | content: "\f1e6"; 1570 | } 1571 | .fa-slideshare:before { 1572 | content: "\f1e7"; 1573 | } 1574 | .fa-twitch:before { 1575 | content: "\f1e8"; 1576 | } 1577 | .fa-yelp:before { 1578 | content: "\f1e9"; 1579 | } 1580 | .fa-newspaper-o:before { 1581 | content: "\f1ea"; 1582 | } 1583 | .fa-wifi:before { 1584 | content: "\f1eb"; 1585 | } 1586 | .fa-calculator:before { 1587 | content: "\f1ec"; 1588 | } 1589 | .fa-paypal:before { 1590 | content: "\f1ed"; 1591 | } 1592 | .fa-google-wallet:before { 1593 | content: "\f1ee"; 1594 | } 1595 | .fa-cc-visa:before { 1596 | content: "\f1f0"; 1597 | } 1598 | .fa-cc-mastercard:before { 1599 | content: "\f1f1"; 1600 | } 1601 | .fa-cc-discover:before { 1602 | content: "\f1f2"; 1603 | } 1604 | .fa-cc-amex:before { 1605 | content: "\f1f3"; 1606 | } 1607 | .fa-cc-paypal:before { 1608 | content: "\f1f4"; 1609 | } 1610 | .fa-cc-stripe:before { 1611 | content: "\f1f5"; 1612 | } 1613 | .fa-bell-slash:before { 1614 | content: "\f1f6"; 1615 | } 1616 | .fa-bell-slash-o:before { 1617 | content: "\f1f7"; 1618 | } 1619 | .fa-trash:before { 1620 | content: "\f1f8"; 1621 | } 1622 | .fa-copyright:before { 1623 | content: "\f1f9"; 1624 | } 1625 | .fa-at:before { 1626 | content: "\f1fa"; 1627 | } 1628 | .fa-eyedropper:before { 1629 | content: "\f1fb"; 1630 | } 1631 | .fa-paint-brush:before { 1632 | content: "\f1fc"; 1633 | } 1634 | .fa-birthday-cake:before { 1635 | content: "\f1fd"; 1636 | } 1637 | .fa-area-chart:before { 1638 | content: "\f1fe"; 1639 | } 1640 | .fa-pie-chart:before { 1641 | content: "\f200"; 1642 | } 1643 | .fa-line-chart:before { 1644 | content: "\f201"; 1645 | } 1646 | .fa-lastfm:before { 1647 | content: "\f202"; 1648 | } 1649 | .fa-lastfm-square:before { 1650 | content: "\f203"; 1651 | } 1652 | .fa-toggle-off:before { 1653 | content: "\f204"; 1654 | } 1655 | .fa-toggle-on:before { 1656 | content: "\f205"; 1657 | } 1658 | .fa-bicycle:before { 1659 | content: "\f206"; 1660 | } 1661 | .fa-bus:before { 1662 | content: "\f207"; 1663 | } 1664 | .fa-ioxhost:before { 1665 | content: "\f208"; 1666 | } 1667 | .fa-angellist:before { 1668 | content: "\f209"; 1669 | } 1670 | .fa-cc:before { 1671 | content: "\f20a"; 1672 | } 1673 | .fa-shekel:before, 1674 | .fa-sheqel:before, 1675 | .fa-ils:before { 1676 | content: "\f20b"; 1677 | } 1678 | .fa-meanpath:before { 1679 | content: "\f20c"; 1680 | } 1681 | .fa-buysellads:before { 1682 | content: "\f20d"; 1683 | } 1684 | .fa-connectdevelop:before { 1685 | content: "\f20e"; 1686 | } 1687 | .fa-dashcube:before { 1688 | content: "\f210"; 1689 | } 1690 | .fa-forumbee:before { 1691 | content: "\f211"; 1692 | } 1693 | .fa-leanpub:before { 1694 | content: "\f212"; 1695 | } 1696 | .fa-sellsy:before { 1697 | content: "\f213"; 1698 | } 1699 | .fa-shirtsinbulk:before { 1700 | content: "\f214"; 1701 | } 1702 | .fa-simplybuilt:before { 1703 | content: "\f215"; 1704 | } 1705 | .fa-skyatlas:before { 1706 | content: "\f216"; 1707 | } 1708 | .fa-cart-plus:before { 1709 | content: "\f217"; 1710 | } 1711 | .fa-cart-arrow-down:before { 1712 | content: "\f218"; 1713 | } 1714 | .fa-diamond:before { 1715 | content: "\f219"; 1716 | } 1717 | .fa-ship:before { 1718 | content: "\f21a"; 1719 | } 1720 | .fa-user-secret:before { 1721 | content: "\f21b"; 1722 | } 1723 | .fa-motorcycle:before { 1724 | content: "\f21c"; 1725 | } 1726 | .fa-street-view:before { 1727 | content: "\f21d"; 1728 | } 1729 | .fa-heartbeat:before { 1730 | content: "\f21e"; 1731 | } 1732 | .fa-venus:before { 1733 | content: "\f221"; 1734 | } 1735 | .fa-mars:before { 1736 | content: "\f222"; 1737 | } 1738 | .fa-mercury:before { 1739 | content: "\f223"; 1740 | } 1741 | .fa-transgender:before { 1742 | content: "\f224"; 1743 | } 1744 | .fa-transgender-alt:before { 1745 | content: "\f225"; 1746 | } 1747 | .fa-venus-double:before { 1748 | content: "\f226"; 1749 | } 1750 | .fa-mars-double:before { 1751 | content: "\f227"; 1752 | } 1753 | .fa-venus-mars:before { 1754 | content: "\f228"; 1755 | } 1756 | .fa-mars-stroke:before { 1757 | content: "\f229"; 1758 | } 1759 | .fa-mars-stroke-v:before { 1760 | content: "\f22a"; 1761 | } 1762 | .fa-mars-stroke-h:before { 1763 | content: "\f22b"; 1764 | } 1765 | .fa-neuter:before { 1766 | content: "\f22c"; 1767 | } 1768 | .fa-facebook-official:before { 1769 | content: "\f230"; 1770 | } 1771 | .fa-pinterest-p:before { 1772 | content: "\f231"; 1773 | } 1774 | .fa-whatsapp:before { 1775 | content: "\f232"; 1776 | } 1777 | .fa-server:before { 1778 | content: "\f233"; 1779 | } 1780 | .fa-user-plus:before { 1781 | content: "\f234"; 1782 | } 1783 | .fa-user-times:before { 1784 | content: "\f235"; 1785 | } 1786 | .fa-hotel:before, 1787 | .fa-bed:before { 1788 | content: "\f236"; 1789 | } 1790 | .fa-viacoin:before { 1791 | content: "\f237"; 1792 | } 1793 | .fa-train:before { 1794 | content: "\f238"; 1795 | } 1796 | .fa-subway:before { 1797 | content: "\f239"; 1798 | } 1799 | .fa-medium:before { 1800 | content: "\f23a"; 1801 | } 1802 | /*! 1803 | * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome 1804 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 1805 | */ 1806 | /* FONT PATH 1807 | * -------------------------- */ 1808 | @font-face { 1809 | font-family: 'FontAwesome'; 1810 | src: url('../fonts/fontawesome-webfont.eot?v=4.3.0'); 1811 | src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg'); 1812 | font-weight: normal; 1813 | font-style: normal; 1814 | } 1815 | .fa { 1816 | display: inline-block; 1817 | font: normal normal normal 14px/1 FontAwesome; 1818 | font-size: inherit; 1819 | text-rendering: auto; 1820 | -webkit-font-smoothing: antialiased; 1821 | -moz-osx-font-smoothing: grayscale; 1822 | transform: translate(0, 0); 1823 | } 1824 | /* makes the font 33% larger relative to the icon container */ 1825 | .fa-lg { 1826 | font-size: 1.33333333em; 1827 | line-height: 0.75em; 1828 | vertical-align: -15%; 1829 | } 1830 | .fa-2x { 1831 | font-size: 2em; 1832 | } 1833 | .fa-3x { 1834 | font-size: 3em; 1835 | } 1836 | .fa-4x { 1837 | font-size: 4em; 1838 | } 1839 | .fa-5x { 1840 | font-size: 5em; 1841 | } 1842 | .fa-fw { 1843 | width: 1.28571429em; 1844 | text-align: center; 1845 | } 1846 | .fa-ul { 1847 | padding-left: 0; 1848 | margin-left: 2.14285714em; 1849 | list-style-type: none; 1850 | } 1851 | .fa-ul > li { 1852 | position: relative; 1853 | } 1854 | .fa-li { 1855 | position: absolute; 1856 | left: -2.14285714em; 1857 | width: 2.14285714em; 1858 | top: 0.14285714em; 1859 | text-align: center; 1860 | } 1861 | .fa-li.fa-lg { 1862 | left: -1.85714286em; 1863 | } 1864 | .fa-border { 1865 | padding: .2em .25em .15em; 1866 | border: solid 0.08em #eeeeee; 1867 | border-radius: .1em; 1868 | } 1869 | .pull-right { 1870 | float: right; 1871 | } 1872 | .pull-left { 1873 | float: left; 1874 | } 1875 | .fa.pull-left { 1876 | margin-right: .3em; 1877 | } 1878 | .fa.pull-right { 1879 | margin-left: .3em; 1880 | } 1881 | .fa-spin { 1882 | -webkit-animation: fa-spin 2s infinite linear; 1883 | animation: fa-spin 2s infinite linear; 1884 | } 1885 | .fa-pulse { 1886 | -webkit-animation: fa-spin 1s infinite steps(8); 1887 | animation: fa-spin 1s infinite steps(8); 1888 | } 1889 | @-webkit-keyframes fa-spin { 1890 | 0% { 1891 | -webkit-transform: rotate(0deg); 1892 | transform: rotate(0deg); 1893 | } 1894 | 100% { 1895 | -webkit-transform: rotate(359deg); 1896 | transform: rotate(359deg); 1897 | } 1898 | } 1899 | @keyframes fa-spin { 1900 | 0% { 1901 | -webkit-transform: rotate(0deg); 1902 | transform: rotate(0deg); 1903 | } 1904 | 100% { 1905 | -webkit-transform: rotate(359deg); 1906 | transform: rotate(359deg); 1907 | } 1908 | } 1909 | .fa-rotate-90 { 1910 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); 1911 | -webkit-transform: rotate(90deg); 1912 | -ms-transform: rotate(90deg); 1913 | transform: rotate(90deg); 1914 | } 1915 | .fa-rotate-180 { 1916 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); 1917 | -webkit-transform: rotate(180deg); 1918 | -ms-transform: rotate(180deg); 1919 | transform: rotate(180deg); 1920 | } 1921 | .fa-rotate-270 { 1922 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); 1923 | -webkit-transform: rotate(270deg); 1924 | -ms-transform: rotate(270deg); 1925 | transform: rotate(270deg); 1926 | } 1927 | .fa-flip-horizontal { 1928 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1); 1929 | -webkit-transform: scale(-1, 1); 1930 | -ms-transform: scale(-1, 1); 1931 | transform: scale(-1, 1); 1932 | } 1933 | .fa-flip-vertical { 1934 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1); 1935 | -webkit-transform: scale(1, -1); 1936 | -ms-transform: scale(1, -1); 1937 | transform: scale(1, -1); 1938 | } 1939 | :root .fa-rotate-90, 1940 | :root .fa-rotate-180, 1941 | :root .fa-rotate-270, 1942 | :root .fa-flip-horizontal, 1943 | :root .fa-flip-vertical { 1944 | filter: none; 1945 | } 1946 | .fa-stack { 1947 | position: relative; 1948 | display: inline-block; 1949 | width: 2em; 1950 | height: 2em; 1951 | line-height: 2em; 1952 | vertical-align: middle; 1953 | } 1954 | .fa-stack-1x, 1955 | .fa-stack-2x { 1956 | position: absolute; 1957 | left: 0; 1958 | width: 100%; 1959 | text-align: center; 1960 | } 1961 | .fa-stack-1x { 1962 | line-height: inherit; 1963 | } 1964 | .fa-stack-2x { 1965 | font-size: 2em; 1966 | } 1967 | .fa-inverse { 1968 | color: #ffffff; 1969 | } 1970 | /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen 1971 | readers do not read off random characters that represent icons */ 1972 | .fa-glass:before { 1973 | content: "\f000"; 1974 | } 1975 | .fa-music:before { 1976 | content: "\f001"; 1977 | } 1978 | .fa-search:before { 1979 | content: "\f002"; 1980 | } 1981 | .fa-envelope-o:before { 1982 | content: "\f003"; 1983 | } 1984 | .fa-heart:before { 1985 | content: "\f004"; 1986 | } 1987 | .fa-star:before { 1988 | content: "\f005"; 1989 | } 1990 | .fa-star-o:before { 1991 | content: "\f006"; 1992 | } 1993 | .fa-user:before { 1994 | content: "\f007"; 1995 | } 1996 | .fa-film:before { 1997 | content: "\f008"; 1998 | } 1999 | .fa-th-large:before { 2000 | content: "\f009"; 2001 | } 2002 | .fa-th:before { 2003 | content: "\f00a"; 2004 | } 2005 | .fa-th-list:before { 2006 | content: "\f00b"; 2007 | } 2008 | .fa-check:before { 2009 | content: "\f00c"; 2010 | } 2011 | .fa-remove:before, 2012 | .fa-close:before, 2013 | .fa-times:before { 2014 | content: "\f00d"; 2015 | } 2016 | .fa-search-plus:before { 2017 | content: "\f00e"; 2018 | } 2019 | .fa-search-minus:before { 2020 | content: "\f010"; 2021 | } 2022 | .fa-power-off:before { 2023 | content: "\f011"; 2024 | } 2025 | .fa-signal:before { 2026 | content: "\f012"; 2027 | } 2028 | .fa-gear:before, 2029 | .fa-cog:before { 2030 | content: "\f013"; 2031 | } 2032 | .fa-trash-o:before { 2033 | content: "\f014"; 2034 | } 2035 | .fa-home:before { 2036 | content: "\f015"; 2037 | } 2038 | .fa-file-o:before { 2039 | content: "\f016"; 2040 | } 2041 | .fa-clock-o:before { 2042 | content: "\f017"; 2043 | } 2044 | .fa-road:before { 2045 | content: "\f018"; 2046 | } 2047 | .fa-download:before { 2048 | content: "\f019"; 2049 | } 2050 | .fa-arrow-circle-o-down:before { 2051 | content: "\f01a"; 2052 | } 2053 | .fa-arrow-circle-o-up:before { 2054 | content: "\f01b"; 2055 | } 2056 | .fa-inbox:before { 2057 | content: "\f01c"; 2058 | } 2059 | .fa-play-circle-o:before { 2060 | content: "\f01d"; 2061 | } 2062 | .fa-rotate-right:before, 2063 | .fa-repeat:before { 2064 | content: "\f01e"; 2065 | } 2066 | .fa-refresh:before { 2067 | content: "\f021"; 2068 | } 2069 | .fa-list-alt:before { 2070 | content: "\f022"; 2071 | } 2072 | .fa-lock:before { 2073 | content: "\f023"; 2074 | } 2075 | .fa-flag:before { 2076 | content: "\f024"; 2077 | } 2078 | .fa-headphones:before { 2079 | content: "\f025"; 2080 | } 2081 | .fa-volume-off:before { 2082 | content: "\f026"; 2083 | } 2084 | .fa-volume-down:before { 2085 | content: "\f027"; 2086 | } 2087 | .fa-volume-up:before { 2088 | content: "\f028"; 2089 | } 2090 | .fa-qrcode:before { 2091 | content: "\f029"; 2092 | } 2093 | .fa-barcode:before { 2094 | content: "\f02a"; 2095 | } 2096 | .fa-tag:before { 2097 | content: "\f02b"; 2098 | } 2099 | .fa-tags:before { 2100 | content: "\f02c"; 2101 | } 2102 | .fa-book:before { 2103 | content: "\f02d"; 2104 | } 2105 | .fa-bookmark:before { 2106 | content: "\f02e"; 2107 | } 2108 | .fa-print:before { 2109 | content: "\f02f"; 2110 | } 2111 | .fa-camera:before { 2112 | content: "\f030"; 2113 | } 2114 | .fa-font:before { 2115 | content: "\f031"; 2116 | } 2117 | .fa-bold:before { 2118 | content: "\f032"; 2119 | } 2120 | .fa-italic:before { 2121 | content: "\f033"; 2122 | } 2123 | .fa-text-height:before { 2124 | content: "\f034"; 2125 | } 2126 | .fa-text-width:before { 2127 | content: "\f035"; 2128 | } 2129 | .fa-align-left:before { 2130 | content: "\f036"; 2131 | } 2132 | .fa-align-center:before { 2133 | content: "\f037"; 2134 | } 2135 | .fa-align-right:before { 2136 | content: "\f038"; 2137 | } 2138 | .fa-align-justify:before { 2139 | content: "\f039"; 2140 | } 2141 | .fa-list:before { 2142 | content: "\f03a"; 2143 | } 2144 | .fa-dedent:before, 2145 | .fa-outdent:before { 2146 | content: "\f03b"; 2147 | } 2148 | .fa-indent:before { 2149 | content: "\f03c"; 2150 | } 2151 | .fa-video-camera:before { 2152 | content: "\f03d"; 2153 | } 2154 | .fa-photo:before, 2155 | .fa-image:before, 2156 | .fa-picture-o:before { 2157 | content: "\f03e"; 2158 | } 2159 | .fa-pencil:before { 2160 | content: "\f040"; 2161 | } 2162 | .fa-map-marker:before { 2163 | content: "\f041"; 2164 | } 2165 | .fa-adjust:before { 2166 | content: "\f042"; 2167 | } 2168 | .fa-tint:before { 2169 | content: "\f043"; 2170 | } 2171 | .fa-edit:before, 2172 | .fa-pencil-square-o:before { 2173 | content: "\f044"; 2174 | } 2175 | .fa-share-square-o:before { 2176 | content: "\f045"; 2177 | } 2178 | .fa-check-square-o:before { 2179 | content: "\f046"; 2180 | } 2181 | .fa-arrows:before { 2182 | content: "\f047"; 2183 | } 2184 | .fa-step-backward:before { 2185 | content: "\f048"; 2186 | } 2187 | .fa-fast-backward:before { 2188 | content: "\f049"; 2189 | } 2190 | .fa-backward:before { 2191 | content: "\f04a"; 2192 | } 2193 | .fa-play:before { 2194 | content: "\f04b"; 2195 | } 2196 | .fa-pause:before { 2197 | content: "\f04c"; 2198 | } 2199 | .fa-stop:before { 2200 | content: "\f04d"; 2201 | } 2202 | .fa-forward:before { 2203 | content: "\f04e"; 2204 | } 2205 | .fa-fast-forward:before { 2206 | content: "\f050"; 2207 | } 2208 | .fa-step-forward:before { 2209 | content: "\f051"; 2210 | } 2211 | .fa-eject:before { 2212 | content: "\f052"; 2213 | } 2214 | .fa-chevron-left:before { 2215 | content: "\f053"; 2216 | } 2217 | .fa-chevron-right:before { 2218 | content: "\f054"; 2219 | } 2220 | .fa-plus-circle:before { 2221 | content: "\f055"; 2222 | } 2223 | .fa-minus-circle:before { 2224 | content: "\f056"; 2225 | } 2226 | .fa-times-circle:before { 2227 | content: "\f057"; 2228 | } 2229 | .fa-check-circle:before { 2230 | content: "\f058"; 2231 | } 2232 | .fa-question-circle:before { 2233 | content: "\f059"; 2234 | } 2235 | .fa-info-circle:before { 2236 | content: "\f05a"; 2237 | } 2238 | .fa-crosshairs:before { 2239 | content: "\f05b"; 2240 | } 2241 | .fa-times-circle-o:before { 2242 | content: "\f05c"; 2243 | } 2244 | .fa-check-circle-o:before { 2245 | content: "\f05d"; 2246 | } 2247 | .fa-ban:before { 2248 | content: "\f05e"; 2249 | } 2250 | .fa-arrow-left:before { 2251 | content: "\f060"; 2252 | } 2253 | .fa-arrow-right:before { 2254 | content: "\f061"; 2255 | } 2256 | .fa-arrow-up:before { 2257 | content: "\f062"; 2258 | } 2259 | .fa-arrow-down:before { 2260 | content: "\f063"; 2261 | } 2262 | .fa-mail-forward:before, 2263 | .fa-share:before { 2264 | content: "\f064"; 2265 | } 2266 | .fa-expand:before { 2267 | content: "\f065"; 2268 | } 2269 | .fa-compress:before { 2270 | content: "\f066"; 2271 | } 2272 | .fa-plus:before { 2273 | content: "\f067"; 2274 | } 2275 | .fa-minus:before { 2276 | content: "\f068"; 2277 | } 2278 | .fa-asterisk:before { 2279 | content: "\f069"; 2280 | } 2281 | .fa-exclamation-circle:before { 2282 | content: "\f06a"; 2283 | } 2284 | .fa-gift:before { 2285 | content: "\f06b"; 2286 | } 2287 | .fa-leaf:before { 2288 | content: "\f06c"; 2289 | } 2290 | .fa-fire:before { 2291 | content: "\f06d"; 2292 | } 2293 | .fa-eye:before { 2294 | content: "\f06e"; 2295 | } 2296 | .fa-eye-slash:before { 2297 | content: "\f070"; 2298 | } 2299 | .fa-warning:before, 2300 | .fa-exclamation-triangle:before { 2301 | content: "\f071"; 2302 | } 2303 | .fa-plane:before { 2304 | content: "\f072"; 2305 | } 2306 | .fa-calendar:before { 2307 | content: "\f073"; 2308 | } 2309 | .fa-random:before { 2310 | content: "\f074"; 2311 | } 2312 | .fa-comment:before { 2313 | content: "\f075"; 2314 | } 2315 | .fa-magnet:before { 2316 | content: "\f076"; 2317 | } 2318 | .fa-chevron-up:before { 2319 | content: "\f077"; 2320 | } 2321 | .fa-chevron-down:before { 2322 | content: "\f078"; 2323 | } 2324 | .fa-retweet:before { 2325 | content: "\f079"; 2326 | } 2327 | .fa-shopping-cart:before { 2328 | content: "\f07a"; 2329 | } 2330 | .fa-folder:before { 2331 | content: "\f07b"; 2332 | } 2333 | .fa-folder-open:before { 2334 | content: "\f07c"; 2335 | } 2336 | .fa-arrows-v:before { 2337 | content: "\f07d"; 2338 | } 2339 | .fa-arrows-h:before { 2340 | content: "\f07e"; 2341 | } 2342 | .fa-bar-chart-o:before, 2343 | .fa-bar-chart:before { 2344 | content: "\f080"; 2345 | } 2346 | .fa-twitter-square:before { 2347 | content: "\f081"; 2348 | } 2349 | .fa-facebook-square:before { 2350 | content: "\f082"; 2351 | } 2352 | .fa-camera-retro:before { 2353 | content: "\f083"; 2354 | } 2355 | .fa-key:before { 2356 | content: "\f084"; 2357 | } 2358 | .fa-gears:before, 2359 | .fa-cogs:before { 2360 | content: "\f085"; 2361 | } 2362 | .fa-comments:before { 2363 | content: "\f086"; 2364 | } 2365 | .fa-thumbs-o-up:before { 2366 | content: "\f087"; 2367 | } 2368 | .fa-thumbs-o-down:before { 2369 | content: "\f088"; 2370 | } 2371 | .fa-star-half:before { 2372 | content: "\f089"; 2373 | } 2374 | .fa-heart-o:before { 2375 | content: "\f08a"; 2376 | } 2377 | .fa-sign-out:before { 2378 | content: "\f08b"; 2379 | } 2380 | .fa-linkedin-square:before { 2381 | content: "\f08c"; 2382 | } 2383 | .fa-thumb-tack:before { 2384 | content: "\f08d"; 2385 | } 2386 | .fa-external-link:before { 2387 | content: "\f08e"; 2388 | } 2389 | .fa-sign-in:before { 2390 | content: "\f090"; 2391 | } 2392 | .fa-trophy:before { 2393 | content: "\f091"; 2394 | } 2395 | .fa-github-square:before { 2396 | content: "\f092"; 2397 | } 2398 | .fa-upload:before { 2399 | content: "\f093"; 2400 | } 2401 | .fa-lemon-o:before { 2402 | content: "\f094"; 2403 | } 2404 | .fa-phone:before { 2405 | content: "\f095"; 2406 | } 2407 | .fa-square-o:before { 2408 | content: "\f096"; 2409 | } 2410 | .fa-bookmark-o:before { 2411 | content: "\f097"; 2412 | } 2413 | .fa-phone-square:before { 2414 | content: "\f098"; 2415 | } 2416 | .fa-twitter:before { 2417 | content: "\f099"; 2418 | } 2419 | .fa-facebook-f:before, 2420 | .fa-facebook:before { 2421 | content: "\f09a"; 2422 | } 2423 | .fa-github:before { 2424 | content: "\f09b"; 2425 | } 2426 | .fa-unlock:before { 2427 | content: "\f09c"; 2428 | } 2429 | .fa-credit-card:before { 2430 | content: "\f09d"; 2431 | } 2432 | .fa-rss:before { 2433 | content: "\f09e"; 2434 | } 2435 | .fa-hdd-o:before { 2436 | content: "\f0a0"; 2437 | } 2438 | .fa-bullhorn:before { 2439 | content: "\f0a1"; 2440 | } 2441 | .fa-bell:before { 2442 | content: "\f0f3"; 2443 | } 2444 | .fa-certificate:before { 2445 | content: "\f0a3"; 2446 | } 2447 | .fa-hand-o-right:before { 2448 | content: "\f0a4"; 2449 | } 2450 | .fa-hand-o-left:before { 2451 | content: "\f0a5"; 2452 | } 2453 | .fa-hand-o-up:before { 2454 | content: "\f0a6"; 2455 | } 2456 | .fa-hand-o-down:before { 2457 | content: "\f0a7"; 2458 | } 2459 | .fa-arrow-circle-left:before { 2460 | content: "\f0a8"; 2461 | } 2462 | .fa-arrow-circle-right:before { 2463 | content: "\f0a9"; 2464 | } 2465 | .fa-arrow-circle-up:before { 2466 | content: "\f0aa"; 2467 | } 2468 | .fa-arrow-circle-down:before { 2469 | content: "\f0ab"; 2470 | } 2471 | .fa-globe:before { 2472 | content: "\f0ac"; 2473 | } 2474 | .fa-wrench:before { 2475 | content: "\f0ad"; 2476 | } 2477 | .fa-tasks:before { 2478 | content: "\f0ae"; 2479 | } 2480 | .fa-filter:before { 2481 | content: "\f0b0"; 2482 | } 2483 | .fa-briefcase:before { 2484 | content: "\f0b1"; 2485 | } 2486 | .fa-arrows-alt:before { 2487 | content: "\f0b2"; 2488 | } 2489 | .fa-group:before, 2490 | .fa-users:before { 2491 | content: "\f0c0"; 2492 | } 2493 | .fa-chain:before, 2494 | .fa-link:before { 2495 | content: "\f0c1"; 2496 | } 2497 | .fa-cloud:before { 2498 | content: "\f0c2"; 2499 | } 2500 | .fa-flask:before { 2501 | content: "\f0c3"; 2502 | } 2503 | .fa-cut:before, 2504 | .fa-scissors:before { 2505 | content: "\f0c4"; 2506 | } 2507 | .fa-copy:before, 2508 | .fa-files-o:before { 2509 | content: "\f0c5"; 2510 | } 2511 | .fa-paperclip:before { 2512 | content: "\f0c6"; 2513 | } 2514 | .fa-save:before, 2515 | .fa-floppy-o:before { 2516 | content: "\f0c7"; 2517 | } 2518 | .fa-square:before { 2519 | content: "\f0c8"; 2520 | } 2521 | .fa-navicon:before, 2522 | .fa-reorder:before, 2523 | .fa-bars:before { 2524 | content: "\f0c9"; 2525 | } 2526 | .fa-list-ul:before { 2527 | content: "\f0ca"; 2528 | } 2529 | .fa-list-ol:before { 2530 | content: "\f0cb"; 2531 | } 2532 | .fa-strikethrough:before { 2533 | content: "\f0cc"; 2534 | } 2535 | .fa-underline:before { 2536 | content: "\f0cd"; 2537 | } 2538 | .fa-table:before { 2539 | content: "\f0ce"; 2540 | } 2541 | .fa-magic:before { 2542 | content: "\f0d0"; 2543 | } 2544 | .fa-truck:before { 2545 | content: "\f0d1"; 2546 | } 2547 | .fa-pinterest:before { 2548 | content: "\f0d2"; 2549 | } 2550 | .fa-pinterest-square:before { 2551 | content: "\f0d3"; 2552 | } 2553 | .fa-google-plus-square:before { 2554 | content: "\f0d4"; 2555 | } 2556 | .fa-google-plus:before { 2557 | content: "\f0d5"; 2558 | } 2559 | .fa-money:before { 2560 | content: "\f0d6"; 2561 | } 2562 | .fa-caret-down:before { 2563 | content: "\f0d7"; 2564 | } 2565 | .fa-caret-up:before { 2566 | content: "\f0d8"; 2567 | } 2568 | .fa-caret-left:before { 2569 | content: "\f0d9"; 2570 | } 2571 | .fa-caret-right:before { 2572 | content: "\f0da"; 2573 | } 2574 | .fa-columns:before { 2575 | content: "\f0db"; 2576 | } 2577 | .fa-unsorted:before, 2578 | .fa-sort:before { 2579 | content: "\f0dc"; 2580 | } 2581 | .fa-sort-down:before, 2582 | .fa-sort-desc:before { 2583 | content: "\f0dd"; 2584 | } 2585 | .fa-sort-up:before, 2586 | .fa-sort-asc:before { 2587 | content: "\f0de"; 2588 | } 2589 | .fa-envelope:before { 2590 | content: "\f0e0"; 2591 | } 2592 | .fa-linkedin:before { 2593 | content: "\f0e1"; 2594 | } 2595 | .fa-rotate-left:before, 2596 | .fa-undo:before { 2597 | content: "\f0e2"; 2598 | } 2599 | .fa-legal:before, 2600 | .fa-gavel:before { 2601 | content: "\f0e3"; 2602 | } 2603 | .fa-dashboard:before, 2604 | .fa-tachometer:before { 2605 | content: "\f0e4"; 2606 | } 2607 | .fa-comment-o:before { 2608 | content: "\f0e5"; 2609 | } 2610 | .fa-comments-o:before { 2611 | content: "\f0e6"; 2612 | } 2613 | .fa-flash:before, 2614 | .fa-bolt:before { 2615 | content: "\f0e7"; 2616 | } 2617 | .fa-sitemap:before { 2618 | content: "\f0e8"; 2619 | } 2620 | .fa-umbrella:before { 2621 | content: "\f0e9"; 2622 | } 2623 | .fa-paste:before, 2624 | .fa-clipboard:before { 2625 | content: "\f0ea"; 2626 | } 2627 | .fa-lightbulb-o:before { 2628 | content: "\f0eb"; 2629 | } 2630 | .fa-exchange:before { 2631 | content: "\f0ec"; 2632 | } 2633 | .fa-cloud-download:before { 2634 | content: "\f0ed"; 2635 | } 2636 | .fa-cloud-upload:before { 2637 | content: "\f0ee"; 2638 | } 2639 | .fa-user-md:before { 2640 | content: "\f0f0"; 2641 | } 2642 | .fa-stethoscope:before { 2643 | content: "\f0f1"; 2644 | } 2645 | .fa-suitcase:before { 2646 | content: "\f0f2"; 2647 | } 2648 | .fa-bell-o:before { 2649 | content: "\f0a2"; 2650 | } 2651 | .fa-coffee:before { 2652 | content: "\f0f4"; 2653 | } 2654 | .fa-cutlery:before { 2655 | content: "\f0f5"; 2656 | } 2657 | .fa-file-text-o:before { 2658 | content: "\f0f6"; 2659 | } 2660 | .fa-building-o:before { 2661 | content: "\f0f7"; 2662 | } 2663 | .fa-hospital-o:before { 2664 | content: "\f0f8"; 2665 | } 2666 | .fa-ambulance:before { 2667 | content: "\f0f9"; 2668 | } 2669 | .fa-medkit:before { 2670 | content: "\f0fa"; 2671 | } 2672 | .fa-fighter-jet:before { 2673 | content: "\f0fb"; 2674 | } 2675 | .fa-beer:before { 2676 | content: "\f0fc"; 2677 | } 2678 | .fa-h-square:before { 2679 | content: "\f0fd"; 2680 | } 2681 | .fa-plus-square:before { 2682 | content: "\f0fe"; 2683 | } 2684 | .fa-angle-double-left:before { 2685 | content: "\f100"; 2686 | } 2687 | .fa-angle-double-right:before { 2688 | content: "\f101"; 2689 | } 2690 | .fa-angle-double-up:before { 2691 | content: "\f102"; 2692 | } 2693 | .fa-angle-double-down:before { 2694 | content: "\f103"; 2695 | } 2696 | .fa-angle-left:before { 2697 | content: "\f104"; 2698 | } 2699 | .fa-angle-right:before { 2700 | content: "\f105"; 2701 | } 2702 | .fa-angle-up:before { 2703 | content: "\f106"; 2704 | } 2705 | .fa-angle-down:before { 2706 | content: "\f107"; 2707 | } 2708 | .fa-desktop:before { 2709 | content: "\f108"; 2710 | } 2711 | .fa-laptop:before { 2712 | content: "\f109"; 2713 | } 2714 | .fa-tablet:before { 2715 | content: "\f10a"; 2716 | } 2717 | .fa-mobile-phone:before, 2718 | .fa-mobile:before { 2719 | content: "\f10b"; 2720 | } 2721 | .fa-circle-o:before { 2722 | content: "\f10c"; 2723 | } 2724 | .fa-quote-left:before { 2725 | content: "\f10d"; 2726 | } 2727 | .fa-quote-right:before { 2728 | content: "\f10e"; 2729 | } 2730 | .fa-spinner:before { 2731 | content: "\f110"; 2732 | } 2733 | .fa-circle:before { 2734 | content: "\f111"; 2735 | } 2736 | .fa-mail-reply:before, 2737 | .fa-reply:before { 2738 | content: "\f112"; 2739 | } 2740 | .fa-github-alt:before { 2741 | content: "\f113"; 2742 | } 2743 | .fa-folder-o:before { 2744 | content: "\f114"; 2745 | } 2746 | .fa-folder-open-o:before { 2747 | content: "\f115"; 2748 | } 2749 | .fa-smile-o:before { 2750 | content: "\f118"; 2751 | } 2752 | .fa-frown-o:before { 2753 | content: "\f119"; 2754 | } 2755 | .fa-meh-o:before { 2756 | content: "\f11a"; 2757 | } 2758 | .fa-gamepad:before { 2759 | content: "\f11b"; 2760 | } 2761 | .fa-keyboard-o:before { 2762 | content: "\f11c"; 2763 | } 2764 | .fa-flag-o:before { 2765 | content: "\f11d"; 2766 | } 2767 | .fa-flag-checkered:before { 2768 | content: "\f11e"; 2769 | } 2770 | .fa-terminal:before { 2771 | content: "\f120"; 2772 | } 2773 | .fa-code:before { 2774 | content: "\f121"; 2775 | } 2776 | .fa-mail-reply-all:before, 2777 | .fa-reply-all:before { 2778 | content: "\f122"; 2779 | } 2780 | .fa-star-half-empty:before, 2781 | .fa-star-half-full:before, 2782 | .fa-star-half-o:before { 2783 | content: "\f123"; 2784 | } 2785 | .fa-location-arrow:before { 2786 | content: "\f124"; 2787 | } 2788 | .fa-crop:before { 2789 | content: "\f125"; 2790 | } 2791 | .fa-code-fork:before { 2792 | content: "\f126"; 2793 | } 2794 | .fa-unlink:before, 2795 | .fa-chain-broken:before { 2796 | content: "\f127"; 2797 | } 2798 | .fa-question:before { 2799 | content: "\f128"; 2800 | } 2801 | .fa-info:before { 2802 | content: "\f129"; 2803 | } 2804 | .fa-exclamation:before { 2805 | content: "\f12a"; 2806 | } 2807 | .fa-superscript:before { 2808 | content: "\f12b"; 2809 | } 2810 | .fa-subscript:before { 2811 | content: "\f12c"; 2812 | } 2813 | .fa-eraser:before { 2814 | content: "\f12d"; 2815 | } 2816 | .fa-puzzle-piece:before { 2817 | content: "\f12e"; 2818 | } 2819 | .fa-microphone:before { 2820 | content: "\f130"; 2821 | } 2822 | .fa-microphone-slash:before { 2823 | content: "\f131"; 2824 | } 2825 | .fa-shield:before { 2826 | content: "\f132"; 2827 | } 2828 | .fa-calendar-o:before { 2829 | content: "\f133"; 2830 | } 2831 | .fa-fire-extinguisher:before { 2832 | content: "\f134"; 2833 | } 2834 | .fa-rocket:before { 2835 | content: "\f135"; 2836 | } 2837 | .fa-maxcdn:before { 2838 | content: "\f136"; 2839 | } 2840 | .fa-chevron-circle-left:before { 2841 | content: "\f137"; 2842 | } 2843 | .fa-chevron-circle-right:before { 2844 | content: "\f138"; 2845 | } 2846 | .fa-chevron-circle-up:before { 2847 | content: "\f139"; 2848 | } 2849 | .fa-chevron-circle-down:before { 2850 | content: "\f13a"; 2851 | } 2852 | .fa-html5:before { 2853 | content: "\f13b"; 2854 | } 2855 | .fa-css3:before { 2856 | content: "\f13c"; 2857 | } 2858 | .fa-anchor:before { 2859 | content: "\f13d"; 2860 | } 2861 | .fa-unlock-alt:before { 2862 | content: "\f13e"; 2863 | } 2864 | .fa-bullseye:before { 2865 | content: "\f140"; 2866 | } 2867 | .fa-ellipsis-h:before { 2868 | content: "\f141"; 2869 | } 2870 | .fa-ellipsis-v:before { 2871 | content: "\f142"; 2872 | } 2873 | .fa-rss-square:before { 2874 | content: "\f143"; 2875 | } 2876 | .fa-play-circle:before { 2877 | content: "\f144"; 2878 | } 2879 | .fa-ticket:before { 2880 | content: "\f145"; 2881 | } 2882 | .fa-minus-square:before { 2883 | content: "\f146"; 2884 | } 2885 | .fa-minus-square-o:before { 2886 | content: "\f147"; 2887 | } 2888 | .fa-level-up:before { 2889 | content: "\f148"; 2890 | } 2891 | .fa-level-down:before { 2892 | content: "\f149"; 2893 | } 2894 | .fa-check-square:before { 2895 | content: "\f14a"; 2896 | } 2897 | .fa-pencil-square:before { 2898 | content: "\f14b"; 2899 | } 2900 | .fa-external-link-square:before { 2901 | content: "\f14c"; 2902 | } 2903 | .fa-share-square:before { 2904 | content: "\f14d"; 2905 | } 2906 | .fa-compass:before { 2907 | content: "\f14e"; 2908 | } 2909 | .fa-toggle-down:before, 2910 | .fa-caret-square-o-down:before { 2911 | content: "\f150"; 2912 | } 2913 | .fa-toggle-up:before, 2914 | .fa-caret-square-o-up:before { 2915 | content: "\f151"; 2916 | } 2917 | .fa-toggle-right:before, 2918 | .fa-caret-square-o-right:before { 2919 | content: "\f152"; 2920 | } 2921 | .fa-euro:before, 2922 | .fa-eur:before { 2923 | content: "\f153"; 2924 | } 2925 | .fa-gbp:before { 2926 | content: "\f154"; 2927 | } 2928 | .fa-dollar:before, 2929 | .fa-usd:before { 2930 | content: "\f155"; 2931 | } 2932 | .fa-rupee:before, 2933 | .fa-inr:before { 2934 | content: "\f156"; 2935 | } 2936 | .fa-cny:before, 2937 | .fa-rmb:before, 2938 | .fa-yen:before, 2939 | .fa-jpy:before { 2940 | content: "\f157"; 2941 | } 2942 | .fa-ruble:before, 2943 | .fa-rouble:before, 2944 | .fa-rub:before { 2945 | content: "\f158"; 2946 | } 2947 | .fa-won:before, 2948 | .fa-krw:before { 2949 | content: "\f159"; 2950 | } 2951 | .fa-bitcoin:before, 2952 | .fa-btc:before { 2953 | content: "\f15a"; 2954 | } 2955 | .fa-file:before { 2956 | content: "\f15b"; 2957 | } 2958 | .fa-file-text:before { 2959 | content: "\f15c"; 2960 | } 2961 | .fa-sort-alpha-asc:before { 2962 | content: "\f15d"; 2963 | } 2964 | .fa-sort-alpha-desc:before { 2965 | content: "\f15e"; 2966 | } 2967 | .fa-sort-amount-asc:before { 2968 | content: "\f160"; 2969 | } 2970 | .fa-sort-amount-desc:before { 2971 | content: "\f161"; 2972 | } 2973 | .fa-sort-numeric-asc:before { 2974 | content: "\f162"; 2975 | } 2976 | .fa-sort-numeric-desc:before { 2977 | content: "\f163"; 2978 | } 2979 | .fa-thumbs-up:before { 2980 | content: "\f164"; 2981 | } 2982 | .fa-thumbs-down:before { 2983 | content: "\f165"; 2984 | } 2985 | .fa-youtube-square:before { 2986 | content: "\f166"; 2987 | } 2988 | .fa-youtube:before { 2989 | content: "\f167"; 2990 | } 2991 | .fa-xing:before { 2992 | content: "\f168"; 2993 | } 2994 | .fa-xing-square:before { 2995 | content: "\f169"; 2996 | } 2997 | .fa-youtube-play:before { 2998 | content: "\f16a"; 2999 | } 3000 | .fa-dropbox:before { 3001 | content: "\f16b"; 3002 | } 3003 | .fa-stack-overflow:before { 3004 | content: "\f16c"; 3005 | } 3006 | .fa-instagram:before { 3007 | content: "\f16d"; 3008 | } 3009 | .fa-flickr:before { 3010 | content: "\f16e"; 3011 | } 3012 | .fa-adn:before { 3013 | content: "\f170"; 3014 | } 3015 | .fa-bitbucket:before { 3016 | content: "\f171"; 3017 | } 3018 | .fa-bitbucket-square:before { 3019 | content: "\f172"; 3020 | } 3021 | .fa-tumblr:before { 3022 | content: "\f173"; 3023 | } 3024 | .fa-tumblr-square:before { 3025 | content: "\f174"; 3026 | } 3027 | .fa-long-arrow-down:before { 3028 | content: "\f175"; 3029 | } 3030 | .fa-long-arrow-up:before { 3031 | content: "\f176"; 3032 | } 3033 | .fa-long-arrow-left:before { 3034 | content: "\f177"; 3035 | } 3036 | .fa-long-arrow-right:before { 3037 | content: "\f178"; 3038 | } 3039 | .fa-apple:before { 3040 | content: "\f179"; 3041 | } 3042 | .fa-windows:before { 3043 | content: "\f17a"; 3044 | } 3045 | .fa-android:before { 3046 | content: "\f17b"; 3047 | } 3048 | .fa-linux:before { 3049 | content: "\f17c"; 3050 | } 3051 | .fa-dribbble:before { 3052 | content: "\f17d"; 3053 | } 3054 | .fa-skype:before { 3055 | content: "\f17e"; 3056 | } 3057 | .fa-foursquare:before { 3058 | content: "\f180"; 3059 | } 3060 | .fa-trello:before { 3061 | content: "\f181"; 3062 | } 3063 | .fa-female:before { 3064 | content: "\f182"; 3065 | } 3066 | .fa-male:before { 3067 | content: "\f183"; 3068 | } 3069 | .fa-gittip:before, 3070 | .fa-gratipay:before { 3071 | content: "\f184"; 3072 | } 3073 | .fa-sun-o:before { 3074 | content: "\f185"; 3075 | } 3076 | .fa-moon-o:before { 3077 | content: "\f186"; 3078 | } 3079 | .fa-archive:before { 3080 | content: "\f187"; 3081 | } 3082 | .fa-bug:before { 3083 | content: "\f188"; 3084 | } 3085 | .fa-vk:before { 3086 | content: "\f189"; 3087 | } 3088 | .fa-weibo:before { 3089 | content: "\f18a"; 3090 | } 3091 | .fa-renren:before { 3092 | content: "\f18b"; 3093 | } 3094 | .fa-pagelines:before { 3095 | content: "\f18c"; 3096 | } 3097 | .fa-stack-exchange:before { 3098 | content: "\f18d"; 3099 | } 3100 | .fa-arrow-circle-o-right:before { 3101 | content: "\f18e"; 3102 | } 3103 | .fa-arrow-circle-o-left:before { 3104 | content: "\f190"; 3105 | } 3106 | .fa-toggle-left:before, 3107 | .fa-caret-square-o-left:before { 3108 | content: "\f191"; 3109 | } 3110 | .fa-dot-circle-o:before { 3111 | content: "\f192"; 3112 | } 3113 | .fa-wheelchair:before { 3114 | content: "\f193"; 3115 | } 3116 | .fa-vimeo-square:before { 3117 | content: "\f194"; 3118 | } 3119 | .fa-turkish-lira:before, 3120 | .fa-try:before { 3121 | content: "\f195"; 3122 | } 3123 | .fa-plus-square-o:before { 3124 | content: "\f196"; 3125 | } 3126 | .fa-space-shuttle:before { 3127 | content: "\f197"; 3128 | } 3129 | .fa-slack:before { 3130 | content: "\f198"; 3131 | } 3132 | .fa-envelope-square:before { 3133 | content: "\f199"; 3134 | } 3135 | .fa-wordpress:before { 3136 | content: "\f19a"; 3137 | } 3138 | .fa-openid:before { 3139 | content: "\f19b"; 3140 | } 3141 | .fa-institution:before, 3142 | .fa-bank:before, 3143 | .fa-university:before { 3144 | content: "\f19c"; 3145 | } 3146 | .fa-mortar-board:before, 3147 | .fa-graduation-cap:before { 3148 | content: "\f19d"; 3149 | } 3150 | .fa-yahoo:before { 3151 | content: "\f19e"; 3152 | } 3153 | .fa-google:before { 3154 | content: "\f1a0"; 3155 | } 3156 | .fa-reddit:before { 3157 | content: "\f1a1"; 3158 | } 3159 | .fa-reddit-square:before { 3160 | content: "\f1a2"; 3161 | } 3162 | .fa-stumbleupon-circle:before { 3163 | content: "\f1a3"; 3164 | } 3165 | .fa-stumbleupon:before { 3166 | content: "\f1a4"; 3167 | } 3168 | .fa-delicious:before { 3169 | content: "\f1a5"; 3170 | } 3171 | .fa-digg:before { 3172 | content: "\f1a6"; 3173 | } 3174 | .fa-pied-piper:before { 3175 | content: "\f1a7"; 3176 | } 3177 | .fa-pied-piper-alt:before { 3178 | content: "\f1a8"; 3179 | } 3180 | .fa-drupal:before { 3181 | content: "\f1a9"; 3182 | } 3183 | .fa-joomla:before { 3184 | content: "\f1aa"; 3185 | } 3186 | .fa-language:before { 3187 | content: "\f1ab"; 3188 | } 3189 | .fa-fax:before { 3190 | content: "\f1ac"; 3191 | } 3192 | .fa-building:before { 3193 | content: "\f1ad"; 3194 | } 3195 | .fa-child:before { 3196 | content: "\f1ae"; 3197 | } 3198 | .fa-paw:before { 3199 | content: "\f1b0"; 3200 | } 3201 | .fa-spoon:before { 3202 | content: "\f1b1"; 3203 | } 3204 | .fa-cube:before { 3205 | content: "\f1b2"; 3206 | } 3207 | .fa-cubes:before { 3208 | content: "\f1b3"; 3209 | } 3210 | .fa-behance:before { 3211 | content: "\f1b4"; 3212 | } 3213 | .fa-behance-square:before { 3214 | content: "\f1b5"; 3215 | } 3216 | .fa-steam:before { 3217 | content: "\f1b6"; 3218 | } 3219 | .fa-steam-square:before { 3220 | content: "\f1b7"; 3221 | } 3222 | .fa-recycle:before { 3223 | content: "\f1b8"; 3224 | } 3225 | .fa-automobile:before, 3226 | .fa-car:before { 3227 | content: "\f1b9"; 3228 | } 3229 | .fa-cab:before, 3230 | .fa-taxi:before { 3231 | content: "\f1ba"; 3232 | } 3233 | .fa-tree:before { 3234 | content: "\f1bb"; 3235 | } 3236 | .fa-spotify:before { 3237 | content: "\f1bc"; 3238 | } 3239 | .fa-deviantart:before { 3240 | content: "\f1bd"; 3241 | } 3242 | .fa-soundcloud:before { 3243 | content: "\f1be"; 3244 | } 3245 | .fa-database:before { 3246 | content: "\f1c0"; 3247 | } 3248 | .fa-file-pdf-o:before { 3249 | content: "\f1c1"; 3250 | } 3251 | .fa-file-word-o:before { 3252 | content: "\f1c2"; 3253 | } 3254 | .fa-file-excel-o:before { 3255 | content: "\f1c3"; 3256 | } 3257 | .fa-file-powerpoint-o:before { 3258 | content: "\f1c4"; 3259 | } 3260 | .fa-file-photo-o:before, 3261 | .fa-file-picture-o:before, 3262 | .fa-file-image-o:before { 3263 | content: "\f1c5"; 3264 | } 3265 | .fa-file-zip-o:before, 3266 | .fa-file-archive-o:before { 3267 | content: "\f1c6"; 3268 | } 3269 | .fa-file-sound-o:before, 3270 | .fa-file-audio-o:before { 3271 | content: "\f1c7"; 3272 | } 3273 | .fa-file-movie-o:before, 3274 | .fa-file-video-o:before { 3275 | content: "\f1c8"; 3276 | } 3277 | .fa-file-code-o:before { 3278 | content: "\f1c9"; 3279 | } 3280 | .fa-vine:before { 3281 | content: "\f1ca"; 3282 | } 3283 | .fa-codepen:before { 3284 | content: "\f1cb"; 3285 | } 3286 | .fa-jsfiddle:before { 3287 | content: "\f1cc"; 3288 | } 3289 | .fa-life-bouy:before, 3290 | .fa-life-buoy:before, 3291 | .fa-life-saver:before, 3292 | .fa-support:before, 3293 | .fa-life-ring:before { 3294 | content: "\f1cd"; 3295 | } 3296 | .fa-circle-o-notch:before { 3297 | content: "\f1ce"; 3298 | } 3299 | .fa-ra:before, 3300 | .fa-rebel:before { 3301 | content: "\f1d0"; 3302 | } 3303 | .fa-ge:before, 3304 | .fa-empire:before { 3305 | content: "\f1d1"; 3306 | } 3307 | .fa-git-square:before { 3308 | content: "\f1d2"; 3309 | } 3310 | .fa-git:before { 3311 | content: "\f1d3"; 3312 | } 3313 | .fa-hacker-news:before { 3314 | content: "\f1d4"; 3315 | } 3316 | .fa-tencent-weibo:before { 3317 | content: "\f1d5"; 3318 | } 3319 | .fa-qq:before { 3320 | content: "\f1d6"; 3321 | } 3322 | .fa-wechat:before, 3323 | .fa-weixin:before { 3324 | content: "\f1d7"; 3325 | } 3326 | .fa-send:before, 3327 | .fa-paper-plane:before { 3328 | content: "\f1d8"; 3329 | } 3330 | .fa-send-o:before, 3331 | .fa-paper-plane-o:before { 3332 | content: "\f1d9"; 3333 | } 3334 | .fa-history:before { 3335 | content: "\f1da"; 3336 | } 3337 | .fa-genderless:before, 3338 | .fa-circle-thin:before { 3339 | content: "\f1db"; 3340 | } 3341 | .fa-header:before { 3342 | content: "\f1dc"; 3343 | } 3344 | .fa-paragraph:before { 3345 | content: "\f1dd"; 3346 | } 3347 | .fa-sliders:before { 3348 | content: "\f1de"; 3349 | } 3350 | .fa-share-alt:before { 3351 | content: "\f1e0"; 3352 | } 3353 | .fa-share-alt-square:before { 3354 | content: "\f1e1"; 3355 | } 3356 | .fa-bomb:before { 3357 | content: "\f1e2"; 3358 | } 3359 | .fa-soccer-ball-o:before, 3360 | .fa-futbol-o:before { 3361 | content: "\f1e3"; 3362 | } 3363 | .fa-tty:before { 3364 | content: "\f1e4"; 3365 | } 3366 | .fa-binoculars:before { 3367 | content: "\f1e5"; 3368 | } 3369 | .fa-plug:before { 3370 | content: "\f1e6"; 3371 | } 3372 | .fa-slideshare:before { 3373 | content: "\f1e7"; 3374 | } 3375 | .fa-twitch:before { 3376 | content: "\f1e8"; 3377 | } 3378 | .fa-yelp:before { 3379 | content: "\f1e9"; 3380 | } 3381 | .fa-newspaper-o:before { 3382 | content: "\f1ea"; 3383 | } 3384 | .fa-wifi:before { 3385 | content: "\f1eb"; 3386 | } 3387 | .fa-calculator:before { 3388 | content: "\f1ec"; 3389 | } 3390 | .fa-paypal:before { 3391 | content: "\f1ed"; 3392 | } 3393 | .fa-google-wallet:before { 3394 | content: "\f1ee"; 3395 | } 3396 | .fa-cc-visa:before { 3397 | content: "\f1f0"; 3398 | } 3399 | .fa-cc-mastercard:before { 3400 | content: "\f1f1"; 3401 | } 3402 | .fa-cc-discover:before { 3403 | content: "\f1f2"; 3404 | } 3405 | .fa-cc-amex:before { 3406 | content: "\f1f3"; 3407 | } 3408 | .fa-cc-paypal:before { 3409 | content: "\f1f4"; 3410 | } 3411 | .fa-cc-stripe:before { 3412 | content: "\f1f5"; 3413 | } 3414 | .fa-bell-slash:before { 3415 | content: "\f1f6"; 3416 | } 3417 | .fa-bell-slash-o:before { 3418 | content: "\f1f7"; 3419 | } 3420 | .fa-trash:before { 3421 | content: "\f1f8"; 3422 | } 3423 | .fa-copyright:before { 3424 | content: "\f1f9"; 3425 | } 3426 | .fa-at:before { 3427 | content: "\f1fa"; 3428 | } 3429 | .fa-eyedropper:before { 3430 | content: "\f1fb"; 3431 | } 3432 | .fa-paint-brush:before { 3433 | content: "\f1fc"; 3434 | } 3435 | .fa-birthday-cake:before { 3436 | content: "\f1fd"; 3437 | } 3438 | .fa-area-chart:before { 3439 | content: "\f1fe"; 3440 | } 3441 | .fa-pie-chart:before { 3442 | content: "\f200"; 3443 | } 3444 | .fa-line-chart:before { 3445 | content: "\f201"; 3446 | } 3447 | .fa-lastfm:before { 3448 | content: "\f202"; 3449 | } 3450 | .fa-lastfm-square:before { 3451 | content: "\f203"; 3452 | } 3453 | .fa-toggle-off:before { 3454 | content: "\f204"; 3455 | } 3456 | .fa-toggle-on:before { 3457 | content: "\f205"; 3458 | } 3459 | .fa-bicycle:before { 3460 | content: "\f206"; 3461 | } 3462 | .fa-bus:before { 3463 | content: "\f207"; 3464 | } 3465 | .fa-ioxhost:before { 3466 | content: "\f208"; 3467 | } 3468 | .fa-angellist:before { 3469 | content: "\f209"; 3470 | } 3471 | .fa-cc:before { 3472 | content: "\f20a"; 3473 | } 3474 | .fa-shekel:before, 3475 | .fa-sheqel:before, 3476 | .fa-ils:before { 3477 | content: "\f20b"; 3478 | } 3479 | .fa-meanpath:before { 3480 | content: "\f20c"; 3481 | } 3482 | .fa-buysellads:before { 3483 | content: "\f20d"; 3484 | } 3485 | .fa-connectdevelop:before { 3486 | content: "\f20e"; 3487 | } 3488 | .fa-dashcube:before { 3489 | content: "\f210"; 3490 | } 3491 | .fa-forumbee:before { 3492 | content: "\f211"; 3493 | } 3494 | .fa-leanpub:before { 3495 | content: "\f212"; 3496 | } 3497 | .fa-sellsy:before { 3498 | content: "\f213"; 3499 | } 3500 | .fa-shirtsinbulk:before { 3501 | content: "\f214"; 3502 | } 3503 | .fa-simplybuilt:before { 3504 | content: "\f215"; 3505 | } 3506 | .fa-skyatlas:before { 3507 | content: "\f216"; 3508 | } 3509 | .fa-cart-plus:before { 3510 | content: "\f217"; 3511 | } 3512 | .fa-cart-arrow-down:before { 3513 | content: "\f218"; 3514 | } 3515 | .fa-diamond:before { 3516 | content: "\f219"; 3517 | } 3518 | .fa-ship:before { 3519 | content: "\f21a"; 3520 | } 3521 | .fa-user-secret:before { 3522 | content: "\f21b"; 3523 | } 3524 | .fa-motorcycle:before { 3525 | content: "\f21c"; 3526 | } 3527 | .fa-street-view:before { 3528 | content: "\f21d"; 3529 | } 3530 | .fa-heartbeat:before { 3531 | content: "\f21e"; 3532 | } 3533 | .fa-venus:before { 3534 | content: "\f221"; 3535 | } 3536 | .fa-mars:before { 3537 | content: "\f222"; 3538 | } 3539 | .fa-mercury:before { 3540 | content: "\f223"; 3541 | } 3542 | .fa-transgender:before { 3543 | content: "\f224"; 3544 | } 3545 | .fa-transgender-alt:before { 3546 | content: "\f225"; 3547 | } 3548 | .fa-venus-double:before { 3549 | content: "\f226"; 3550 | } 3551 | .fa-mars-double:before { 3552 | content: "\f227"; 3553 | } 3554 | .fa-venus-mars:before { 3555 | content: "\f228"; 3556 | } 3557 | .fa-mars-stroke:before { 3558 | content: "\f229"; 3559 | } 3560 | .fa-mars-stroke-v:before { 3561 | content: "\f22a"; 3562 | } 3563 | .fa-mars-stroke-h:before { 3564 | content: "\f22b"; 3565 | } 3566 | .fa-neuter:before { 3567 | content: "\f22c"; 3568 | } 3569 | .fa-facebook-official:before { 3570 | content: "\f230"; 3571 | } 3572 | .fa-pinterest-p:before { 3573 | content: "\f231"; 3574 | } 3575 | .fa-whatsapp:before { 3576 | content: "\f232"; 3577 | } 3578 | .fa-server:before { 3579 | content: "\f233"; 3580 | } 3581 | .fa-user-plus:before { 3582 | content: "\f234"; 3583 | } 3584 | .fa-user-times:before { 3585 | content: "\f235"; 3586 | } 3587 | .fa-hotel:before, 3588 | .fa-bed:before { 3589 | content: "\f236"; 3590 | } 3591 | .fa-viacoin:before { 3592 | content: "\f237"; 3593 | } 3594 | .fa-train:before { 3595 | content: "\f238"; 3596 | } 3597 | .fa-subway:before { 3598 | content: "\f239"; 3599 | } 3600 | .fa-medium:before { 3601 | content: "\f23a"; 3602 | } 3603 | -------------------------------------------------------------------------------- /font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.3.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;transform:translate(0, 0)}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-genderless:before,.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}/*! 5 | * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome 6 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 7 | */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.3.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;transform:translate(0, 0)}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-genderless:before,.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"} 8 | -------------------------------------------------------------------------------- /font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siphomateke/ChromeBot/b0dbe172ace14e1deb58776f46dfabe40a9e6472/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siphomateke/ChromeBot/b0dbe172ace14e1deb58776f46dfabe40a9e6472/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siphomateke/ChromeBot/b0dbe172ace14e1deb58776f46dfabe40a9e6472/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siphomateke/ChromeBot/b0dbe172ace14e1deb58776f46dfabe40a9e6472/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siphomateke/ChromeBot/b0dbe172ace14e1deb58776f46dfabe40a9e6472/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /images/bot_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siphomateke/ChromeBot/b0dbe172ace14e1deb58776f46dfabe40a9e6472/images/bot_icon.png -------------------------------------------------------------------------------- /images/bot_icon_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siphomateke/ChromeBot/b0dbe172ace14e1deb58776f46dfabe40a9e6472/images/bot_icon_bw.png -------------------------------------------------------------------------------- /images/bot_loader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siphomateke/ChromeBot/b0dbe172ace14e1deb58776f46dfabe40a9e6472/images/bot_loader.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "manifest_version": 2, 3 | "name": "Chrome Bot", 4 | "short_name": "ChromeBot", 5 | "author": "Sipho and Temba Mateke", 6 | "version": "0.1", 7 | 8 | //"default_locale": "en", 9 | "description": "A Chrome automater. Currently only supports WhatsApp.", 10 | "icons": { 11 | "16" : "images/bot_icon.png", 12 | "48" : "images/bot_icon.png", 13 | "128" : "images/bot_icon.png" 14 | }, 15 | 16 | "content_scripts": [ 17 | // WhatsApp 18 | { 19 | "matches": [ 20 | "https://web.whatsapp.com/*" 21 | ], 22 | "js": [ 23 | "jquery-3.2.1.min.js", 24 | "universal_content.js", 25 | "modules/whatsapp/content_wa.js" 26 | ] 27 | }, 28 | // Youtube 29 | { 30 | "matches": [ 31 | "https://www.youtube.com/*" 32 | ], 33 | "js": [ 34 | "jquery-3.2.1.min.js", 35 | "universal_content.js", 36 | "modules/youtube/content_yt.js" 37 | ] 38 | }, 39 | // KeepVid 40 | { 41 | "matches": [ 42 | "http://keepvid.com/*" 43 | ], 44 | "js": [ 45 | "jquery-3.2.1.min.js", 46 | "universal_content.js", 47 | "modules/keepvid/content_kv.js" 48 | ] 49 | }, 50 | // Facebook 51 | { 52 | "matches": [ 53 | "https://web.facebook.com/*", 54 | "https://free.facebook.com/*" 55 | ], 56 | "js": [ 57 | "jquery-3.2.1.min.js", 58 | "universal_content.js", 59 | "sdk.js", 60 | "modules/facebook/content_fb.js" 61 | ] 62 | } 63 | ], 64 | "browser_action": { 65 | "default_icon": "images/bot_icon_bw.png", 66 | "default_title": "Chrome Bot", 67 | "default_popup": "popup/popup.html" 68 | }, 69 | "background": { 70 | "scripts": [ 71 | "jquery-3.2.1.min.js", 72 | "universal.js", 73 | "sdk.js", 74 | "modules/whatsapp/background_wa.js", 75 | "modules/facebook/background_fb.js", 76 | "modules/youtube/background_yt.js", 77 | "modules/keepvid/background_kv.js", 78 | "background.js" 79 | ] 80 | }, 81 | "permissions": [ 82 | "activeTab", 83 | "tabs", 84 | "contextMenus", 85 | "notifications", 86 | "downloads", 87 | "storage", 88 | "https://*/*", // Required to get all tabs 89 | "http://*/*" // Required to get all tabs 90 | ], 91 | "omnibox": { "keyword" : "bot" }, 92 | "options_ui": { 93 | "page": "options/options.html", 94 | "chrome_style": true 95 | }, 96 | "content_security_policy": "script-src 'self' https://graph.facebook.com; object-src 'self'" 97 | } 98 | -------------------------------------------------------------------------------- /modules/facebook/background_fb.js: -------------------------------------------------------------------------------- 1 | bot.popup.addButton({ 2 | 'title': 'Facebook', 3 | 'icon': 'facebook-square', 4 | 'iconColor': '#3b5998', 5 | 'onClick': function () { 6 | console.log(fbme) 7 | } 8 | }); 9 | 10 | class facebookUser { 11 | constructor(name, username, userid) { 12 | this.name = name; 13 | this.username = username; 14 | this.userid = userid; 15 | } 16 | } 17 | 18 | function getUseridOrUsername(url) { 19 | var userid = '' 20 | var username = '' 21 | if (url.split(/\/|\?/)[3] == 'profile.php') { 22 | userid = url.split(/\=|\&/)[1] 23 | } else { 24 | username = url.split(/\/|\?/)[3] 25 | } 26 | return { 27 | 'userid': userid, 28 | 'username': username 29 | } 30 | } 31 | 32 | 33 | chrome.contextMenus.create({ 34 | title: 'fb context menu', 35 | contexts: ['link'], 36 | onclick: function (info, tab) { 37 | console.log(getUseridOrUsername(info.linkUrl)) 38 | console.log('') 39 | console.log(info.linkUrl) 40 | 41 | }, 42 | documentUrlPatterns: [ 43 | "https://web.facebook.com/*", 44 | "https://free.facebook.com/*" 45 | ], 46 | targetUrlPatterns: [ 47 | "https://web.facebook.com/*", 48 | "https://free.facebook.com/*" 49 | ] 50 | }); 51 | -------------------------------------------------------------------------------- /modules/facebook/content_fb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siphomateke/ChromeBot/b0dbe172ace14e1deb58776f46dfabe40a9e6472/modules/facebook/content_fb.js -------------------------------------------------------------------------------- /modules/keepvid/background_kv.js: -------------------------------------------------------------------------------- 1 | // TODO: Document KeepVidModule 2 | class KeepVidModule extends Module{ 3 | constructor() { 4 | super('KeepVidModule'); 5 | this.tabTracker = new TabTracker({'urlPatterns' : chrome.runtime.getManifest().content_scripts[2].matches}); 6 | this.downloadRequests = {}; 7 | 8 | this.tabTracker.events.addEventListener('onTabLoad', (tab) => { 9 | console.log('KeepVid tab loaded'); 10 | if (tab.id in this.downloadRequests) { 11 | console.log('Sending download request: '); 12 | console.log(this.downloadRequests[tab.id]); 13 | this.download(tab.id, this.downloadRequests[tab.id]); 14 | } 15 | }); 16 | } 17 | 18 | download(tabId, downloadRequest) { 19 | var options = downloadRequest.options; 20 | if (typeof options.type === 'undefined') options.type = 'video'; 21 | if (typeof options.quality === 'undefined') { 22 | if (options.type == 'video') { 23 | options.quality = '144p'; 24 | } 25 | else if (options.type == 'audio') { 26 | options.quality = '128 kbps'; 27 | } 28 | } 29 | this.sendTabMessage(tabId, { 30 | 'type' : 'command', 31 | 'command' : 'download', 32 | 'options' : options 33 | }, (response) => { 34 | if (typeof downloadRequest.callback !== 'undefined') { 35 | downloadRequest.callback({'data': response.data, 'error': response.error}); 36 | } 37 | }); 38 | } 39 | 40 | requestDownload(tabId, options, callback) { 41 | this.downloadRequests[tabId] = {'options': options, 'callback': callback}; 42 | } 43 | } 44 | 45 | var kv = new KeepVidModule(); 46 | -------------------------------------------------------------------------------- /modules/keepvid/content_kv.js: -------------------------------------------------------------------------------- 1 | function getDownload(row) { 2 | var download_size = row.find('td:nth-child(3)'); 3 | var download_button = row.find('td:nth-child(4)').find('a[download]'); 4 | 5 | download = { 6 | name: download_button.attr('download'), 7 | path: download_button.attr('href'), 8 | size: download_size.text() 9 | } 10 | return download; 11 | } 12 | 13 | function download(options, sendResponse) { 14 | var download; 15 | if (options.type == 'audio') { 16 | var row = $('td:contains("'+options.quality+'")').parent('tr'); 17 | download = getDownload(row); 18 | } 19 | else if (options.type == 'video') { 20 | // TODO: Add checks to make sure item is video 21 | var row = $('td:contains("'+options.quality+'")').parent('tr'); 22 | download = getDownload(row); 23 | } 24 | 25 | var error = false; 26 | if (download.name == undefined || download.path==undefined) { 27 | error = true; 28 | } 29 | 30 | console.log(download); 31 | 32 | sendResponse({ 33 | from: 'keepVidContent', 34 | type: 'downloadData', 35 | data: download, 36 | error: error 37 | }); 38 | } 39 | 40 | chrome.runtime.onMessage.addListener( 41 | function (request, sender, sendResponse) { 42 | console.log(request); 43 | if (request.from == 'KeepVidModule') { 44 | if (request.type == 'command' && request.command == 'download') { 45 | download(request.options, sendResponse); 46 | } 47 | } 48 | } 49 | ) 50 | -------------------------------------------------------------------------------- /modules/whatsapp/background_wa.js: -------------------------------------------------------------------------------- 1 | class WhatsAppModule extends Module { 2 | constructor() { 3 | super('WhatsAppModule'); 4 | this.listening = false; 5 | this.was_listening = false; 6 | this.tabTracker = new TabTracker({'urlPatterns' : chrome.runtime.getManifest().content_scripts[0].matches}); 7 | this.last_msg = ''; 8 | this.confirmationStrings = { 9 | 'confirm' : ['yes', 'yeah', 'yea', 'k', 'ok', 'okey-dokey', 'by all means', 'affirmative', 'aye aye', 'roger', 'uh-huh', 'uh huh', 'yup', 'yep', 'very well', 'righto', 'yuppers', 'right on', 'sure'], 10 | 'cancel': ['no', 'uh-uh', 'uh uh', 'nope', 'nay', 'nah', 'no way', 'negative'] 11 | }; 12 | this._confirmCheck = function () {}; 13 | 14 | this.events = new Reactor(); 15 | this.events.registerEvent('onMessage'); 16 | this.events.registerEvent('onListen'); 17 | this.events.registerEvent('onStopListen'); 18 | 19 | this.tabTracker.events.addEventListener('onTabLoad', (tab) => { 20 | this.refreshListening(); 21 | }); 22 | 23 | this.tabTracker.events.addEventListener('onTabUnload', (tab) => { 24 | this.stopListening(); 25 | }); 26 | 27 | chrome.runtime.onMessage.addListener((request, sender, sendResponse) => { 28 | if (request.from == 'whatsAppContent') { 29 | if (request.type == 'whatsAppMessage') { 30 | var msg = request.whatsapp_message; 31 | // If this is not a bot message 32 | if (!emojisEqual(msg, '\u{1F916}')) { 33 | wam.newMessage(msg); 34 | } 35 | } 36 | } 37 | }); 38 | } 39 | 40 | /** Checks if the listen state has changed and sends messages to tabs accordingly */ 41 | updateListenStatus() { 42 | // If there is a change 43 | if (this.was_listening != this.listening) { 44 | var tab = this.getWhatsAppTab(); 45 | if (tab != undefined) { 46 | if (wam.listening == true) { 47 | this.sendTabMessage({'type':'command', 'command': 'listen'}); 48 | } else { 49 | this.sendTabMessage({'type':'command', 'command': 'stopListen'}); 50 | } 51 | } 52 | else { 53 | bot.notify('No WhatsApp tabs open or WhatsApp tab not loaded.', 'error'); 54 | } 55 | this.was_listening = this.listening; 56 | } 57 | } 58 | 59 | /** Checks if there are too many WhatsApp tabs */ 60 | refreshListening() { 61 | if (this.tabTracker.numTabs > 1) { 62 | this.listening = false; 63 | bot.notify('Only one WhatsApp tab should be open. Please close all other WhatsApp tabs but one.', 'error'); 64 | } 65 | this.updateListenStatus(); 66 | } 67 | 68 | /** 69 | * Attempts to change listen state to listening. 70 | * If too many or no WhatsApp tabs are open, sends an error as a notification. 71 | * Fires event onListen 72 | */ 73 | startListening() { 74 | // this.upload(); 75 | if (this.tabTracker.numTabs == 1) { 76 | if (!this.listening) { 77 | this.listening = true; 78 | this.events.dispatchEvent('onListen'); 79 | } 80 | else { 81 | bot.notify('Already listening to WhatsApp.', 'error'); 82 | } 83 | } else if (this.tabTracker.numTabs > 1) { 84 | this.listening = false; 85 | bot.notify('Only one WhatsApp tab should be open. Please close all other WhatsApp tabs but one.', 'error'); 86 | } else { 87 | bot.notify('No WhatsApp tabs open.', 'error'); 88 | this.listening = false; 89 | } 90 | this.updateListenStatus(); 91 | } 92 | 93 | /** 94 | * Changes listen state to not listening. 95 | * Fires event onStopListen 96 | */ 97 | stopListening() { 98 | this.listening = false; 99 | this.events.dispatchEvent('onStopListen'); 100 | this.updateListenStatus(); 101 | } 102 | 103 | /** 104 | * Fired when a new WhatsApp message is received. 105 | * Fires onMessage event 106 | * @param {string} msg The new message 107 | */ 108 | newMessage(msg) { 109 | /*var firstword = msg.split(/\s/, 1)[0].toLowerCase(); 110 | var otherwords = msg.substring(firstword.length); 111 | if (firstword in dictionary_of_functions) { 112 | dictionary_of_functions[firstword](otherwords); 113 | }*/ 114 | 115 | this.last_msg = msg; 116 | this._confirmCheck(this.last_msg); 117 | 118 | this.events.dispatchEvent('onMessage', msg); 119 | } 120 | 121 | /** Gets a single WhatsApp from the list of injected tabs */ 122 | getWhatsAppTab() { 123 | if (this.tabTracker.numTabs == 1) { 124 | return this.tabTracker.tabs[Object.keys(this.tabTracker.tabs)[0]]; 125 | } 126 | else { 127 | return false; 128 | } 129 | } 130 | 131 | /** 132 | * Sends a chrome message to all WhatsApp tabs 133 | * @param {object} data The message data 134 | */ 135 | sendTabMessage(data) { 136 | if (this.tabTracker.numTabs == 1) { 137 | // Calls the default module sendTabMessage 138 | super.sendTabMessage(this.getWhatsAppTab().id, data); 139 | } else if (this.tabTracker.numTabs > 1) { 140 | console.log('Error: More than one WhatsApp tab found!'); 141 | for (var key in this.tabTracker.tabs) { 142 | let tab = this.tabTracker.tabs[key]; 143 | super.sendTabMessage(tab.id, data); 144 | } 145 | } 146 | else { 147 | console.log('Error: No WhatsApp tabs found!'); 148 | } 149 | } 150 | 151 | /** 152 | * Sends a WhatsApp message 153 | * @param {string} msg The message to send 154 | * @param {string} to The contact to send the message to 155 | */ 156 | sendWhatsAppMessage(msg, to) { 157 | this.sendTabMessage({ 158 | type: 'command', 159 | command: 'sendMsg', 160 | msg: msg, 161 | to: to 162 | }); 163 | } 164 | 165 | /** 166 | * @callback WhatsAppModule~confirmActionCallback 167 | * @param {boolean} confirmed Whether the user confirmed the action 168 | */ 169 | 170 | /** 171 | * Sends a message to the WhatsApp user asking them to confirm an action 172 | * @param {string} action The action description 173 | * @param {WhatsAppModule~confirmActionCallback} callback Function called when the user responds. 174 | */ 175 | confirmAction(action, callback) { 176 | this.sendWhatsAppMessage(action); 177 | 178 | // Called when new message is received 179 | this._confirmCheck = function (msg_original) { 180 | var msg = msg_original.toLowerCase(); 181 | var confirmed = false; 182 | if (this.confirmationStrings.confirm.includes(msg)|| emojisEqual(msg, '\u{1F44D}')) { 183 | confirmed = true; 184 | } 185 | callback(confirmed); 186 | this._confirmCheck = function () {}; 187 | } 188 | } 189 | 190 | upload(file) { 191 | this.sendTabMessage({'type' : 'command', 'command' : 'upload', 'file': file}); 192 | } 193 | } 194 | 195 | var wam = new WhatsAppModule(); 196 | 197 | bot.popup.addButton({ 198 | 'title': 'WhatsApp Listen', 199 | 'icon': 'whatsapp', 200 | 'onClick': function () {wam.startListening()} 201 | }); 202 | -------------------------------------------------------------------------------- /modules/whatsapp/content_wa.js: -------------------------------------------------------------------------------- 1 | // Wrapping in a function to not leak/modify variables if the script 2 | // was already inserted before. 3 | (function () { 4 | // Check if content was loaded already 5 | if (window.hasRun) 6 | return true; // Will ultimately be passed back to executeScript 7 | window.hasRun = true; 8 | 9 | //////////////////////// //////////////////////// 10 | //////////////////////// //////////////////////// 11 | //////////////////////// VARIABLE DEFINITIONS //////////////////////// 12 | //////////////////////// //////////////////////// 13 | //////////////////////// //////////////////////// 14 | 15 | 16 | /* TODO: allow main contact name to be changed from backgruond_wa */ 17 | var mainContactName = '3d113d46-605a-4e4c-b372-8'; 18 | chrome.storage.sync.get({ 19 | whatsappGroup: '' 20 | }, function (items) { 21 | mainContactName = items.whatsappGroup; 22 | }); 23 | var prevMessage = ''; 24 | var prevTime = ''; 25 | var messageObserver = false; 26 | var whatsAppLoadedObserver = false; 27 | 28 | 29 | //////////////////////// //////////////////////// 30 | //////////////////////// //////////////////////// 31 | //////////////////////// FUNCTION DEFINITIONS //////////////////////// 32 | //////////////////////// //////////////////////// 33 | //////////////////////// //////////////////////// 34 | 35 | //When placed inside a function, this logs the name of the function to the console as 'FUNCTION: [name of function here]' 36 | function logf() { 37 | var tmp = arguments.callee.caller.toString(); 38 | tmp = tmp.substr('function '.length); 39 | var functionname = tmp.substr(0, tmp.indexOf('(')); 40 | console.log('FUNCTION: ' + functionname); 41 | } 42 | 43 | function getChatBody(contactName) { 44 | return $('.chatlist .infinite-list-item .chat-title [title=' + contactName + ']').closest('.chat-body'); 45 | } 46 | 47 | function onWhatsAppLoaded() { 48 | console.log('Whatsapp Loaded'); 49 | 50 | var observeElement = getChatBody(mainContactName); 51 | MutationObserver = window.MutationObserver || window.WebKitMutationObserver; 52 | 53 | messageObserver = new MutationObserver(function (mutations, observer) { 54 | mutations.forEach(function (mutation) { 55 | var el = $(mutation.target) 56 | // If this is not a '[name] is typing...' message 57 | var chatBody = getChatBody(mainContactName); 58 | if (!chatBody.find('.chat-status').hasClass('typing')) { 59 | // If this is a child of .chat-status or is .chat-secondary 60 | if ((el.closest('.chat-status').length != 0 || el.hasClass('chat-secondary'))) { 61 | var newMessage = getMessage(); 62 | var newTime = getMessageTime(); 63 | // Check if this is a new message 64 | if ((newMessage == prevMessage && newTime != prevTime) || newMessage != prevMessage) { 65 | console.log('New message: ' + newMessage); 66 | 67 | chrome.runtime.sendMessage({ 68 | from: 'whatsAppContent', 69 | type: 'whatsAppMessage', 70 | whatsapp_message: newMessage 71 | }); 72 | } 73 | prevMessage = newMessage; 74 | prevTime = newTime; 75 | } 76 | } 77 | }); 78 | }); 79 | 80 | // define what element should be observed by the observer 81 | // and what types of mutations trigger the callback 82 | messageObserver.observe(observeElement[0], { 83 | subtree: true, 84 | attributes: true, 85 | childList: true, 86 | characterData: true 87 | }); 88 | } 89 | 90 | function whatsAppLoaded() { 91 | var appWrapperElement = $(document).find('.app-wrapper-main'); 92 | if (appWrapperElement.length > 0) { 93 | if (appWrapperElement.find('.app.two').length > 0 && appWrapperElement.find('#startup').length == 0) { 94 | return true; 95 | } 96 | } 97 | return false; 98 | } 99 | 100 | function listenForChange() { 101 | if (!whatsAppLoaded()) { 102 | MutationObserver = window.MutationObserver || window.WebKitMutationObserver; 103 | 104 | whatsAppLoadedObserver = new MutationObserver(function (mutations, observer) { 105 | if (mutations.length > 0) { 106 | if (whatsAppLoaded()) { 107 | onWhatsAppLoaded(); 108 | whatsAppLoadedObserver.disconnect(); 109 | } 110 | } 111 | }); 112 | 113 | // define what element should be observed by the observer 114 | // and what types of mutations trigger the callback 115 | whatsAppLoadedObserver.observe($(document)[0], { 116 | subtree: true, 117 | attributes: true, 118 | childList: true, 119 | characterData: true 120 | }); 121 | } else { 122 | onWhatsAppLoaded(); 123 | } 124 | } 125 | 126 | function stopListen() { 127 | if (messageObserver) { 128 | messageObserver.disconnect(); 129 | } else if (whatsAppLoadedObserver) { 130 | whatsAppLoadedObserver.disconnect(); 131 | } 132 | prevMessage = ''; 133 | prevTime = ''; 134 | } 135 | 136 | function getMessage() { 137 | var messageElement = getChatBody(mainContactName).find('.chat-status .emojitext.ellipsify'); 138 | 139 | // Handle inner html elements within text such as emojis 140 | var htmlString = messageElement.html(); 141 | var htmlRegex = new RegExp(/<.+?>/gi); 142 | var textArray = htmlString.split(htmlRegex); 143 | var htmlArray = htmlString.match(htmlRegex); 144 | var fullMessage = ''; 145 | for (var i = 0; i < textArray.length; i++) { 146 | fullMessage += textArray[i]; 147 | 148 | if (i in htmlArray) { 149 | var htmlElement = $(htmlArray[i]); 150 | if (htmlElement.is('img') && htmlElement.hasClass('emoji')) { 151 | fullMessage += htmlElement.attr('alt') 152 | } 153 | } //here WACHOUTmes 154 | } 155 | return fullMessage; 156 | } 157 | 158 | function getMessageTime() { 159 | var chatBody = getChatBody(mainContactName); 160 | return chatBody.find('.chat-time').text(); 161 | } 162 | 163 | function openChat(contactName, callback) { 164 | var chat = getChatBody(contactName).closest('.chat'); 165 | if (!chat.hasClass('active')) { 166 | console.log('Chat is not active'); 167 | simulateClick(chat); 168 | setTimeout(callback, 200); 169 | } 170 | else { 171 | console.log('Chat is active'); 172 | callback(); 173 | } 174 | } 175 | 176 | function sendWhatsAppMessage(contactName, msg) { 177 | function run() { 178 | console.log('Sending whatsapp message: ' +msg+ ' to: '+contactName); 179 | var composeBlock = $('.block-compose'); 180 | simulateClick(composeBlock.find('.compose-btn-emoji')); 181 | 182 | composeBlock.find('.input[contenteditable="true"]').text(msg); 183 | 184 | // \u{1F916} 185 | simulateClick($('span.e1979.c0.emojik[tabindex="-1"][data-emoji-index="85"]')); 186 | 187 | simulateClick(composeBlock.find('.compose-btn-emoji')); 188 | simulateClick(composeBlock.find('.compose-btn-send')); 189 | } 190 | if (whatsAppLoaded()) { 191 | openChat(contactName, run); 192 | } 193 | } 194 | 195 | function upload(contactName, file) { 196 | openChat(contactName, () => { 197 | /*simulateClick($('.icon.icon-clip[title="Attach"]')); 198 | simulateClick($('.icon-xl.icon-document').closest('button')); 199 | simulateClick($('.icon-xl.icon-document').closest('.menu-item.menu-shortcut').find('input[type="file"]'));*/ 200 | }); 201 | } 202 | 203 | // // 204 | // UNGROUPED // 205 | // // 206 | 207 | //////////////////////// //////////////////////// 208 | //////////////////////// //////////////////////// 209 | //////////////////////// FUNCTION EXECUTIONS //////////////////////// 210 | //////////////////////// //////////////////////// 211 | //////////////////////// //////////////////////// 212 | 213 | chrome.runtime.onMessage.addListener( 214 | function (request, sender, sendResponse) { 215 | console.log(request); 216 | if (request.from == 'WhatsAppModule') { 217 | if (request.type == 'command') { 218 | if (request.command == 'listen') { 219 | listenForChange(); 220 | } else if (request.command == 'stopListen') { 221 | stopListen(); 222 | } else if (request.command == 'sendMsg') { 223 | var contactName = mainContactName; 224 | if ('to' in request) { 225 | contactName = request.to; 226 | } 227 | sendWhatsAppMessage(contactName, request.msg); 228 | } 229 | else if (request.command == 'upload') { 230 | var contactName = mainContactName; 231 | if ('to' in request) { 232 | contactName = request.to; 233 | } 234 | upload(contactName, request.file); 235 | } 236 | } 237 | } 238 | } 239 | ); 240 | })(); 241 | -------------------------------------------------------------------------------- /modules/youtube/background_yt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siphomateke/ChromeBot/b0dbe172ace14e1deb58776f46dfabe40a9e6472/modules/youtube/background_yt.js -------------------------------------------------------------------------------- /modules/youtube/content_yt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siphomateke/ChromeBot/b0dbe172ace14e1deb58776f46dfabe40a9e6472/modules/youtube/content_yt.js -------------------------------------------------------------------------------- /options/options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siphomateke/ChromeBot/b0dbe172ace14e1deb58776f46dfabe40a9e6472/options/options.css -------------------------------------------------------------------------------- /options/options.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | WhatsApp Bot | Options 7 | 8 | 9 |
10 | 11 | 12 | 13 |

14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /options/options.js: -------------------------------------------------------------------------------- 1 | // Saves options to chrome.storage.sync. 2 | function save_options() { 3 | var whatsappGroup = document.getElementById('whatsappGroup').value; 4 | chrome.storage.sync.set({ 5 | whatsappGroup: whatsappGroup 6 | }, function () { 7 | // Update status to let user know options were saved. 8 | if (typeof chrome.runtime.lastError !== 'undefined') { 9 | var status = document.getElementById('status'); 10 | status.textContent = chrome.runtime.lastError.message; 11 | } else { 12 | window.close(); 13 | } 14 | }); 15 | } 16 | 17 | // Restores select box and checkbox state using the preferences 18 | // stored in chrome.storage. 19 | function restore_options() { 20 | chrome.storage.sync.get({ 21 | whatsappGroup: '' 22 | }, function (items) { 23 | document.getElementById('whatsappGroup').value = items.whatsappGroup; 24 | }); 25 | } 26 | document.addEventListener('DOMContentLoaded', restore_options); 27 | document.getElementById('save').addEventListener('click', save_options); 28 | -------------------------------------------------------------------------------- /popup/popup.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | padding: 0; 4 | border: 0; 5 | position: relative; 6 | min-width: 100px; 7 | min-height: 100px; 8 | } 9 | 10 | 11 | /**************************** 12 | Menus 13 | *****************************/ 14 | 15 | .menu { 16 | list-style: none; 17 | margin: 0; 18 | padding: 0; 19 | font-size: 14px; 20 | /*position: absolute;*/ 21 | right: 0; 22 | left: 0; 23 | display: none; 24 | } 25 | 26 | .menu.bottom { 27 | bottom: 0; 28 | } 29 | 30 | .menu .menu-item .text { 31 | margin-left: 1em; 32 | } 33 | 34 | .menu .menu-item.has-children .text { 35 | margin-right: 2em; 36 | } 37 | 38 | .menu .menu-item .icon { 39 | font-size: 16px; 40 | } 41 | 42 | .menu .menu-item .icon.more { 43 | color: #a3a3a3; 44 | } 45 | 46 | .menu.active{ 47 | display: block; 48 | } 49 | 50 | .btn { 51 | text-decoration: none; 52 | color: #000; 53 | display: block; 54 | padding: .7em; 55 | cursor: pointer; 56 | white-space: nowrap; 57 | background: #fff; 58 | background-position: 20px center; 59 | background-repeat: no-repeat; 60 | } 61 | 62 | .btn:hover { 63 | background: #f2f2f2; 64 | } 65 | 66 | .menu .menu-item.back .btn{ 67 | background: #eee; 68 | border-bottom: 1px solid #CACACA; 69 | } 70 | 71 | .menu .menu-item.back .btn:hover{ 72 | background: #e3e3e3; 73 | } 74 | 75 | 76 | /**************************** 77 | Loader 78 | *****************************/ 79 | 80 | .spinner-wrapper{ 81 | position: absolute; 82 | top: 50%; 83 | left: 50%; 84 | transform: translate(-50%, -50%); 85 | } 86 | 87 | .spinner { 88 | -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out; 89 | animation: sk-rotateplane 1.2s infinite ease-in-out; 90 | padding: 0; 91 | margin: 0; 92 | } 93 | 94 | .spinner img{ 95 | display: block; 96 | } 97 | 98 | @-webkit-keyframes sk-rotateplane { 99 | 0% { 100 | -webkit-transform: perspective(120px); 101 | } 102 | 50% { 103 | -webkit-transform: perspective(120px) rotateY(180deg); 104 | } 105 | 100% { 106 | -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg); 107 | } 108 | } 109 | 110 | @keyframes sk-rotateplane { 111 | 0% { 112 | transform: perspective(120px) rotateX(0deg) rotateY(0deg); 113 | -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg); 114 | } 115 | 50% { 116 | transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); 117 | -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); 118 | } 119 | 100% { 120 | transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); 121 | -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); 122 | } 123 | } 124 | -------------------------------------------------------------------------------- /popup/popup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 |
15 | 16 |
17 |
18 |
19 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /popup/popup.js: -------------------------------------------------------------------------------- 1 | function onload() { 2 | function updateListeners() { 3 | $('.menu-item a').on('click', (ev) => { 4 | var link = $(ev.target).closest('a'); 5 | if (link.hasClass('btn') && link.parent('.menu-item').length > 0) { 6 | var hash = link.attr('href'); 7 | console.log(hash); 8 | if (typeof hash !== 'undefined' && hash.length > 0) { 9 | var subMenu = $(hash); 10 | if (subMenu.length == 1) { 11 | $('.menu').removeClass('active'); 12 | subMenu.addClass('active'); 13 | } 14 | } 15 | } 16 | }); 17 | } 18 | 19 | function generateHtmlButton(button) { 20 | var html = ''; 52 | return $(html); 53 | } 54 | 55 | function addButton(parent, button) { 56 | let htmlButton = generateHtmlButton(button); 57 | 58 | // Add to menu 59 | parent.append(htmlButton); 60 | 61 | // Bind callback 62 | if (button.clickType == 'function') { 63 | htmlButton.on('click', (ev) => { 64 | console.log('clicked'+ button.id); 65 | chrome.runtime.sendMessage({ 66 | from: 'popup', 67 | type: 'buttonOnClick', 68 | buttonId: button.id 69 | }); 70 | window.close(); 71 | }); 72 | } 73 | } 74 | 75 | function generatePage(data) { 76 | for (let i in data.menus) { 77 | let menu = data.menus[i]; 78 | let menuElement = $(''); 79 | $('body').append(menuElement); 80 | if (menu.name == data.defaultMenu) { 81 | menuElement.addClass('active'); 82 | } 83 | for (let j in data.buttons) { 84 | let button = data.buttons[j]; 85 | if (button.menu == menu.name) { 86 | addButton(menuElement, button); 87 | } 88 | } 89 | } 90 | updateListeners(); 91 | $('#loader').hide(); 92 | } 93 | 94 | chrome.runtime.sendMessage({ 95 | from: 'popup', 96 | type: 'requestData' 97 | }, function (response) { 98 | if (response.from == 'chromebot' && response.type == 'popupData') { 99 | if (typeof response.data !== 'undefined') { 100 | if (typeof response.data.menus !== 'undefined' && typeof response.data.buttons !== 'undefined') { 101 | generatePage(response.data); 102 | } 103 | } 104 | } 105 | }); 106 | } 107 | 108 | $(document).ready(onload); 109 | -------------------------------------------------------------------------------- /universal.js: -------------------------------------------------------------------------------- 1 | /** Class to store event callbacks*/ 2 | class Event { 3 | constructor(name) { 4 | this.name = name; 5 | this.callbacks = []; 6 | } 7 | 8 | /** 9 | * Adds a new callback 10 | * @param {function} callback The callback to add 11 | */ 12 | registerCallback(callback) { 13 | this.callbacks.push(callback); 14 | } 15 | } 16 | 17 | /** Class to event registering, dispatching and eventListeners */ 18 | class Reactor { 19 | constructor() { 20 | this.events = {}; 21 | } 22 | 23 | /** 24 | * Adds a new event 25 | * @param {string} eventName The new event to add 26 | */ 27 | registerEvent(eventName) { 28 | this.events[eventName] = new Event(eventName); 29 | } 30 | 31 | /** 32 | * Triggers and event's callbacks 33 | * @param {string} eventName The event to trigger 34 | * @param {Object} eventArgs Arguments to be passed to the event callbacks 35 | */ 36 | dispatchEvent(eventName, eventArgs) { 37 | for (var i = 0; i < this.events[eventName].callbacks.length; i++) { 38 | var callback = this.events[eventName].callbacks[i]; 39 | callback(eventArgs); 40 | } 41 | } 42 | 43 | /** 44 | * Adds a new event callback to an event 45 | * @param {string} eventName The event to add a callback to 46 | * @param {function} callback The callback 47 | */ 48 | addEventListener(eventName, callback) { 49 | this.events[eventName].registerCallback(callback); 50 | } 51 | } 52 | 53 | /** Provides useful tab functions */ 54 | class TabTools { 55 | /** 56 | * Opens a new tab 57 | * @param {string} url The url of the tab to open 58 | * @param {function} callback Function to be called when the tab is opened 59 | * @param {boolean} active Whether the new tab should be switched to and made the active tab 60 | */ 61 | static new(url, callback, active) { 62 | chrome.tabs.create({ 63 | active: active, 64 | url: url 65 | }, callback); 66 | } 67 | /** 68 | * Closes a tab 69 | * @param {object} tab The tab to close 70 | */ 71 | static close(tab) { 72 | chrome.tabs.remove(tab.id); 73 | } 74 | 75 | /** 76 | * Executes callback function on the active tab in current window 77 | * @param {function} callback Function to call when the tab is found. 78 | * The tab is passed as an argument to this callback 79 | */ 80 | static onActive(callback) { 81 | chrome.tabs.query({ 82 | active: true, 83 | currentWindow: true 84 | }, (tabs) => { 85 | var activetab = tabs[0]; 86 | callback(activetab); 87 | }); 88 | } 89 | /** 90 | * Searches for a tab with the given url 91 | * @param {string} url 92 | * @param {function} callback 93 | * @param {boolean} [multiple=false] 94 | */ 95 | static getByUrl(url, callback, multiple=false) { 96 | chrome.tabs.query({ 97 | url: url 98 | }, 99 | (tabs) => { 100 | if (multiple) { 101 | callback(tabs); 102 | } else { 103 | callback(tabs[0]); 104 | } 105 | } 106 | ); 107 | } 108 | 109 | /** 110 | * Checks if a tabs url matches a given url pattern 111 | * @param {object} tab The tab to check 112 | * @param {string} urlPattern The url pattern 113 | * @param {function} callback Function to be called when the query is complete. 114 | * Whether the tab matches or not is passed to this callback 115 | */ 116 | static tabMatchesUrl(tab, urlPattern, callback) { 117 | TabTools.getByUrl(urlPattern, (query_tabs) => { 118 | var foundMatch = false; 119 | for (var i = 0; i < query_tabs.length; i++) { 120 | if (tab.id == query_tabs[i].id) { 121 | callback(true); 122 | foundMatch = true; 123 | break; 124 | } 125 | } 126 | if (!foundMatch) { 127 | callback(false); 128 | } 129 | }, true); 130 | } 131 | } 132 | 133 | /** Used to track tabs specified in the manifest. Sends events like onTabLoad and onTabUnload */ 134 | class TabTracker { 135 | /** 136 | * @param {string[]} options.urlPatterns The url patterns of the tabs to be tracked 137 | * @param {number[]} options.tabIds The IDs of the tabs to be tracked 138 | */ 139 | constructor(options) { 140 | this.tabs = {}; 141 | 142 | this.urlPatterns = []; 143 | this.tabIds = []; 144 | 145 | if (typeof options.urlPatterns !== 'undefined') this.urlPatterns = options.urlPatterns; 146 | if (typeof options.tabIds !== 'undefined') this.tabIds = options.tabIds; 147 | 148 | // Event handler 149 | this.events = new Reactor(); 150 | 151 | this.events.registerEvent('onTabLoad'); 152 | this.events.registerEvent('onTabUnload'); 153 | 154 | chrome.runtime.onMessage.addListener((request, sender, sendResponse) => { 155 | // Check if this is one of the tabs we should be tracking 156 | this._queryTrackTab(sender.tab, (isTrackTab) => { 157 | if (isTrackTab) { 158 | if (request.from == 'contentScript' && request.type == 'loadEvent') { 159 | if (request.loadState == 'load') { 160 | this.addTab(sender.tab); 161 | } 162 | else if (request.loadState == 'unload') { 163 | this.removeTab(sender.tab); 164 | } 165 | } 166 | } 167 | }) 168 | }); 169 | } 170 | 171 | /** 172 | * Used by _queryTrackTab to iteratively check if a tab matches the list of contentScript urls 173 | * @private 174 | */ 175 | _queryTrackTabLoop(tab, index, isTrackTab, callback) { 176 | if (index < this.urlPatterns.length) { 177 | var url = this.urlPatterns[index]; 178 | TabTools.tabMatchesUrl(tab, url, (matches) => { 179 | if (matches) { 180 | callback(true); 181 | } 182 | else { 183 | this._queryTrackTabLoop(tab, index+1, matches, callback); 184 | } 185 | }); 186 | } 187 | else { 188 | callback(isTrackTab); 189 | } 190 | } 191 | 192 | /** 193 | * Checks if a tab is one that we wish to track 194 | * @private 195 | * @param {object} tab The tab to query 196 | * @param {function} callback Function called when query is complete. 197 | * Whether this is a tab we wish to track is passed to this callback as an argument 198 | */ 199 | _queryTrackTab(tab, callback) { 200 | if (typeof tab !== 'undefined' && typeof tab.url !== 'undefined' && this.urlPatterns.length > 0) { 201 | this._queryTrackTabLoop(tab, 0, false, callback); 202 | } 203 | else if (typeof tab !== 'undefined' && typeof tab.id !== 'undefined' && this.tabIds.length > 0) { 204 | for (let id of this.tabIds) { 205 | if (tab.id == id) { 206 | callback(true); 207 | break; 208 | } 209 | } 210 | callback(false); 211 | } 212 | else { 213 | callback(false); 214 | } 215 | } 216 | 217 | /** Returns the number of tracks being tracked */ 218 | get numTabs() { 219 | return Object.keys(this.tabs).length; 220 | } 221 | 222 | /** 223 | * Adds a new tab to track and fires the onTabLoad event 224 | * @param {object} tab The tab to track 225 | */ 226 | addTab(tab) { 227 | this.tabs[tab.id] = tab; 228 | this.events.dispatchEvent('onTabLoad', this.tabs[tab.id]); 229 | } 230 | 231 | /** 232 | * Removes a tab being tracked and fires the onTabUnloadEvent 233 | * @param {object} tab The tab to remove 234 | */ 235 | removeTab(tab) { 236 | delete this.tabs[tab.id]; 237 | this.events.dispatchEvent('onTabUnload', tab.id); 238 | } 239 | } 240 | 241 | class Popup { 242 | constructor() { 243 | this.lastButtonId = 0; 244 | this.buttons = {}; 245 | 246 | this.menus = {}; 247 | 248 | this.defaultMenu = 'main'; 249 | this.addMenu({'name' : this.defaultMenu}); 250 | } 251 | 252 | /** 253 | * Adds a new popup menu 254 | * @param {object} options The popup menu's options 255 | * @param {string} options.title The name of the menu 256 | * @param {string} [options.parent] The menu's parent 257 | */ 258 | addMenu(options) { 259 | if (options.name != this.defaultMenu) { 260 | if (typeof options.parent === 'undefined') options.parent = this.defaultMenu; 261 | } 262 | this.menus[options.name] = options; 263 | // Add a back button to go to parent menu 264 | if (this.menus[options.name].name != this.defaultMenu) { 265 | this.addButton({ 266 | 'menu': this.menus[options.name].name, 267 | 'title': 'Back', 268 | 'type': 'back', 269 | 'onClick': '#'+this.menus[options.name].parent 270 | }); 271 | } 272 | } 273 | 274 | /** 275 | * Returns the menu with the specified name 276 | * @param {string} name The menu's name 277 | * @returns {object} The menu 278 | */ 279 | getMenu(name) { 280 | return this.menus[name]; 281 | } 282 | 283 | /** 284 | * Adds a new popup button to the extensions popup 285 | * @param {object} options The popup's options. 286 | * @param {string} options.icon A font-awesome icon string. 287 | * For example, 'whatsapp', 'cog'. 288 | * See the [font awesome cheatsheet](fontawesome.io/cheatsheet/) for a full list 289 | * @param {string} options.title The text to show on the popup 290 | * @param {string} options.iconColor The color of the popup's icon 291 | * @param {function} options.onClick The function to call when the popup is clicked 292 | */ 293 | addButton(options) { 294 | var button = options; 295 | if (typeof button.clickType === 'undefined') { 296 | // button.clickType = typeof button.onClick; 297 | if (typeof button.onClick !== 'undefined') { 298 | if (typeof button.onClick === 'string') { 299 | button.clickType = 'navigation'; 300 | } 301 | else if (typeof button.onClick === 'function') { 302 | button.clickType = 'function'; 303 | } 304 | } 305 | else { 306 | button.clickType = 'undefined'; 307 | } 308 | } 309 | if (typeof button.onClick === 'undefined') button.onClick = () => {}; 310 | // If no menu is specified add it to the default menu 311 | if (typeof button.menu === 'undefined') button.menu = this.defaultMenu; 312 | // If the menu specified in button doesn't exist, add it 313 | if (!(button.menu in this.menus)) { 314 | this.addMenu({'name' : button.menu}); 315 | } 316 | button.id = this.lastButtonId; 317 | this.buttons[this.lastButtonId] = button; 318 | this.lastButtonId += 1; 319 | } 320 | 321 | /** 322 | * Initializes the popup adding all the buttons. Should only be called after all buttons are added 323 | */ 324 | init() { 325 | chrome.runtime.onMessage.addListener((request, sender, sendResponse) => { 326 | if (request.from == 'popup') { 327 | if (request.type == 'requestData') { 328 | sendResponse({ 329 | from: 'chromebot', 330 | type: 'popupData', 331 | data: { 332 | 'menus' : this.menus, 333 | 'buttons' : this.buttons, 334 | 'defaultMenu' : this.defaultMenu 335 | } 336 | }); 337 | } 338 | // Called when a button is pressed by the user 339 | else if (request.type == 'buttonOnClick' && request.buttonId != undefined) { 340 | if (request.buttonId in this.buttons) { 341 | this.buttons[request.buttonId].onClick(); 342 | } 343 | } 344 | } 345 | }) 346 | } 347 | } 348 | 349 | /** Core extensions class. Handles popups, notifications and saving tabs */ 350 | class ChromeBot { 351 | constructor() { 352 | this.popup = new Popup(); 353 | 354 | this.popup.addButton({'title': 'Options','icon': 'cog', 'onClick': chrome.runtime.openOptionsPage}); 355 | /*this.popup.addButton({'title': 'Android settings','icon': 'android', 'onClick': '#android'}); 356 | this.popup.addButton({'menu': 'android','title': 'Hello','icon': 'save'}); 357 | this.popup.addButton({'menu': 'android','title': 'Turn of Wifi','icon': 'wifi','iconColor':'#04a235'}); 358 | this.popup.addButton({'menu': 'android','title': 'Kill the lights','icon': 'desktop','iconColor':'#a20404', 'onClick': '#lights'}); 359 | 360 | this.popup.addMenu({'name': 'lights', 'parent':'android'}); 361 | this.popup.addButton({'menu': 'lights','title': 'Happy days','icon': 'cube'});*/ 362 | 363 | this.savedTabs = {}; 364 | 365 | /** 366 | * The core extension actions 367 | */ 368 | this.coreActions = {}; 369 | } 370 | 371 | /** 372 | * Sends a basic notification 373 | * @private 374 | * @param {object} data The notification data 375 | */ 376 | _notify(data) { 377 | data.type = 'basic'; 378 | data.iconUrl = chrome.runtime.getManifest().icons['128']; 379 | data.title = 'Chrome Bot'; 380 | data.isClickable = false; 381 | chrome.notifications.create('', data); 382 | } 383 | 384 | /** 385 | * Creates a chrome notification 386 | * @param {string} msg The notification message 387 | * @param {('error'|'normal')} [type=normal] The type of notification. Valid types are: error 388 | */ 389 | notify(msg, type='normal') { 390 | if (type == 'error') { 391 | this._notify({'message': 'Error: ' + msg}); 392 | } else { 393 | this._notify({'message': msg}); 394 | } 395 | } 396 | 397 | /** 398 | * Stores a tab for future reference 399 | * @param {string} name The name to give the saved tab 400 | * @param {number} tabId The ID of the tab to save 401 | */ 402 | saveTab(name, tabId) { 403 | this.savedTabs[name] = tabId; 404 | } 405 | 406 | /** 407 | * Gets a previously saved tab 408 | * @param {string} name The name of the tab to get 409 | * @returns {number} The ID of the saved tab 410 | */ 411 | getSavedTab(name) { 412 | return this.savedTabs[name]; 413 | } 414 | 415 | /** 416 | * Adds a core action 417 | * @param {string} name The name of the core action 418 | * @param {function} action The core action 419 | */ 420 | /*addCoreAction(name, action) { 421 | this.coreActions[name] = action; 422 | }*/ 423 | 424 | /** 425 | * Removes a core action 426 | * @param {string} name The name of the core action 427 | */ 428 | /*removeCoreAction(name) { 429 | delete this.coreActions[name]; 430 | }*/ 431 | 432 | /** 433 | * Runs a core action 434 | * @param {string} name The name of the core action 435 | * @param {Array} ...args The core action arguments 436 | */ 437 | /*run(name, ...args) { 438 | this.coreActions[name](...args); 439 | }*/ 440 | 441 | /** 442 | * An alias for ChromeBot.coreActions 443 | */ 444 | get ca() { 445 | return this.coreActions; 446 | } 447 | } 448 | 449 | let bot = new ChromeBot(); 450 | 451 | /** 452 | * Base class for modules 453 | * A module is a class that handles a specific task. For example, sending and receiving WhatsApp messages 454 | */ 455 | class Module { 456 | constructor(name) { 457 | this.name = name; 458 | } 459 | 460 | /** 461 | * Sends a message to a tab and attaches which module it was from 462 | * @param {number} tabId The ID of the tab to send a message to 463 | * @param {object} data The message data 464 | */ 465 | sendTabMessage(tabId, data, callback) { 466 | data.from = this.name; 467 | console.log("Sent message to tabId : "+tabId); 468 | console.log(data); 469 | chrome.tabs.sendMessage(tabId, data, callback); 470 | } 471 | } 472 | 473 | /** 474 | * Checks if two emojis are equal using codePoints 475 | * @return {Boolean} 476 | */ 477 | function emojisEqual(emoji1, emoji2) { 478 | return emoji1.codePointAt(0) == emoji2.codePointAt(0) 479 | } 480 | -------------------------------------------------------------------------------- /universal_content.js: -------------------------------------------------------------------------------- 1 | chrome.runtime.sendMessage({ 2 | from: 'contentScript', 3 | type: 'loadEvent', 4 | loadState: 'load' 5 | }); 6 | 7 | $(window).on('unload', function () { 8 | chrome.runtime.sendMessage({ 9 | from: 'contentScript', 10 | type: 'loadEvent', 11 | loadState: 'unload' 12 | }) 13 | }); 14 | 15 | function dispatchMouseEvent(target, var_args) { 16 | var e = document.createEvent("MouseEvents"); 17 | // If you need clientX, clientY, etc., you can call 18 | // initMouseEvent instead of initEvent 19 | e.initEvent.apply(e, Array.prototype.slice.call(arguments, 1)); 20 | target.dispatchEvent(e); 21 | }; 22 | function dispatchKeyboardEvent(target, initKeyboradEvent_args) { 23 | var e = document.createEvent("KeyboardEvents"); 24 | e.initKeyboardEvent.apply(e, Array.prototype.slice.call(arguments, 1)); 25 | target.dispatchEvent(e); 26 | }; 27 | function dispatchTextEvent(target, initTextEvent_args) { 28 | var e = document.createEvent("TextEvent"); 29 | e.initTextEvent.apply(e, Array.prototype.slice.call(arguments, 1)); 30 | target.dispatchEvent(e); 31 | }; 32 | function dispatchDragEvent(target, type, canBubble, cancelable) { 33 | var e = document.createEvent("DragEvent"); 34 | e.initEvent.apply(e, Array.prototype.slice.call(arguments, 1)); 35 | target.dispatchEvent(e); 36 | }; 37 | function dispatchSimpleEvent(target, type, canBubble, cancelable) { 38 | var e = document.createEvent("Event"); 39 | e.initEvent.apply(e, Array.prototype.slice.call(arguments, 1)); 40 | target.dispatchEvent(e); 41 | }; 42 | 43 | function simulateClick(el) { 44 | /*el.trigger('mouseover'); 45 | el.trigger('mousedown'); 46 | el.trigger('click'); 47 | el.trigger('mouseup');*/ 48 | 49 | dispatchMouseEvent(el[0], 'mouseover', true, true); 50 | dispatchMouseEvent(el[0], 'mousedown', true, true); 51 | dispatchMouseEvent(el[0], 'click', true, true); 52 | dispatchMouseEvent(el[0], 'mouseup', true, true); 53 | } 54 | --------------------------------------------------------------------------------