├── .gitignore ├── .htaccess ├── INSTALL.txt ├── README.md ├── TODO.txt ├── admin ├── includes │ ├── index.html │ └── loader.php └── index.php ├── core ├── aasp_includes │ ├── functions.php │ ├── index.html │ ├── javascript_loader.php │ ├── js │ │ ├── account.js │ │ ├── index.html │ │ ├── interface.js │ │ ├── logs.js │ │ ├── news.js │ │ ├── server.js │ │ ├── shop.js │ │ ├── wysiwyg.js │ │ └── wysiwyg │ │ │ ├── index.html │ │ │ ├── wysiwyg.colorpicker.js │ │ │ ├── wysiwyg.cssWrap.js │ │ │ ├── wysiwyg.image.js │ │ │ ├── wysiwyg.link.js │ │ │ └── wysiwyg.table.js │ ├── pages │ │ ├── 404.php │ │ ├── dashboard.php │ │ ├── donations.php │ │ ├── error404.jpg │ │ ├── index.html │ │ ├── interface.php │ │ ├── logout.php │ │ ├── logs.php │ │ ├── news.php │ │ ├── notice.php │ │ ├── pages.php │ │ ├── realms.php │ │ ├── services.php │ │ ├── shop.php │ │ ├── subpages │ │ │ ├── donations-browse.php │ │ │ ├── index.html │ │ │ ├── interface-alert.php │ │ │ ├── interface-menu.php │ │ │ ├── interface-plugins.php │ │ │ ├── interface-slideshow.php │ │ │ ├── interface-viewplugin.php │ │ │ ├── logs-admin.php │ │ │ ├── logs-donateshop.php │ │ │ ├── logs-voteshop.php │ │ │ ├── news-manage.php │ │ │ ├── pages-new.php │ │ │ ├── realms-manage.php │ │ │ ├── services-charservice.php │ │ │ ├── services-voting.php │ │ │ ├── shop-add.php │ │ │ ├── shop-manage.php │ │ │ ├── shop-tools.php │ │ │ ├── tools-accountaccess.php │ │ │ ├── tools-tickets.php │ │ │ ├── users-inventory.php │ │ │ ├── users-manage.php │ │ │ └── users-viewchar.php │ │ ├── tools.php │ │ ├── updates.php │ │ └── users.php │ ├── scripts │ │ ├── account.php │ │ ├── index.html │ │ ├── layout.php │ │ ├── login.php │ │ ├── logs.php │ │ ├── news.php │ │ ├── pages.php │ │ ├── realms.php │ │ ├── shop.php │ │ └── test_settings.php │ └── styles │ │ ├── default │ │ ├── images │ │ │ ├── ajax-loader.gif │ │ │ ├── bg.png │ │ │ ├── box_left_li.png │ │ │ ├── box_left_li_hover.png │ │ │ ├── box_left_title.png │ │ │ ├── down.png │ │ │ ├── header_bg.png │ │ │ ├── help.png │ │ │ ├── index.html │ │ │ ├── menu_left.png │ │ │ ├── menu_left_bg.png │ │ │ ├── subheader_bg.png │ │ │ ├── submit_bg.png │ │ │ ├── submit_bg_hover.png │ │ │ ├── topBar.png │ │ │ └── up.png │ │ ├── index.html │ │ └── style.css │ │ ├── index.html │ │ ├── jquery.wysiwyg.bg.png │ │ ├── jquery.wysiwyg.gif │ │ ├── jquery.wysiwyg.no-alpha.gif │ │ └── wysiwyg.css ├── backups │ ├── .htaccess │ ├── configuration.php │ └── index.html ├── cache │ └── index.html ├── documents │ ├── alert.php │ ├── index.html │ ├── refundpolicy.php │ └── termsofservice.php ├── includes │ ├── .htaccess │ ├── Messages.php │ ├── classes │ │ ├── account.php │ │ ├── cache.php │ │ ├── character.php │ │ ├── error.php │ │ ├── index.html │ │ ├── plugins.php │ │ ├── server.php │ │ ├── shop.php │ │ ├── support.php │ │ ├── template_parse.php │ │ ├── validator.php │ │ └── website.php │ ├── configuration.json │ ├── configuration.php │ ├── error-log.php │ ├── ext_scripts_class_loader.php │ ├── index.html │ ├── javascript_loader.php │ ├── lang │ │ ├── enGB │ │ │ └── strings.xml │ │ └── ptPT │ │ │ └── strings.xml │ ├── loader.php │ ├── misc │ │ ├── alertpay_trigger.php │ │ ├── arial.ttf │ │ ├── captcha.php │ │ ├── compress.php │ │ ├── connect.php │ │ ├── func_lib.php │ │ ├── headers.php │ │ ├── index.html │ │ ├── paypal_trigger.php │ │ └── vb_register.php │ ├── scripts │ │ ├── character.php │ │ ├── index.html │ │ ├── misc.php │ │ ├── register.php │ │ ├── sendReward.php │ │ ├── shop.php │ │ └── vote.php │ └── template_loader.php ├── javascript │ ├── .htaccess │ ├── index.html │ ├── jquery.js │ ├── main.js │ └── slideshow.js ├── modules │ ├── account.php │ ├── alert.php │ ├── content.php │ ├── footer.php │ ├── index.html │ ├── login.php │ ├── menu.php │ ├── server_status.php │ ├── slideshow.php │ └── social.php ├── pages │ ├── .htaccess │ ├── 404.php │ ├── account.php │ ├── cart.php │ ├── changepass.php │ ├── confirmservice.php │ ├── donate.php │ ├── donateshop.php │ ├── faq.php │ ├── forgotpw.php │ ├── home.php │ ├── index.html │ ├── instancereset.php │ ├── login.php │ ├── logout.php │ ├── news.php │ ├── raf.php │ ├── register.php │ ├── revive.php │ ├── service.php │ ├── settings.php │ ├── support.php │ ├── teleport.php │ ├── unstuck.php │ ├── vote.php │ └── voteshop.php ├── plugins │ ├── currencyconvert │ │ ├── info.php │ │ ├── javascript │ │ │ └── convert.js │ │ └── pages │ │ │ └── convert.php │ ├── index.html │ └── playersonline │ │ ├── config.php │ │ ├── info.php │ │ ├── modules │ │ └── playersonline.php │ │ └── pages │ │ └── playersonline.php └── styles │ ├── .htaccess │ ├── bananas │ ├── images │ │ ├── Thumbs.db │ │ ├── _notes │ │ │ └── bg.jpg.mno │ │ ├── account_func_bg.png │ │ ├── account_func_bg_hover.png │ │ ├── arrow.png │ │ ├── arrows.png │ │ ├── bg.jpg │ │ ├── botBar.png │ │ ├── box_one_title.png │ │ ├── bullets.png │ │ ├── close.png │ │ ├── content_bg.png │ │ ├── content_left_bg.png │ │ ├── donate.png │ │ ├── index.html │ │ ├── loading.gif │ │ ├── menu_bg.png │ │ ├── menu_item_hover.png │ │ ├── popupCloseBtn.png │ │ ├── post_page.png │ │ ├── srv_status_alliance.png │ │ ├── srv_status_horde.png │ │ ├── submit_bg.png │ │ ├── submit_bg_hover.png │ │ ├── topBar.png │ │ └── unknown.png │ ├── index.html │ ├── style.css │ └── template.html │ ├── default │ ├── images │ │ ├── _notes │ │ │ └── bg.jpg.mno │ │ ├── account_func_bg.png │ │ ├── account_func_bg_hover.png │ │ ├── arrow.png │ │ ├── bg.jpg │ │ ├── botBar.png │ │ ├── box_one_title.png │ │ ├── close.png │ │ ├── content_bg.png │ │ ├── content_left_bg.png │ │ ├── donate.png │ │ ├── index.html │ │ ├── menu_bg.png │ │ ├── menu_item_hover.png │ │ ├── popupCloseBtn.png │ │ ├── post_page.png │ │ ├── srv_status_alliance.png │ │ ├── srv_status_horde.png │ │ ├── submit_bg.png │ │ ├── submit_bg_hover.png │ │ ├── topBar.png │ │ └── unknown.png │ ├── index.html │ ├── style.css │ └── template.html │ ├── default_bootstrap │ ├── images │ │ ├── _notes │ │ │ └── bg.jpg.mno │ │ ├── account_func_bg.png │ │ ├── account_func_bg_hover.png │ │ ├── arrow.png │ │ ├── bg.jpg │ │ ├── botBar.png │ │ ├── box_one_title.png │ │ ├── close.png │ │ ├── content_bg.png │ │ ├── content_left_bg.png │ │ ├── donate.png │ │ ├── index.html │ │ ├── menu_bg.png │ │ ├── menu_item_hover.png │ │ ├── popupCloseBtn.png │ │ ├── post_page.png │ │ ├── srv_status_alliance.png │ │ ├── srv_status_horde.png │ │ ├── submit_bg.png │ │ ├── submit_bg_hover.png │ │ ├── topBar.png │ │ └── unknown.png │ ├── index.html │ ├── style.css │ └── template.html │ ├── global │ ├── images │ │ ├── ajax-loader.gif │ │ ├── icon_border_large.png │ │ ├── icon_border_medium.png │ │ ├── icons │ │ │ ├── appearance.png │ │ │ ├── arena.png │ │ │ ├── character_migration.png │ │ │ ├── class │ │ │ │ ├── 1.gif │ │ │ │ ├── 11.gif │ │ │ │ ├── 2.gif │ │ │ │ ├── 3.gif │ │ │ │ ├── 4.gif │ │ │ │ ├── 5.gif │ │ │ │ ├── 6.gif │ │ │ │ ├── 7.gif │ │ │ │ ├── 8.gif │ │ │ │ └── 9.gif │ │ │ ├── faction │ │ │ │ ├── 0.gif │ │ │ │ └── 1.gif │ │ │ ├── factions.png │ │ │ ├── gift.png │ │ │ ├── name_change.png │ │ │ ├── omen.png │ │ │ ├── parental.png │ │ │ ├── ptr.png │ │ │ ├── race │ │ │ │ ├── 1-0.gif │ │ │ │ ├── 1-1.gif │ │ │ │ ├── 10-0.gif │ │ │ │ ├── 10-1.gif │ │ │ │ ├── 10.gif │ │ │ │ ├── 11-0.gif │ │ │ │ ├── 11-1.gif │ │ │ │ ├── 2-0.gif │ │ │ │ ├── 2-1.gif │ │ │ │ ├── 3-0.gif │ │ │ │ ├── 3-1.gif │ │ │ │ ├── 4-0.gif │ │ │ │ ├── 4-1.gif │ │ │ │ ├── 5-0.gif │ │ │ │ ├── 5-1.gif │ │ │ │ ├── 6-0.gif │ │ │ │ ├── 6-1.gif │ │ │ │ ├── 7-0.gif │ │ │ │ ├── 7-1.gif │ │ │ │ ├── 8-0.gif │ │ │ │ └── 8-1.gif │ │ │ ├── race_change.png │ │ │ ├── raf.png │ │ │ ├── revive.png │ │ │ ├── spell_arcane_portaldalaran.jpg │ │ │ ├── spell_arcane_portaldarnassus.jpg │ │ │ ├── spell_arcane_portalexodar.jpg │ │ │ ├── spell_arcane_portalironforge.jpg │ │ │ ├── spell_arcane_portalorgrimmar.jpg │ │ │ ├── spell_arcane_portalshattrath.jpg │ │ │ ├── spell_arcane_portalsilvermoon.jpg │ │ │ ├── spell_arcane_portalstonard.jpg │ │ │ ├── spell_arcane_portalstormwind.jpg │ │ │ ├── spell_arcane_portaltheramore.jpg │ │ │ ├── spell_arcane_portalthunderbluff.jpg │ │ │ ├── spell_arcane_portalundercity.jpg │ │ │ ├── spell_arcane_teleportdalaran.jpg │ │ │ ├── spell_arcane_teleportdarnassus.jpg │ │ │ ├── spell_arcane_teleportexodar.jpg │ │ │ ├── spell_arcane_teleportironforge.jpg │ │ │ ├── spell_arcane_teleportmoonglade.jpg │ │ │ ├── spell_arcane_teleportorgrimmar.jpg │ │ │ ├── spell_arcane_teleportshattrath.jpg │ │ │ ├── spell_arcane_teleportsilvermoon.jpg │ │ │ ├── spell_arcane_teleportstonard.jpg │ │ │ ├── spell_arcane_teleportstormwind.jpg │ │ │ ├── spell_arcane_teleporttheramore.jpg │ │ │ ├── spell_arcane_teleportthunderbluff.jpg │ │ │ ├── spell_arcane_teleportundercity.jpg │ │ │ ├── time.png │ │ │ ├── transfer.png │ │ │ ├── visa.png │ │ │ └── wow.png │ │ ├── index.html │ │ ├── logo.png │ │ ├── overlay.png │ │ ├── paypal.png │ │ ├── portraits │ │ │ ├── 0-1-1.gif │ │ │ ├── 0-1-2.gif │ │ │ ├── 0-1-4.gif │ │ │ ├── 0-1-5.gif │ │ │ ├── 0-1-6.gif │ │ │ ├── 0-1-8.gif │ │ │ ├── 0-1-9.gif │ │ │ ├── 0-10-2.gif │ │ │ ├── 0-10-3.gif │ │ │ ├── 0-10-4.gif │ │ │ ├── 0-10-5.gif │ │ │ ├── 0-10-6.gif │ │ │ ├── 0-10-8.gif │ │ │ ├── 0-10-9.gif │ │ │ ├── 0-11-1.gif │ │ │ ├── 0-11-2.gif │ │ │ ├── 0-11-3.gif │ │ │ ├── 0-11-5.gif │ │ │ ├── 0-11-6.gif │ │ │ ├── 0-11-7.gif │ │ │ ├── 0-11-8.gif │ │ │ ├── 0-2-1.gif │ │ │ ├── 0-2-3.gif │ │ │ ├── 0-2-4.gif │ │ │ ├── 0-2-6.gif │ │ │ ├── 0-2-7.gif │ │ │ ├── 0-2-9.gif │ │ │ ├── 0-3-1.gif │ │ │ ├── 0-3-2.gif │ │ │ ├── 0-3-3.gif │ │ │ ├── 0-3-4.gif │ │ │ ├── 0-3-5.gif │ │ │ ├── 0-3-6.gif │ │ │ ├── 0-4-1.gif │ │ │ ├── 0-4-11.gif │ │ │ ├── 0-4-3.gif │ │ │ ├── 0-4-4.gif │ │ │ ├── 0-4-5.gif │ │ │ ├── 0-4-6.gif │ │ │ ├── 0-5-1.gif │ │ │ ├── 0-5-4.gif │ │ │ ├── 0-5-5.gif │ │ │ ├── 0-5-6.gif │ │ │ ├── 0-5-8.gif │ │ │ ├── 0-5-9.gif │ │ │ ├── 0-6-1.gif │ │ │ ├── 0-6-11.gif │ │ │ ├── 0-6-3.gif │ │ │ ├── 0-6-6.gif │ │ │ ├── 0-6-7.gif │ │ │ ├── 0-7-1.gif │ │ │ ├── 0-7-4.gif │ │ │ ├── 0-7-6.gif │ │ │ ├── 0-7-8.gif │ │ │ ├── 0-7-9.gif │ │ │ ├── 0-8-1.gif │ │ │ ├── 0-8-3.gif │ │ │ ├── 0-8-4.gif │ │ │ ├── 0-8-5.gif │ │ │ ├── 0-8-6.gif │ │ │ ├── 0-8-7.gif │ │ │ ├── 0-8-8.gif │ │ │ ├── 1-1-1.gif │ │ │ ├── 1-1-2.gif │ │ │ ├── 1-1-4.gif │ │ │ ├── 1-1-5.gif │ │ │ ├── 1-1-6.gif │ │ │ ├── 1-1-8.gif │ │ │ ├── 1-1-9.gif │ │ │ ├── 1-10-2.gif │ │ │ ├── 1-10-3.gif │ │ │ ├── 1-10-4.gif │ │ │ ├── 1-10-5.gif │ │ │ ├── 1-10-6.gif │ │ │ ├── 1-10-8.gif │ │ │ ├── 1-10-9.gif │ │ │ ├── 1-11-1.gif │ │ │ ├── 1-11-2.gif │ │ │ ├── 1-11-3.gif │ │ │ ├── 1-11-5.gif │ │ │ ├── 1-11-6.gif │ │ │ ├── 1-11-7.gif │ │ │ ├── 1-11-8.gif │ │ │ ├── 1-2-1.gif │ │ │ ├── 1-2-3.gif │ │ │ ├── 1-2-4.gif │ │ │ ├── 1-2-6.gif │ │ │ ├── 1-2-7.gif │ │ │ ├── 1-2-9.gif │ │ │ ├── 1-3-1.gif │ │ │ ├── 1-3-2.gif │ │ │ ├── 1-3-3.gif │ │ │ ├── 1-3-4.gif │ │ │ ├── 1-3-5.gif │ │ │ ├── 1-3-6.gif │ │ │ ├── 1-4-1.gif │ │ │ ├── 1-4-11.gif │ │ │ ├── 1-4-3.gif │ │ │ ├── 1-4-4.gif │ │ │ ├── 1-4-5.gif │ │ │ ├── 1-4-6.gif │ │ │ ├── 1-5-1.gif │ │ │ ├── 1-5-4.gif │ │ │ ├── 1-5-5.gif │ │ │ ├── 1-5-6.gif │ │ │ ├── 1-5-8.gif │ │ │ ├── 1-5-9.gif │ │ │ ├── 1-6-1.gif │ │ │ ├── 1-6-11.gif │ │ │ ├── 1-6-3.gif │ │ │ ├── 1-6-6.gif │ │ │ ├── 1-6-7.gif │ │ │ ├── 1-7-1.gif │ │ │ ├── 1-7-4.gif │ │ │ ├── 1-7-6.gif │ │ │ ├── 1-7-8.gif │ │ │ ├── 1-7-9.gif │ │ │ ├── 1-8-1.gif │ │ │ ├── 1-8-3.gif │ │ │ ├── 1-8-4.gif │ │ │ ├── 1-8-5.gif │ │ │ ├── 1-8-6.gif │ │ │ ├── 1-8-7.gif │ │ │ ├── 1-8-8.gif │ │ │ └── index.html │ │ └── typo │ │ │ ├── accept.png │ │ │ ├── alert.png │ │ │ ├── approved.png │ │ │ ├── attention.png │ │ │ ├── camera.png │ │ │ ├── cart.png │ │ │ ├── coins.png │ │ │ ├── doc.png │ │ │ ├── download.png │ │ │ ├── email.jpeg │ │ │ ├── email.png │ │ │ ├── media.png │ │ │ ├── note.png │ │ │ └── notice.png │ ├── index.html │ ├── slideshow │ │ └── images │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ └── index.html │ ├── style.css │ └── template.html │ ├── global_bootstrap │ ├── images │ │ ├── ajax-loader.gif │ │ ├── icon_border_large.png │ │ ├── icon_border_medium.png │ │ ├── icons │ │ │ ├── appearance.png │ │ │ ├── arena.png │ │ │ ├── character_migration.png │ │ │ ├── class │ │ │ │ ├── 1.gif │ │ │ │ ├── 11.gif │ │ │ │ ├── 2.gif │ │ │ │ ├── 3.gif │ │ │ │ ├── 4.gif │ │ │ │ ├── 5.gif │ │ │ │ ├── 6.gif │ │ │ │ ├── 7.gif │ │ │ │ ├── 8.gif │ │ │ │ └── 9.gif │ │ │ ├── faction │ │ │ │ ├── 0.gif │ │ │ │ └── 1.gif │ │ │ ├── factions.png │ │ │ ├── gift.png │ │ │ ├── name_change.png │ │ │ ├── omen.png │ │ │ ├── parental.png │ │ │ ├── ptr.png │ │ │ ├── race │ │ │ │ ├── 1-0.gif │ │ │ │ ├── 1-1.gif │ │ │ │ ├── 10-0.gif │ │ │ │ ├── 10-1.gif │ │ │ │ ├── 10.gif │ │ │ │ ├── 11-0.gif │ │ │ │ ├── 11-1.gif │ │ │ │ ├── 2-0.gif │ │ │ │ ├── 2-1.gif │ │ │ │ ├── 3-0.gif │ │ │ │ ├── 3-1.gif │ │ │ │ ├── 4-0.gif │ │ │ │ ├── 4-1.gif │ │ │ │ ├── 5-0.gif │ │ │ │ ├── 5-1.gif │ │ │ │ ├── 6-0.gif │ │ │ │ ├── 6-1.gif │ │ │ │ ├── 7-0.gif │ │ │ │ ├── 7-1.gif │ │ │ │ ├── 8-0.gif │ │ │ │ └── 8-1.gif │ │ │ ├── race_change.png │ │ │ ├── raf.png │ │ │ ├── revive.png │ │ │ ├── spell_arcane_portaldalaran.jpg │ │ │ ├── spell_arcane_portaldarnassus.jpg │ │ │ ├── spell_arcane_portalexodar.jpg │ │ │ ├── spell_arcane_portalironforge.jpg │ │ │ ├── spell_arcane_portalorgrimmar.jpg │ │ │ ├── spell_arcane_portalshattrath.jpg │ │ │ ├── spell_arcane_portalsilvermoon.jpg │ │ │ ├── spell_arcane_portalstonard.jpg │ │ │ ├── spell_arcane_portalstormwind.jpg │ │ │ ├── spell_arcane_portaltheramore.jpg │ │ │ ├── spell_arcane_portalthunderbluff.jpg │ │ │ ├── spell_arcane_portalundercity.jpg │ │ │ ├── spell_arcane_teleportdalaran.jpg │ │ │ ├── spell_arcane_teleportdarnassus.jpg │ │ │ ├── spell_arcane_teleportexodar.jpg │ │ │ ├── spell_arcane_teleportironforge.jpg │ │ │ ├── spell_arcane_teleportmoonglade.jpg │ │ │ ├── spell_arcane_teleportorgrimmar.jpg │ │ │ ├── spell_arcane_teleportshattrath.jpg │ │ │ ├── spell_arcane_teleportsilvermoon.jpg │ │ │ ├── spell_arcane_teleportstonard.jpg │ │ │ ├── spell_arcane_teleportstormwind.jpg │ │ │ ├── spell_arcane_teleporttheramore.jpg │ │ │ ├── spell_arcane_teleportthunderbluff.jpg │ │ │ ├── spell_arcane_teleportundercity.jpg │ │ │ ├── time.png │ │ │ ├── transfer.png │ │ │ ├── visa.png │ │ │ └── wow.png │ │ ├── index.html │ │ ├── logo.png │ │ ├── overlay.png │ │ ├── paypal.png │ │ ├── portraits │ │ │ ├── 0-1-1.gif │ │ │ ├── 0-1-2.gif │ │ │ ├── 0-1-4.gif │ │ │ ├── 0-1-5.gif │ │ │ ├── 0-1-6.gif │ │ │ ├── 0-1-8.gif │ │ │ ├── 0-1-9.gif │ │ │ ├── 0-10-2.gif │ │ │ ├── 0-10-3.gif │ │ │ ├── 0-10-4.gif │ │ │ ├── 0-10-5.gif │ │ │ ├── 0-10-6.gif │ │ │ ├── 0-10-8.gif │ │ │ ├── 0-10-9.gif │ │ │ ├── 0-11-1.gif │ │ │ ├── 0-11-2.gif │ │ │ ├── 0-11-3.gif │ │ │ ├── 0-11-5.gif │ │ │ ├── 0-11-6.gif │ │ │ ├── 0-11-7.gif │ │ │ ├── 0-11-8.gif │ │ │ ├── 0-2-1.gif │ │ │ ├── 0-2-3.gif │ │ │ ├── 0-2-4.gif │ │ │ ├── 0-2-6.gif │ │ │ ├── 0-2-7.gif │ │ │ ├── 0-2-9.gif │ │ │ ├── 0-3-1.gif │ │ │ ├── 0-3-2.gif │ │ │ ├── 0-3-3.gif │ │ │ ├── 0-3-4.gif │ │ │ ├── 0-3-5.gif │ │ │ ├── 0-3-6.gif │ │ │ ├── 0-4-1.gif │ │ │ ├── 0-4-11.gif │ │ │ ├── 0-4-3.gif │ │ │ ├── 0-4-4.gif │ │ │ ├── 0-4-5.gif │ │ │ ├── 0-4-6.gif │ │ │ ├── 0-5-1.gif │ │ │ ├── 0-5-4.gif │ │ │ ├── 0-5-5.gif │ │ │ ├── 0-5-6.gif │ │ │ ├── 0-5-8.gif │ │ │ ├── 0-5-9.gif │ │ │ ├── 0-6-1.gif │ │ │ ├── 0-6-11.gif │ │ │ ├── 0-6-3.gif │ │ │ ├── 0-6-6.gif │ │ │ ├── 0-6-7.gif │ │ │ ├── 0-7-1.gif │ │ │ ├── 0-7-4.gif │ │ │ ├── 0-7-6.gif │ │ │ ├── 0-7-8.gif │ │ │ ├── 0-7-9.gif │ │ │ ├── 0-8-1.gif │ │ │ ├── 0-8-3.gif │ │ │ ├── 0-8-4.gif │ │ │ ├── 0-8-5.gif │ │ │ ├── 0-8-6.gif │ │ │ ├── 0-8-7.gif │ │ │ ├── 0-8-8.gif │ │ │ ├── 1-1-1.gif │ │ │ ├── 1-1-2.gif │ │ │ ├── 1-1-4.gif │ │ │ ├── 1-1-5.gif │ │ │ ├── 1-1-6.gif │ │ │ ├── 1-1-8.gif │ │ │ ├── 1-1-9.gif │ │ │ ├── 1-10-2.gif │ │ │ ├── 1-10-3.gif │ │ │ ├── 1-10-4.gif │ │ │ ├── 1-10-5.gif │ │ │ ├── 1-10-6.gif │ │ │ ├── 1-10-8.gif │ │ │ ├── 1-10-9.gif │ │ │ ├── 1-11-1.gif │ │ │ ├── 1-11-2.gif │ │ │ ├── 1-11-3.gif │ │ │ ├── 1-11-5.gif │ │ │ ├── 1-11-6.gif │ │ │ ├── 1-11-7.gif │ │ │ ├── 1-11-8.gif │ │ │ ├── 1-2-1.gif │ │ │ ├── 1-2-3.gif │ │ │ ├── 1-2-4.gif │ │ │ ├── 1-2-6.gif │ │ │ ├── 1-2-7.gif │ │ │ ├── 1-2-9.gif │ │ │ ├── 1-3-1.gif │ │ │ ├── 1-3-2.gif │ │ │ ├── 1-3-3.gif │ │ │ ├── 1-3-4.gif │ │ │ ├── 1-3-5.gif │ │ │ ├── 1-3-6.gif │ │ │ ├── 1-4-1.gif │ │ │ ├── 1-4-11.gif │ │ │ ├── 1-4-3.gif │ │ │ ├── 1-4-4.gif │ │ │ ├── 1-4-5.gif │ │ │ ├── 1-4-6.gif │ │ │ ├── 1-5-1.gif │ │ │ ├── 1-5-4.gif │ │ │ ├── 1-5-5.gif │ │ │ ├── 1-5-6.gif │ │ │ ├── 1-5-8.gif │ │ │ ├── 1-5-9.gif │ │ │ ├── 1-6-1.gif │ │ │ ├── 1-6-11.gif │ │ │ ├── 1-6-3.gif │ │ │ ├── 1-6-6.gif │ │ │ ├── 1-6-7.gif │ │ │ ├── 1-7-1.gif │ │ │ ├── 1-7-4.gif │ │ │ ├── 1-7-6.gif │ │ │ ├── 1-7-8.gif │ │ │ ├── 1-7-9.gif │ │ │ ├── 1-8-1.gif │ │ │ ├── 1-8-3.gif │ │ │ ├── 1-8-4.gif │ │ │ ├── 1-8-5.gif │ │ │ ├── 1-8-6.gif │ │ │ ├── 1-8-7.gif │ │ │ ├── 1-8-8.gif │ │ │ └── index.html │ │ └── typo │ │ │ ├── accept.png │ │ │ ├── alert.png │ │ │ ├── approved.png │ │ │ ├── attention.png │ │ │ ├── camera.png │ │ │ ├── cart.png │ │ │ ├── coins.png │ │ │ ├── doc.png │ │ │ ├── download.png │ │ │ ├── email.jpeg │ │ │ ├── email.png │ │ │ ├── media.png │ │ │ ├── note.png │ │ │ └── notice.png │ ├── index.html │ ├── slideshow │ │ └── images │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ └── index.html │ ├── style.css │ └── template.html │ └── index.html ├── index.php ├── install ├── functions.php ├── index.php ├── install.php ├── main.css ├── scripts.js ├── sql │ ├── .htaccess │ ├── CraftedWeb_Base.sql │ ├── index.html │ ├── item_icons.sql │ └── updates │ │ └── index.html └── steps │ ├── 1.php │ ├── 2.php │ ├── 3.php │ ├── 4.php │ ├── 5.php │ └── 6.php ├── preview └── installer.png └── staff ├── includes ├── index.html └── loader.php └── index.php /.gitignore: -------------------------------------------------------------------------------- 1 | /.phpintel/* 2 | /core/includes/configuration.php 3 | /core/includes/scripts/error.log 4 | /error.log 5 | /admin/error.log 6 | /staff/error.log 7 | /core/aasp_includes/scripts/error.log 8 | /test.php 9 | /installed 10 | /.vscode/* 11 | /core/includes/configuration.json 12 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine on 2 | 3 | RewriteRule ^(.*)$ $1 [NS,E=no-gzip:1,E=dont-vary:1,L] -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- 1 | configuration.json 2 | Remove ['website'] 3 | Change use_debug to ['use'] 4 | Add ['tooltip_href'] 5 | Change website->donation->donation_type -> type 6 | Add ['service'] teleport, instant80, unstuck, change faction with currency, price, 7 | Add core/plugins/playersonline/config.php values 8 | Add modules array 9 | 10 | Core 11 | Includes 12 | Classes 13 | Account.php 14 | - Change the output of `isLoggedIn` to boolean 15 | - Remove `isNotLoggedIn` 16 | - Rename `isNotGmLoggedIn` to `isAdmin` with `boolean` output -------------------------------------------------------------------------------- /admin/includes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/admin/includes/index.html -------------------------------------------------------------------------------- /core/aasp_includes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/aasp_includes/index.html -------------------------------------------------------------------------------- /core/aasp_includes/js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/aasp_includes/js/index.html -------------------------------------------------------------------------------- /core/aasp_includes/js/wysiwyg/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/aasp_includes/js/wysiwyg/index.html -------------------------------------------------------------------------------- /core/aasp_includes/pages/404.php: -------------------------------------------------------------------------------- 1 | 22 |

23 | The requested page doesn't seem to exist! 24 |
-------------------------------------------------------------------------------- /core/aasp_includes/pages/error404.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/aasp_includes/pages/error404.jpg -------------------------------------------------------------------------------- /core/aasp_includes/pages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/aasp_includes/pages/index.html -------------------------------------------------------------------------------- /core/aasp_includes/pages/logout.php: -------------------------------------------------------------------------------- 1 | 26 |
27 | Click Here To Log In Again 28 | -------------------------------------------------------------------------------- /core/aasp_includes/pages/services.php: -------------------------------------------------------------------------------- 1 | connect(); 26 | $GameServer->selectDB("webdb"); 27 | 28 | $GamePage->validatePageAccess("Services"); 29 | 30 | if ($GamePage->validateSubPage() == TRUE) 31 | { 32 | $GamePage->outputSubPage(); 33 | } 34 | else 35 | { 36 | echo "

Forbidden!

Or Actually... There's Nothing Here!"; 37 | } -------------------------------------------------------------------------------- /core/aasp_includes/pages/subpages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/aasp_includes/pages/subpages/index.html -------------------------------------------------------------------------------- /core/aasp_includes/pages/subpages/shop-tools.php: -------------------------------------------------------------------------------- 1 | 24 |
titleLink(); ?> » Tools
25 |   26 | This Will Clear All Items From The Vote Shop

27 |   28 | This Will Clear All Items From The Donation Shop -------------------------------------------------------------------------------- /core/aasp_includes/scripts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/aasp_includes/scripts/index.html -------------------------------------------------------------------------------- /core/aasp_includes/styles/default/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/aasp_includes/styles/default/images/ajax-loader.gif -------------------------------------------------------------------------------- /core/aasp_includes/styles/default/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/aasp_includes/styles/default/images/bg.png -------------------------------------------------------------------------------- /core/aasp_includes/styles/default/images/box_left_li.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/aasp_includes/styles/default/images/box_left_li.png -------------------------------------------------------------------------------- /core/aasp_includes/styles/default/images/box_left_li_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/aasp_includes/styles/default/images/box_left_li_hover.png -------------------------------------------------------------------------------- /core/aasp_includes/styles/default/images/box_left_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/aasp_includes/styles/default/images/box_left_title.png -------------------------------------------------------------------------------- /core/aasp_includes/styles/default/images/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/aasp_includes/styles/default/images/down.png -------------------------------------------------------------------------------- /core/aasp_includes/styles/default/images/header_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/aasp_includes/styles/default/images/header_bg.png -------------------------------------------------------------------------------- /core/aasp_includes/styles/default/images/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/aasp_includes/styles/default/images/help.png -------------------------------------------------------------------------------- /core/aasp_includes/styles/default/images/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/aasp_includes/styles/default/images/index.html -------------------------------------------------------------------------------- /core/aasp_includes/styles/default/images/menu_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/aasp_includes/styles/default/images/menu_left.png -------------------------------------------------------------------------------- /core/aasp_includes/styles/default/images/menu_left_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/aasp_includes/styles/default/images/menu_left_bg.png -------------------------------------------------------------------------------- /core/aasp_includes/styles/default/images/subheader_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/aasp_includes/styles/default/images/subheader_bg.png -------------------------------------------------------------------------------- /core/aasp_includes/styles/default/images/submit_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/aasp_includes/styles/default/images/submit_bg.png -------------------------------------------------------------------------------- /core/aasp_includes/styles/default/images/submit_bg_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/aasp_includes/styles/default/images/submit_bg_hover.png -------------------------------------------------------------------------------- /core/aasp_includes/styles/default/images/topBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/aasp_includes/styles/default/images/topBar.png -------------------------------------------------------------------------------- /core/aasp_includes/styles/default/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/aasp_includes/styles/default/images/up.png -------------------------------------------------------------------------------- /core/aasp_includes/styles/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/aasp_includes/styles/default/index.html -------------------------------------------------------------------------------- /core/aasp_includes/styles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/aasp_includes/styles/index.html -------------------------------------------------------------------------------- /core/aasp_includes/styles/jquery.wysiwyg.bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/aasp_includes/styles/jquery.wysiwyg.bg.png -------------------------------------------------------------------------------- /core/aasp_includes/styles/jquery.wysiwyg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/aasp_includes/styles/jquery.wysiwyg.gif -------------------------------------------------------------------------------- /core/aasp_includes/styles/jquery.wysiwyg.no-alpha.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/aasp_includes/styles/jquery.wysiwyg.no-alpha.gif -------------------------------------------------------------------------------- /core/backups/.htaccess: -------------------------------------------------------------------------------- 1 | IndexIgnore * -------------------------------------------------------------------------------- /core/backups/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/backups/index.html -------------------------------------------------------------------------------- /core/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/cache/index.html -------------------------------------------------------------------------------- /core/documents/alert.php: -------------------------------------------------------------------------------- 1 | 23 | 28 | We sincerely apologize for this."; 29 | ?> 30 | 31 | -------------------------------------------------------------------------------- /core/documents/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/documents/index.html -------------------------------------------------------------------------------- /core/documents/refundpolicy.php: -------------------------------------------------------------------------------- 1 | 23 | 29 | -------------------------------------------------------------------------------- /core/documents/termsofservice.php: -------------------------------------------------------------------------------- 1 | 23 | 29 | -------------------------------------------------------------------------------- /core/includes/.htaccess: -------------------------------------------------------------------------------- 1 | IndexIgnore * -------------------------------------------------------------------------------- /core/includes/classes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/includes/classes/index.html -------------------------------------------------------------------------------- /core/includes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/includes/index.html -------------------------------------------------------------------------------- /core/includes/lang/enGB/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Home 4 | My Account 5 | Vote 6 | Donate 7 | Account Panel 8 | Change Password 9 | Latest News 10 | Vote Shop 11 | Donation Shop 12 | Refer-A-Friend 13 | Admin Panel 14 | Register 15 | Forgot Password 16 | Character Unstuck 17 | 18 | 19 | 20 | Account Management 21 | Server Status 22 | Services 23 | Character Services 24 | Account Services 25 | Settings 26 | Unstuck 27 | Revive 28 | Teleport 29 | -------------------------------------------------------------------------------- /core/includes/lang/ptPT/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Home 4 | My Account 5 | Vote 6 | Donate 7 | Account Panel 8 | Change Password 9 | Latest News 10 | Vote Shop 11 | Donation Shop 12 | Refer-A-Friend 13 | Admin Panel 14 | Register 15 | Forgot Password 16 | Character Unstuck 17 | 18 | 19 | 20 | Account Management 21 | Server Status 22 | Services 23 | Character Services 24 | Account Services 25 | Settings 26 | Unstuck 27 | Revive 28 | Teleport 29 | -------------------------------------------------------------------------------- /core/includes/misc/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/includes/misc/arial.ttf -------------------------------------------------------------------------------- /core/includes/misc/captcha.php: -------------------------------------------------------------------------------- 1 | getCaptcha(); 27 | -------------------------------------------------------------------------------- /core/includes/misc/headers.php: -------------------------------------------------------------------------------- 1 | Notice: '; 29 | echo $alert_message; 30 | echo ''; 31 | } 32 | ?> -------------------------------------------------------------------------------- /core/modules/content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/modules/content.php -------------------------------------------------------------------------------- /core/modules/footer.php: -------------------------------------------------------------------------------- 1 | "; 28 | } 29 | echo "© Nomsoft 2011-2012
"; 30 | echo DATA['website']['footer']; 31 | ?> -------------------------------------------------------------------------------- /core/modules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/modules/index.html -------------------------------------------------------------------------------- /core/modules/server_status.php: -------------------------------------------------------------------------------- 1 | 24 |
25 | Loading Server status... 26 |
27 | -------------------------------------------------------------------------------- /core/pages/.htaccess: -------------------------------------------------------------------------------- 1 | IndexIgnore * -------------------------------------------------------------------------------- /core/pages/404.php: -------------------------------------------------------------------------------- 1 | 22 |

Page not found

23 | Sorry, but the requested page was not found!

24 | » Back to the homepage
25 | » Back to the previous page -------------------------------------------------------------------------------- /core/pages/home.php: -------------------------------------------------------------------------------- 1 | getNews(); 24 | 25 | if ( DATA['use']['slideshow'] == false && DATA['website']['news']['enable'] == false ) 26 | { 27 | buildError("Configuration file error.Neither the slideshow or the news are displayed, the homepage will be empty."); 28 | echo "Seems like the homepage was empty!"; 29 | } 30 | ?> 31 | -------------------------------------------------------------------------------- /core/pages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/pages/index.html -------------------------------------------------------------------------------- /core/pages/logout.php: -------------------------------------------------------------------------------- 1 | isNotLoggedIn(); 25 | 26 | echo "

Logout

"; 27 | 28 | $Account->logOut($_GET['last_page']); -------------------------------------------------------------------------------- /core/pages/vote.php: -------------------------------------------------------------------------------- 1 | isNotLoggedIn(); 24 | ?> 25 | 26 |
Vote
27 | 28 |

Vote Points: loadVP($_SESSION['cw_user']); ?>

29 | 30 | loadVotingLinks(); ?> -------------------------------------------------------------------------------- /core/plugins/currencyconvert/info.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/plugins/currencyconvert/javascript/convert.js: -------------------------------------------------------------------------------- 1 | function calcConvert(divide) 2 | { 3 | var vp = document.getElementById("conv_vp").value; 4 | var dp = Math.floor(vp / divide); 5 | $("#conv_dp").val(dp); 6 | } -------------------------------------------------------------------------------- /core/plugins/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/plugins/index.html -------------------------------------------------------------------------------- /core/plugins/playersonline/info.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /core/styles/bananas/images/account_func_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/bananas/images/account_func_bg.png -------------------------------------------------------------------------------- /core/styles/bananas/images/account_func_bg_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/bananas/images/account_func_bg_hover.png -------------------------------------------------------------------------------- /core/styles/bananas/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/bananas/images/arrow.png -------------------------------------------------------------------------------- /core/styles/bananas/images/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/bananas/images/arrows.png -------------------------------------------------------------------------------- /core/styles/bananas/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/bananas/images/bg.jpg -------------------------------------------------------------------------------- /core/styles/bananas/images/botBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/bananas/images/botBar.png -------------------------------------------------------------------------------- /core/styles/bananas/images/box_one_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/bananas/images/box_one_title.png -------------------------------------------------------------------------------- /core/styles/bananas/images/bullets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/bananas/images/bullets.png -------------------------------------------------------------------------------- /core/styles/bananas/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/bananas/images/close.png -------------------------------------------------------------------------------- /core/styles/bananas/images/content_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/bananas/images/content_bg.png -------------------------------------------------------------------------------- /core/styles/bananas/images/content_left_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/bananas/images/content_left_bg.png -------------------------------------------------------------------------------- /core/styles/bananas/images/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/bananas/images/donate.png -------------------------------------------------------------------------------- /core/styles/bananas/images/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/bananas/images/index.html -------------------------------------------------------------------------------- /core/styles/bananas/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/bananas/images/loading.gif -------------------------------------------------------------------------------- /core/styles/bananas/images/menu_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/bananas/images/menu_bg.png -------------------------------------------------------------------------------- /core/styles/bananas/images/menu_item_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/bananas/images/menu_item_hover.png -------------------------------------------------------------------------------- /core/styles/bananas/images/popupCloseBtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/bananas/images/popupCloseBtn.png -------------------------------------------------------------------------------- /core/styles/bananas/images/post_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/bananas/images/post_page.png -------------------------------------------------------------------------------- /core/styles/bananas/images/srv_status_alliance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/bananas/images/srv_status_alliance.png -------------------------------------------------------------------------------- /core/styles/bananas/images/srv_status_horde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/bananas/images/srv_status_horde.png -------------------------------------------------------------------------------- /core/styles/bananas/images/submit_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/bananas/images/submit_bg.png -------------------------------------------------------------------------------- /core/styles/bananas/images/submit_bg_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/bananas/images/submit_bg_hover.png -------------------------------------------------------------------------------- /core/styles/bananas/images/topBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/bananas/images/topBar.png -------------------------------------------------------------------------------- /core/styles/bananas/images/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/bananas/images/unknown.png -------------------------------------------------------------------------------- /core/styles/bananas/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/bananas/index.html -------------------------------------------------------------------------------- /core/styles/default/images/_notes/bg.jpg.mno: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /core/styles/default/images/account_func_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default/images/account_func_bg.png -------------------------------------------------------------------------------- /core/styles/default/images/account_func_bg_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default/images/account_func_bg_hover.png -------------------------------------------------------------------------------- /core/styles/default/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default/images/arrow.png -------------------------------------------------------------------------------- /core/styles/default/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default/images/bg.jpg -------------------------------------------------------------------------------- /core/styles/default/images/botBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default/images/botBar.png -------------------------------------------------------------------------------- /core/styles/default/images/box_one_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default/images/box_one_title.png -------------------------------------------------------------------------------- /core/styles/default/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default/images/close.png -------------------------------------------------------------------------------- /core/styles/default/images/content_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default/images/content_bg.png -------------------------------------------------------------------------------- /core/styles/default/images/content_left_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default/images/content_left_bg.png -------------------------------------------------------------------------------- /core/styles/default/images/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default/images/donate.png -------------------------------------------------------------------------------- /core/styles/default/images/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default/images/index.html -------------------------------------------------------------------------------- /core/styles/default/images/menu_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default/images/menu_bg.png -------------------------------------------------------------------------------- /core/styles/default/images/menu_item_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default/images/menu_item_hover.png -------------------------------------------------------------------------------- /core/styles/default/images/popupCloseBtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default/images/popupCloseBtn.png -------------------------------------------------------------------------------- /core/styles/default/images/post_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default/images/post_page.png -------------------------------------------------------------------------------- /core/styles/default/images/srv_status_alliance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default/images/srv_status_alliance.png -------------------------------------------------------------------------------- /core/styles/default/images/srv_status_horde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default/images/srv_status_horde.png -------------------------------------------------------------------------------- /core/styles/default/images/submit_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default/images/submit_bg.png -------------------------------------------------------------------------------- /core/styles/default/images/submit_bg_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default/images/submit_bg_hover.png -------------------------------------------------------------------------------- /core/styles/default/images/topBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default/images/topBar.png -------------------------------------------------------------------------------- /core/styles/default/images/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default/images/unknown.png -------------------------------------------------------------------------------- /core/styles/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default/index.html -------------------------------------------------------------------------------- /core/styles/default/template.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 8 | 9 | 12 | 13 | {alert} 14 | 15 |
16 | {slideshow} 17 | 18 |
19 | {content} 20 |
21 | 22 | 25 | 26 |
27 | 28 |
29 | {login} 30 | {account} 31 | {serverstatus} 32 | {social} 33 |
34 | 35 |
36 | 37 | {loadjava} 38 | 39 | -------------------------------------------------------------------------------- /core/styles/default_bootstrap/images/_notes/bg.jpg.mno: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /core/styles/default_bootstrap/images/account_func_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default_bootstrap/images/account_func_bg.png -------------------------------------------------------------------------------- /core/styles/default_bootstrap/images/account_func_bg_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default_bootstrap/images/account_func_bg_hover.png -------------------------------------------------------------------------------- /core/styles/default_bootstrap/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default_bootstrap/images/arrow.png -------------------------------------------------------------------------------- /core/styles/default_bootstrap/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default_bootstrap/images/bg.jpg -------------------------------------------------------------------------------- /core/styles/default_bootstrap/images/botBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default_bootstrap/images/botBar.png -------------------------------------------------------------------------------- /core/styles/default_bootstrap/images/box_one_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default_bootstrap/images/box_one_title.png -------------------------------------------------------------------------------- /core/styles/default_bootstrap/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default_bootstrap/images/close.png -------------------------------------------------------------------------------- /core/styles/default_bootstrap/images/content_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default_bootstrap/images/content_bg.png -------------------------------------------------------------------------------- /core/styles/default_bootstrap/images/content_left_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default_bootstrap/images/content_left_bg.png -------------------------------------------------------------------------------- /core/styles/default_bootstrap/images/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default_bootstrap/images/donate.png -------------------------------------------------------------------------------- /core/styles/default_bootstrap/images/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default_bootstrap/images/index.html -------------------------------------------------------------------------------- /core/styles/default_bootstrap/images/menu_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default_bootstrap/images/menu_bg.png -------------------------------------------------------------------------------- /core/styles/default_bootstrap/images/menu_item_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default_bootstrap/images/menu_item_hover.png -------------------------------------------------------------------------------- /core/styles/default_bootstrap/images/popupCloseBtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default_bootstrap/images/popupCloseBtn.png -------------------------------------------------------------------------------- /core/styles/default_bootstrap/images/post_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default_bootstrap/images/post_page.png -------------------------------------------------------------------------------- /core/styles/default_bootstrap/images/srv_status_alliance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default_bootstrap/images/srv_status_alliance.png -------------------------------------------------------------------------------- /core/styles/default_bootstrap/images/srv_status_horde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default_bootstrap/images/srv_status_horde.png -------------------------------------------------------------------------------- /core/styles/default_bootstrap/images/submit_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default_bootstrap/images/submit_bg.png -------------------------------------------------------------------------------- /core/styles/default_bootstrap/images/submit_bg_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default_bootstrap/images/submit_bg_hover.png -------------------------------------------------------------------------------- /core/styles/default_bootstrap/images/topBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default_bootstrap/images/topBar.png -------------------------------------------------------------------------------- /core/styles/default_bootstrap/images/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default_bootstrap/images/unknown.png -------------------------------------------------------------------------------- /core/styles/default_bootstrap/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/default_bootstrap/index.html -------------------------------------------------------------------------------- /core/styles/default_bootstrap/template.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | 9 |
10 | {alert} 11 |
12 |
13 |
14 |
15 |
16 | {slideshow} 17 | {content} 18 |
19 |
20 | {login} 21 | {account} 22 | {serverstatus} 23 | {social} 24 |
25 |
26 |
27 |
28 | {footer} 29 |
30 | {loadjava} 31 |
32 | -------------------------------------------------------------------------------- /core/styles/global/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/ajax-loader.gif -------------------------------------------------------------------------------- /core/styles/global/images/icon_border_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icon_border_large.png -------------------------------------------------------------------------------- /core/styles/global/images/icon_border_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icon_border_medium.png -------------------------------------------------------------------------------- /core/styles/global/images/icons/appearance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/appearance.png -------------------------------------------------------------------------------- /core/styles/global/images/icons/arena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/arena.png -------------------------------------------------------------------------------- /core/styles/global/images/icons/character_migration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/character_migration.png -------------------------------------------------------------------------------- /core/styles/global/images/icons/class/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/class/1.gif -------------------------------------------------------------------------------- /core/styles/global/images/icons/class/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/class/11.gif -------------------------------------------------------------------------------- /core/styles/global/images/icons/class/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/class/2.gif -------------------------------------------------------------------------------- /core/styles/global/images/icons/class/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/class/3.gif -------------------------------------------------------------------------------- /core/styles/global/images/icons/class/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/class/4.gif -------------------------------------------------------------------------------- /core/styles/global/images/icons/class/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/class/5.gif -------------------------------------------------------------------------------- /core/styles/global/images/icons/class/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/class/6.gif -------------------------------------------------------------------------------- /core/styles/global/images/icons/class/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/class/7.gif -------------------------------------------------------------------------------- /core/styles/global/images/icons/class/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/class/8.gif -------------------------------------------------------------------------------- /core/styles/global/images/icons/class/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/class/9.gif -------------------------------------------------------------------------------- /core/styles/global/images/icons/faction/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/faction/0.gif -------------------------------------------------------------------------------- /core/styles/global/images/icons/faction/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/faction/1.gif -------------------------------------------------------------------------------- /core/styles/global/images/icons/factions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/factions.png -------------------------------------------------------------------------------- /core/styles/global/images/icons/gift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/gift.png -------------------------------------------------------------------------------- /core/styles/global/images/icons/name_change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/name_change.png -------------------------------------------------------------------------------- /core/styles/global/images/icons/omen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/omen.png -------------------------------------------------------------------------------- /core/styles/global/images/icons/parental.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/parental.png -------------------------------------------------------------------------------- /core/styles/global/images/icons/ptr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/ptr.png -------------------------------------------------------------------------------- /core/styles/global/images/icons/race/1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/race/1-0.gif -------------------------------------------------------------------------------- /core/styles/global/images/icons/race/1-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/race/1-1.gif -------------------------------------------------------------------------------- /core/styles/global/images/icons/race/10-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/race/10-0.gif -------------------------------------------------------------------------------- /core/styles/global/images/icons/race/10-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/race/10-1.gif -------------------------------------------------------------------------------- /core/styles/global/images/icons/race/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/race/10.gif -------------------------------------------------------------------------------- /core/styles/global/images/icons/race/11-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/race/11-0.gif -------------------------------------------------------------------------------- /core/styles/global/images/icons/race/11-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/race/11-1.gif -------------------------------------------------------------------------------- /core/styles/global/images/icons/race/2-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/race/2-0.gif -------------------------------------------------------------------------------- /core/styles/global/images/icons/race/2-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/race/2-1.gif -------------------------------------------------------------------------------- /core/styles/global/images/icons/race/3-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/race/3-0.gif -------------------------------------------------------------------------------- /core/styles/global/images/icons/race/3-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/race/3-1.gif -------------------------------------------------------------------------------- /core/styles/global/images/icons/race/4-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/race/4-0.gif -------------------------------------------------------------------------------- /core/styles/global/images/icons/race/4-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/race/4-1.gif -------------------------------------------------------------------------------- /core/styles/global/images/icons/race/5-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/race/5-0.gif -------------------------------------------------------------------------------- /core/styles/global/images/icons/race/5-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/race/5-1.gif -------------------------------------------------------------------------------- /core/styles/global/images/icons/race/6-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/race/6-0.gif -------------------------------------------------------------------------------- /core/styles/global/images/icons/race/6-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/race/6-1.gif -------------------------------------------------------------------------------- /core/styles/global/images/icons/race/7-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/race/7-0.gif -------------------------------------------------------------------------------- /core/styles/global/images/icons/race/7-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/race/7-1.gif -------------------------------------------------------------------------------- /core/styles/global/images/icons/race/8-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/race/8-0.gif -------------------------------------------------------------------------------- /core/styles/global/images/icons/race/8-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/race/8-1.gif -------------------------------------------------------------------------------- /core/styles/global/images/icons/race_change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/race_change.png -------------------------------------------------------------------------------- /core/styles/global/images/icons/raf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/raf.png -------------------------------------------------------------------------------- /core/styles/global/images/icons/revive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/revive.png -------------------------------------------------------------------------------- /core/styles/global/images/icons/spell_arcane_portaldalaran.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/spell_arcane_portaldalaran.jpg -------------------------------------------------------------------------------- /core/styles/global/images/icons/spell_arcane_portaldarnassus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/spell_arcane_portaldarnassus.jpg -------------------------------------------------------------------------------- /core/styles/global/images/icons/spell_arcane_portalexodar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/spell_arcane_portalexodar.jpg -------------------------------------------------------------------------------- /core/styles/global/images/icons/spell_arcane_portalironforge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/spell_arcane_portalironforge.jpg -------------------------------------------------------------------------------- /core/styles/global/images/icons/spell_arcane_portalorgrimmar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/spell_arcane_portalorgrimmar.jpg -------------------------------------------------------------------------------- /core/styles/global/images/icons/spell_arcane_portalshattrath.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/spell_arcane_portalshattrath.jpg -------------------------------------------------------------------------------- /core/styles/global/images/icons/spell_arcane_portalsilvermoon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/spell_arcane_portalsilvermoon.jpg -------------------------------------------------------------------------------- /core/styles/global/images/icons/spell_arcane_portalstonard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/spell_arcane_portalstonard.jpg -------------------------------------------------------------------------------- /core/styles/global/images/icons/spell_arcane_portalstormwind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/spell_arcane_portalstormwind.jpg -------------------------------------------------------------------------------- /core/styles/global/images/icons/spell_arcane_portaltheramore.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/spell_arcane_portaltheramore.jpg -------------------------------------------------------------------------------- /core/styles/global/images/icons/spell_arcane_portalthunderbluff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/spell_arcane_portalthunderbluff.jpg -------------------------------------------------------------------------------- /core/styles/global/images/icons/spell_arcane_portalundercity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/spell_arcane_portalundercity.jpg -------------------------------------------------------------------------------- /core/styles/global/images/icons/spell_arcane_teleportdalaran.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/spell_arcane_teleportdalaran.jpg -------------------------------------------------------------------------------- /core/styles/global/images/icons/spell_arcane_teleportdarnassus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/spell_arcane_teleportdarnassus.jpg -------------------------------------------------------------------------------- /core/styles/global/images/icons/spell_arcane_teleportexodar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/spell_arcane_teleportexodar.jpg -------------------------------------------------------------------------------- /core/styles/global/images/icons/spell_arcane_teleportironforge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/spell_arcane_teleportironforge.jpg -------------------------------------------------------------------------------- /core/styles/global/images/icons/spell_arcane_teleportmoonglade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/spell_arcane_teleportmoonglade.jpg -------------------------------------------------------------------------------- /core/styles/global/images/icons/spell_arcane_teleportorgrimmar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/spell_arcane_teleportorgrimmar.jpg -------------------------------------------------------------------------------- /core/styles/global/images/icons/spell_arcane_teleportshattrath.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/spell_arcane_teleportshattrath.jpg -------------------------------------------------------------------------------- /core/styles/global/images/icons/spell_arcane_teleportsilvermoon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/spell_arcane_teleportsilvermoon.jpg -------------------------------------------------------------------------------- /core/styles/global/images/icons/spell_arcane_teleportstonard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/spell_arcane_teleportstonard.jpg -------------------------------------------------------------------------------- /core/styles/global/images/icons/spell_arcane_teleportstormwind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/spell_arcane_teleportstormwind.jpg -------------------------------------------------------------------------------- /core/styles/global/images/icons/spell_arcane_teleporttheramore.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/spell_arcane_teleporttheramore.jpg -------------------------------------------------------------------------------- /core/styles/global/images/icons/spell_arcane_teleportthunderbluff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/spell_arcane_teleportthunderbluff.jpg -------------------------------------------------------------------------------- /core/styles/global/images/icons/spell_arcane_teleportundercity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/spell_arcane_teleportundercity.jpg -------------------------------------------------------------------------------- /core/styles/global/images/icons/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/time.png -------------------------------------------------------------------------------- /core/styles/global/images/icons/transfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/transfer.png -------------------------------------------------------------------------------- /core/styles/global/images/icons/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/visa.png -------------------------------------------------------------------------------- /core/styles/global/images/icons/wow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/icons/wow.png -------------------------------------------------------------------------------- /core/styles/global/images/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/index.html -------------------------------------------------------------------------------- /core/styles/global/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/logo.png -------------------------------------------------------------------------------- /core/styles/global/images/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/overlay.png -------------------------------------------------------------------------------- /core/styles/global/images/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/paypal.png -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-1-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-1-1.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-1-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-1-2.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-1-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-1-4.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-1-5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-1-5.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-1-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-1-6.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-1-8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-1-8.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-1-9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-1-9.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-10-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-10-2.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-10-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-10-3.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-10-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-10-4.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-10-5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-10-5.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-10-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-10-6.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-10-8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-10-8.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-10-9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-10-9.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-11-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-11-1.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-11-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-11-2.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-11-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-11-3.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-11-5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-11-5.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-11-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-11-6.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-11-7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-11-7.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-11-8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-11-8.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-2-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-2-1.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-2-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-2-3.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-2-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-2-4.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-2-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-2-6.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-2-7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-2-7.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-2-9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-2-9.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-3-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-3-1.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-3-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-3-2.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-3-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-3-3.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-3-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-3-4.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-3-5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-3-5.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-3-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-3-6.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-4-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-4-1.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-4-11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-4-11.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-4-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-4-3.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-4-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-4-4.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-4-5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-4-5.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-4-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-4-6.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-5-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-5-1.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-5-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-5-4.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-5-5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-5-5.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-5-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-5-6.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-5-8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-5-8.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-5-9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-5-9.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-6-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-6-1.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-6-11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-6-11.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-6-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-6-3.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-6-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-6-6.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-6-7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-6-7.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-7-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-7-1.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-7-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-7-4.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-7-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-7-6.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-7-8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-7-8.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-7-9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-7-9.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-8-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-8-1.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-8-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-8-3.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-8-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-8-4.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-8-5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-8-5.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-8-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-8-6.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-8-7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-8-7.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/0-8-8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/0-8-8.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-1-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-1-1.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-1-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-1-2.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-1-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-1-4.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-1-5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-1-5.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-1-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-1-6.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-1-8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-1-8.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-1-9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-1-9.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-10-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-10-2.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-10-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-10-3.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-10-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-10-4.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-10-5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-10-5.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-10-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-10-6.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-10-8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-10-8.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-10-9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-10-9.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-11-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-11-1.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-11-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-11-2.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-11-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-11-3.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-11-5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-11-5.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-11-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-11-6.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-11-7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-11-7.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-11-8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-11-8.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-2-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-2-1.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-2-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-2-3.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-2-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-2-4.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-2-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-2-6.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-2-7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-2-7.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-2-9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-2-9.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-3-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-3-1.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-3-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-3-2.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-3-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-3-3.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-3-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-3-4.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-3-5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-3-5.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-3-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-3-6.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-4-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-4-1.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-4-11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-4-11.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-4-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-4-3.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-4-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-4-4.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-4-5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-4-5.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-4-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-4-6.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-5-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-5-1.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-5-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-5-4.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-5-5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-5-5.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-5-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-5-6.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-5-8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-5-8.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-5-9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-5-9.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-6-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-6-1.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-6-11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-6-11.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-6-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-6-3.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-6-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-6-6.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-6-7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-6-7.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-7-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-7-1.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-7-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-7-4.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-7-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-7-6.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-7-8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-7-8.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-7-9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-7-9.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-8-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-8-1.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-8-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-8-3.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-8-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-8-4.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-8-5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-8-5.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-8-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-8-6.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-8-7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-8-7.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/1-8-8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/1-8-8.gif -------------------------------------------------------------------------------- /core/styles/global/images/portraits/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/portraits/index.html -------------------------------------------------------------------------------- /core/styles/global/images/typo/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/typo/accept.png -------------------------------------------------------------------------------- /core/styles/global/images/typo/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/typo/alert.png -------------------------------------------------------------------------------- /core/styles/global/images/typo/approved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/typo/approved.png -------------------------------------------------------------------------------- /core/styles/global/images/typo/attention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/typo/attention.png -------------------------------------------------------------------------------- /core/styles/global/images/typo/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/typo/camera.png -------------------------------------------------------------------------------- /core/styles/global/images/typo/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/typo/cart.png -------------------------------------------------------------------------------- /core/styles/global/images/typo/coins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/typo/coins.png -------------------------------------------------------------------------------- /core/styles/global/images/typo/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/typo/doc.png -------------------------------------------------------------------------------- /core/styles/global/images/typo/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/typo/download.png -------------------------------------------------------------------------------- /core/styles/global/images/typo/email.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/typo/email.jpeg -------------------------------------------------------------------------------- /core/styles/global/images/typo/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/typo/email.png -------------------------------------------------------------------------------- /core/styles/global/images/typo/media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/typo/media.png -------------------------------------------------------------------------------- /core/styles/global/images/typo/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/typo/note.png -------------------------------------------------------------------------------- /core/styles/global/images/typo/notice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/images/typo/notice.png -------------------------------------------------------------------------------- /core/styles/global/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/index.html -------------------------------------------------------------------------------- /core/styles/global/slideshow/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/slideshow/images/1.jpg -------------------------------------------------------------------------------- /core/styles/global/slideshow/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/slideshow/images/2.jpg -------------------------------------------------------------------------------- /core/styles/global/slideshow/images/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global/slideshow/images/index.html -------------------------------------------------------------------------------- /core/styles/global/template.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 8 | 9 | 12 | 13 | {alert} 14 | 15 |
16 | {slideshow} 17 | 18 |
19 | {content} 20 |
21 | 22 | 25 | 26 |
27 | 28 |
29 | {login} 30 | {account} 31 | {serverstatus} 32 | {social} 33 |
34 | 35 |
36 | 37 | {loadjava} 38 | 39 | -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/ajax-loader.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icon_border_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icon_border_large.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icon_border_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icon_border_medium.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/appearance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/appearance.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/arena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/arena.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/character_migration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/character_migration.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/class/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/class/1.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/class/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/class/11.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/class/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/class/2.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/class/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/class/3.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/class/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/class/4.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/class/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/class/5.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/class/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/class/6.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/class/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/class/7.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/class/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/class/8.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/class/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/class/9.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/faction/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/faction/0.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/faction/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/faction/1.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/factions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/factions.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/gift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/gift.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/name_change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/name_change.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/omen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/omen.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/parental.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/parental.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/ptr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/ptr.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/race/1-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/race/1-0.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/race/1-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/race/1-1.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/race/10-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/race/10-0.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/race/10-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/race/10-1.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/race/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/race/10.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/race/11-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/race/11-0.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/race/11-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/race/11-1.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/race/2-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/race/2-0.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/race/2-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/race/2-1.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/race/3-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/race/3-0.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/race/3-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/race/3-1.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/race/4-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/race/4-0.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/race/4-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/race/4-1.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/race/5-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/race/5-0.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/race/5-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/race/5-1.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/race/6-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/race/6-0.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/race/6-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/race/6-1.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/race/7-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/race/7-0.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/race/7-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/race/7-1.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/race/8-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/race/8-0.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/race/8-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/race/8-1.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/race_change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/race_change.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/raf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/raf.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/revive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/revive.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/spell_arcane_portaldalaran.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/spell_arcane_portaldalaran.jpg -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/spell_arcane_portaldarnassus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/spell_arcane_portaldarnassus.jpg -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/spell_arcane_portalexodar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/spell_arcane_portalexodar.jpg -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/spell_arcane_portalironforge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/spell_arcane_portalironforge.jpg -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/spell_arcane_portalorgrimmar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/spell_arcane_portalorgrimmar.jpg -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/spell_arcane_portalshattrath.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/spell_arcane_portalshattrath.jpg -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/spell_arcane_portalsilvermoon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/spell_arcane_portalsilvermoon.jpg -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/spell_arcane_portalstonard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/spell_arcane_portalstonard.jpg -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/spell_arcane_portalstormwind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/spell_arcane_portalstormwind.jpg -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/spell_arcane_portaltheramore.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/spell_arcane_portaltheramore.jpg -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/spell_arcane_portalthunderbluff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/spell_arcane_portalthunderbluff.jpg -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/spell_arcane_portalundercity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/spell_arcane_portalundercity.jpg -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/spell_arcane_teleportdalaran.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/spell_arcane_teleportdalaran.jpg -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/spell_arcane_teleportdarnassus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/spell_arcane_teleportdarnassus.jpg -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/spell_arcane_teleportexodar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/spell_arcane_teleportexodar.jpg -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/spell_arcane_teleportironforge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/spell_arcane_teleportironforge.jpg -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/spell_arcane_teleportmoonglade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/spell_arcane_teleportmoonglade.jpg -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/spell_arcane_teleportorgrimmar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/spell_arcane_teleportorgrimmar.jpg -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/spell_arcane_teleportshattrath.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/spell_arcane_teleportshattrath.jpg -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/spell_arcane_teleportsilvermoon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/spell_arcane_teleportsilvermoon.jpg -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/spell_arcane_teleportstonard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/spell_arcane_teleportstonard.jpg -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/spell_arcane_teleportstormwind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/spell_arcane_teleportstormwind.jpg -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/spell_arcane_teleporttheramore.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/spell_arcane_teleporttheramore.jpg -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/spell_arcane_teleportthunderbluff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/spell_arcane_teleportthunderbluff.jpg -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/spell_arcane_teleportundercity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/spell_arcane_teleportundercity.jpg -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/time.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/transfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/transfer.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/visa.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/icons/wow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/icons/wow.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/index.html -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/logo.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/overlay.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/paypal.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-1-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-1-1.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-1-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-1-2.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-1-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-1-4.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-1-5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-1-5.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-1-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-1-6.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-1-8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-1-8.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-1-9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-1-9.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-10-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-10-2.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-10-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-10-3.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-10-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-10-4.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-10-5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-10-5.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-10-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-10-6.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-10-8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-10-8.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-10-9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-10-9.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-11-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-11-1.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-11-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-11-2.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-11-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-11-3.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-11-5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-11-5.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-11-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-11-6.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-11-7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-11-7.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-11-8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-11-8.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-2-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-2-1.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-2-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-2-3.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-2-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-2-4.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-2-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-2-6.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-2-7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-2-7.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-2-9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-2-9.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-3-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-3-1.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-3-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-3-2.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-3-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-3-3.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-3-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-3-4.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-3-5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-3-5.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-3-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-3-6.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-4-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-4-1.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-4-11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-4-11.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-4-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-4-3.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-4-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-4-4.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-4-5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-4-5.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-4-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-4-6.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-5-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-5-1.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-5-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-5-4.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-5-5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-5-5.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-5-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-5-6.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-5-8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-5-8.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-5-9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-5-9.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-6-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-6-1.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-6-11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-6-11.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-6-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-6-3.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-6-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-6-6.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-6-7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-6-7.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-7-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-7-1.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-7-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-7-4.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-7-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-7-6.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-7-8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-7-8.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-7-9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-7-9.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-8-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-8-1.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-8-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-8-3.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-8-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-8-4.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-8-5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-8-5.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-8-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-8-6.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-8-7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-8-7.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/0-8-8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/0-8-8.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-1-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-1-1.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-1-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-1-2.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-1-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-1-4.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-1-5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-1-5.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-1-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-1-6.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-1-8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-1-8.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-1-9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-1-9.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-10-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-10-2.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-10-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-10-3.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-10-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-10-4.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-10-5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-10-5.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-10-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-10-6.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-10-8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-10-8.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-10-9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-10-9.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-11-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-11-1.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-11-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-11-2.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-11-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-11-3.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-11-5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-11-5.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-11-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-11-6.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-11-7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-11-7.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-11-8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-11-8.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-2-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-2-1.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-2-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-2-3.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-2-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-2-4.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-2-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-2-6.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-2-7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-2-7.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-2-9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-2-9.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-3-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-3-1.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-3-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-3-2.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-3-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-3-3.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-3-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-3-4.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-3-5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-3-5.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-3-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-3-6.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-4-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-4-1.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-4-11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-4-11.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-4-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-4-3.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-4-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-4-4.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-4-5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-4-5.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-4-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-4-6.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-5-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-5-1.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-5-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-5-4.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-5-5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-5-5.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-5-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-5-6.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-5-8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-5-8.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-5-9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-5-9.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-6-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-6-1.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-6-11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-6-11.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-6-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-6-3.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-6-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-6-6.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-6-7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-6-7.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-7-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-7-1.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-7-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-7-4.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-7-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-7-6.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-7-8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-7-8.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-7-9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-7-9.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-8-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-8-1.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-8-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-8-3.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-8-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-8-4.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-8-5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-8-5.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-8-6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-8-6.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-8-7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-8-7.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/1-8-8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/1-8-8.gif -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/portraits/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/portraits/index.html -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/typo/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/typo/accept.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/typo/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/typo/alert.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/typo/approved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/typo/approved.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/typo/attention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/typo/attention.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/typo/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/typo/camera.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/typo/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/typo/cart.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/typo/coins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/typo/coins.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/typo/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/typo/doc.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/typo/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/typo/download.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/typo/email.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/typo/email.jpeg -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/typo/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/typo/email.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/typo/media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/typo/media.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/typo/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/typo/note.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/images/typo/notice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/images/typo/notice.png -------------------------------------------------------------------------------- /core/styles/global_bootstrap/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/index.html -------------------------------------------------------------------------------- /core/styles/global_bootstrap/slideshow/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/slideshow/images/1.jpg -------------------------------------------------------------------------------- /core/styles/global_bootstrap/slideshow/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/slideshow/images/2.jpg -------------------------------------------------------------------------------- /core/styles/global_bootstrap/slideshow/images/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/global_bootstrap/slideshow/images/index.html -------------------------------------------------------------------------------- /core/styles/global_bootstrap/style.css: -------------------------------------------------------------------------------- 1 | #overlay { margin-top: -20px; position: absolute; overflow: hidden; width: 100%; height: 99%; background-color:#000; opacity: 0.78; z-index: 98; display:none; 2 | } -------------------------------------------------------------------------------- /core/styles/global_bootstrap/template.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 8 | 9 | 12 | 13 | {alert} 14 | 15 |
16 | {slideshow} 17 | 18 |
19 | {content} 20 |
21 | 22 | 25 | 26 |
27 | 28 |
29 | {login} 30 | {account} 31 | {serverstatus} 32 | {social} 33 |
34 | 35 |
36 | 37 | {loadjava} 38 | 39 | -------------------------------------------------------------------------------- /core/styles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/core/styles/index.html -------------------------------------------------------------------------------- /install/sql/.htaccess: -------------------------------------------------------------------------------- 1 | IndexIgnore * -------------------------------------------------------------------------------- /install/sql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/install/sql/index.html -------------------------------------------------------------------------------- /install/sql/updates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/install/sql/updates/index.html -------------------------------------------------------------------------------- /preview/installer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/preview/installer.png -------------------------------------------------------------------------------- /staff/includes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandre433/CraftedWeb/f06d5168347974739f32a7fc7526d008762cf21e/staff/includes/index.html --------------------------------------------------------------------------------