├── CombatReport.php ├── Database MySql ├── Database.sql └── mysql.sql ├── README.md ├── admin.php ├── cache ├── .htaccess ├── cache.language.php ├── cache.vars.php ├── pt^ecf215debffd9104ad4cdc01fed530259ac7c7d8.extends.page.index.default.tpl.cache.php └── templates │ └── pt^ecf215debffd9104ad4cdc01fed530259ac7c7d8.page.index.default.tpl.php ├── chat ├── css │ ├── 2Moons.css │ ├── Cobalt.css │ ├── Core.css │ ├── Lithium.css │ ├── Mercury.css │ ├── MyBB.css │ ├── Oxygen.css │ ├── Plum.css │ ├── Sulfur.css │ ├── Uranium.css │ ├── beige.css │ ├── black.css │ ├── borders.css │ ├── fonts.css │ ├── global.css │ ├── grey.css │ ├── ie5-6.css │ ├── index.html │ ├── misc.css │ ├── plum_images │ │ ├── plum.png │ │ └── plum2.png │ ├── positions.css │ ├── print.css │ ├── prosilver.css │ ├── shoutbox.css │ ├── subSilver.css │ ├── subblack2.css │ └── vBulletin.css ├── flash │ ├── FABridge.swf │ └── index.html ├── img │ ├── audio-off.png │ ├── audio.png │ ├── autoscroll-off.png │ ├── autoscroll.png │ ├── delete.png │ ├── emoticons │ │ ├── angel.png │ │ ├── confused.png │ │ ├── cool.png │ │ ├── crying.png │ │ ├── devilish.png │ │ ├── eek.png │ │ ├── error.png │ │ ├── favorite.png │ │ ├── glasses.png │ │ ├── grin.png │ │ ├── help.png │ │ ├── idea.png │ │ ├── important.png │ │ ├── index.html │ │ ├── kiss.png │ │ ├── monkey.png │ │ ├── plain.png │ │ ├── razz.png │ │ ├── sad.png │ │ ├── smile-big.png │ │ ├── smile.png │ │ ├── surprise.png │ │ ├── warning.png │ │ └── wink.png │ ├── help.png │ ├── index.html │ ├── license.txt │ ├── loading-done.png │ ├── loading-sprite.png │ ├── loading-trouble.png │ ├── loading.png │ ├── pixel.gif │ ├── playback.png │ ├── settings.png │ └── users.png ├── index.php ├── js │ ├── FABridge.js │ ├── chat.js │ ├── config.js │ ├── custom.js │ ├── index.html │ ├── lang │ │ ├── ar.js │ │ ├── bg.js │ │ ├── bp.js │ │ ├── ca.js │ │ ├── cy.js │ │ ├── cz.js │ │ ├── da.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en.js │ │ ├── es.js │ │ ├── et.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── he.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── in.js │ │ ├── index.html │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── kr.js │ │ ├── mk.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt-pt.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── uk.js │ │ ├── zh-tw.js │ │ └── zh.js │ ├── logs.js │ └── shoutbox.js ├── lib │ ├── .htaccess │ ├── class │ │ ├── AJAXChat.php │ │ ├── AJAXChatDataBase.php │ │ ├── AJAXChatEncoding.php │ │ ├── AJAXChatFileSystem.php │ │ ├── AJAXChatHTTPHeader.php │ │ ├── AJAXChatLanguage.php │ │ ├── AJAXChatMySQLDataBase.php │ │ ├── AJAXChatMySQLQuery.php │ │ ├── AJAXChatMySQLiDataBase.php │ │ ├── AJAXChatMySQLiQuery.php │ │ ├── AJAXChatString.php │ │ ├── AJAXChatTemplate.php │ │ ├── CustomAJAXChat.php │ │ ├── CustomAJAXChatInterface.php │ │ └── CustomAJAXChatShoutBox.php │ ├── classes.php │ ├── config.php │ ├── custom.php │ ├── data │ │ ├── channels.php │ │ └── users.php │ ├── lang │ │ ├── ar.php │ │ ├── bg.php │ │ ├── bp.php │ │ ├── ca.php │ │ ├── cy.php │ │ ├── cz.php │ │ ├── da.php │ │ ├── de.php │ │ ├── el.php │ │ ├── en.php │ │ ├── es.php │ │ ├── et.php │ │ ├── fi.php │ │ ├── fr.php │ │ ├── gl.php │ │ ├── he.php │ │ ├── hr.php │ │ ├── hu.php │ │ ├── in.php │ │ ├── it.php │ │ ├── ja.php │ │ ├── ka.php │ │ ├── kr.php │ │ ├── mk.php │ │ ├── nl.php │ │ ├── no.php │ │ ├── pl.php │ │ ├── pt-br.php │ │ ├── pt-pt.php │ │ ├── pt.php │ │ ├── ro.php │ │ ├── ru.php │ │ ├── sk.php │ │ ├── sl.php │ │ ├── sr.php │ │ ├── sv.php │ │ ├── th.php │ │ ├── tr.php │ │ ├── uk.php │ │ ├── zh-tw.php │ │ └── zh.php │ └── template │ │ ├── loggedIn.html │ │ ├── loggedOut.html │ │ ├── logs.html │ │ └── shoutbox.html ├── license.txt └── sounds │ ├── index.html │ ├── license.txt │ ├── sound_1.mp3 │ ├── sound_2.mp3 │ ├── sound_3.mp3 │ ├── sound_4.mp3 │ ├── sound_5.mp3 │ └── sound_6.mp3 ├── composer.json ├── composer.lock ├── create_table.php ├── cronjob.php ├── error_log ├── favicon.ico ├── game.php ├── includes ├── .htaccess ├── FleetHandler.php ├── GeneralFunctions.php ├── PlanetData.php ├── classes │ ├── ArrayUtil.class.php │ ├── Config.class.php │ ├── Cronjob.class.php │ ├── HTTP.class.php │ ├── HTTPRequest.class.php │ ├── Language.class.php │ ├── Mail.class.php │ ├── PlayerUtil.class.php │ ├── SQLDumper.class.php │ ├── cache │ │ ├── builder │ │ │ ├── BannedBuildCache.class.php │ │ │ ├── LanguageBuildCache.class.php │ │ │ ├── TeamspeakBuildCache.class.php │ │ │ └── VarsBuildCache.class.php │ │ └── ressource │ │ │ └── CacheFile.class.php │ ├── class.BBCode.php │ ├── class.BuildFunctions.php │ ├── class.Cache.php │ ├── class.Database.php │ ├── class.FleetFunctions.php │ ├── class.FlyingFleetHandler.php │ ├── class.FlyingFleetsTable.php │ ├── class.GalaxyRows.php │ ├── class.Log.php │ ├── class.MissionFunctions.php │ ├── class.PlanetRessUpdate.php │ ├── class.Session.php │ ├── class.StatBanner.php │ ├── class.StringParser.php │ ├── class.SupportTickets.php │ ├── class.paypal.php │ ├── class.statbuilder.php │ ├── class.template.php │ ├── class.theme.php │ ├── cronjob │ │ ├── CleanerCronjob.class.php │ │ ├── DailyCronjob.class.php │ │ ├── DumpCronjob.class.php │ │ ├── InactiveMailCronjob.class.php │ │ ├── ReferralCronjob.class.php │ │ ├── StatisticCronjob.class.php │ │ ├── TeamSpeakCronjob.class.php │ │ └── TrackingCronjob.class.php │ └── missions │ │ ├── GenerateReport.php │ │ ├── MissionCaseACS.php │ │ ├── MissionCaseAttack.php │ │ ├── MissionCaseColonisation.php │ │ ├── MissionCaseDestruction.php │ │ ├── MissionCaseExpedition.php │ │ ├── MissionCaseFoundDM.php │ │ ├── MissionCaseMIP.php │ │ ├── MissionCaseRecycling.php │ │ ├── MissionCaseSpy.php │ │ ├── MissionCaseStay.php │ │ ├── MissionCaseStayAlly.php │ │ ├── MissionCaseTransport.php │ │ ├── calculateAttack.php │ │ ├── calculateMIPAttack.php │ │ └── calculateSteal.php ├── common.php ├── config.php ├── config.sample.php ├── config_eloquent.php ├── constants.php ├── dbtables.php ├── error.log ├── extauth │ ├── facebook.class.php │ └── openid.class.php ├── functions │ ├── BBCode.php │ ├── CreateOneMoonRecord.php │ ├── CreateOnePlanetRecord.php │ └── DeleteSelectedUser.php ├── libs │ ├── OpenID │ │ └── openid.php │ ├── Smarty │ │ ├── COPYING.lib │ │ ├── Smarty.class.php │ │ ├── plugins │ │ │ ├── block.textformat.php │ │ │ ├── function.counter.php │ │ │ ├── function.cycle.php │ │ │ ├── function.fetch.php │ │ │ ├── function.html_checkboxes.php │ │ │ ├── function.html_image.php │ │ │ ├── function.html_options.php │ │ │ ├── function.html_radios.php │ │ │ ├── function.html_select_date.php │ │ │ ├── function.html_select_time.php │ │ │ ├── function.html_table.php │ │ │ ├── function.mailto.php │ │ │ ├── function.math.php │ │ │ ├── modifier.capitalize.php │ │ │ ├── modifier.date_format.php │ │ │ ├── modifier.debug_print_var.php │ │ │ ├── modifier.escape.php │ │ │ ├── modifier.regex_replace.php │ │ │ ├── modifier.replace.php │ │ │ ├── modifier.spacify.php │ │ │ ├── modifier.truncate.php │ │ │ ├── modifiercompiler.cat.php │ │ │ ├── modifiercompiler.count_characters.php │ │ │ ├── modifiercompiler.count_paragraphs.php │ │ │ ├── modifiercompiler.count_sentences.php │ │ │ ├── modifiercompiler.count_words.php │ │ │ ├── modifiercompiler.default.php │ │ │ ├── modifiercompiler.escape.php │ │ │ ├── modifiercompiler.from_charset.php │ │ │ ├── modifiercompiler.indent.php │ │ │ ├── modifiercompiler.json.php │ │ │ ├── modifiercompiler.lower.php │ │ │ ├── modifiercompiler.noprint.php │ │ │ ├── modifiercompiler.number.php │ │ │ ├── modifiercompiler.string_format.php │ │ │ ├── modifiercompiler.strip.php │ │ │ ├── modifiercompiler.strip_tags.php │ │ │ ├── modifiercompiler.time.php │ │ │ ├── modifiercompiler.to_charset.php │ │ │ ├── modifiercompiler.unescape.php │ │ │ ├── modifiercompiler.upper.php │ │ │ ├── modifiercompiler.wordwrap.php │ │ │ ├── outputfilter.trimwhitespace.php │ │ │ ├── shared.escape_special_chars.php │ │ │ ├── shared.literal_compiler_param.php │ │ │ ├── shared.make_timestamp.php │ │ │ ├── shared.mb_str_replace.php │ │ │ ├── shared.mb_unicode.php │ │ │ ├── shared.mb_wordwrap.php │ │ │ └── variablefilter.htmlspecialchars.php │ │ └── sysplugins │ │ │ ├── smarty_cacheresource.php │ │ │ ├── smarty_cacheresource_custom.php │ │ │ ├── smarty_cacheresource_keyvaluestore.php │ │ │ ├── smarty_config_source.php │ │ │ ├── smarty_internal_cacheresource_file.php │ │ │ ├── smarty_internal_compile_append.php │ │ │ ├── smarty_internal_compile_assign.php │ │ │ ├── smarty_internal_compile_block.php │ │ │ ├── smarty_internal_compile_break.php │ │ │ ├── smarty_internal_compile_call.php │ │ │ ├── smarty_internal_compile_capture.php │ │ │ ├── smarty_internal_compile_config_load.php │ │ │ ├── smarty_internal_compile_continue.php │ │ │ ├── smarty_internal_compile_debug.php │ │ │ ├── smarty_internal_compile_eval.php │ │ │ ├── smarty_internal_compile_extends.php │ │ │ ├── smarty_internal_compile_for.php │ │ │ ├── smarty_internal_compile_foreach.php │ │ │ ├── smarty_internal_compile_function.php │ │ │ ├── smarty_internal_compile_if.php │ │ │ ├── smarty_internal_compile_include.php │ │ │ ├── smarty_internal_compile_include_php.php │ │ │ ├── smarty_internal_compile_insert.php │ │ │ ├── smarty_internal_compile_ldelim.php │ │ │ ├── smarty_internal_compile_nocache.php │ │ │ ├── smarty_internal_compile_private_block_plugin.php │ │ │ ├── smarty_internal_compile_private_function_plugin.php │ │ │ ├── smarty_internal_compile_private_modifier.php │ │ │ ├── smarty_internal_compile_private_object_block_function.php │ │ │ ├── smarty_internal_compile_private_object_function.php │ │ │ ├── smarty_internal_compile_private_print_expression.php │ │ │ ├── smarty_internal_compile_private_registered_block.php │ │ │ ├── smarty_internal_compile_private_registered_function.php │ │ │ ├── smarty_internal_compile_private_special_variable.php │ │ │ ├── smarty_internal_compile_rdelim.php │ │ │ ├── smarty_internal_compile_section.php │ │ │ ├── smarty_internal_compile_setfilter.php │ │ │ ├── smarty_internal_compile_while.php │ │ │ ├── smarty_internal_compilebase.php │ │ │ ├── smarty_internal_config.php │ │ │ ├── smarty_internal_config_file_compiler.php │ │ │ ├── smarty_internal_configfilelexer.php │ │ │ ├── smarty_internal_configfileparser.php │ │ │ ├── smarty_internal_data.php │ │ │ ├── smarty_internal_debug.php │ │ │ ├── smarty_internal_filter_handler.php │ │ │ ├── smarty_internal_function_call_handler.php │ │ │ ├── smarty_internal_get_include_path.php │ │ │ ├── smarty_internal_nocache_insert.php │ │ │ ├── smarty_internal_parsetree.php │ │ │ ├── smarty_internal_resource_eval.php │ │ │ ├── smarty_internal_resource_extends.php │ │ │ ├── smarty_internal_resource_file.php │ │ │ ├── smarty_internal_resource_php.php │ │ │ ├── smarty_internal_resource_registered.php │ │ │ ├── smarty_internal_resource_stream.php │ │ │ ├── smarty_internal_resource_string.php │ │ │ ├── smarty_internal_smartytemplatecompiler.php │ │ │ ├── smarty_internal_template.php │ │ │ ├── smarty_internal_templatebase.php │ │ │ ├── smarty_internal_templatecompilerbase.php │ │ │ ├── smarty_internal_templatelexer.php │ │ │ ├── smarty_internal_templateparser.php │ │ │ ├── smarty_internal_utility.php │ │ │ ├── smarty_internal_write_file.php │ │ │ ├── smarty_resource.php │ │ │ ├── smarty_resource_custom.php │ │ │ ├── smarty_resource_recompiled.php │ │ │ ├── smarty_resource_uncompiled.php │ │ │ └── smarty_security.php │ ├── facebook │ │ ├── base_facebook.php │ │ ├── facebook.php │ │ └── fb_ca_chain_bundle.crt │ ├── ftp │ │ ├── ftp.class.php │ │ └── ftpexception.class.php │ ├── phpmailer │ │ ├── LICENSE │ │ ├── class.phpmailer.php │ │ └── class.smtp.php │ ├── reCAPTCHA │ │ ├── LICENSE │ │ ├── README │ │ └── recaptchalib.php │ ├── tdcron │ │ ├── class.tdcron.entry.php │ │ └── class.tdcron.php │ ├── teamspeak │ │ ├── cyts │ │ │ └── cyts.class.php │ │ └── ts3admin │ │ │ ├── license.txt │ │ │ └── ts3admin.class.php │ ├── wcf │ │ └── BasicFileUtil.class.php │ └── zip │ │ └── zip.lib.php ├── models │ ├── Auction.php │ ├── UniConfig.php │ ├── User.php │ └── Variable.php ├── pages │ ├── adm │ │ ├── ShowAccountDataPage.php │ │ ├── ShowAccountEditorPage.php │ │ ├── ShowActivePage.php │ │ ├── ShowAutoCompletePage.php │ │ ├── ShowBanPage.php │ │ ├── ShowChatConfigPage.php │ │ ├── ShowClearCachePage.php │ │ ├── ShowConfigBasicPage.php │ │ ├── ShowConfigUniPage.php │ │ ├── ShowCreatorPage.php │ │ ├── ShowCronjobPage.php │ │ ├── ShowDisclamerPage.php │ │ ├── ShowDumpPage.php │ │ ├── ShowFacebookPage.php │ │ ├── ShowFlyingFleetPage.php │ │ ├── ShowGiveawayPage.php │ │ ├── ShowIndexPage.php │ │ ├── ShowInformationPage.php │ │ ├── ShowLogPage.php │ │ ├── ShowLoginPage.php │ │ ├── ShowLogoutPage.php │ │ ├── ShowMenuPage.php │ │ ├── ShowMessageListPage.php │ │ ├── ShowModulePage.php │ │ ├── ShowMultiIPPage.php │ │ ├── ShowNewsPage.php │ │ ├── ShowOverviewPage.php │ │ ├── ShowPassEncripterPage.php │ │ ├── ShowQuickEditorPage.php │ │ ├── ShowResetPage.php │ │ ├── ShowRightsPage.php │ │ ├── ShowSearchPage.php │ │ ├── ShowSendMessagesPage.php │ │ ├── ShowStatUpdatePage.php │ │ ├── ShowStatsPage.php │ │ ├── ShowSupportPage.php │ │ ├── ShowTeamspeakPage.php │ │ ├── ShowTopnavPage.php │ │ ├── ShowUniversePage.php │ │ ├── ShowUpdatePage.php │ │ └── ShowVertify.php │ ├── game │ │ ├── class.AbstractPage.php │ │ ├── class.ShowAchievementPage.php │ │ ├── class.ShowAlliancePage.php │ │ ├── class.ShowBanListPage.php │ │ ├── class.ShowBattleHallPage.php │ │ ├── class.ShowBattleSimulatorPage.php │ │ ├── class.ShowBoardPage.php │ │ ├── class.ShowBuddyListPage.php │ │ ├── class.ShowBuildingsPage.php │ │ ├── class.ShowChangelogPage.php │ │ ├── class.ShowChatPage.php │ │ ├── class.ShowDonatePage.php │ │ ├── class.ShowErrorPage.php │ │ ├── class.ShowFleetAjaxPage.php │ │ ├── class.ShowFleetDealerPage.php │ │ ├── class.ShowFleetGatePage.php │ │ ├── class.ShowFleetMissilePage.php │ │ ├── class.ShowFleetStep1Page.php │ │ ├── class.ShowFleetStep2Page.php │ │ ├── class.ShowFleetStep3Page.php │ │ ├── class.ShowFleetTablePage.php │ │ ├── class.ShowGalaxyPage.php │ │ ├── class.ShowImperiumPage.php │ │ ├── class.ShowInformationPage.php │ │ ├── class.ShowLogoutPage.php │ │ ├── class.ShowMessagesPage.php │ │ ├── class.ShowNotesPage.php │ │ ├── class.ShowOfficierPage.php │ │ ├── class.ShowOverviewPage.php │ │ ├── class.ShowPaypalPage.php │ │ ├── class.ShowPhalanxPage.php │ │ ├── class.ShowPlayerCardPage.php │ │ ├── class.ShowQuestionsPage.php │ │ ├── class.ShowRaportPage.php │ │ ├── class.ShowRecordsPage.php │ │ ├── class.ShowResearchPage.php │ │ ├── class.ShowResourcesPage.php │ │ ├── class.ShowRulesPage.php │ │ ├── class.ShowSearchPage.php │ │ ├── class.ShowSettingsPage.php │ │ ├── class.ShowShipyardPage.php │ │ ├── class.ShowStatisticsPage.php │ │ ├── class.ShowTechtreePage.php │ │ ├── class.ShowTicketPage.php │ │ ├── class.ShowTraderPage.php │ │ └── class.ShowVotePage.php │ └── login │ │ ├── AbstractPage.class.php │ │ ├── ShowBanListPage.class.php │ │ ├── ShowBattleHallPage.class.php │ │ ├── ShowBoardPage.class.php │ │ ├── ShowDisclamerPage.class.php │ │ ├── ShowErrorPage.class.php │ │ ├── ShowExternalAuthPage.class.php │ │ ├── ShowIndexPage.class.php │ │ ├── ShowLoginPage.class.php │ │ ├── ShowLostPasswordPage.class.php │ │ ├── ShowNewsPage.class.php │ │ ├── ShowRegisterPage.class.php │ │ ├── ShowRulesPage.class.php │ │ ├── ShowScreensPage.class.php │ │ └── ShowVertifyPage.class.php └── vars.php ├── index.php ├── ipn.log ├── ipns.php ├── language ├── .htaccess ├── de │ ├── ADMIN.php │ ├── BANNER.php │ ├── CHANGELOG.php │ ├── CUSTOM.php │ ├── FAQ.php │ ├── FLEET.php │ ├── INGAME.php │ ├── INSTALL.php │ ├── L18N.php │ ├── LANG.cfg │ ├── PUBLIC.php │ ├── TECH.php │ └── templates │ │ ├── createUniverseInfo.txt │ │ ├── email_inactive.txt │ │ ├── email_lost_password_changed.txt │ │ ├── email_lost_password_validation.txt │ │ ├── email_reg_done.txt │ │ ├── email_vaild_reg.txt │ │ ├── locked_install.txt │ │ └── rules.txt ├── en │ ├── ADMIN.php │ ├── BANNER.php │ ├── CHANGELOG.php │ ├── CUSTOM.php │ ├── FAQ.php │ ├── FLEET.php │ ├── INGAME.php │ ├── INSTALL.php │ ├── L18N.php │ ├── LANG.cfg │ ├── PUBLIC.php │ ├── TECH.php │ └── templates │ │ ├── createUniverseInfo.txt │ │ ├── email_inactive.txt │ │ ├── email_lost_password_changed.txt │ │ ├── email_lost_password_validation.txt │ │ ├── email_reg_done.txt │ │ ├── email_vaild_reg.txt │ │ ├── locked_install.txt │ │ └── rules.txt ├── pl │ ├── ADMIN.php │ ├── BANNER.php │ ├── CHANGELOG.php │ ├── CUSTOM.php │ ├── FAQ.php │ ├── FLEET.php │ ├── INGAME.php │ ├── INSTALL.php │ ├── L18N.php │ ├── LANG.cfg │ ├── PUBLIC.php │ ├── TECH.php │ └── templates │ │ ├── createUniverseInfo.txt │ │ ├── email_inactive.txt │ │ ├── email_lost_password_changed.txt │ │ ├── email_lost_password_validation.txt │ │ ├── email_reg_done.txt │ │ ├── email_vaild_reg.txt │ │ ├── locked_install.txt │ │ └── rules.txt ├── pt │ ├── ADMIN.php │ ├── BANNER.php │ ├── CHANGELOG.php │ ├── CUSTOM.php │ ├── FAQ.php │ ├── FLEET.php │ ├── INGAME.php │ ├── INSTALL.php │ ├── L18N.php │ ├── LANG.cfg │ ├── PUBLIC.php │ ├── TECH.php │ └── templates │ │ ├── createUniverseInfo.txt │ │ ├── email_inactive.txt │ │ ├── email_lost_password_changed.txt │ │ ├── email_lost_password_validation.txt │ │ ├── email_reg_done.txt │ │ ├── email_vaild_reg.txt │ │ ├── locked_install.txt │ │ └── rules.txt ├── ru │ ├── ADMIN.php │ ├── BANNER.php │ ├── CHANGELOG.php │ ├── CUSTOM.php │ ├── FAQ.php │ ├── FLEET.php │ ├── INGAME.php │ ├── INSTALL.php │ ├── L18N.php │ ├── LANG.cfg │ ├── PUBLIC.php │ ├── TECH.php │ └── templates │ │ ├── createUniverseInfo.txt │ │ ├── email_inactive.txt │ │ ├── email_lost_password_changed.txt │ │ ├── email_lost_password_validation.txt │ │ ├── email_reg_done.txt │ │ ├── email_vaild_reg.txt │ │ ├── locked_install.txt │ │ └── rules.txt └── ua │ ├── ADMIN.php │ ├── BANNER.php │ ├── CHANGELOG.php │ ├── CUSTOM.php │ ├── FAQ.php │ ├── FLEET.php │ ├── INGAME.php │ ├── INSTALL.php │ ├── L18N.php │ ├── LANG.cfg │ ├── PUBLIC.php │ ├── TECH.php │ └── templates │ ├── createUniverseInfo.txt │ ├── email_inactive.txt │ ├── email_lost_password.txt │ ├── email_lost_password_changed.txt │ ├── email_lost_password_validation.txt │ ├── email_reg_done.txt │ ├── email_vaild_reg.txt │ ├── locked_install.txt │ └── rules.txt ├── login ├── css │ ├── animate.css │ ├── bootstrap.min.css │ ├── fonts │ │ └── icomoon.html │ ├── icomoon-soc-icons.css │ ├── magnific-popup.css │ ├── settings.css │ ├── simple-line-icons.css │ ├── style-black.css │ ├── style-gold.css │ ├── style-green.css │ ├── style-purple.css │ ├── style-red.css │ └── style.css ├── fonts │ ├── Simple-Line-Icons.eot │ ├── Simple-Line-Icons.svg │ ├── Simple-Line-Icons.ttf │ ├── Simple-Line-Icons.woff │ └── Simple-Line-Iconsd41d.eot ├── images │ ├── apple-touch-icon-114x114.png │ ├── apple-touch-icon-72x72.png │ ├── apple-touch-icon.png │ ├── favicon.png │ ├── features_screen.png │ ├── fog.html │ ├── grabbing.png │ ├── innovation_screen.png │ ├── intro_bg.jpg │ ├── intro_screen.png │ ├── light.png │ ├── news_bg.jpg │ ├── screen1.jpg │ ├── screen2.jpg │ ├── screen3.jpg │ ├── screen4.jpg │ ├── screen5.jpg │ ├── screen6.jpg │ ├── screen7.jpg │ ├── screen8.jpg │ ├── screen_couple_above.png │ └── screen_couple_beyond.png └── scripts │ ├── bootstrap.min.js │ ├── custom.js │ ├── jquery-1.8.2.min.js │ ├── jquery.magnific-popup.min.js │ ├── jquery.smooth-scroll.min.js │ ├── jquery.stellar.min.js │ ├── jquery.superslides.min.js │ ├── jquery.validate.min.js │ ├── owl.carousel.min.js │ ├── placeholders.jquery.min.js │ ├── retina.min.js │ ├── smoothscroll.js │ ├── styleswitcher.js │ └── wow.min.js ├── robots.txt ├── root.php ├── scripts ├── admin │ └── messageList.js ├── base │ ├── fancybox-updated.min.js │ ├── html5.js │ ├── index.html │ ├── jquery.autosize-min.js │ ├── jquery.browser.min.js │ ├── jquery.cookie.js │ ├── jquery.fancybox.js │ ├── jquery.js │ ├── jquery.tablesorter.js │ ├── jquery.ui.js │ ├── jquery.validationEngine.js │ ├── tinymce │ │ ├── langs │ │ │ ├── ar.js │ │ │ ├── cn.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── fr.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── it.js │ │ │ ├── pl.js │ │ │ ├── pt.js │ │ │ ├── ru.js │ │ │ └── zh.js │ │ ├── license.txt │ │ ├── plugins │ │ │ ├── bbcode │ │ │ │ └── editor_plugin.js │ │ │ └── fullscreen │ │ │ │ ├── editor_plugin.js │ │ │ │ └── fullscreen.htm │ │ ├── themes │ │ │ └── advanced │ │ │ │ ├── about.htm │ │ │ │ ├── anchor.htm │ │ │ │ ├── charmap.htm │ │ │ │ ├── color_picker.htm │ │ │ │ ├── editor_template.js │ │ │ │ ├── image.htm │ │ │ │ ├── img │ │ │ │ ├── colorpicker.jpg │ │ │ │ ├── flash.gif │ │ │ │ ├── icons.gif │ │ │ │ ├── iframe.gif │ │ │ │ ├── pagebreak.gif │ │ │ │ ├── quicktime.gif │ │ │ │ ├── realmedia.gif │ │ │ │ ├── shockwave.gif │ │ │ │ ├── trans.gif │ │ │ │ ├── video.gif │ │ │ │ └── windowsmedia.gif │ │ │ │ ├── js │ │ │ │ ├── about.js │ │ │ │ ├── anchor.js │ │ │ │ ├── charmap.js │ │ │ │ ├── color_picker.js │ │ │ │ ├── image.js │ │ │ │ ├── link.js │ │ │ │ └── source_editor.js │ │ │ │ ├── langs │ │ │ │ ├── ar.js │ │ │ │ ├── ar_dlg.js │ │ │ │ ├── cn.js │ │ │ │ ├── cn_dlg.js │ │ │ │ ├── de.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── el.js │ │ │ │ ├── el_dlg.js │ │ │ │ ├── en.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── fr.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── hr.js │ │ │ │ ├── hr_dlg.js │ │ │ │ ├── hu.js │ │ │ │ ├── hu_dlg.js │ │ │ │ ├── it.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── pl.js │ │ │ │ ├── pl_dlg.js │ │ │ │ ├── pt.js │ │ │ │ ├── pt_dlg.js │ │ │ │ ├── ru.js │ │ │ │ ├── ru_dlg.js │ │ │ │ ├── zh.js │ │ │ │ └── zh_dlg.js │ │ │ │ ├── link.htm │ │ │ │ ├── shortcuts.htm │ │ │ │ ├── skins │ │ │ │ ├── default │ │ │ │ │ ├── content.css │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── img │ │ │ │ │ │ ├── buttons.png │ │ │ │ │ │ ├── items.gif │ │ │ │ │ │ ├── menu_arrow.gif │ │ │ │ │ │ ├── menu_check.gif │ │ │ │ │ │ ├── progress.gif │ │ │ │ │ │ └── tabs.gif │ │ │ │ │ └── ui.css │ │ │ │ ├── highcontrast │ │ │ │ │ ├── content.css │ │ │ │ │ ├── dialog.css │ │ │ │ │ └── ui.css │ │ │ │ └── o2k7 │ │ │ │ │ ├── content.css │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── img │ │ │ │ │ ├── button_bg.png │ │ │ │ │ ├── button_bg_black.png │ │ │ │ │ └── button_bg_silver.png │ │ │ │ │ ├── ui.css │ │ │ │ │ ├── ui_black.css │ │ │ │ │ └── ui_silver.css │ │ │ │ └── source_editor.htm │ │ ├── tiny_mce.js │ │ ├── tiny_mce_gzip.js │ │ ├── tiny_mce_gzip.php │ │ ├── tiny_mce_popup.js │ │ └── utils │ │ │ ├── editable_selects.js │ │ │ ├── form_utils.js │ │ │ ├── mctabs.js │ │ │ └── validate.js │ └── tooltip.js ├── game │ ├── base.js │ ├── battlesim.js │ ├── bcmath.js │ ├── buildlist.js │ ├── donation.js │ ├── filterlist.js │ ├── fleetTable.js │ ├── fleettrader.js │ ├── flotten.js │ ├── galaxy.js │ ├── gate.js │ ├── index.html │ ├── install.js │ ├── jquery.countdown.js │ ├── message.js │ ├── officier.js │ ├── overview.actions.js │ ├── overview.js │ ├── phalanx.js │ ├── planet.js │ ├── premium.js │ ├── research.js │ ├── search.js │ ├── shipyard.js │ ├── topnav.js │ ├── trader.js │ └── vertify.js ├── index.html ├── jquery.countdown.js ├── l18n │ └── validationEngine │ │ ├── jquery.validationEngine-cz.js │ │ ├── jquery.validationEngine-da.js │ │ ├── jquery.validationEngine-de.js │ │ ├── jquery.validationEngine-en.js │ │ ├── jquery.validationEngine-es.js │ │ ├── jquery.validationEngine-et.js │ │ ├── jquery.validationEngine-fa.js │ │ ├── jquery.validationEngine-fi.js │ │ ├── jquery.validationEngine-fr.js │ │ ├── jquery.validationEngine-hr.js │ │ ├── jquery.validationEngine-it.js │ │ ├── jquery.validationEngine-ja.js │ │ ├── jquery.validationEngine-nl.js │ │ ├── jquery.validationEngine-pl.js │ │ ├── jquery.validationEngine-pt.js │ │ ├── jquery.validationEngine-pt_BR.js │ │ ├── jquery.validationEngine-ro.js │ │ ├── jquery.validationEngine-ru.js │ │ ├── jquery.validationEngine-sv.js │ │ ├── jquery.validationEngine-tr.js │ │ ├── jquery.validationEngine-zh_CN.js │ │ └── jquery.validationEngine-zh_TW.js └── login │ ├── main.js │ └── register.js ├── styles ├── achievements │ ├── battle.png │ ├── battle_old.png │ ├── colony.png │ ├── debris.png │ ├── defense.png │ ├── defense_old.png │ ├── destroy.png │ ├── done.png │ ├── friend.png │ ├── mines.png │ ├── mines_old.png │ ├── miss.png │ ├── moon.png │ ├── moon_old.png │ ├── research.png │ ├── research_old.png │ ├── ship.png │ ├── ship_old.png │ ├── statpoints.png │ ├── storage.png │ ├── storage_old.png │ └── test.php ├── ajax │ ├── demowidget.php │ ├── email-compose.html │ ├── email-opened.html │ ├── email-reply.html │ ├── email-template.html │ ├── email │ │ └── email-list.html │ ├── modal-content │ │ └── modal-voicecommand.html │ ├── notify │ │ ├── mail.html │ │ ├── notifications.html │ │ └── tasks.html │ └── website-template.html ├── bkg.jpg ├── css │ ├── bootstrap.min.css │ ├── demo.min.css │ ├── font-awesome.min.css │ ├── invoice.min.css │ ├── lockscreen.min.css │ ├── ressource.css │ ├── smartadmin-production-plugins.min.css │ ├── smartadmin-production.min.css │ ├── smartadmin-rtl.min.css │ ├── smartadmin-skins.min.css │ └── your_style.css ├── data │ └── dataList.json ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome4.2 │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── readme.txt │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── gebaeude │ ├── 1.gif │ ├── 106.gif │ ├── 108.gif │ ├── 109.gif │ ├── 110.gif │ ├── 111.gif │ ├── 113.gif │ ├── 114.gif │ ├── 115.gif │ ├── 117.gif │ ├── 118.gif │ ├── 12.gif │ ├── 120.gif │ ├── 121.gif │ ├── 1210.jpg │ ├── 122.gif │ ├── 123.gif │ ├── 124.gif │ ├── 125.gif │ ├── 131.gif │ ├── 132.gif │ ├── 133.gif │ ├── 134.gif │ ├── 14.gif │ ├── 15.gif │ ├── 199.gif │ ├── 2.gif │ ├── 20.gif │ ├── 202.gif │ ├── 203.gif │ ├── 204.gif │ ├── 205.gif │ ├── 206.gif │ ├── 207.gif │ ├── 208.gif │ ├── 209.gif │ ├── 21.gif │ ├── 210.gif │ ├── 211.gif │ ├── 212.gif │ ├── 213.gif │ ├── 214.gif │ ├── 215.gif │ ├── 216.gif │ ├── 217.gif │ ├── 217x.gif │ ├── 218.gif │ ├── 219.gif │ ├── 22.gif │ ├── 220.gif │ ├── 221.gif │ ├── 222.gif │ ├── 223.gif │ ├── 224.gif │ ├── 225.gif │ ├── 226.gif │ ├── 227.gif │ ├── 228.gif │ ├── 229.gif │ ├── 23.gif │ ├── 230.gif │ ├── 24.gif │ ├── 3.gif │ ├── 31.gif │ ├── 33.gif │ ├── 34.gif │ ├── 35.gif │ ├── 4.gif │ ├── 401.gif │ ├── 401.png │ ├── 402.gif │ ├── 402.png │ ├── 403.gif │ ├── 403.png │ ├── 404.gif │ ├── 404.png │ ├── 405.gif │ ├── 405.png │ ├── 406.gif │ ├── 406.png │ ├── 407.gif │ ├── 407.png │ ├── 408.gif │ ├── 408.png │ ├── 409.gif │ ├── 41.gif │ ├── 410.gif │ ├── 411.gif │ ├── 412.gif │ ├── 413.gif │ ├── 414.gif │ ├── 415.gif │ ├── 416.gif │ ├── 417.gif │ ├── 418.gif │ ├── 419.gif │ ├── 42.gif │ ├── 420.gif │ ├── 421.gif │ ├── 422.gif │ ├── 43.gif │ ├── 44.gif │ ├── 45.gif │ ├── 46.gif │ ├── 47.gif │ ├── 48.gif │ ├── 5.gif │ ├── 501.gif │ ├── 501.png │ ├── 502.gif │ ├── 502.png │ ├── 503.gif │ ├── 6.gif │ ├── 601.jpg │ ├── 602.jpg │ ├── 603.jpg │ ├── 604.jpg │ ├── 605.jpg │ ├── 606.jpg │ ├── 607.jpg │ ├── 608.jpg │ ├── 609.jpg │ ├── 610.jpg │ ├── 611.jpg │ ├── 612.jpg │ ├── 613.jpg │ ├── 614.jpg │ ├── 615.jpg │ ├── 7.gif │ ├── 700.gif │ ├── 701.gif │ ├── 701.png │ ├── 702.gif │ ├── 702.png │ ├── 703.gif │ ├── 703.png │ ├── 704.gif │ ├── 704.png │ ├── 705.gif │ ├── 705.png │ ├── 706.gif │ ├── 706.png │ ├── 707.png │ ├── 708.png │ ├── 709.png │ ├── 71.gif │ ├── 710.png │ ├── 72.gif │ ├── 720.gif │ ├── 73.gif │ ├── 8.gif │ ├── 9.gif │ ├── 901.gif │ ├── 902.gif │ ├── 903.gif │ ├── 911.gif │ ├── 921.gif │ └── desktop.ini ├── images │ ├── crystal.png │ ├── darkmatter.png │ ├── deuterium.png │ ├── energy.png │ └── metal.png ├── img │ ├── ajax-loader.gif │ ├── alpha.png │ ├── avatars │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── copyright.txt │ │ ├── female.png │ │ ├── male.png │ │ ├── sunny-big.png │ │ └── sunny.png │ ├── blank.gif │ ├── clear.png │ ├── deep.jpg │ ├── demo │ │ ├── 64x64.png │ │ ├── basic.png │ │ ├── chat.png │ │ ├── copyright.txt │ │ ├── demo-smartbig-alert.png │ │ ├── demo-smartmedium-alert.png │ │ ├── demo-smartsmall-alert.png │ │ ├── hero.png │ │ ├── image-placeholder-64x64.png │ │ ├── iphoneview.png │ │ ├── m1.jpg │ │ ├── m2.jpg │ │ ├── m3.jpg │ │ ├── newsletter.png │ │ ├── responseimg.png │ │ ├── s1.jpg │ │ ├── s2.jpg │ │ ├── s3.jpg │ │ ├── sa-demo.png │ │ ├── sample.jpg │ │ ├── sidebar.png │ │ ├── sidebarhero.png │ │ ├── site-1.jpg │ │ ├── site-2.jpg │ │ └── widget-colorpicker.png │ ├── destroyed.jpg │ ├── dropzone │ │ ├── spritemap.png │ │ └── spritemap@2x.png │ ├── exp.jpg │ ├── favicon │ │ ├── 1favicon.ico │ │ ├── favicon.ico │ │ └── favicon.png │ ├── flags │ │ ├── .DS_Store │ │ ├── ad.png │ │ ├── ae.png │ │ ├── af.png │ │ ├── ag.png │ │ ├── ai.png │ │ ├── al.png │ │ ├── am.png │ │ ├── an.png │ │ ├── ao.png │ │ ├── ar.png │ │ ├── as.png │ │ ├── at.png │ │ ├── au.png │ │ ├── aw.png │ │ ├── ax.png │ │ ├── az.png │ │ ├── ba.png │ │ ├── bb.png │ │ ├── bd.png │ │ ├── be.png │ │ ├── bf.png │ │ ├── bg.png │ │ ├── bh.png │ │ ├── bi.png │ │ ├── bj.png │ │ ├── bm.png │ │ ├── bn.png │ │ ├── bo.png │ │ ├── br.png │ │ ├── bs.png │ │ ├── bt.png │ │ ├── bv.png │ │ ├── bw.png │ │ ├── by.png │ │ ├── bz.png │ │ ├── ca.png │ │ ├── catalonia.png │ │ ├── cc.png │ │ ├── cd.png │ │ ├── cf.png │ │ ├── cg.png │ │ ├── ch.png │ │ ├── ci.png │ │ ├── ck.png │ │ ├── cl.png │ │ ├── cm.png │ │ ├── cn.png │ │ ├── co.png │ │ ├── cr.png │ │ ├── cs.png │ │ ├── cu.png │ │ ├── cv.png │ │ ├── cx.png │ │ ├── cy.png │ │ ├── cz.png │ │ ├── de.png │ │ ├── dj.png │ │ ├── dk.png │ │ ├── dm.png │ │ ├── do.png │ │ ├── dz.png │ │ ├── ec.png │ │ ├── ee.png │ │ ├── eg.png │ │ ├── eh.png │ │ ├── en.png │ │ ├── england.png │ │ ├── er.png │ │ ├── es.png │ │ ├── et.png │ │ ├── europeanunion.png │ │ ├── fam.png │ │ ├── fi.png │ │ ├── fj.png │ │ ├── fk.png │ │ ├── fm.png │ │ ├── fo.png │ │ ├── fr.png │ │ ├── ga.png │ │ ├── gb.png │ │ ├── gd.png │ │ ├── ge.png │ │ ├── gf.png │ │ ├── gh.png │ │ ├── gi.png │ │ ├── gl.png │ │ ├── gm.png │ │ ├── gn.png │ │ ├── gp.png │ │ ├── gq.png │ │ ├── gr.png │ │ ├── gs.png │ │ ├── gt.png │ │ ├── gu.png │ │ ├── gw.png │ │ ├── gy.png │ │ ├── hk.png │ │ ├── hm.png │ │ ├── hn.png │ │ ├── hr.png │ │ ├── ht.png │ │ ├── hu.png │ │ ├── id.png │ │ ├── ie.png │ │ ├── il.png │ │ ├── in.png │ │ ├── io.png │ │ ├── iq.png │ │ ├── ir.png │ │ ├── is.png │ │ ├── it.png │ │ ├── jm.png │ │ ├── jo.png │ │ ├── jp.png │ │ ├── ke.png │ │ ├── kg.png │ │ ├── kh.png │ │ ├── ki.png │ │ ├── km.png │ │ ├── kn.png │ │ ├── kp.png │ │ ├── kr.png │ │ ├── kw.png │ │ ├── ky.png │ │ ├── kz.png │ │ ├── la.png │ │ ├── lb.png │ │ ├── lc.png │ │ ├── li.png │ │ ├── lk.png │ │ ├── lr.png │ │ ├── ls.png │ │ ├── lt.png │ │ ├── lu.png │ │ ├── lv.png │ │ ├── ly.png │ │ ├── ma.png │ │ ├── mc.png │ │ ├── md.png │ │ ├── me.png │ │ ├── mg.png │ │ ├── mh.png │ │ ├── mk.png │ │ ├── ml.png │ │ ├── mm.png │ │ ├── mn.png │ │ ├── mo.png │ │ ├── mp.png │ │ ├── mq.png │ │ ├── mr.png │ │ ├── ms.png │ │ ├── mt.png │ │ ├── mu.png │ │ ├── mv.png │ │ ├── mw.png │ │ ├── mx.png │ │ ├── my.png │ │ ├── mz.png │ │ ├── na.png │ │ ├── nc.png │ │ ├── ne.png │ │ ├── nf.png │ │ ├── ng.png │ │ ├── ni.png │ │ ├── nl.png │ │ ├── no.png │ │ ├── np.png │ │ ├── nr.png │ │ ├── nu.png │ │ ├── nz.png │ │ ├── om.png │ │ ├── pa.png │ │ ├── pe.png │ │ ├── pf.png │ │ ├── pg.png │ │ ├── ph.png │ │ ├── pk.png │ │ ├── pl.png │ │ ├── pm.png │ │ ├── pn.png │ │ ├── pr.png │ │ ├── ps.png │ │ ├── pt.png │ │ ├── pw.png │ │ ├── py.png │ │ ├── qa.png │ │ ├── re.png │ │ ├── ro.png │ │ ├── rs.png │ │ ├── ru.png │ │ ├── rw.png │ │ ├── sa.png │ │ ├── sb.png │ │ ├── sc.png │ │ ├── scotland.png │ │ ├── sd.png │ │ ├── se.png │ │ ├── sg.png │ │ ├── sh.png │ │ ├── si.png │ │ ├── sj.png │ │ ├── sk.png │ │ ├── sl.png │ │ ├── sm.png │ │ ├── sn.png │ │ ├── so.png │ │ ├── sr.png │ │ ├── st.png │ │ ├── sv.png │ │ ├── sy.png │ │ ├── sz.png │ │ ├── tc.png │ │ ├── td.png │ │ ├── tf.png │ │ ├── tg.png │ │ ├── th.png │ │ ├── tj.png │ │ ├── tk.png │ │ ├── tl.png │ │ ├── tm.png │ │ ├── tn.png │ │ ├── to.png │ │ ├── tr.png │ │ ├── tt.png │ │ ├── tv.png │ │ ├── tw.png │ │ ├── tz.png │ │ ├── ua.png │ │ ├── ug.png │ │ ├── um.png │ │ ├── us.png │ │ ├── uy.png │ │ ├── uz.png │ │ ├── va.png │ │ ├── vc.png │ │ ├── ve.png │ │ ├── vg.png │ │ ├── vi.png │ │ ├── vn.png │ │ ├── vu.png │ │ ├── wales.png │ │ ├── wf.png │ │ ├── ws.png │ │ ├── ye.png │ │ ├── yt.png │ │ ├── za.png │ │ ├── zm.png │ │ └── zw.png │ ├── glass.jpg │ ├── gradient │ │ └── login.png │ ├── hue.png │ ├── invoice │ │ ├── americanexpress.png │ │ ├── license.txt │ │ ├── mastercard.png │ │ ├── paypal.png │ │ └── visa.png │ ├── jcrop │ │ └── Jcrop.gif │ ├── jqueryui │ │ ├── ui-bg_flat_0_999999_40x100.png │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_75_ffffff_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-bg_inset-soft_95_fef1ec_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_428bca_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_555555_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ ├── ui-icons_999999_256x240.png │ │ ├── ui-icons_cd0a0a_256x240.png │ │ ├── ui-icons_f0ad4e_256x240.png │ │ ├── ui-icons_f6cf3b_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ ├── loading.gif │ ├── logo-blacknwhite.png │ ├── logo-blue.png │ ├── logo-o.png │ ├── logo-pale.png │ ├── logo-white.png │ ├── logo.png │ ├── mappin-default.png │ ├── minus.png │ ├── mybg.png │ ├── new.jpg │ ├── pattern │ │ ├── divider.jpg │ │ ├── graphy-xs.png │ │ ├── graphy.png │ │ ├── license-info.txt │ │ ├── lightpaperfibers.png │ │ ├── movable.png │ │ ├── nistri-xs.png │ │ ├── nistri.png │ │ ├── overlay-pattern.png │ │ ├── paper-xs.png │ │ ├── paper.png │ │ ├── pattern.png │ │ ├── sneaker_mesh_fabric-xs.png │ │ ├── sneaker_mesh_fabric.png │ │ ├── tileable_wood_texture-xs.png │ │ └── tileable_wood_texture.png │ ├── plus.png │ ├── ribbon.png │ ├── sa-dark.png │ ├── sa-default.png │ ├── saturation.png │ ├── select2-spinner.gif │ ├── sort_asc.png │ ├── sort_asc_disabled.png │ ├── sort_both.png │ ├── sort_desc.png │ ├── sort_desc_disabled.png │ ├── splash │ │ ├── ipad-landscape.png │ │ ├── ipad-portrait.png │ │ ├── iphone.png │ │ ├── sptouch-icon-iphone.png │ │ ├── touch-icon-ipad-retina.png │ │ ├── touch-icon-ipad.png │ │ └── touch-icon-iphone-retina.png │ ├── stats │ │ ├── alliance.png │ │ ├── builds.png │ │ ├── defense.png │ │ ├── desktop.ini │ │ ├── fleet.png │ │ ├── players.png │ │ └── tech.png │ ├── sun.jpg │ ├── superbox │ │ ├── superbox-full-1.jpg │ │ ├── superbox-full-10.jpg │ │ ├── superbox-full-11.jpg │ │ ├── superbox-full-12.jpg │ │ ├── superbox-full-13.jpg │ │ ├── superbox-full-14.jpg │ │ ├── superbox-full-15.jpg │ │ ├── superbox-full-16.jpg │ │ ├── superbox-full-17.jpg │ │ ├── superbox-full-18.jpg │ │ ├── superbox-full-19.jpg │ │ ├── superbox-full-2.jpg │ │ ├── superbox-full-20-bw.jpg │ │ ├── superbox-full-20.jpg │ │ ├── superbox-full-21.jpg │ │ ├── superbox-full-22.jpg │ │ ├── superbox-full-23.jpg │ │ ├── superbox-full-24.jpg │ │ ├── superbox-full-3.jpg │ │ ├── superbox-full-4.jpg │ │ ├── superbox-full-5.jpg │ │ ├── superbox-full-6.jpg │ │ ├── superbox-full-7.jpg │ │ ├── superbox-full-8.jpg │ │ ├── superbox-full-9.jpg │ │ ├── superbox-thumb-1.jpg │ │ ├── superbox-thumb-10.jpg │ │ ├── superbox-thumb-11.jpg │ │ ├── superbox-thumb-12.jpg │ │ ├── superbox-thumb-13.jpg │ │ ├── superbox-thumb-14.jpg │ │ ├── superbox-thumb-15.jpg │ │ ├── superbox-thumb-16.jpg │ │ ├── superbox-thumb-17.jpg │ │ ├── superbox-thumb-18.jpg │ │ ├── superbox-thumb-19.jpg │ │ ├── superbox-thumb-2.jpg │ │ ├── superbox-thumb-20.jpg │ │ ├── superbox-thumb-21.jpg │ │ ├── superbox-thumb-22.jpg │ │ ├── superbox-thumb-23.jpg │ │ ├── superbox-thumb-24.jpg │ │ ├── superbox-thumb-3.jpg │ │ ├── superbox-thumb-4.jpg │ │ ├── superbox-thumb-5.jpg │ │ ├── superbox-thumb-6.jpg │ │ ├── superbox-thumb-7.jpg │ │ ├── superbox-thumb-8.jpg │ │ └── superbox-thumb-9.jpg │ ├── versions │ │ ├── ajaxversion.png │ │ ├── angularversion.png │ │ ├── dotnetversion.png │ │ ├── htmlversion.png │ │ ├── phpversion.png │ │ └── reactversion.png │ ├── violate.jpg │ ├── voicecommand │ │ └── active-btn.gif │ └── vt-menu.png ├── index.html ├── js │ ├── app.config.js │ ├── app.min.js │ ├── bootstrap │ │ └── bootstrap.min.js │ ├── demo.min.js │ ├── libs │ │ ├── jquery-2.1.1.min.js │ │ ├── jquery-2.1.1.min.map │ │ └── jquery-ui-1.10.3.min.js │ ├── notification │ │ └── SmartNotification.min.js │ ├── plugin │ │ ├── bootstrap-duallistbox │ │ │ └── jquery.bootstrap-duallistbox.min.js │ │ ├── bootstrap-progressbar │ │ │ └── bootstrap-progressbar.min.js │ │ ├── bootstrap-slider │ │ │ └── bootstrap-slider.min.js │ │ ├── bootstrap-tags │ │ │ ├── bootstrap-tagsinput-angular.min.js │ │ │ └── bootstrap-tagsinput.min.js │ │ ├── bootstrap-timepicker │ │ │ └── bootstrap-timepicker.min.js │ │ ├── bootstrap-wizard │ │ │ └── jquery.bootstrap.wizard.min.js │ │ ├── bootstraptree │ │ │ └── bootstrap-tree.min.js │ │ ├── bootstrapvalidator │ │ │ ├── bootstrapValidator.min.js │ │ │ └── language │ │ │ │ ├── ar_MA.min.js │ │ │ │ ├── be_NL.min.js │ │ │ │ ├── bg_BG.min.js │ │ │ │ ├── cs_CZ.min.js │ │ │ │ ├── da_DK.min.js │ │ │ │ ├── de_DE.min.js │ │ │ │ ├── en_US.min.js │ │ │ │ ├── es_CL.min.js │ │ │ │ ├── es_ES.min.js │ │ │ │ ├── fr_FR.min.js │ │ │ │ ├── gr_EL.min.js │ │ │ │ ├── hu_HU.min.js │ │ │ │ ├── it_IT.min.js │ │ │ │ ├── nl_NL.min.js │ │ │ │ ├── pl_PL.min.js │ │ │ │ ├── pt_BR.min.js │ │ │ │ ├── tr_TR.min.js │ │ │ │ ├── vi_VN.min.js │ │ │ │ ├── zh_CN.min.js │ │ │ │ └── zh_TW.min.js │ │ ├── chartjs │ │ │ └── chart.min.js │ │ ├── ckeditor │ │ │ ├── CHANGES.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── adapters │ │ │ │ └── jquery.js │ │ │ ├── build-config.js │ │ │ ├── ckeditor.js │ │ │ ├── config.js │ │ │ ├── contents.css │ │ │ ├── lang │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ ├── plugins │ │ │ │ ├── a11yhelp │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ │ └── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── mn.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ └── zh-cn.js │ │ │ │ ├── about │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── about.js │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ ├── clipboard │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── paste.js │ │ │ │ ├── colordialog │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── colordialog.js │ │ │ │ ├── dialog │ │ │ │ │ └── dialogDefinition.js │ │ │ │ ├── div │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── div.js │ │ │ │ ├── fakeobjects │ │ │ │ │ └── images │ │ │ │ │ │ └── spacer.gif │ │ │ │ ├── find │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── find.js │ │ │ │ ├── flash │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── flash.js │ │ │ │ │ └── images │ │ │ │ │ │ └── placeholder.png │ │ │ │ ├── forms │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── button.js │ │ │ │ │ │ ├── checkbox.js │ │ │ │ │ │ ├── form.js │ │ │ │ │ │ ├── hiddenfield.js │ │ │ │ │ │ ├── radio.js │ │ │ │ │ │ ├── select.js │ │ │ │ │ │ ├── textarea.js │ │ │ │ │ │ └── textfield.js │ │ │ │ │ └── images │ │ │ │ │ │ └── hiddenfield.gif │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── iframe │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── iframe.js │ │ │ │ │ └── images │ │ │ │ │ │ └── placeholder.png │ │ │ │ ├── image │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── image.js │ │ │ │ │ └── images │ │ │ │ │ │ └── noimage.png │ │ │ │ ├── link │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── anchor.js │ │ │ │ │ │ └── link.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── anchor.png │ │ │ │ ├── liststyle │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── liststyle.js │ │ │ │ ├── magicline │ │ │ │ │ └── images │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ └── icon.png │ │ │ │ ├── pagebreak │ │ │ │ │ └── images │ │ │ │ │ │ └── pagebreak.gif │ │ │ │ ├── pastefromword │ │ │ │ │ └── filter │ │ │ │ │ │ └── default.js │ │ │ │ ├── preview │ │ │ │ │ └── preview.html │ │ │ │ ├── scayt │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ └── toolbar.css │ │ │ │ ├── showblocks │ │ │ │ │ └── images │ │ │ │ │ │ ├── block_address.png │ │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ │ ├── block_div.png │ │ │ │ │ │ ├── block_h1.png │ │ │ │ │ │ ├── block_h2.png │ │ │ │ │ │ ├── block_h3.png │ │ │ │ │ │ ├── block_h4.png │ │ │ │ │ │ ├── block_h5.png │ │ │ │ │ │ ├── block_h6.png │ │ │ │ │ │ ├── block_p.png │ │ │ │ │ │ └── block_pre.png │ │ │ │ ├── smiley │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── smiley.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ │ │ ├── envelope.gif │ │ │ │ │ │ ├── heart.gif │ │ │ │ │ │ ├── kiss.gif │ │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ │ ├── tongue_smile.gif │ │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ │ └── wink_smile.gif │ │ │ │ ├── specialchar │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ └── zh-cn.js │ │ │ │ │ │ └── specialchar.js │ │ │ │ ├── table │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── table.js │ │ │ │ ├── tabletools │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── tableCell.js │ │ │ │ ├── templates │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── templates.css │ │ │ │ │ │ └── templates.js │ │ │ │ │ └── templates │ │ │ │ │ │ ├── default.js │ │ │ │ │ │ └── images │ │ │ │ │ │ ├── template1.gif │ │ │ │ │ │ ├── template2.gif │ │ │ │ │ │ └── template3.gif │ │ │ │ └── wsc │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ └── dialogs │ │ │ │ │ ├── ciframe.html │ │ │ │ │ ├── tmp.html │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ ├── wsc.css │ │ │ │ │ ├── wsc.js │ │ │ │ │ └── wsc_ie.js │ │ │ ├── samples │ │ │ │ ├── ajax.html │ │ │ │ ├── api.html │ │ │ │ ├── appendto.html │ │ │ │ ├── assets │ │ │ │ │ ├── inlineall │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── outputxhtml │ │ │ │ │ │ └── outputxhtml.css │ │ │ │ │ ├── posteddata.php │ │ │ │ │ ├── sample.css │ │ │ │ │ ├── sample.jpg │ │ │ │ │ └── uilanguages │ │ │ │ │ │ └── languages.js │ │ │ │ ├── datafiltering.html │ │ │ │ ├── divreplace.html │ │ │ │ ├── index.html │ │ │ │ ├── inlineall.html │ │ │ │ ├── inlinebycode.html │ │ │ │ ├── inlinetextarea.html │ │ │ │ ├── jquery.html │ │ │ │ ├── plugins │ │ │ │ │ ├── dialog │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ │ └── dialog.html │ │ │ │ │ ├── enterkey │ │ │ │ │ │ └── enterkey.html │ │ │ │ │ ├── htmlwriter │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ │ └── outputhtml.html │ │ │ │ │ ├── magicline │ │ │ │ │ │ └── magicline.html │ │ │ │ │ ├── toolbar │ │ │ │ │ │ └── toolbar.html │ │ │ │ │ └── wysiwygarea │ │ │ │ │ │ └── fullpage.html │ │ │ │ ├── readonly.html │ │ │ │ ├── replacebyclass.html │ │ │ │ ├── replacebycode.html │ │ │ │ ├── sample.css │ │ │ │ ├── sample.js │ │ │ │ ├── sample_posteddata.php │ │ │ │ ├── tabindex.html │ │ │ │ ├── uicolor.html │ │ │ │ ├── uilanguages.html │ │ │ │ └── xhtmlstyle.html │ │ │ ├── skins │ │ │ │ └── moono │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── dialog_ie.css │ │ │ │ │ ├── dialog_ie7.css │ │ │ │ │ ├── dialog_ie8.css │ │ │ │ │ ├── dialog_iequirks.css │ │ │ │ │ ├── dialog_opera.css │ │ │ │ │ ├── editor.css │ │ │ │ │ ├── editor_gecko.css │ │ │ │ │ ├── editor_ie.css │ │ │ │ │ ├── editor_ie7.css │ │ │ │ │ ├── editor_ie8.css │ │ │ │ │ ├── editor_iequirks.css │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ ├── images │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ └── refresh.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ │ └── readme.md │ │ │ └── styles.js │ │ ├── clockpicker │ │ │ └── clockpicker.min.js │ │ ├── colorpicker │ │ │ └── bootstrap-colorpicker.min.js │ │ ├── cssemotions │ │ │ └── jquery.cssemoticons.min.js │ │ ├── datatable-responsive │ │ │ └── datatables.responsive.min.js │ │ ├── datatables │ │ │ ├── dataTables.bootstrap.min.js │ │ │ ├── dataTables.colReorder.min.js │ │ │ ├── dataTables.colVis.min.js │ │ │ ├── dataTables.tableTools.min.js │ │ │ ├── jquery.dataTables.min.js │ │ │ └── swf │ │ │ │ ├── copy_csv_xls.swf │ │ │ │ └── copy_csv_xls_pdf.swf │ │ ├── delete-table-row │ │ │ └── delete-table-row.min.js │ │ ├── dropzone │ │ │ ├── dropzone-amd-module.min.js │ │ │ └── dropzone.min.js │ │ ├── dygraphs │ │ │ ├── demo-data.min.js │ │ │ └── dygraph-combined.min.js │ │ ├── easy-pie-chart │ │ │ └── jquery.easy-pie-chart.min.js │ │ ├── fastclick │ │ │ └── fastclick.min.js │ │ ├── flot │ │ │ ├── jquery.colorhelpers.min.js │ │ │ ├── jquery.flot.canvas.min.js │ │ │ ├── jquery.flot.categories.min.js │ │ │ ├── jquery.flot.crosshair.min.js │ │ │ ├── jquery.flot.cust.min.js │ │ │ ├── jquery.flot.errorbars.min.js │ │ │ ├── jquery.flot.fillbetween.min.js │ │ │ ├── jquery.flot.image.min.js │ │ │ ├── jquery.flot.navigate.min.js │ │ │ ├── jquery.flot.orderBar.min.js │ │ │ ├── jquery.flot.pie.min.js │ │ │ ├── jquery.flot.resize.min.js │ │ │ ├── jquery.flot.selection.min.js │ │ │ ├── jquery.flot.stack.min.js │ │ │ ├── jquery.flot.symbol.min.js │ │ │ ├── jquery.flot.threshold.min.js │ │ │ ├── jquery.flot.time.min.js │ │ │ └── jquery.flot.tooltip.min.js │ │ ├── fuelux │ │ │ └── wizard │ │ │ │ └── wizard.min.js │ │ ├── fullcalendar │ │ │ └── jquery.fullcalendar.min.js │ │ ├── gmap3 │ │ │ └── gmap3.min.js │ │ ├── ie-placeholder_ │ │ │ └── jquery.placeholder.min.js │ │ ├── ion-slider │ │ │ └── ion.rangeSlider.min.js │ │ ├── jcrop │ │ │ ├── jquery.Jcrop.min.js │ │ │ └── jquery.color.min.js │ │ ├── jqgrid │ │ │ ├── grid.locale-en.min.js │ │ │ └── jquery.jqGrid.min.js │ │ ├── jquery-form │ │ │ └── jquery-form.min.js │ │ ├── jquery-nestable │ │ │ └── jquery.nestable.min.js │ │ ├── jquery-touch │ │ │ └── jquery.ui.touch-punch.min.js │ │ ├── jquery-validate │ │ │ └── jquery.validate.min.js │ │ ├── js-migrate │ │ │ └── jquery-migrate-1.2.1.min.js │ │ ├── knob │ │ │ └── jquery.knob.min.js │ │ ├── markdown │ │ │ ├── bootstrap-markdown.min.js │ │ │ ├── markdown.min.js │ │ │ └── to-markdown.min.js │ │ ├── masked-input │ │ │ └── jquery.maskedinput.min.js │ │ ├── maxlength │ │ │ └── bootstrap-maxlength.min.js │ │ ├── moment │ │ │ └── moment.min.js │ │ ├── morris │ │ │ ├── morris-chart-settings.min.js │ │ │ ├── morris.min.js │ │ │ └── raphael.min.js │ │ ├── msie-fix │ │ │ └── jquery.mb.browser.min.js │ │ ├── multiselect │ │ │ └── bootstrap-multiselect.min.js │ │ ├── noUiSlider │ │ │ ├── jquery.nouislider.css │ │ │ └── jquery.nouislider.min.js │ │ ├── pace │ │ │ └── pace.min.js │ │ ├── select2 │ │ │ ├── readme.txt │ │ │ └── select2.min.js │ │ ├── selectToUISlider │ │ │ └── selectToUISlider.jQuery.min.js │ │ ├── slimscroll │ │ │ └── jquery.slimscroll.min.js │ │ ├── sparkline │ │ │ └── jquery.sparkline.min.js │ │ ├── summernote │ │ │ └── summernote.min.js │ │ ├── superbox │ │ │ └── superbox.min.js │ │ ├── throttle-denounce │ │ │ └── jquery.ba-throttle-debounce.min.js │ │ ├── typeahead │ │ │ ├── typeahead.min.js │ │ │ └── typeaheadjs.min.js │ │ ├── vectormap │ │ │ ├── jquery-jvectormap-1.1.1.css │ │ │ ├── jquery-jvectormap-1.1.1.min.js │ │ │ ├── jquery-jvectormap-1.2.2.css │ │ │ ├── jquery-jvectormap-1.2.2.min.js │ │ │ └── jquery-jvectormap-world-mill-en.js │ │ └── x-editable │ │ │ ├── jquery.mockjax.min.js │ │ │ ├── moment.min.js │ │ │ └── x-editable.min.js │ ├── smart-chat-ui │ │ ├── smart.chat.manager.min.js │ │ └── smart.chat.ui.min.js │ ├── smartwidgets │ │ └── jarvis.widget.min.js │ └── speech │ │ └── voicecommand.min.js ├── php │ ├── demo-comment.php │ ├── demo-contacts.php │ └── demo-register.php ├── resource │ ├── css │ │ ├── admin │ │ │ └── main.css │ │ ├── base │ │ │ ├── boilerplate.css │ │ │ ├── fancybox-updated.css │ │ │ ├── images │ │ │ │ ├── asc.gif │ │ │ │ ├── bg.gif │ │ │ │ ├── desc.gif │ │ │ │ ├── ui-bg_diagonals-thick_15_0b3e6f_40x40.png │ │ │ │ ├── ui-bg_dots-medium_30_0b58a2_4x4.png │ │ │ │ ├── ui-bg_dots-small_20_333333_2x2.png │ │ │ │ ├── ui-bg_dots-small_30_a32d00_2x2.png │ │ │ │ ├── ui-bg_dots-small_40_00498f_2x2.png │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_40_292929_40x100.png │ │ │ │ ├── ui-bg_gloss-wave_20_111111_500x100.png │ │ │ │ ├── ui-icons_00498f_256x240.png │ │ │ │ ├── ui-icons_98d2fb_256x240.png │ │ │ │ ├── ui-icons_9ccdfc_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ ├── jquery.css │ │ │ ├── jquery.fancybox.css │ │ │ └── validationEngine.jquery.css │ │ ├── ingame │ │ │ └── main.css │ │ ├── install │ │ │ └── main.css │ │ └── login │ │ │ ├── main.css │ │ │ └── register.css │ ├── fonts │ │ ├── DroidSansMono.ttf │ │ └── Google Android License.txt │ └── images │ │ ├── admin │ │ ├── GO.png │ │ ├── UP.png │ │ ├── arrowleft.png │ │ ├── arrowright.png │ │ ├── blank.gif │ │ ├── c.gif │ │ ├── i.gif │ │ └── index.htm │ │ ├── alliance │ │ ├── ADMIN.png │ │ ├── CLOSE.png │ │ ├── DIPLOMATIC.png │ │ ├── EVENTS.png │ │ ├── KICK.png │ │ ├── MANAGEAPPLY.png │ │ ├── MANAGEUSERS.png │ │ ├── MEMBERLIST.png │ │ ├── ONLINESTATE.png │ │ ├── RANKS.png │ │ ├── ROUNDMAIL.png │ │ ├── SEEAPPLY.png │ │ └── TRANSFER.png │ │ ├── banned.png │ │ ├── banner.jpg │ │ ├── facebook │ │ └── fb-connect-large.png │ │ ├── false.png │ │ ├── fancybox │ │ ├── blank.gif │ │ ├── fancy_close.png │ │ ├── fancy_loading.png │ │ ├── fancy_nav_left.png │ │ ├── fancy_nav_right.png │ │ ├── fancy_shadow_e.png │ │ ├── fancy_shadow_n.png │ │ ├── fancy_shadow_ne.png │ │ ├── fancy_shadow_nw.png │ │ ├── fancy_shadow_s.png │ │ ├── fancy_shadow_se.png │ │ ├── fancy_shadow_sw.png │ │ ├── fancy_shadow_w.png │ │ ├── fancy_title_left.png │ │ ├── fancy_title_main.png │ │ ├── fancy_title_over.png │ │ ├── fancy_title_right.png │ │ ├── fancybox-x.png │ │ ├── fancybox-y.png │ │ └── fancybox.png │ │ ├── icons │ │ ├── closed.png │ │ └── open.png │ │ ├── index.htm │ │ ├── login │ │ ├── background.jpg │ │ ├── flags │ │ │ ├── de.png │ │ │ ├── es.png │ │ │ ├── flags.rar │ │ │ ├── fr.png │ │ │ ├── it.png │ │ │ ├── pl.png │ │ │ ├── pt.png │ │ │ ├── ru.png │ │ │ ├── si.png │ │ │ └── us.png │ │ ├── header.png │ │ └── screens │ │ │ ├── ally.jpg │ │ │ ├── build.jpg │ │ │ ├── fleet.jpg │ │ │ ├── galaxy.jpg │ │ │ ├── imperium.jpg │ │ │ ├── overview.jpg │ │ │ └── thumbnails │ │ │ ├── ally.jpg │ │ │ ├── build.jpg │ │ │ ├── fleet.jpg │ │ │ ├── galaxy.jpg │ │ │ ├── imperium.jpg │ │ │ └── overview.jpg │ │ └── true.png ├── sound │ ├── bigbox.mp3 │ ├── bigbox.ogg │ ├── license.txt │ ├── messagebox.mp3 │ ├── messagebox.ogg │ ├── smallbox.mp3 │ ├── smallbox.ogg │ ├── voice_alert.mp3 │ ├── voice_alert.ogg │ ├── voice_off.mp3 │ ├── voice_off.ogg │ ├── voice_on.mp3 │ └── voice_on.ogg ├── templates │ ├── adm │ │ ├── AccountDataPageDetail.tpl │ │ ├── AccountDataPageIntro.tpl │ │ ├── AccountEditorPageAlliance.tpl │ │ ├── AccountEditorPageBuilds.tpl │ │ ├── AccountEditorPageDefenses.tpl │ │ ├── AccountEditorPageMenu.tpl │ │ ├── AccountEditorPageOfficiers.tpl │ │ ├── AccountEditorPagePersonal.tpl │ │ ├── AccountEditorPagePlanets.tpl │ │ ├── AccountEditorPageResearch.tpl │ │ ├── AccountEditorPageResources.tpl │ │ ├── AccountEditorPageShips.tpl │ │ ├── ActivePage.tpl │ │ ├── BanPage.tpl │ │ ├── ChatConfigBody.tpl │ │ ├── ConfigBasicBody.tpl │ │ ├── ConfigBodyUni.tpl │ │ ├── CreatePage.tpl │ │ ├── CreatePageMoon.tpl │ │ ├── CreatePagePlanet.tpl │ │ ├── CreatePageUser.tpl │ │ ├── CronjobDetail.tpl │ │ ├── CronjobOverview.tpl │ │ ├── DisclamerConfigBody.tpl │ │ ├── DumpPage.tpl │ │ ├── FacebookPage.tpl │ │ ├── FlyingFleetPage.tpl │ │ ├── LogDetail.tpl │ │ ├── LogList.tpl │ │ ├── LogOverview.tpl │ │ ├── LoginPage.tpl │ │ ├── MessageList.tpl │ │ ├── ModVersionPage.tpl │ │ ├── ModerrationRightsPage.tpl │ │ ├── ModerrationRightsPostPage.tpl │ │ ├── ModerrationUsersPage.tpl │ │ ├── ModulePage.tpl │ │ ├── MultiIPs.tpl │ │ ├── NewsPage.tpl │ │ ├── OverviewBody.tpl │ │ ├── PassEncripterPage.tpl │ │ ├── QuickEditorPlanet.tpl │ │ ├── QuickEditorUser.tpl │ │ ├── ResetPage.tpl │ │ ├── SearchPage.tpl │ │ ├── SendMessagesPage.tpl │ │ ├── ShowIndexPage.tpl │ │ ├── ShowInformationPage.tpl │ │ ├── ShowMenuPage.tpl │ │ ├── ShowTopnavPage.tpl │ │ ├── StatsPage.tpl │ │ ├── TeamspeakPage.tpl │ │ ├── UniversePage.tpl │ │ ├── UpdatePage.tpl │ │ ├── VertifyPage.tpl │ │ ├── VertifyPageResult.tpl │ │ ├── error_message_body.tpl │ │ ├── giveaway.tpl │ │ ├── overall_footer.tpl │ │ ├── overall_header.tpl │ │ ├── page.ticket.create.tpl │ │ ├── page.ticket.default.tpl │ │ └── page.ticket.view.tpl │ ├── game │ │ ├── .htaccess │ │ ├── _resource_nav.tpl │ │ ├── achievements_body.tpl │ │ ├── error.default.tpl │ │ ├── layout.ajax.tpl │ │ ├── layout.full.tpl │ │ ├── layout.popup.tpl │ │ ├── main.footer.tpl │ │ ├── main.header.tpl │ │ ├── main.navigation.tpl │ │ ├── main.topnav.tpl │ │ ├── page.alliance.admin.detailApply.tpl │ │ ├── page.alliance.admin.diplomacy.create.tpl │ │ ├── page.alliance.admin.diplomacy.default.tpl │ │ ├── page.alliance.admin.mangeApply.tpl │ │ ├── page.alliance.admin.members.tpl │ │ ├── page.alliance.admin.overview.tpl │ │ ├── page.alliance.admin.permissions.tpl │ │ ├── page.alliance.admin.rename.name.tpl │ │ ├── page.alliance.admin.rename.tag.tpl │ │ ├── page.alliance.admin.transfer.tpl │ │ ├── page.alliance.apply.tpl │ │ ├── page.alliance.applyWait.tpl │ │ ├── page.alliance.circular.tpl │ │ ├── page.alliance.create.tpl │ │ ├── page.alliance.createSelection.tpl │ │ ├── page.alliance.home.tpl │ │ ├── page.alliance.info.tpl │ │ ├── page.alliance.memberList.tpl │ │ ├── page.alliance.search.tpl │ │ ├── page.banList.default.tpl │ │ ├── page.battleSimulator.default.tpl │ │ ├── page.battlehall.default.tpl │ │ ├── page.buddyList.default.tpl │ │ ├── page.buddyList.request.tpl │ │ ├── page.buildings.default.tpl │ │ ├── page.changelog.default.tpl │ │ ├── page.chat.default.tpl │ │ ├── page.donate.default.tpl │ │ ├── page.empire.default.tpl │ │ ├── page.fleetDealer.default.tpl │ │ ├── page.fleetStep1.default.tpl │ │ ├── page.fleetStep2.default.tpl │ │ ├── page.fleetStep3.default.tpl │ │ ├── page.fleetTable.default.tpl │ │ ├── page.fleetgate.body.tpl │ │ ├── page.galaxy.default.tpl │ │ ├── page.infomation.default.tpl │ │ ├── page.logout.default.tpl │ │ ├── page.messages.default.tpl │ │ ├── page.messages.view.tpl │ │ ├── page.messages.write.tpl │ │ ├── page.notes.default.tpl │ │ ├── page.notes.detail.tpl │ │ ├── page.officier.default.tpl │ │ ├── page.overview.actions.tpl │ │ ├── page.overview.default.tpl │ │ ├── page.phalanx.default.tpl │ │ ├── page.playerCard.default.tpl │ │ ├── page.questions.default.tpl │ │ ├── page.questions.single.tpl │ │ ├── page.records.default.tpl │ │ ├── page.research.default.tpl │ │ ├── page.resources.default.tpl │ │ ├── page.reward.default.tpl │ │ ├── page.rules.default.tpl │ │ ├── page.search.default.tpl │ │ ├── page.search.result.ally.tpl │ │ ├── page.search.result.default.tpl │ │ ├── page.settings.default.tpl │ │ ├── page.settings.vacation.tpl │ │ ├── page.shipyard.default.tpl │ │ ├── page.statistics.default.tpl │ │ ├── page.techtree.default.tpl │ │ ├── page.ticket.create.tpl │ │ ├── page.ticket.default.tpl │ │ ├── page.ticket.view.tpl │ │ ├── page.trader.default.tpl │ │ ├── page.trader.trade.tpl │ │ ├── paypal_class.tpl │ │ ├── shared.fleetTable.acsTable.tpl │ │ ├── shared.information.gate.tpl │ │ ├── shared.information.missiles.tpl │ │ ├── shared.information.production.tpl │ │ ├── shared.information.shipInfo.tpl │ │ ├── shared.information.storage.tpl │ │ ├── shared.mission.raport.tpl │ │ ├── shared.mission.spyraport.tpl │ │ ├── shared.statistics.allianceTable.tpl │ │ └── shared.statistics.playerTable.tpl │ ├── install │ │ ├── error_message_body.tpl │ │ ├── ins_acc.tpl │ │ ├── ins_convert.tpl │ │ ├── ins_doupdate.tpl │ │ ├── ins_footer.tpl │ │ ├── ins_form.tpl │ │ ├── ins_header.tpl │ │ ├── ins_intro.tpl │ │ ├── ins_license.tpl │ │ ├── ins_req.tpl │ │ ├── ins_step4.tpl │ │ ├── ins_step5.tpl │ │ ├── ins_step8.tpl │ │ ├── ins_step8error.tpl │ │ ├── ins_update.tpl │ │ └── ins_upgrade.tpl │ └── login │ │ ├── error.default.tpl │ │ ├── info.redirectPost.tpl │ │ ├── layout.ajax.tpl │ │ ├── layout.light.tpl │ │ ├── layout.normal.tpl │ │ ├── layout.popup.tpl │ │ ├── main.footer.tpl │ │ ├── main.header.tpl │ │ ├── main.navigation.tpl │ │ ├── page.banList.default.tpl │ │ ├── page.battleHall.default.tpl │ │ ├── page.disclamer.default.tpl │ │ ├── page.index.default.tpl │ │ ├── page.lostPassword.default.tpl │ │ ├── page.news.default.tpl │ │ ├── page.register.default.tpl │ │ ├── page.rules.default.tpl │ │ └── page.screens.default.tpl ├── theme │ ├── gow │ │ ├── formate.css │ │ ├── gebaeude │ │ │ ├── 1.gif │ │ │ ├── 106.gif │ │ │ ├── 108.gif │ │ │ ├── 109.gif │ │ │ ├── 110.gif │ │ │ ├── 111.gif │ │ │ ├── 113.gif │ │ │ ├── 114.gif │ │ │ ├── 115.gif │ │ │ ├── 117.gif │ │ │ ├── 118.gif │ │ │ ├── 12.gif │ │ │ ├── 120.gif │ │ │ ├── 121.gif │ │ │ ├── 122.gif │ │ │ ├── 123.gif │ │ │ ├── 124.gif │ │ │ ├── 131.gif │ │ │ ├── 132.gif │ │ │ ├── 133.gif │ │ │ ├── 14.gif │ │ │ ├── 15.gif │ │ │ ├── 199.gif │ │ │ ├── 2.gif │ │ │ ├── 202.gif │ │ │ ├── 203.gif │ │ │ ├── 204.gif │ │ │ ├── 205.gif │ │ │ ├── 206.gif │ │ │ ├── 207.gif │ │ │ ├── 208.gif │ │ │ ├── 209.gif │ │ │ ├── 21.gif │ │ │ ├── 210.gif │ │ │ ├── 211.gif │ │ │ ├── 212.gif │ │ │ ├── 213.gif │ │ │ ├── 214.gif │ │ │ ├── 215.gif │ │ │ ├── 216.gif │ │ │ ├── 217.gif │ │ │ ├── 218.gif │ │ │ ├── 219.gif │ │ │ ├── 22.gif │ │ │ ├── 220.gif │ │ │ ├── 23.gif │ │ │ ├── 24.gif │ │ │ ├── 3.gif │ │ │ ├── 31.gif │ │ │ ├── 33.gif │ │ │ ├── 34.gif │ │ │ ├── 4.gif │ │ │ ├── 401.gif │ │ │ ├── 402.gif │ │ │ ├── 403.gif │ │ │ ├── 404.gif │ │ │ ├── 405.gif │ │ │ ├── 406.gif │ │ │ ├── 407.gif │ │ │ ├── 408.gif │ │ │ ├── 409.gif │ │ │ ├── 41.gif │ │ │ ├── 410.gif │ │ │ ├── 411.gif │ │ │ ├── 42.gif │ │ │ ├── 43.gif │ │ │ ├── 44.gif │ │ │ ├── 502.gif │ │ │ ├── 503.gif │ │ │ ├── 6.gif │ │ │ ├── 601.jpg │ │ │ ├── 602.jpg │ │ │ ├── 603.jpg │ │ │ ├── 604.jpg │ │ │ ├── 605.jpg │ │ │ ├── 606.jpg │ │ │ ├── 607.jpg │ │ │ ├── 608.jpg │ │ │ ├── 609.jpg │ │ │ ├── 610.jpg │ │ │ ├── 611.jpg │ │ │ ├── 612.jpg │ │ │ ├── 613.jpg │ │ │ ├── 614.jpg │ │ │ ├── 615.jpg │ │ │ ├── 701.gif │ │ │ ├── 702.gif │ │ │ ├── 703.gif │ │ │ ├── 704.gif │ │ │ ├── 705.gif │ │ │ ├── 706.gif │ │ │ └── 707.gif │ │ ├── images │ │ │ ├── crystal.gif │ │ │ ├── darkmatter.gif │ │ │ ├── deuterium.gif │ │ │ ├── energy.gif │ │ │ └── metal.gif │ │ ├── img │ │ │ ├── b.gif │ │ │ ├── bkd_bg.png │ │ │ ├── bkd_page.jpg │ │ │ ├── bkd_title.png │ │ │ ├── e.gif │ │ │ ├── m.gif │ │ │ ├── menu-foot.png │ │ │ ├── menu-item-bg.png │ │ │ ├── menu-top.png │ │ │ ├── menu_acc.png │ │ │ ├── menu_com.png │ │ │ ├── menu_wirt.png │ │ │ ├── processbar.gif │ │ │ ├── r.gif │ │ │ └── s.gif │ │ ├── pic │ │ │ ├── abort.gif │ │ │ ├── appwiz.gif │ │ │ └── key.gif │ │ ├── planeten │ │ │ ├── debris.jpg │ │ │ ├── debris.png │ │ │ ├── debris_1.jpg │ │ │ ├── debris_2.jpg │ │ │ ├── debris_3.jpg │ │ │ ├── dschjungelplanet01.jpg │ │ │ ├── dschjungelplanet02.jpg │ │ │ ├── dschjungelplanet03.jpg │ │ │ ├── dschjungelplanet04.jpg │ │ │ ├── dschjungelplanet05.jpg │ │ │ ├── dschjungelplanet06.jpg │ │ │ ├── dschjungelplanet07.jpg │ │ │ ├── dschjungelplanet08.jpg │ │ │ ├── dschjungelplanet09.jpg │ │ │ ├── dschjungelplanet10.jpg │ │ │ ├── eisplanet01.jpg │ │ │ ├── eisplanet02.jpg │ │ │ ├── eisplanet03.jpg │ │ │ ├── eisplanet04.jpg │ │ │ ├── eisplanet05.jpg │ │ │ ├── eisplanet06.jpg │ │ │ ├── eisplanet07.jpg │ │ │ ├── eisplanet08.jpg │ │ │ ├── eisplanet09.jpg │ │ │ ├── eisplanet10.jpg │ │ │ ├── gasplanet01.jpg │ │ │ ├── gasplanet02.jpg │ │ │ ├── gasplanet03.jpg │ │ │ ├── gasplanet04.jpg │ │ │ ├── gasplanet05.jpg │ │ │ ├── gasplanet06.jpg │ │ │ ├── gasplanet07.jpg │ │ │ ├── gasplanet08.jpg │ │ │ ├── mond.jpg │ │ │ ├── mond_.jpg │ │ │ ├── mond_.png │ │ │ ├── normaltempplanet01.jpg │ │ │ ├── normaltempplanet02.jpg │ │ │ ├── normaltempplanet03.jpg │ │ │ ├── normaltempplanet04.jpg │ │ │ ├── normaltempplanet05.jpg │ │ │ ├── normaltempplanet06.jpg │ │ │ ├── normaltempplanet07.jpg │ │ │ ├── small │ │ │ │ ├── debris.png │ │ │ │ ├── mond_.png │ │ │ │ ├── s_debris.jpg │ │ │ │ ├── s_dschjungelplanet01.jpg │ │ │ │ ├── s_dschjungelplanet02.jpg │ │ │ │ ├── s_dschjungelplanet03.jpg │ │ │ │ ├── s_dschjungelplanet04.jpg │ │ │ │ ├── s_dschjungelplanet05.jpg │ │ │ │ ├── s_dschjungelplanet06.jpg │ │ │ │ ├── s_dschjungelplanet07.jpg │ │ │ │ ├── s_dschjungelplanet08.jpg │ │ │ │ ├── s_dschjungelplanet09.jpg │ │ │ │ ├── s_dschjungelplanet10.jpg │ │ │ │ ├── s_eisplanet01.jpg │ │ │ │ ├── s_eisplanet02.jpg │ │ │ │ ├── s_eisplanet03.jpg │ │ │ │ ├── s_eisplanet04.jpg │ │ │ │ ├── s_eisplanet05.jpg │ │ │ │ ├── s_eisplanet06.jpg │ │ │ │ ├── s_eisplanet07.jpg │ │ │ │ ├── s_eisplanet08.jpg │ │ │ │ ├── s_eisplanet09.jpg │ │ │ │ ├── s_eisplanet10.jpg │ │ │ │ ├── s_gasplanet01.jpg │ │ │ │ ├── s_gasplanet02.jpg │ │ │ │ ├── s_gasplanet03.jpg │ │ │ │ ├── s_gasplanet04.jpg │ │ │ │ ├── s_gasplanet05.jpg │ │ │ │ ├── s_gasplanet06.jpg │ │ │ │ ├── s_gasplanet07.jpg │ │ │ │ ├── s_gasplanet08.jpg │ │ │ │ ├── s_mond.jpg │ │ │ │ ├── s_mond1111.jpg │ │ │ │ ├── s_normaltempplanet01.jpg │ │ │ │ ├── s_normaltempplanet02.jpg │ │ │ │ ├── s_normaltempplanet03.jpg │ │ │ │ ├── s_normaltempplanet04.jpg │ │ │ │ ├── s_normaltempplanet05.jpg │ │ │ │ ├── s_normaltempplanet06.jpg │ │ │ │ ├── s_normaltempplanet07.jpg │ │ │ │ ├── s_trockenplanet01.jpg │ │ │ │ ├── s_trockenplanet02.jpg │ │ │ │ ├── s_trockenplanet03.jpg │ │ │ │ ├── s_trockenplanet04.jpg │ │ │ │ ├── s_trockenplanet05.jpg │ │ │ │ ├── s_trockenplanet06.jpg │ │ │ │ ├── s_trockenplanet07.jpg │ │ │ │ ├── s_trockenplanet08.jpg │ │ │ │ ├── s_trockenplanet09.jpg │ │ │ │ ├── s_trockenplanet10.jpg │ │ │ │ ├── s_wasserplanet01.jpg │ │ │ │ ├── s_wasserplanet02.jpg │ │ │ │ ├── s_wasserplanet03.jpg │ │ │ │ ├── s_wasserplanet04.jpg │ │ │ │ ├── s_wasserplanet05.jpg │ │ │ │ ├── s_wasserplanet06.jpg │ │ │ │ ├── s_wasserplanet07.jpg │ │ │ │ ├── s_wasserplanet08.jpg │ │ │ │ ├── s_wasserplanet09.jpg │ │ │ │ ├── s_wuestenplanet01.jpg │ │ │ │ ├── s_wuestenplanet02.jpg │ │ │ │ ├── s_wuestenplanet03.jpg │ │ │ │ └── s_wuestenplanet04.jpg │ │ │ ├── trockenplanet01.jpg │ │ │ ├── trockenplanet02.jpg │ │ │ ├── trockenplanet03.jpg │ │ │ ├── trockenplanet04.jpg │ │ │ ├── trockenplanet05.jpg │ │ │ ├── trockenplanet06.jpg │ │ │ ├── trockenplanet07.jpg │ │ │ ├── trockenplanet08.jpg │ │ │ ├── trockenplanet09.jpg │ │ │ ├── trockenplanet10.jpg │ │ │ ├── wasserplanet01.jpg │ │ │ ├── wasserplanet02.jpg │ │ │ ├── wasserplanet03.jpg │ │ │ ├── wasserplanet04.jpg │ │ │ ├── wasserplanet05.jpg │ │ │ ├── wasserplanet06.jpg │ │ │ ├── wasserplanet07.jpg │ │ │ ├── wasserplanet08.jpg │ │ │ ├── wasserplanet09.jpg │ │ │ ├── wuestenplanet01.jpg │ │ │ ├── wuestenplanet02.jpg │ │ │ ├── wuestenplanet03.jpg │ │ │ └── wuestenplanet04.jpg │ │ ├── settings.cfg │ │ └── style.cfg │ └── index.htm └── xml │ └── gmap │ └── pins.xml ├── userpic.php └── vendor ├── autoload.php ├── composer ├── ClassLoader.php ├── autoload_classmap.php ├── autoload_files.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php └── installed.json ├── illuminate ├── container │ └── Illuminate │ │ └── Container │ │ ├── Container.php │ │ └── composer.json ├── database │ └── Illuminate │ │ └── Database │ │ ├── Capsule │ │ └── Manager.php │ │ ├── Connection.php │ │ ├── ConnectionInterface.php │ │ ├── ConnectionResolver.php │ │ ├── ConnectionResolverInterface.php │ │ ├── Connectors │ │ ├── ConnectionFactory.php │ │ ├── Connector.php │ │ ├── ConnectorInterface.php │ │ ├── MySqlConnector.php │ │ ├── PostgresConnector.php │ │ ├── SQLiteConnector.php │ │ └── SqlServerConnector.php │ │ ├── Console │ │ ├── Migrations │ │ │ ├── BaseCommand.php │ │ │ ├── InstallCommand.php │ │ │ ├── MigrateCommand.php │ │ │ ├── MigrateMakeCommand.php │ │ │ ├── RefreshCommand.php │ │ │ ├── ResetCommand.php │ │ │ └── RollbackCommand.php │ │ └── SeedCommand.php │ │ ├── DatabaseManager.php │ │ ├── DatabaseServiceProvider.php │ │ ├── Eloquent │ │ ├── Builder.php │ │ ├── Collection.php │ │ ├── MassAssignmentException.php │ │ ├── Model.php │ │ ├── ModelNotFoundException.php │ │ └── Relations │ │ │ ├── BelongsTo.php │ │ │ ├── BelongsToMany.php │ │ │ ├── HasMany.php │ │ │ ├── HasManyThrough.php │ │ │ ├── HasOne.php │ │ │ ├── HasOneOrMany.php │ │ │ ├── MorphMany.php │ │ │ ├── MorphOne.php │ │ │ ├── MorphOneOrMany.php │ │ │ ├── MorphPivot.php │ │ │ ├── MorphTo.php │ │ │ ├── MorphToMany.php │ │ │ ├── Pivot.php │ │ │ └── Relation.php │ │ ├── Grammar.php │ │ ├── MigrationServiceProvider.php │ │ ├── Migrations │ │ ├── DatabaseMigrationRepository.php │ │ ├── Migration.php │ │ ├── MigrationCreator.php │ │ ├── MigrationRepositoryInterface.php │ │ ├── Migrator.php │ │ └── stubs │ │ │ ├── blank.stub │ │ │ ├── create.stub │ │ │ └── update.stub │ │ ├── MySqlConnection.php │ │ ├── PostgresConnection.php │ │ ├── Query │ │ ├── Builder.php │ │ ├── Expression.php │ │ ├── Grammars │ │ │ ├── Grammar.php │ │ │ ├── MySqlGrammar.php │ │ │ ├── PostgresGrammar.php │ │ │ ├── SQLiteGrammar.php │ │ │ └── SqlServerGrammar.php │ │ ├── JoinClause.php │ │ └── Processors │ │ │ ├── MySqlProcessor.php │ │ │ ├── PostgresProcessor.php │ │ │ ├── Processor.php │ │ │ ├── SQLiteProcessor.php │ │ │ └── SqlServerProcessor.php │ │ ├── QueryException.php │ │ ├── README.md │ │ ├── SQLiteConnection.php │ │ ├── Schema │ │ ├── Blueprint.php │ │ ├── Builder.php │ │ ├── Grammars │ │ │ ├── Grammar.php │ │ │ ├── MySqlGrammar.php │ │ │ ├── PostgresGrammar.php │ │ │ ├── SQLiteGrammar.php │ │ │ └── SqlServerGrammar.php │ │ └── MySqlBuilder.php │ │ ├── SeedServiceProvider.php │ │ ├── Seeder.php │ │ ├── SqlServerConnection.php │ │ └── composer.json ├── events │ └── Illuminate │ │ └── Events │ │ ├── Dispatcher.php │ │ ├── EventServiceProvider.php │ │ ├── Subscriber.php │ │ └── composer.json └── support │ └── Illuminate │ └── Support │ ├── ClassLoader.php │ ├── Collection.php │ ├── Contracts │ ├── ArrayableInterface.php │ ├── JsonableInterface.php │ ├── MessageProviderInterface.php │ ├── RenderableInterface.php │ └── ResponsePreparerInterface.php │ ├── Facades │ ├── App.php │ ├── Artisan.php │ ├── Auth.php │ ├── Blade.php │ ├── Cache.php │ ├── Config.php │ ├── Cookie.php │ ├── Crypt.php │ ├── DB.php │ ├── Event.php │ ├── Facade.php │ ├── File.php │ ├── Form.php │ ├── HTML.php │ ├── Hash.php │ ├── Input.php │ ├── Lang.php │ ├── Log.php │ ├── Mail.php │ ├── Paginator.php │ ├── Password.php │ ├── Queue.php │ ├── Redirect.php │ ├── Redis.php │ ├── Request.php │ ├── Response.php │ ├── Route.php │ ├── SSH.php │ ├── Schema.php │ ├── Session.php │ ├── URL.php │ ├── Validator.php │ └── View.php │ ├── Fluent.php │ ├── Manager.php │ ├── MessageBag.php │ ├── NamespacedItemResolver.php │ ├── Pluralizer.php │ ├── SerializableClosure.php │ ├── ServiceProvider.php │ ├── Str.php │ ├── composer.json │ └── helpers.php ├── maximebf └── debugbar │ ├── .bowerrc │ ├── LICENSE │ ├── bower.json │ ├── composer.json │ └── src │ └── DebugBar │ ├── Bridge │ ├── CacheCacheCollector.php │ ├── DoctrineCollector.php │ ├── MonologCollector.php │ ├── PropelCollector.php │ ├── SlimCollector.php │ ├── SwiftMailer │ │ ├── SwiftLogCollector.php │ │ └── SwiftMailCollector.php │ └── Twig │ │ ├── TraceableTwigEnvironment.php │ │ ├── TraceableTwigTemplate.php │ │ └── TwigCollector.php │ ├── DataCollector │ ├── AggregatedCollector.php │ ├── AssetProvider.php │ ├── ConfigCollector.php │ ├── DataCollector.php │ ├── DataCollectorInterface.php │ ├── ExceptionsCollector.php │ ├── LocalizationCollector.php │ ├── MemoryCollector.php │ ├── MessagesAggregateInterface.php │ ├── MessagesCollector.php │ ├── PDO │ │ ├── PDOCollector.php │ │ ├── TraceablePDO.php │ │ ├── TraceablePDOStatement.php │ │ └── TracedStatement.php │ ├── PhpInfoCollector.php │ ├── Renderable.php │ ├── RequestDataCollector.php │ └── TimeDataCollector.php │ ├── DataFormatter │ ├── DataFormatter.php │ └── DataFormatterInterface.php │ ├── DebugBar.php │ ├── DebugBarException.php │ ├── HttpDriverInterface.php │ ├── JavascriptRenderer.php │ ├── OpenHandler.php │ ├── PhpHttpDriver.php │ ├── RequestIdGenerator.php │ ├── RequestIdGeneratorInterface.php │ ├── Resources │ ├── debugbar.css │ ├── debugbar.js │ ├── openhandler.css │ ├── openhandler.js │ ├── vendor │ │ ├── font-awesome │ │ │ ├── css │ │ │ │ └── font-awesome.min.css │ │ │ └── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ └── fontawesome-webfont.woff │ │ ├── highlightjs │ │ │ ├── highlight.pack.js │ │ │ └── styles │ │ │ │ └── github.css │ │ └── jquery │ │ │ └── dist │ │ │ └── jquery.min.js │ ├── widgets.css │ ├── widgets.js │ └── widgets │ │ ├── mails │ │ ├── widget.css │ │ └── widget.js │ │ ├── sqlqueries │ │ ├── widget.css │ │ └── widget.js │ │ └── templates │ │ ├── widget.css │ │ └── widget.js │ ├── StandardDebugBar.php │ └── Storage │ ├── FileStorage.php │ ├── MemcachedStorage.php │ ├── PdoStorage.php │ ├── RedisStorage.php │ ├── StorageInterface.php │ └── pdo_storage_schema.sql ├── nesbot └── carbon │ ├── .editorconfig │ ├── LICENSE │ ├── composer.json │ ├── history.md │ ├── phpunit.xml.dist │ ├── readme.md │ ├── src │ └── Carbon │ │ └── Carbon.php │ └── tests │ ├── AddTest.php │ ├── ComparisonTest.php │ ├── ConstructTest.php │ ├── CopyTest.php │ ├── CreateFromDateTest.php │ ├── CreateFromFormatTest.php │ ├── CreateFromTimeTest.php │ ├── CreateFromTimestampTest.php │ ├── CreateTest.php │ ├── DayOfWeekModifiersTest.php │ ├── DiffTest.php │ ├── FluidSettersTest.php │ ├── GettersTest.php │ ├── InstanceTest.php │ ├── IsTest.php │ ├── IssetTest.php │ ├── NowAndOtherStaticHelpersTest.php │ ├── SettersTest.php │ ├── StartEndOfTest.php │ ├── StringsTest.php │ ├── SubTest.php │ ├── TestFixture.php │ └── TestingAidsTest.php ├── psr └── log │ ├── .gitignore │ ├── LICENSE │ ├── Psr │ └── Log │ │ ├── AbstractLogger.php │ │ ├── InvalidArgumentException.php │ │ ├── LogLevel.php │ │ ├── LoggerAwareInterface.php │ │ ├── LoggerAwareTrait.php │ │ ├── LoggerInterface.php │ │ ├── LoggerTrait.php │ │ ├── NullLogger.php │ │ └── Test │ │ └── LoggerInterfaceTest.php │ ├── README.md │ └── composer.json └── symfony └── var-dumper └── Symfony └── Component └── VarDumper ├── Caster ├── ConstStub.php ├── CutStub.php ├── DOMCaster.php ├── DoctrineCaster.php ├── ExceptionCaster.php ├── PdoCaster.php ├── ReflectionCaster.php ├── ResourceCaster.php ├── SplCaster.php └── StubCaster.php ├── Cloner ├── AbstractCloner.php ├── ClonerInterface.php ├── Cursor.php ├── Data.php ├── DumperInterface.php ├── Stub.php └── VarCloner.php ├── Dumper ├── AbstractDumper.php ├── CliDumper.php ├── DataDumperInterface.php └── HtmlDumper.php ├── Exception └── ThrowingCasterException.php ├── LICENSE ├── README.md ├── Resources └── functions │ └── dump.php ├── Tests ├── CliDumperTest.php ├── Fixtures │ └── dumb-var.php └── HtmlDumperTest.php ├── VarDumper.php ├── composer.json └── phpunit.xml.dist /CombatReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/CombatReport.php -------------------------------------------------------------------------------- /Database MySql/Database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/Database MySql/Database.sql -------------------------------------------------------------------------------- /Database MySql/mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/Database MySql/mysql.sql -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/README.md -------------------------------------------------------------------------------- /admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/admin.php -------------------------------------------------------------------------------- /cache/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /cache/cache.language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/cache/cache.language.php -------------------------------------------------------------------------------- /cache/cache.vars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/cache/cache.vars.php -------------------------------------------------------------------------------- /chat/css/2Moons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/css/2Moons.css -------------------------------------------------------------------------------- /chat/css/Cobalt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/css/Cobalt.css -------------------------------------------------------------------------------- /chat/css/Core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/css/Core.css -------------------------------------------------------------------------------- /chat/css/Lithium.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/css/Lithium.css -------------------------------------------------------------------------------- /chat/css/Mercury.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/css/Mercury.css -------------------------------------------------------------------------------- /chat/css/MyBB.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/css/MyBB.css -------------------------------------------------------------------------------- /chat/css/Oxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/css/Oxygen.css -------------------------------------------------------------------------------- /chat/css/Plum.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/css/Plum.css -------------------------------------------------------------------------------- /chat/css/Sulfur.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/css/Sulfur.css -------------------------------------------------------------------------------- /chat/css/Uranium.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/css/Uranium.css -------------------------------------------------------------------------------- /chat/css/beige.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/css/beige.css -------------------------------------------------------------------------------- /chat/css/black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/css/black.css -------------------------------------------------------------------------------- /chat/css/borders.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/css/borders.css -------------------------------------------------------------------------------- /chat/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/css/fonts.css -------------------------------------------------------------------------------- /chat/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/css/global.css -------------------------------------------------------------------------------- /chat/css/grey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/css/grey.css -------------------------------------------------------------------------------- /chat/css/ie5-6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/css/ie5-6.css -------------------------------------------------------------------------------- /chat/css/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chat/css/misc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/css/misc.css -------------------------------------------------------------------------------- /chat/css/plum_images/plum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/css/plum_images/plum.png -------------------------------------------------------------------------------- /chat/css/plum_images/plum2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/css/plum_images/plum2.png -------------------------------------------------------------------------------- /chat/css/positions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/css/positions.css -------------------------------------------------------------------------------- /chat/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/css/print.css -------------------------------------------------------------------------------- /chat/css/prosilver.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/css/prosilver.css -------------------------------------------------------------------------------- /chat/css/shoutbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/css/shoutbox.css -------------------------------------------------------------------------------- /chat/css/subSilver.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/css/subSilver.css -------------------------------------------------------------------------------- /chat/css/subblack2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/css/subblack2.css -------------------------------------------------------------------------------- /chat/css/vBulletin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/css/vBulletin.css -------------------------------------------------------------------------------- /chat/flash/FABridge.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/flash/FABridge.swf -------------------------------------------------------------------------------- /chat/flash/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chat/img/audio-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/audio-off.png -------------------------------------------------------------------------------- /chat/img/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/audio.png -------------------------------------------------------------------------------- /chat/img/autoscroll-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/autoscroll-off.png -------------------------------------------------------------------------------- /chat/img/autoscroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/autoscroll.png -------------------------------------------------------------------------------- /chat/img/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/delete.png -------------------------------------------------------------------------------- /chat/img/emoticons/angel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/emoticons/angel.png -------------------------------------------------------------------------------- /chat/img/emoticons/confused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/emoticons/confused.png -------------------------------------------------------------------------------- /chat/img/emoticons/cool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/emoticons/cool.png -------------------------------------------------------------------------------- /chat/img/emoticons/crying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/emoticons/crying.png -------------------------------------------------------------------------------- /chat/img/emoticons/devilish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/emoticons/devilish.png -------------------------------------------------------------------------------- /chat/img/emoticons/eek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/emoticons/eek.png -------------------------------------------------------------------------------- /chat/img/emoticons/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/emoticons/error.png -------------------------------------------------------------------------------- /chat/img/emoticons/favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/emoticons/favorite.png -------------------------------------------------------------------------------- /chat/img/emoticons/glasses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/emoticons/glasses.png -------------------------------------------------------------------------------- /chat/img/emoticons/grin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/emoticons/grin.png -------------------------------------------------------------------------------- /chat/img/emoticons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/emoticons/help.png -------------------------------------------------------------------------------- /chat/img/emoticons/idea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/emoticons/idea.png -------------------------------------------------------------------------------- /chat/img/emoticons/important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/emoticons/important.png -------------------------------------------------------------------------------- /chat/img/emoticons/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chat/img/emoticons/kiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/emoticons/kiss.png -------------------------------------------------------------------------------- /chat/img/emoticons/monkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/emoticons/monkey.png -------------------------------------------------------------------------------- /chat/img/emoticons/plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/emoticons/plain.png -------------------------------------------------------------------------------- /chat/img/emoticons/razz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/emoticons/razz.png -------------------------------------------------------------------------------- /chat/img/emoticons/sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/emoticons/sad.png -------------------------------------------------------------------------------- /chat/img/emoticons/smile-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/emoticons/smile-big.png -------------------------------------------------------------------------------- /chat/img/emoticons/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/emoticons/smile.png -------------------------------------------------------------------------------- /chat/img/emoticons/surprise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/emoticons/surprise.png -------------------------------------------------------------------------------- /chat/img/emoticons/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/emoticons/warning.png -------------------------------------------------------------------------------- /chat/img/emoticons/wink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/emoticons/wink.png -------------------------------------------------------------------------------- /chat/img/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/help.png -------------------------------------------------------------------------------- /chat/img/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chat/img/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/license.txt -------------------------------------------------------------------------------- /chat/img/loading-done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/loading-done.png -------------------------------------------------------------------------------- /chat/img/loading-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/loading-sprite.png -------------------------------------------------------------------------------- /chat/img/loading-trouble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/loading-trouble.png -------------------------------------------------------------------------------- /chat/img/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/loading.png -------------------------------------------------------------------------------- /chat/img/pixel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/pixel.gif -------------------------------------------------------------------------------- /chat/img/playback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/playback.png -------------------------------------------------------------------------------- /chat/img/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/settings.png -------------------------------------------------------------------------------- /chat/img/users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/img/users.png -------------------------------------------------------------------------------- /chat/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/index.php -------------------------------------------------------------------------------- /chat/js/FABridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/FABridge.js -------------------------------------------------------------------------------- /chat/js/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/chat.js -------------------------------------------------------------------------------- /chat/js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/config.js -------------------------------------------------------------------------------- /chat/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/custom.js -------------------------------------------------------------------------------- /chat/js/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chat/js/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/ar.js -------------------------------------------------------------------------------- /chat/js/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/bg.js -------------------------------------------------------------------------------- /chat/js/lang/bp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/bp.js -------------------------------------------------------------------------------- /chat/js/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/ca.js -------------------------------------------------------------------------------- /chat/js/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/cy.js -------------------------------------------------------------------------------- /chat/js/lang/cz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/cz.js -------------------------------------------------------------------------------- /chat/js/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/da.js -------------------------------------------------------------------------------- /chat/js/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/de.js -------------------------------------------------------------------------------- /chat/js/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/el.js -------------------------------------------------------------------------------- /chat/js/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/en.js -------------------------------------------------------------------------------- /chat/js/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/es.js -------------------------------------------------------------------------------- /chat/js/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/et.js -------------------------------------------------------------------------------- /chat/js/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/fi.js -------------------------------------------------------------------------------- /chat/js/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/fr.js -------------------------------------------------------------------------------- /chat/js/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/gl.js -------------------------------------------------------------------------------- /chat/js/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/he.js -------------------------------------------------------------------------------- /chat/js/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/hr.js -------------------------------------------------------------------------------- /chat/js/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/hu.js -------------------------------------------------------------------------------- /chat/js/lang/in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/in.js -------------------------------------------------------------------------------- /chat/js/lang/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chat/js/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/it.js -------------------------------------------------------------------------------- /chat/js/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/ja.js -------------------------------------------------------------------------------- /chat/js/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/ka.js -------------------------------------------------------------------------------- /chat/js/lang/kr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/kr.js -------------------------------------------------------------------------------- /chat/js/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/mk.js -------------------------------------------------------------------------------- /chat/js/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/nl.js -------------------------------------------------------------------------------- /chat/js/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/no.js -------------------------------------------------------------------------------- /chat/js/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/pl.js -------------------------------------------------------------------------------- /chat/js/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/pt-br.js -------------------------------------------------------------------------------- /chat/js/lang/pt-pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/pt-pt.js -------------------------------------------------------------------------------- /chat/js/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/pt.js -------------------------------------------------------------------------------- /chat/js/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/ro.js -------------------------------------------------------------------------------- /chat/js/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/ru.js -------------------------------------------------------------------------------- /chat/js/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/sk.js -------------------------------------------------------------------------------- /chat/js/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/sl.js -------------------------------------------------------------------------------- /chat/js/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/sr.js -------------------------------------------------------------------------------- /chat/js/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/sv.js -------------------------------------------------------------------------------- /chat/js/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/th.js -------------------------------------------------------------------------------- /chat/js/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/tr.js -------------------------------------------------------------------------------- /chat/js/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/uk.js -------------------------------------------------------------------------------- /chat/js/lang/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/zh-tw.js -------------------------------------------------------------------------------- /chat/js/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/lang/zh.js -------------------------------------------------------------------------------- /chat/js/logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/logs.js -------------------------------------------------------------------------------- /chat/js/shoutbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/js/shoutbox.js -------------------------------------------------------------------------------- /chat/lib/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /chat/lib/class/AJAXChat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/class/AJAXChat.php -------------------------------------------------------------------------------- /chat/lib/classes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/classes.php -------------------------------------------------------------------------------- /chat/lib/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/config.php -------------------------------------------------------------------------------- /chat/lib/custom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/custom.php -------------------------------------------------------------------------------- /chat/lib/data/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/data/channels.php -------------------------------------------------------------------------------- /chat/lib/data/users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/data/users.php -------------------------------------------------------------------------------- /chat/lib/lang/ar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/ar.php -------------------------------------------------------------------------------- /chat/lib/lang/bg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/bg.php -------------------------------------------------------------------------------- /chat/lib/lang/bp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/bp.php -------------------------------------------------------------------------------- /chat/lib/lang/ca.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/ca.php -------------------------------------------------------------------------------- /chat/lib/lang/cy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/cy.php -------------------------------------------------------------------------------- /chat/lib/lang/cz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/cz.php -------------------------------------------------------------------------------- /chat/lib/lang/da.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/da.php -------------------------------------------------------------------------------- /chat/lib/lang/de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/de.php -------------------------------------------------------------------------------- /chat/lib/lang/el.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/el.php -------------------------------------------------------------------------------- /chat/lib/lang/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/en.php -------------------------------------------------------------------------------- /chat/lib/lang/es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/es.php -------------------------------------------------------------------------------- /chat/lib/lang/et.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/et.php -------------------------------------------------------------------------------- /chat/lib/lang/fi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/fi.php -------------------------------------------------------------------------------- /chat/lib/lang/fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/fr.php -------------------------------------------------------------------------------- /chat/lib/lang/gl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/gl.php -------------------------------------------------------------------------------- /chat/lib/lang/he.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/he.php -------------------------------------------------------------------------------- /chat/lib/lang/hr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/hr.php -------------------------------------------------------------------------------- /chat/lib/lang/hu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/hu.php -------------------------------------------------------------------------------- /chat/lib/lang/in.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/in.php -------------------------------------------------------------------------------- /chat/lib/lang/it.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/it.php -------------------------------------------------------------------------------- /chat/lib/lang/ja.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/ja.php -------------------------------------------------------------------------------- /chat/lib/lang/ka.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/ka.php -------------------------------------------------------------------------------- /chat/lib/lang/kr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/kr.php -------------------------------------------------------------------------------- /chat/lib/lang/mk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/mk.php -------------------------------------------------------------------------------- /chat/lib/lang/nl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/nl.php -------------------------------------------------------------------------------- /chat/lib/lang/no.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/no.php -------------------------------------------------------------------------------- /chat/lib/lang/pl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/pl.php -------------------------------------------------------------------------------- /chat/lib/lang/pt-br.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/pt-br.php -------------------------------------------------------------------------------- /chat/lib/lang/pt-pt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/pt-pt.php -------------------------------------------------------------------------------- /chat/lib/lang/pt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/pt.php -------------------------------------------------------------------------------- /chat/lib/lang/ro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/ro.php -------------------------------------------------------------------------------- /chat/lib/lang/ru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/ru.php -------------------------------------------------------------------------------- /chat/lib/lang/sk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/sk.php -------------------------------------------------------------------------------- /chat/lib/lang/sl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/sl.php -------------------------------------------------------------------------------- /chat/lib/lang/sr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/sr.php -------------------------------------------------------------------------------- /chat/lib/lang/sv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/sv.php -------------------------------------------------------------------------------- /chat/lib/lang/th.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/th.php -------------------------------------------------------------------------------- /chat/lib/lang/tr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/tr.php -------------------------------------------------------------------------------- /chat/lib/lang/uk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/uk.php -------------------------------------------------------------------------------- /chat/lib/lang/zh-tw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/zh-tw.php -------------------------------------------------------------------------------- /chat/lib/lang/zh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/lang/zh.php -------------------------------------------------------------------------------- /chat/lib/template/logs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/lib/template/logs.html -------------------------------------------------------------------------------- /chat/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/license.txt -------------------------------------------------------------------------------- /chat/sounds/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chat/sounds/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/sounds/license.txt -------------------------------------------------------------------------------- /chat/sounds/sound_1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/sounds/sound_1.mp3 -------------------------------------------------------------------------------- /chat/sounds/sound_2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/sounds/sound_2.mp3 -------------------------------------------------------------------------------- /chat/sounds/sound_3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/sounds/sound_3.mp3 -------------------------------------------------------------------------------- /chat/sounds/sound_4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/sounds/sound_4.mp3 -------------------------------------------------------------------------------- /chat/sounds/sound_5.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/sounds/sound_5.mp3 -------------------------------------------------------------------------------- /chat/sounds/sound_6.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/chat/sounds/sound_6.mp3 -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/composer.lock -------------------------------------------------------------------------------- /create_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/create_table.php -------------------------------------------------------------------------------- /cronjob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/cronjob.php -------------------------------------------------------------------------------- /error_log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/favicon.ico -------------------------------------------------------------------------------- /game.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/game.php -------------------------------------------------------------------------------- /includes/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /includes/FleetHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/includes/FleetHandler.php -------------------------------------------------------------------------------- /includes/GeneralFunctions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/includes/GeneralFunctions.php -------------------------------------------------------------------------------- /includes/PlanetData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/includes/PlanetData.php -------------------------------------------------------------------------------- /includes/classes/class.Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/includes/classes/class.Log.php -------------------------------------------------------------------------------- /includes/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/includes/common.php -------------------------------------------------------------------------------- /includes/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/includes/config.php -------------------------------------------------------------------------------- /includes/config.sample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/includes/config.sample.php -------------------------------------------------------------------------------- /includes/config_eloquent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/includes/config_eloquent.php -------------------------------------------------------------------------------- /includes/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/includes/constants.php -------------------------------------------------------------------------------- /includes/dbtables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/includes/dbtables.php -------------------------------------------------------------------------------- /includes/error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/includes/error.log -------------------------------------------------------------------------------- /includes/functions/BBCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/includes/functions/BBCode.php -------------------------------------------------------------------------------- /includes/libs/reCAPTCHA/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/includes/libs/reCAPTCHA/README -------------------------------------------------------------------------------- /includes/libs/zip/zip.lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/includes/libs/zip/zip.lib.php -------------------------------------------------------------------------------- /includes/models/Auction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/includes/models/Auction.php -------------------------------------------------------------------------------- /includes/models/UniConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/includes/models/UniConfig.php -------------------------------------------------------------------------------- /includes/models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/includes/models/User.php -------------------------------------------------------------------------------- /includes/models/Variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/includes/models/Variable.php -------------------------------------------------------------------------------- /includes/vars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/includes/vars.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/index.php -------------------------------------------------------------------------------- /ipn.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ipns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/ipns.php -------------------------------------------------------------------------------- /language/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /language/de/ADMIN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/de/ADMIN.php -------------------------------------------------------------------------------- /language/de/BANNER.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/de/BANNER.php -------------------------------------------------------------------------------- /language/de/CHANGELOG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/de/CHANGELOG.php -------------------------------------------------------------------------------- /language/de/CUSTOM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/de/CUSTOM.php -------------------------------------------------------------------------------- /language/de/FAQ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/de/FAQ.php -------------------------------------------------------------------------------- /language/de/FLEET.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/de/FLEET.php -------------------------------------------------------------------------------- /language/de/INGAME.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/de/INGAME.php -------------------------------------------------------------------------------- /language/de/INSTALL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/de/INSTALL.php -------------------------------------------------------------------------------- /language/de/L18N.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/de/L18N.php -------------------------------------------------------------------------------- /language/de/LANG.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/de/LANG.cfg -------------------------------------------------------------------------------- /language/de/PUBLIC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/de/PUBLIC.php -------------------------------------------------------------------------------- /language/de/TECH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/de/TECH.php -------------------------------------------------------------------------------- /language/en/ADMIN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/en/ADMIN.php -------------------------------------------------------------------------------- /language/en/BANNER.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/en/BANNER.php -------------------------------------------------------------------------------- /language/en/CHANGELOG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/en/CHANGELOG.php -------------------------------------------------------------------------------- /language/en/CUSTOM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/en/CUSTOM.php -------------------------------------------------------------------------------- /language/en/FAQ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/en/FAQ.php -------------------------------------------------------------------------------- /language/en/FLEET.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/en/FLEET.php -------------------------------------------------------------------------------- /language/en/INGAME.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/en/INGAME.php -------------------------------------------------------------------------------- /language/en/INSTALL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/en/INSTALL.php -------------------------------------------------------------------------------- /language/en/L18N.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/en/L18N.php -------------------------------------------------------------------------------- /language/en/LANG.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/en/LANG.cfg -------------------------------------------------------------------------------- /language/en/PUBLIC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/en/PUBLIC.php -------------------------------------------------------------------------------- /language/en/TECH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/en/TECH.php -------------------------------------------------------------------------------- /language/pl/ADMIN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/pl/ADMIN.php -------------------------------------------------------------------------------- /language/pl/BANNER.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/pl/BANNER.php -------------------------------------------------------------------------------- /language/pl/CHANGELOG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/pl/CHANGELOG.php -------------------------------------------------------------------------------- /language/pl/CUSTOM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/pl/CUSTOM.php -------------------------------------------------------------------------------- /language/pl/FAQ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/pl/FAQ.php -------------------------------------------------------------------------------- /language/pl/FLEET.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/pl/FLEET.php -------------------------------------------------------------------------------- /language/pl/INGAME.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/pl/INGAME.php -------------------------------------------------------------------------------- /language/pl/INSTALL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/pl/INSTALL.php -------------------------------------------------------------------------------- /language/pl/L18N.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/pl/L18N.php -------------------------------------------------------------------------------- /language/pl/LANG.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/pl/LANG.cfg -------------------------------------------------------------------------------- /language/pl/PUBLIC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/pl/PUBLIC.php -------------------------------------------------------------------------------- /language/pl/TECH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/pl/TECH.php -------------------------------------------------------------------------------- /language/pt/ADMIN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/pt/ADMIN.php -------------------------------------------------------------------------------- /language/pt/BANNER.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/pt/BANNER.php -------------------------------------------------------------------------------- /language/pt/CHANGELOG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/pt/CHANGELOG.php -------------------------------------------------------------------------------- /language/pt/CUSTOM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/pt/CUSTOM.php -------------------------------------------------------------------------------- /language/pt/FAQ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/pt/FAQ.php -------------------------------------------------------------------------------- /language/pt/FLEET.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/pt/FLEET.php -------------------------------------------------------------------------------- /language/pt/INGAME.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/pt/INGAME.php -------------------------------------------------------------------------------- /language/pt/INSTALL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/pt/INSTALL.php -------------------------------------------------------------------------------- /language/pt/L18N.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/pt/L18N.php -------------------------------------------------------------------------------- /language/pt/LANG.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/pt/LANG.cfg -------------------------------------------------------------------------------- /language/pt/PUBLIC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/pt/PUBLIC.php -------------------------------------------------------------------------------- /language/pt/TECH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/pt/TECH.php -------------------------------------------------------------------------------- /language/ru/ADMIN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/ru/ADMIN.php -------------------------------------------------------------------------------- /language/ru/BANNER.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/ru/BANNER.php -------------------------------------------------------------------------------- /language/ru/CHANGELOG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/ru/CHANGELOG.php -------------------------------------------------------------------------------- /language/ru/CUSTOM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/ru/CUSTOM.php -------------------------------------------------------------------------------- /language/ru/FAQ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/ru/FAQ.php -------------------------------------------------------------------------------- /language/ru/FLEET.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/ru/FLEET.php -------------------------------------------------------------------------------- /language/ru/INGAME.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/ru/INGAME.php -------------------------------------------------------------------------------- /language/ru/INSTALL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/ru/INSTALL.php -------------------------------------------------------------------------------- /language/ru/L18N.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/ru/L18N.php -------------------------------------------------------------------------------- /language/ru/LANG.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/ru/LANG.cfg -------------------------------------------------------------------------------- /language/ru/PUBLIC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/ru/PUBLIC.php -------------------------------------------------------------------------------- /language/ru/TECH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/ru/TECH.php -------------------------------------------------------------------------------- /language/ua/ADMIN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/ua/ADMIN.php -------------------------------------------------------------------------------- /language/ua/BANNER.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/ua/BANNER.php -------------------------------------------------------------------------------- /language/ua/CHANGELOG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/ua/CHANGELOG.php -------------------------------------------------------------------------------- /language/ua/CUSTOM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/ua/CUSTOM.php -------------------------------------------------------------------------------- /language/ua/FAQ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/ua/FAQ.php -------------------------------------------------------------------------------- /language/ua/FLEET.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/ua/FLEET.php -------------------------------------------------------------------------------- /language/ua/INGAME.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/ua/INGAME.php -------------------------------------------------------------------------------- /language/ua/INSTALL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/ua/INSTALL.php -------------------------------------------------------------------------------- /language/ua/L18N.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/ua/L18N.php -------------------------------------------------------------------------------- /language/ua/LANG.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/ua/LANG.cfg -------------------------------------------------------------------------------- /language/ua/PUBLIC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/ua/PUBLIC.php -------------------------------------------------------------------------------- /language/ua/TECH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/language/ua/TECH.php -------------------------------------------------------------------------------- /login/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/login/css/animate.css -------------------------------------------------------------------------------- /login/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/login/css/bootstrap.min.css -------------------------------------------------------------------------------- /login/css/fonts/icomoon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/login/css/fonts/icomoon.html -------------------------------------------------------------------------------- /login/css/magnific-popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/login/css/magnific-popup.css -------------------------------------------------------------------------------- /login/css/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/login/css/settings.css -------------------------------------------------------------------------------- /login/css/style-black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/login/css/style-black.css -------------------------------------------------------------------------------- /login/css/style-gold.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/login/css/style-gold.css -------------------------------------------------------------------------------- /login/css/style-green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/login/css/style-green.css -------------------------------------------------------------------------------- /login/css/style-purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/login/css/style-purple.css -------------------------------------------------------------------------------- /login/css/style-red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/login/css/style-red.css -------------------------------------------------------------------------------- /login/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/login/css/style.css -------------------------------------------------------------------------------- /login/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/login/images/favicon.png -------------------------------------------------------------------------------- /login/images/fog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/login/images/fog.html -------------------------------------------------------------------------------- /login/images/grabbing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/login/images/grabbing.png -------------------------------------------------------------------------------- /login/images/intro_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/login/images/intro_bg.jpg -------------------------------------------------------------------------------- /login/images/intro_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/login/images/intro_screen.png -------------------------------------------------------------------------------- /login/images/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/login/images/light.png -------------------------------------------------------------------------------- /login/images/news_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/login/images/news_bg.jpg -------------------------------------------------------------------------------- /login/images/screen1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/login/images/screen1.jpg -------------------------------------------------------------------------------- /login/images/screen2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/login/images/screen2.jpg -------------------------------------------------------------------------------- /login/images/screen3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/login/images/screen3.jpg -------------------------------------------------------------------------------- /login/images/screen4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/login/images/screen4.jpg -------------------------------------------------------------------------------- /login/images/screen5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/login/images/screen5.jpg -------------------------------------------------------------------------------- /login/images/screen6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/login/images/screen6.jpg -------------------------------------------------------------------------------- /login/images/screen7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/login/images/screen7.jpg -------------------------------------------------------------------------------- /login/images/screen8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/login/images/screen8.jpg -------------------------------------------------------------------------------- /login/scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/login/scripts/bootstrap.min.js -------------------------------------------------------------------------------- /login/scripts/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/login/scripts/custom.js -------------------------------------------------------------------------------- /login/scripts/retina.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/login/scripts/retina.min.js -------------------------------------------------------------------------------- /login/scripts/smoothscroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/login/scripts/smoothscroll.js -------------------------------------------------------------------------------- /login/scripts/styleswitcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/login/scripts/styleswitcher.js -------------------------------------------------------------------------------- /login/scripts/wow.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/login/scripts/wow.min.js -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/robots.txt -------------------------------------------------------------------------------- /root.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/root.php -------------------------------------------------------------------------------- /scripts/admin/messageList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/scripts/admin/messageList.js -------------------------------------------------------------------------------- /scripts/base/html5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/scripts/base/html5.js -------------------------------------------------------------------------------- /scripts/base/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/base/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/scripts/base/jquery.cookie.js -------------------------------------------------------------------------------- /scripts/base/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/scripts/base/jquery.js -------------------------------------------------------------------------------- /scripts/base/jquery.ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/scripts/base/jquery.ui.js -------------------------------------------------------------------------------- /scripts/base/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/scripts/base/tooltip.js -------------------------------------------------------------------------------- /scripts/game/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/scripts/game/base.js -------------------------------------------------------------------------------- /scripts/game/battlesim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/scripts/game/battlesim.js -------------------------------------------------------------------------------- /scripts/game/bcmath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/scripts/game/bcmath.js -------------------------------------------------------------------------------- /scripts/game/buildlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/scripts/game/buildlist.js -------------------------------------------------------------------------------- /scripts/game/donation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/scripts/game/donation.js -------------------------------------------------------------------------------- /scripts/game/filterlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/scripts/game/filterlist.js -------------------------------------------------------------------------------- /scripts/game/fleetTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/scripts/game/fleetTable.js -------------------------------------------------------------------------------- /scripts/game/fleettrader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/scripts/game/fleettrader.js -------------------------------------------------------------------------------- /scripts/game/flotten.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/scripts/game/flotten.js -------------------------------------------------------------------------------- /scripts/game/galaxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/scripts/game/galaxy.js -------------------------------------------------------------------------------- /scripts/game/gate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/scripts/game/gate.js -------------------------------------------------------------------------------- /scripts/game/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/game/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/scripts/game/install.js -------------------------------------------------------------------------------- /scripts/game/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/scripts/game/message.js -------------------------------------------------------------------------------- /scripts/game/officier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/scripts/game/officier.js -------------------------------------------------------------------------------- /scripts/game/overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/scripts/game/overview.js -------------------------------------------------------------------------------- /scripts/game/phalanx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/scripts/game/phalanx.js -------------------------------------------------------------------------------- /scripts/game/planet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/scripts/game/planet.js -------------------------------------------------------------------------------- /scripts/game/premium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/scripts/game/premium.js -------------------------------------------------------------------------------- /scripts/game/research.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/scripts/game/research.js -------------------------------------------------------------------------------- /scripts/game/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/scripts/game/search.js -------------------------------------------------------------------------------- /scripts/game/shipyard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/scripts/game/shipyard.js -------------------------------------------------------------------------------- /scripts/game/topnav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/scripts/game/topnav.js -------------------------------------------------------------------------------- /scripts/game/trader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/scripts/game/trader.js -------------------------------------------------------------------------------- /scripts/game/vertify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/scripts/game/vertify.js -------------------------------------------------------------------------------- /scripts/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/jquery.countdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/scripts/jquery.countdown.js -------------------------------------------------------------------------------- /scripts/login/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/scripts/login/main.js -------------------------------------------------------------------------------- /scripts/login/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/scripts/login/register.js -------------------------------------------------------------------------------- /styles/achievements/battle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/achievements/battle.png -------------------------------------------------------------------------------- /styles/achievements/colony.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/achievements/colony.png -------------------------------------------------------------------------------- /styles/achievements/debris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/achievements/debris.png -------------------------------------------------------------------------------- /styles/achievements/done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/achievements/done.png -------------------------------------------------------------------------------- /styles/achievements/friend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/achievements/friend.png -------------------------------------------------------------------------------- /styles/achievements/mines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/achievements/mines.png -------------------------------------------------------------------------------- /styles/achievements/miss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/achievements/miss.png -------------------------------------------------------------------------------- /styles/achievements/moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/achievements/moon.png -------------------------------------------------------------------------------- /styles/achievements/ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/achievements/ship.png -------------------------------------------------------------------------------- /styles/achievements/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/achievements/test.php -------------------------------------------------------------------------------- /styles/ajax/demowidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/ajax/demowidget.php -------------------------------------------------------------------------------- /styles/ajax/email-compose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/ajax/email-compose.html -------------------------------------------------------------------------------- /styles/ajax/email-opened.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/ajax/email-opened.html -------------------------------------------------------------------------------- /styles/ajax/email-reply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/ajax/email-reply.html -------------------------------------------------------------------------------- /styles/ajax/notify/mail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/ajax/notify/mail.html -------------------------------------------------------------------------------- /styles/ajax/notify/tasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/ajax/notify/tasks.html -------------------------------------------------------------------------------- /styles/bkg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/bkg.jpg -------------------------------------------------------------------------------- /styles/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/css/bootstrap.min.css -------------------------------------------------------------------------------- /styles/css/demo.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/css/demo.min.css -------------------------------------------------------------------------------- /styles/css/invoice.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/css/invoice.min.css -------------------------------------------------------------------------------- /styles/css/lockscreen.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/css/lockscreen.min.css -------------------------------------------------------------------------------- /styles/css/ressource.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/css/ressource.css -------------------------------------------------------------------------------- /styles/css/your_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/css/your_style.css -------------------------------------------------------------------------------- /styles/data/dataList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/data/dataList.json -------------------------------------------------------------------------------- /styles/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /styles/gebaeude/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/1.gif -------------------------------------------------------------------------------- /styles/gebaeude/106.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/106.gif -------------------------------------------------------------------------------- /styles/gebaeude/108.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/108.gif -------------------------------------------------------------------------------- /styles/gebaeude/109.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/109.gif -------------------------------------------------------------------------------- /styles/gebaeude/110.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/110.gif -------------------------------------------------------------------------------- /styles/gebaeude/111.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/111.gif -------------------------------------------------------------------------------- /styles/gebaeude/113.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/113.gif -------------------------------------------------------------------------------- /styles/gebaeude/114.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/114.gif -------------------------------------------------------------------------------- /styles/gebaeude/115.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/115.gif -------------------------------------------------------------------------------- /styles/gebaeude/117.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/117.gif -------------------------------------------------------------------------------- /styles/gebaeude/118.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/118.gif -------------------------------------------------------------------------------- /styles/gebaeude/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/12.gif -------------------------------------------------------------------------------- /styles/gebaeude/120.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/120.gif -------------------------------------------------------------------------------- /styles/gebaeude/121.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/121.gif -------------------------------------------------------------------------------- /styles/gebaeude/1210.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/1210.jpg -------------------------------------------------------------------------------- /styles/gebaeude/122.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/122.gif -------------------------------------------------------------------------------- /styles/gebaeude/123.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/123.gif -------------------------------------------------------------------------------- /styles/gebaeude/124.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/124.gif -------------------------------------------------------------------------------- /styles/gebaeude/125.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/125.gif -------------------------------------------------------------------------------- /styles/gebaeude/131.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/131.gif -------------------------------------------------------------------------------- /styles/gebaeude/132.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/132.gif -------------------------------------------------------------------------------- /styles/gebaeude/133.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/133.gif -------------------------------------------------------------------------------- /styles/gebaeude/134.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/134.gif -------------------------------------------------------------------------------- /styles/gebaeude/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/14.gif -------------------------------------------------------------------------------- /styles/gebaeude/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/15.gif -------------------------------------------------------------------------------- /styles/gebaeude/199.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/199.gif -------------------------------------------------------------------------------- /styles/gebaeude/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/2.gif -------------------------------------------------------------------------------- /styles/gebaeude/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/20.gif -------------------------------------------------------------------------------- /styles/gebaeude/202.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/202.gif -------------------------------------------------------------------------------- /styles/gebaeude/203.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/203.gif -------------------------------------------------------------------------------- /styles/gebaeude/204.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/204.gif -------------------------------------------------------------------------------- /styles/gebaeude/205.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/205.gif -------------------------------------------------------------------------------- /styles/gebaeude/206.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/206.gif -------------------------------------------------------------------------------- /styles/gebaeude/207.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/207.gif -------------------------------------------------------------------------------- /styles/gebaeude/208.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/208.gif -------------------------------------------------------------------------------- /styles/gebaeude/209.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/209.gif -------------------------------------------------------------------------------- /styles/gebaeude/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/21.gif -------------------------------------------------------------------------------- /styles/gebaeude/210.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/210.gif -------------------------------------------------------------------------------- /styles/gebaeude/211.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/211.gif -------------------------------------------------------------------------------- /styles/gebaeude/212.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/212.gif -------------------------------------------------------------------------------- /styles/gebaeude/213.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/213.gif -------------------------------------------------------------------------------- /styles/gebaeude/214.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/214.gif -------------------------------------------------------------------------------- /styles/gebaeude/215.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/215.gif -------------------------------------------------------------------------------- /styles/gebaeude/216.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/216.gif -------------------------------------------------------------------------------- /styles/gebaeude/217.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/217.gif -------------------------------------------------------------------------------- /styles/gebaeude/217x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/217x.gif -------------------------------------------------------------------------------- /styles/gebaeude/218.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/218.gif -------------------------------------------------------------------------------- /styles/gebaeude/219.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/219.gif -------------------------------------------------------------------------------- /styles/gebaeude/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/22.gif -------------------------------------------------------------------------------- /styles/gebaeude/220.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/220.gif -------------------------------------------------------------------------------- /styles/gebaeude/221.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/221.gif -------------------------------------------------------------------------------- /styles/gebaeude/222.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/222.gif -------------------------------------------------------------------------------- /styles/gebaeude/223.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/223.gif -------------------------------------------------------------------------------- /styles/gebaeude/224.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/224.gif -------------------------------------------------------------------------------- /styles/gebaeude/225.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/225.gif -------------------------------------------------------------------------------- /styles/gebaeude/226.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/226.gif -------------------------------------------------------------------------------- /styles/gebaeude/227.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/227.gif -------------------------------------------------------------------------------- /styles/gebaeude/228.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/228.gif -------------------------------------------------------------------------------- /styles/gebaeude/229.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/229.gif -------------------------------------------------------------------------------- /styles/gebaeude/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/23.gif -------------------------------------------------------------------------------- /styles/gebaeude/230.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/230.gif -------------------------------------------------------------------------------- /styles/gebaeude/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/24.gif -------------------------------------------------------------------------------- /styles/gebaeude/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/3.gif -------------------------------------------------------------------------------- /styles/gebaeude/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/31.gif -------------------------------------------------------------------------------- /styles/gebaeude/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/33.gif -------------------------------------------------------------------------------- /styles/gebaeude/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/34.gif -------------------------------------------------------------------------------- /styles/gebaeude/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/35.gif -------------------------------------------------------------------------------- /styles/gebaeude/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/4.gif -------------------------------------------------------------------------------- /styles/gebaeude/401.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/401.gif -------------------------------------------------------------------------------- /styles/gebaeude/401.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/401.png -------------------------------------------------------------------------------- /styles/gebaeude/402.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/402.gif -------------------------------------------------------------------------------- /styles/gebaeude/402.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/402.png -------------------------------------------------------------------------------- /styles/gebaeude/403.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/403.gif -------------------------------------------------------------------------------- /styles/gebaeude/403.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/403.png -------------------------------------------------------------------------------- /styles/gebaeude/404.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/404.gif -------------------------------------------------------------------------------- /styles/gebaeude/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/404.png -------------------------------------------------------------------------------- /styles/gebaeude/405.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/405.gif -------------------------------------------------------------------------------- /styles/gebaeude/405.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/405.png -------------------------------------------------------------------------------- /styles/gebaeude/406.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/406.gif -------------------------------------------------------------------------------- /styles/gebaeude/406.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/406.png -------------------------------------------------------------------------------- /styles/gebaeude/407.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/407.gif -------------------------------------------------------------------------------- /styles/gebaeude/407.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/407.png -------------------------------------------------------------------------------- /styles/gebaeude/408.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/408.gif -------------------------------------------------------------------------------- /styles/gebaeude/408.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/408.png -------------------------------------------------------------------------------- /styles/gebaeude/409.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/409.gif -------------------------------------------------------------------------------- /styles/gebaeude/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/41.gif -------------------------------------------------------------------------------- /styles/gebaeude/410.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/410.gif -------------------------------------------------------------------------------- /styles/gebaeude/411.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/411.gif -------------------------------------------------------------------------------- /styles/gebaeude/412.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/412.gif -------------------------------------------------------------------------------- /styles/gebaeude/413.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/413.gif -------------------------------------------------------------------------------- /styles/gebaeude/414.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/414.gif -------------------------------------------------------------------------------- /styles/gebaeude/415.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/415.gif -------------------------------------------------------------------------------- /styles/gebaeude/416.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/416.gif -------------------------------------------------------------------------------- /styles/gebaeude/417.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/417.gif -------------------------------------------------------------------------------- /styles/gebaeude/418.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/418.gif -------------------------------------------------------------------------------- /styles/gebaeude/419.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/419.gif -------------------------------------------------------------------------------- /styles/gebaeude/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/42.gif -------------------------------------------------------------------------------- /styles/gebaeude/420.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/420.gif -------------------------------------------------------------------------------- /styles/gebaeude/421.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/421.gif -------------------------------------------------------------------------------- /styles/gebaeude/422.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/422.gif -------------------------------------------------------------------------------- /styles/gebaeude/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/43.gif -------------------------------------------------------------------------------- /styles/gebaeude/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/44.gif -------------------------------------------------------------------------------- /styles/gebaeude/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/45.gif -------------------------------------------------------------------------------- /styles/gebaeude/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/46.gif -------------------------------------------------------------------------------- /styles/gebaeude/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/47.gif -------------------------------------------------------------------------------- /styles/gebaeude/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/48.gif -------------------------------------------------------------------------------- /styles/gebaeude/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/5.gif -------------------------------------------------------------------------------- /styles/gebaeude/501.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/501.gif -------------------------------------------------------------------------------- /styles/gebaeude/501.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/501.png -------------------------------------------------------------------------------- /styles/gebaeude/502.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/502.gif -------------------------------------------------------------------------------- /styles/gebaeude/502.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/502.png -------------------------------------------------------------------------------- /styles/gebaeude/503.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/503.gif -------------------------------------------------------------------------------- /styles/gebaeude/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/6.gif -------------------------------------------------------------------------------- /styles/gebaeude/601.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/601.jpg -------------------------------------------------------------------------------- /styles/gebaeude/602.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/602.jpg -------------------------------------------------------------------------------- /styles/gebaeude/603.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/603.jpg -------------------------------------------------------------------------------- /styles/gebaeude/604.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/604.jpg -------------------------------------------------------------------------------- /styles/gebaeude/605.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/605.jpg -------------------------------------------------------------------------------- /styles/gebaeude/606.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/606.jpg -------------------------------------------------------------------------------- /styles/gebaeude/607.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/607.jpg -------------------------------------------------------------------------------- /styles/gebaeude/608.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/608.jpg -------------------------------------------------------------------------------- /styles/gebaeude/609.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/609.jpg -------------------------------------------------------------------------------- /styles/gebaeude/610.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/610.jpg -------------------------------------------------------------------------------- /styles/gebaeude/611.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/611.jpg -------------------------------------------------------------------------------- /styles/gebaeude/612.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/612.jpg -------------------------------------------------------------------------------- /styles/gebaeude/613.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/613.jpg -------------------------------------------------------------------------------- /styles/gebaeude/614.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/614.jpg -------------------------------------------------------------------------------- /styles/gebaeude/615.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/615.jpg -------------------------------------------------------------------------------- /styles/gebaeude/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/7.gif -------------------------------------------------------------------------------- /styles/gebaeude/700.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/700.gif -------------------------------------------------------------------------------- /styles/gebaeude/701.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/701.gif -------------------------------------------------------------------------------- /styles/gebaeude/701.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/701.png -------------------------------------------------------------------------------- /styles/gebaeude/702.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/702.gif -------------------------------------------------------------------------------- /styles/gebaeude/702.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/702.png -------------------------------------------------------------------------------- /styles/gebaeude/703.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/703.gif -------------------------------------------------------------------------------- /styles/gebaeude/703.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/703.png -------------------------------------------------------------------------------- /styles/gebaeude/704.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/704.gif -------------------------------------------------------------------------------- /styles/gebaeude/704.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/704.png -------------------------------------------------------------------------------- /styles/gebaeude/705.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/705.gif -------------------------------------------------------------------------------- /styles/gebaeude/705.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/705.png -------------------------------------------------------------------------------- /styles/gebaeude/706.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/706.gif -------------------------------------------------------------------------------- /styles/gebaeude/706.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/706.png -------------------------------------------------------------------------------- /styles/gebaeude/707.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/707.png -------------------------------------------------------------------------------- /styles/gebaeude/708.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/708.png -------------------------------------------------------------------------------- /styles/gebaeude/709.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/709.png -------------------------------------------------------------------------------- /styles/gebaeude/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/71.gif -------------------------------------------------------------------------------- /styles/gebaeude/710.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/710.png -------------------------------------------------------------------------------- /styles/gebaeude/72.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/72.gif -------------------------------------------------------------------------------- /styles/gebaeude/720.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/720.gif -------------------------------------------------------------------------------- /styles/gebaeude/73.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/73.gif -------------------------------------------------------------------------------- /styles/gebaeude/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/8.gif -------------------------------------------------------------------------------- /styles/gebaeude/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/9.gif -------------------------------------------------------------------------------- /styles/gebaeude/901.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/901.gif -------------------------------------------------------------------------------- /styles/gebaeude/902.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/902.gif -------------------------------------------------------------------------------- /styles/gebaeude/903.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/903.gif -------------------------------------------------------------------------------- /styles/gebaeude/911.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/911.gif -------------------------------------------------------------------------------- /styles/gebaeude/921.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/921.gif -------------------------------------------------------------------------------- /styles/gebaeude/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/gebaeude/desktop.ini -------------------------------------------------------------------------------- /styles/images/crystal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/images/crystal.png -------------------------------------------------------------------------------- /styles/images/darkmatter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/images/darkmatter.png -------------------------------------------------------------------------------- /styles/images/deuterium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/images/deuterium.png -------------------------------------------------------------------------------- /styles/images/energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/images/energy.png -------------------------------------------------------------------------------- /styles/images/metal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/images/metal.png -------------------------------------------------------------------------------- /styles/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/ajax-loader.gif -------------------------------------------------------------------------------- /styles/img/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/alpha.png -------------------------------------------------------------------------------- /styles/img/avatars/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/avatars/1.png -------------------------------------------------------------------------------- /styles/img/avatars/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/avatars/2.png -------------------------------------------------------------------------------- /styles/img/avatars/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/avatars/3.png -------------------------------------------------------------------------------- /styles/img/avatars/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/avatars/4.png -------------------------------------------------------------------------------- /styles/img/avatars/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/avatars/5.png -------------------------------------------------------------------------------- /styles/img/avatars/female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/avatars/female.png -------------------------------------------------------------------------------- /styles/img/avatars/male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/avatars/male.png -------------------------------------------------------------------------------- /styles/img/avatars/sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/avatars/sunny.png -------------------------------------------------------------------------------- /styles/img/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/blank.gif -------------------------------------------------------------------------------- /styles/img/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/clear.png -------------------------------------------------------------------------------- /styles/img/deep.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/deep.jpg -------------------------------------------------------------------------------- /styles/img/demo/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/demo/64x64.png -------------------------------------------------------------------------------- /styles/img/demo/basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/demo/basic.png -------------------------------------------------------------------------------- /styles/img/demo/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/demo/chat.png -------------------------------------------------------------------------------- /styles/img/demo/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/demo/copyright.txt -------------------------------------------------------------------------------- /styles/img/demo/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/demo/hero.png -------------------------------------------------------------------------------- /styles/img/demo/iphoneview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/demo/iphoneview.png -------------------------------------------------------------------------------- /styles/img/demo/m1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/demo/m1.jpg -------------------------------------------------------------------------------- /styles/img/demo/m2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/demo/m2.jpg -------------------------------------------------------------------------------- /styles/img/demo/m3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/demo/m3.jpg -------------------------------------------------------------------------------- /styles/img/demo/newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/demo/newsletter.png -------------------------------------------------------------------------------- /styles/img/demo/s1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/demo/s1.jpg -------------------------------------------------------------------------------- /styles/img/demo/s2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/demo/s2.jpg -------------------------------------------------------------------------------- /styles/img/demo/s3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/demo/s3.jpg -------------------------------------------------------------------------------- /styles/img/demo/sa-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/demo/sa-demo.png -------------------------------------------------------------------------------- /styles/img/demo/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/demo/sample.jpg -------------------------------------------------------------------------------- /styles/img/demo/sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/demo/sidebar.png -------------------------------------------------------------------------------- /styles/img/demo/site-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/demo/site-1.jpg -------------------------------------------------------------------------------- /styles/img/demo/site-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/demo/site-2.jpg -------------------------------------------------------------------------------- /styles/img/destroyed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/destroyed.jpg -------------------------------------------------------------------------------- /styles/img/exp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/exp.jpg -------------------------------------------------------------------------------- /styles/img/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/favicon/favicon.ico -------------------------------------------------------------------------------- /styles/img/favicon/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/favicon/favicon.png -------------------------------------------------------------------------------- /styles/img/flags/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/.DS_Store -------------------------------------------------------------------------------- /styles/img/flags/ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ad.png -------------------------------------------------------------------------------- /styles/img/flags/ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ae.png -------------------------------------------------------------------------------- /styles/img/flags/af.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/af.png -------------------------------------------------------------------------------- /styles/img/flags/ag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ag.png -------------------------------------------------------------------------------- /styles/img/flags/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ai.png -------------------------------------------------------------------------------- /styles/img/flags/al.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/al.png -------------------------------------------------------------------------------- /styles/img/flags/am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/am.png -------------------------------------------------------------------------------- /styles/img/flags/an.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/an.png -------------------------------------------------------------------------------- /styles/img/flags/ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ao.png -------------------------------------------------------------------------------- /styles/img/flags/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ar.png -------------------------------------------------------------------------------- /styles/img/flags/as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/as.png -------------------------------------------------------------------------------- /styles/img/flags/at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/at.png -------------------------------------------------------------------------------- /styles/img/flags/au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/au.png -------------------------------------------------------------------------------- /styles/img/flags/aw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/aw.png -------------------------------------------------------------------------------- /styles/img/flags/ax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ax.png -------------------------------------------------------------------------------- /styles/img/flags/az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/az.png -------------------------------------------------------------------------------- /styles/img/flags/ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ba.png -------------------------------------------------------------------------------- /styles/img/flags/bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/bb.png -------------------------------------------------------------------------------- /styles/img/flags/bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/bd.png -------------------------------------------------------------------------------- /styles/img/flags/be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/be.png -------------------------------------------------------------------------------- /styles/img/flags/bf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/bf.png -------------------------------------------------------------------------------- /styles/img/flags/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/bg.png -------------------------------------------------------------------------------- /styles/img/flags/bh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/bh.png -------------------------------------------------------------------------------- /styles/img/flags/bi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/bi.png -------------------------------------------------------------------------------- /styles/img/flags/bj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/bj.png -------------------------------------------------------------------------------- /styles/img/flags/bm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/bm.png -------------------------------------------------------------------------------- /styles/img/flags/bn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/bn.png -------------------------------------------------------------------------------- /styles/img/flags/bo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/bo.png -------------------------------------------------------------------------------- /styles/img/flags/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/br.png -------------------------------------------------------------------------------- /styles/img/flags/bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/bs.png -------------------------------------------------------------------------------- /styles/img/flags/bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/bt.png -------------------------------------------------------------------------------- /styles/img/flags/bv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/bv.png -------------------------------------------------------------------------------- /styles/img/flags/bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/bw.png -------------------------------------------------------------------------------- /styles/img/flags/by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/by.png -------------------------------------------------------------------------------- /styles/img/flags/bz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/bz.png -------------------------------------------------------------------------------- /styles/img/flags/ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ca.png -------------------------------------------------------------------------------- /styles/img/flags/catalonia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/catalonia.png -------------------------------------------------------------------------------- /styles/img/flags/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/cc.png -------------------------------------------------------------------------------- /styles/img/flags/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/cd.png -------------------------------------------------------------------------------- /styles/img/flags/cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/cf.png -------------------------------------------------------------------------------- /styles/img/flags/cg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/cg.png -------------------------------------------------------------------------------- /styles/img/flags/ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ch.png -------------------------------------------------------------------------------- /styles/img/flags/ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ci.png -------------------------------------------------------------------------------- /styles/img/flags/ck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ck.png -------------------------------------------------------------------------------- /styles/img/flags/cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/cl.png -------------------------------------------------------------------------------- /styles/img/flags/cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/cm.png -------------------------------------------------------------------------------- /styles/img/flags/cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/cn.png -------------------------------------------------------------------------------- /styles/img/flags/co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/co.png -------------------------------------------------------------------------------- /styles/img/flags/cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/cr.png -------------------------------------------------------------------------------- /styles/img/flags/cs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/cs.png -------------------------------------------------------------------------------- /styles/img/flags/cu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/cu.png -------------------------------------------------------------------------------- /styles/img/flags/cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/cv.png -------------------------------------------------------------------------------- /styles/img/flags/cx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/cx.png -------------------------------------------------------------------------------- /styles/img/flags/cy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/cy.png -------------------------------------------------------------------------------- /styles/img/flags/cz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/cz.png -------------------------------------------------------------------------------- /styles/img/flags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/de.png -------------------------------------------------------------------------------- /styles/img/flags/dj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/dj.png -------------------------------------------------------------------------------- /styles/img/flags/dk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/dk.png -------------------------------------------------------------------------------- /styles/img/flags/dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/dm.png -------------------------------------------------------------------------------- /styles/img/flags/do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/do.png -------------------------------------------------------------------------------- /styles/img/flags/dz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/dz.png -------------------------------------------------------------------------------- /styles/img/flags/ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ec.png -------------------------------------------------------------------------------- /styles/img/flags/ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ee.png -------------------------------------------------------------------------------- /styles/img/flags/eg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/eg.png -------------------------------------------------------------------------------- /styles/img/flags/eh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/eh.png -------------------------------------------------------------------------------- /styles/img/flags/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/en.png -------------------------------------------------------------------------------- /styles/img/flags/england.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/england.png -------------------------------------------------------------------------------- /styles/img/flags/er.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/er.png -------------------------------------------------------------------------------- /styles/img/flags/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/es.png -------------------------------------------------------------------------------- /styles/img/flags/et.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/et.png -------------------------------------------------------------------------------- /styles/img/flags/fam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/fam.png -------------------------------------------------------------------------------- /styles/img/flags/fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/fi.png -------------------------------------------------------------------------------- /styles/img/flags/fj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/fj.png -------------------------------------------------------------------------------- /styles/img/flags/fk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/fk.png -------------------------------------------------------------------------------- /styles/img/flags/fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/fm.png -------------------------------------------------------------------------------- /styles/img/flags/fo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/fo.png -------------------------------------------------------------------------------- /styles/img/flags/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/fr.png -------------------------------------------------------------------------------- /styles/img/flags/ga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ga.png -------------------------------------------------------------------------------- /styles/img/flags/gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/gb.png -------------------------------------------------------------------------------- /styles/img/flags/gd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/gd.png -------------------------------------------------------------------------------- /styles/img/flags/ge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ge.png -------------------------------------------------------------------------------- /styles/img/flags/gf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/gf.png -------------------------------------------------------------------------------- /styles/img/flags/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/gh.png -------------------------------------------------------------------------------- /styles/img/flags/gi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/gi.png -------------------------------------------------------------------------------- /styles/img/flags/gl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/gl.png -------------------------------------------------------------------------------- /styles/img/flags/gm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/gm.png -------------------------------------------------------------------------------- /styles/img/flags/gn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/gn.png -------------------------------------------------------------------------------- /styles/img/flags/gp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/gp.png -------------------------------------------------------------------------------- /styles/img/flags/gq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/gq.png -------------------------------------------------------------------------------- /styles/img/flags/gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/gr.png -------------------------------------------------------------------------------- /styles/img/flags/gs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/gs.png -------------------------------------------------------------------------------- /styles/img/flags/gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/gt.png -------------------------------------------------------------------------------- /styles/img/flags/gu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/gu.png -------------------------------------------------------------------------------- /styles/img/flags/gw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/gw.png -------------------------------------------------------------------------------- /styles/img/flags/gy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/gy.png -------------------------------------------------------------------------------- /styles/img/flags/hk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/hk.png -------------------------------------------------------------------------------- /styles/img/flags/hm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/hm.png -------------------------------------------------------------------------------- /styles/img/flags/hn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/hn.png -------------------------------------------------------------------------------- /styles/img/flags/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/hr.png -------------------------------------------------------------------------------- /styles/img/flags/ht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ht.png -------------------------------------------------------------------------------- /styles/img/flags/hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/hu.png -------------------------------------------------------------------------------- /styles/img/flags/id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/id.png -------------------------------------------------------------------------------- /styles/img/flags/ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ie.png -------------------------------------------------------------------------------- /styles/img/flags/il.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/il.png -------------------------------------------------------------------------------- /styles/img/flags/in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/in.png -------------------------------------------------------------------------------- /styles/img/flags/io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/io.png -------------------------------------------------------------------------------- /styles/img/flags/iq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/iq.png -------------------------------------------------------------------------------- /styles/img/flags/ir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ir.png -------------------------------------------------------------------------------- /styles/img/flags/is.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/is.png -------------------------------------------------------------------------------- /styles/img/flags/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/it.png -------------------------------------------------------------------------------- /styles/img/flags/jm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/jm.png -------------------------------------------------------------------------------- /styles/img/flags/jo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/jo.png -------------------------------------------------------------------------------- /styles/img/flags/jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/jp.png -------------------------------------------------------------------------------- /styles/img/flags/ke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ke.png -------------------------------------------------------------------------------- /styles/img/flags/kg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/kg.png -------------------------------------------------------------------------------- /styles/img/flags/kh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/kh.png -------------------------------------------------------------------------------- /styles/img/flags/ki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ki.png -------------------------------------------------------------------------------- /styles/img/flags/km.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/km.png -------------------------------------------------------------------------------- /styles/img/flags/kn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/kn.png -------------------------------------------------------------------------------- /styles/img/flags/kp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/kp.png -------------------------------------------------------------------------------- /styles/img/flags/kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/kr.png -------------------------------------------------------------------------------- /styles/img/flags/kw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/kw.png -------------------------------------------------------------------------------- /styles/img/flags/ky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ky.png -------------------------------------------------------------------------------- /styles/img/flags/kz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/kz.png -------------------------------------------------------------------------------- /styles/img/flags/la.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/la.png -------------------------------------------------------------------------------- /styles/img/flags/lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/lb.png -------------------------------------------------------------------------------- /styles/img/flags/lc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/lc.png -------------------------------------------------------------------------------- /styles/img/flags/li.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/li.png -------------------------------------------------------------------------------- /styles/img/flags/lk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/lk.png -------------------------------------------------------------------------------- /styles/img/flags/lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/lr.png -------------------------------------------------------------------------------- /styles/img/flags/ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ls.png -------------------------------------------------------------------------------- /styles/img/flags/lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/lt.png -------------------------------------------------------------------------------- /styles/img/flags/lu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/lu.png -------------------------------------------------------------------------------- /styles/img/flags/lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/lv.png -------------------------------------------------------------------------------- /styles/img/flags/ly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ly.png -------------------------------------------------------------------------------- /styles/img/flags/ma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ma.png -------------------------------------------------------------------------------- /styles/img/flags/mc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/mc.png -------------------------------------------------------------------------------- /styles/img/flags/md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/md.png -------------------------------------------------------------------------------- /styles/img/flags/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/me.png -------------------------------------------------------------------------------- /styles/img/flags/mg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/mg.png -------------------------------------------------------------------------------- /styles/img/flags/mh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/mh.png -------------------------------------------------------------------------------- /styles/img/flags/mk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/mk.png -------------------------------------------------------------------------------- /styles/img/flags/ml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ml.png -------------------------------------------------------------------------------- /styles/img/flags/mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/mm.png -------------------------------------------------------------------------------- /styles/img/flags/mn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/mn.png -------------------------------------------------------------------------------- /styles/img/flags/mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/mo.png -------------------------------------------------------------------------------- /styles/img/flags/mp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/mp.png -------------------------------------------------------------------------------- /styles/img/flags/mq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/mq.png -------------------------------------------------------------------------------- /styles/img/flags/mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/mr.png -------------------------------------------------------------------------------- /styles/img/flags/ms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ms.png -------------------------------------------------------------------------------- /styles/img/flags/mt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/mt.png -------------------------------------------------------------------------------- /styles/img/flags/mu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/mu.png -------------------------------------------------------------------------------- /styles/img/flags/mv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/mv.png -------------------------------------------------------------------------------- /styles/img/flags/mw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/mw.png -------------------------------------------------------------------------------- /styles/img/flags/mx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/mx.png -------------------------------------------------------------------------------- /styles/img/flags/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/my.png -------------------------------------------------------------------------------- /styles/img/flags/mz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/mz.png -------------------------------------------------------------------------------- /styles/img/flags/na.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/na.png -------------------------------------------------------------------------------- /styles/img/flags/nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/nc.png -------------------------------------------------------------------------------- /styles/img/flags/ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ne.png -------------------------------------------------------------------------------- /styles/img/flags/nf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/nf.png -------------------------------------------------------------------------------- /styles/img/flags/ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ng.png -------------------------------------------------------------------------------- /styles/img/flags/ni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ni.png -------------------------------------------------------------------------------- /styles/img/flags/nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/nl.png -------------------------------------------------------------------------------- /styles/img/flags/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/no.png -------------------------------------------------------------------------------- /styles/img/flags/np.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/np.png -------------------------------------------------------------------------------- /styles/img/flags/nr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/nr.png -------------------------------------------------------------------------------- /styles/img/flags/nu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/nu.png -------------------------------------------------------------------------------- /styles/img/flags/nz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/nz.png -------------------------------------------------------------------------------- /styles/img/flags/om.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/om.png -------------------------------------------------------------------------------- /styles/img/flags/pa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/pa.png -------------------------------------------------------------------------------- /styles/img/flags/pe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/pe.png -------------------------------------------------------------------------------- /styles/img/flags/pf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/pf.png -------------------------------------------------------------------------------- /styles/img/flags/pg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/pg.png -------------------------------------------------------------------------------- /styles/img/flags/ph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ph.png -------------------------------------------------------------------------------- /styles/img/flags/pk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/pk.png -------------------------------------------------------------------------------- /styles/img/flags/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/pl.png -------------------------------------------------------------------------------- /styles/img/flags/pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/pm.png -------------------------------------------------------------------------------- /styles/img/flags/pn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/pn.png -------------------------------------------------------------------------------- /styles/img/flags/pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/pr.png -------------------------------------------------------------------------------- /styles/img/flags/ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ps.png -------------------------------------------------------------------------------- /styles/img/flags/pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/pt.png -------------------------------------------------------------------------------- /styles/img/flags/pw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/pw.png -------------------------------------------------------------------------------- /styles/img/flags/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/py.png -------------------------------------------------------------------------------- /styles/img/flags/qa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/qa.png -------------------------------------------------------------------------------- /styles/img/flags/re.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/re.png -------------------------------------------------------------------------------- /styles/img/flags/ro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ro.png -------------------------------------------------------------------------------- /styles/img/flags/rs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/rs.png -------------------------------------------------------------------------------- /styles/img/flags/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ru.png -------------------------------------------------------------------------------- /styles/img/flags/rw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/rw.png -------------------------------------------------------------------------------- /styles/img/flags/sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/sa.png -------------------------------------------------------------------------------- /styles/img/flags/sb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/sb.png -------------------------------------------------------------------------------- /styles/img/flags/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/sc.png -------------------------------------------------------------------------------- /styles/img/flags/scotland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/scotland.png -------------------------------------------------------------------------------- /styles/img/flags/sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/sd.png -------------------------------------------------------------------------------- /styles/img/flags/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/se.png -------------------------------------------------------------------------------- /styles/img/flags/sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/sg.png -------------------------------------------------------------------------------- /styles/img/flags/sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/sh.png -------------------------------------------------------------------------------- /styles/img/flags/si.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/si.png -------------------------------------------------------------------------------- /styles/img/flags/sj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/sj.png -------------------------------------------------------------------------------- /styles/img/flags/sk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/sk.png -------------------------------------------------------------------------------- /styles/img/flags/sl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/sl.png -------------------------------------------------------------------------------- /styles/img/flags/sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/sm.png -------------------------------------------------------------------------------- /styles/img/flags/sn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/sn.png -------------------------------------------------------------------------------- /styles/img/flags/so.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/so.png -------------------------------------------------------------------------------- /styles/img/flags/sr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/sr.png -------------------------------------------------------------------------------- /styles/img/flags/st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/st.png -------------------------------------------------------------------------------- /styles/img/flags/sv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/sv.png -------------------------------------------------------------------------------- /styles/img/flags/sy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/sy.png -------------------------------------------------------------------------------- /styles/img/flags/sz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/sz.png -------------------------------------------------------------------------------- /styles/img/flags/tc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/tc.png -------------------------------------------------------------------------------- /styles/img/flags/td.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/td.png -------------------------------------------------------------------------------- /styles/img/flags/tf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/tf.png -------------------------------------------------------------------------------- /styles/img/flags/tg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/tg.png -------------------------------------------------------------------------------- /styles/img/flags/th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/th.png -------------------------------------------------------------------------------- /styles/img/flags/tj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/tj.png -------------------------------------------------------------------------------- /styles/img/flags/tk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/tk.png -------------------------------------------------------------------------------- /styles/img/flags/tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/tl.png -------------------------------------------------------------------------------- /styles/img/flags/tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/tm.png -------------------------------------------------------------------------------- /styles/img/flags/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/tn.png -------------------------------------------------------------------------------- /styles/img/flags/to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/to.png -------------------------------------------------------------------------------- /styles/img/flags/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/tr.png -------------------------------------------------------------------------------- /styles/img/flags/tt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/tt.png -------------------------------------------------------------------------------- /styles/img/flags/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/tv.png -------------------------------------------------------------------------------- /styles/img/flags/tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/tw.png -------------------------------------------------------------------------------- /styles/img/flags/tz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/tz.png -------------------------------------------------------------------------------- /styles/img/flags/ua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ua.png -------------------------------------------------------------------------------- /styles/img/flags/ug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ug.png -------------------------------------------------------------------------------- /styles/img/flags/um.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/um.png -------------------------------------------------------------------------------- /styles/img/flags/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/us.png -------------------------------------------------------------------------------- /styles/img/flags/uy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/uy.png -------------------------------------------------------------------------------- /styles/img/flags/uz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/uz.png -------------------------------------------------------------------------------- /styles/img/flags/va.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/va.png -------------------------------------------------------------------------------- /styles/img/flags/vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/vc.png -------------------------------------------------------------------------------- /styles/img/flags/ve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ve.png -------------------------------------------------------------------------------- /styles/img/flags/vg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/vg.png -------------------------------------------------------------------------------- /styles/img/flags/vi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/vi.png -------------------------------------------------------------------------------- /styles/img/flags/vn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/vn.png -------------------------------------------------------------------------------- /styles/img/flags/vu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/vu.png -------------------------------------------------------------------------------- /styles/img/flags/wales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/wales.png -------------------------------------------------------------------------------- /styles/img/flags/wf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/wf.png -------------------------------------------------------------------------------- /styles/img/flags/ws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ws.png -------------------------------------------------------------------------------- /styles/img/flags/ye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/ye.png -------------------------------------------------------------------------------- /styles/img/flags/yt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/yt.png -------------------------------------------------------------------------------- /styles/img/flags/za.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/za.png -------------------------------------------------------------------------------- /styles/img/flags/zm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/zm.png -------------------------------------------------------------------------------- /styles/img/flags/zw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/flags/zw.png -------------------------------------------------------------------------------- /styles/img/glass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/glass.jpg -------------------------------------------------------------------------------- /styles/img/gradient/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/gradient/login.png -------------------------------------------------------------------------------- /styles/img/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/hue.png -------------------------------------------------------------------------------- /styles/img/invoice/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/invoice/license.txt -------------------------------------------------------------------------------- /styles/img/invoice/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/invoice/paypal.png -------------------------------------------------------------------------------- /styles/img/invoice/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/invoice/visa.png -------------------------------------------------------------------------------- /styles/img/jcrop/Jcrop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/jcrop/Jcrop.gif -------------------------------------------------------------------------------- /styles/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/loading.gif -------------------------------------------------------------------------------- /styles/img/logo-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/logo-blue.png -------------------------------------------------------------------------------- /styles/img/logo-o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/logo-o.png -------------------------------------------------------------------------------- /styles/img/logo-pale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/logo-pale.png -------------------------------------------------------------------------------- /styles/img/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/logo-white.png -------------------------------------------------------------------------------- /styles/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/logo.png -------------------------------------------------------------------------------- /styles/img/mappin-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/mappin-default.png -------------------------------------------------------------------------------- /styles/img/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/minus.png -------------------------------------------------------------------------------- /styles/img/mybg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/mybg.png -------------------------------------------------------------------------------- /styles/img/new.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/new.jpg -------------------------------------------------------------------------------- /styles/img/pattern/divider.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/pattern/divider.jpg -------------------------------------------------------------------------------- /styles/img/pattern/graphy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/pattern/graphy.png -------------------------------------------------------------------------------- /styles/img/pattern/movable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/pattern/movable.png -------------------------------------------------------------------------------- /styles/img/pattern/nistri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/pattern/nistri.png -------------------------------------------------------------------------------- /styles/img/pattern/paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/pattern/paper.png -------------------------------------------------------------------------------- /styles/img/pattern/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/pattern/pattern.png -------------------------------------------------------------------------------- /styles/img/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/plus.png -------------------------------------------------------------------------------- /styles/img/ribbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/ribbon.png -------------------------------------------------------------------------------- /styles/img/sa-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/sa-dark.png -------------------------------------------------------------------------------- /styles/img/sa-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/sa-default.png -------------------------------------------------------------------------------- /styles/img/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/saturation.png -------------------------------------------------------------------------------- /styles/img/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/select2-spinner.gif -------------------------------------------------------------------------------- /styles/img/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/sort_asc.png -------------------------------------------------------------------------------- /styles/img/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/sort_both.png -------------------------------------------------------------------------------- /styles/img/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/sort_desc.png -------------------------------------------------------------------------------- /styles/img/splash/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/splash/iphone.png -------------------------------------------------------------------------------- /styles/img/stats/alliance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/stats/alliance.png -------------------------------------------------------------------------------- /styles/img/stats/builds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/stats/builds.png -------------------------------------------------------------------------------- /styles/img/stats/defense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/stats/defense.png -------------------------------------------------------------------------------- /styles/img/stats/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/stats/desktop.ini -------------------------------------------------------------------------------- /styles/img/stats/fleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/stats/fleet.png -------------------------------------------------------------------------------- /styles/img/stats/players.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/stats/players.png -------------------------------------------------------------------------------- /styles/img/stats/tech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/stats/tech.png -------------------------------------------------------------------------------- /styles/img/sun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/sun.jpg -------------------------------------------------------------------------------- /styles/img/violate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/violate.jpg -------------------------------------------------------------------------------- /styles/img/vt-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/img/vt-menu.png -------------------------------------------------------------------------------- /styles/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles/js/app.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/js/app.config.js -------------------------------------------------------------------------------- /styles/js/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/js/app.min.js -------------------------------------------------------------------------------- /styles/js/demo.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/js/demo.min.js -------------------------------------------------------------------------------- /styles/js/plugin/ckeditor/samples/assets/sample.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Required by tests (dom/document.html). 3 | */ 4 | -------------------------------------------------------------------------------- /styles/js/plugin/select2/readme.txt: -------------------------------------------------------------------------------- 1 | 08/06/2014: select2 has been updated to the latest version 3.4.8 -------------------------------------------------------------------------------- /styles/php/demo-comment.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles/php/demo-contacts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/php/demo-contacts.php -------------------------------------------------------------------------------- /styles/php/demo-register.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles/resource/images/admin/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles/resource/images/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles/sound/bigbox.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/sound/bigbox.mp3 -------------------------------------------------------------------------------- /styles/sound/bigbox.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/sound/bigbox.ogg -------------------------------------------------------------------------------- /styles/sound/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/sound/license.txt -------------------------------------------------------------------------------- /styles/sound/messagebox.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/sound/messagebox.mp3 -------------------------------------------------------------------------------- /styles/sound/messagebox.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/sound/messagebox.ogg -------------------------------------------------------------------------------- /styles/sound/smallbox.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/sound/smallbox.mp3 -------------------------------------------------------------------------------- /styles/sound/smallbox.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/sound/smallbox.ogg -------------------------------------------------------------------------------- /styles/sound/voice_alert.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/sound/voice_alert.mp3 -------------------------------------------------------------------------------- /styles/sound/voice_alert.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/sound/voice_alert.ogg -------------------------------------------------------------------------------- /styles/sound/voice_off.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/sound/voice_off.mp3 -------------------------------------------------------------------------------- /styles/sound/voice_off.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/sound/voice_off.ogg -------------------------------------------------------------------------------- /styles/sound/voice_on.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/sound/voice_on.mp3 -------------------------------------------------------------------------------- /styles/sound/voice_on.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/sound/voice_on.ogg -------------------------------------------------------------------------------- /styles/templates/game/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /styles/theme/gow/formate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/theme/gow/formate.css -------------------------------------------------------------------------------- /styles/theme/gow/img/b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/theme/gow/img/b.gif -------------------------------------------------------------------------------- /styles/theme/gow/img/e.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/theme/gow/img/e.gif -------------------------------------------------------------------------------- /styles/theme/gow/img/m.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/theme/gow/img/m.gif -------------------------------------------------------------------------------- /styles/theme/gow/img/r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/theme/gow/img/r.gif -------------------------------------------------------------------------------- /styles/theme/gow/img/s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/theme/gow/img/s.gif -------------------------------------------------------------------------------- /styles/theme/gow/pic/abort.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/theme/gow/pic/abort.gif -------------------------------------------------------------------------------- /styles/theme/gow/pic/key.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/theme/gow/pic/key.gif -------------------------------------------------------------------------------- /styles/theme/gow/settings.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/theme/gow/settings.cfg -------------------------------------------------------------------------------- /styles/theme/gow/style.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/theme/gow/style.cfg -------------------------------------------------------------------------------- /styles/theme/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles/xml/gmap/pins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/styles/xml/gmap/pins.xml -------------------------------------------------------------------------------- /userpic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/userpic.php -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/maximebf/debugbar/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "/src/DebugBar/Resources/vendor" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/vendor/nesbot/carbon/LICENSE -------------------------------------------------------------------------------- /vendor/nesbot/carbon/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/vendor/nesbot/carbon/readme.md -------------------------------------------------------------------------------- /vendor/psr/log/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /vendor/psr/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/vendor/psr/log/LICENSE -------------------------------------------------------------------------------- /vendor/psr/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/vendor/psr/log/README.md -------------------------------------------------------------------------------- /vendor/psr/log/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wumix/Smart-Space/HEAD/vendor/psr/log/composer.json --------------------------------------------------------------------------------