diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7ae2304 --- /dev/null +++ b/.gitignore @@ -0,0 +1,130 @@ +#------------------------- +# Operating Specific Junk Files +#------------------------- + +# OS X +.DS_Store +.AppleDouble +.LSOverride + +# OS X Thumbnails +._* + +# Windows image file caches +Thumbs.db +ehthumbs.db +Desktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Windows Installer files +*.cab +*.msi +*.msm +*.msp + +# Windows shortcuts +*.lnk + +# Linux +*~ + +# KDE directory preferences +.directory + +# Linux trash folder which might appear on any partition or disk +.Trash-* + +#------------------------- +# Environment Files +#------------------------- +# These should never be under version control, +# as it poses a security risk. +.env +.vagrant +Vagrantfile + +#------------------------- +# Temporary Files +#------------------------- +writable/cache/* +!writable/cache/index.html + +writable/logs/* +!writable/logs/index.html + +writable/session/* +!writable/session/index.html + +writable/uploads/* +!writable/uploads/index.html + +writable/debugbar/* + +php_errors.log + +#------------------------- +# User Guide Temp Files +#------------------------- +user_guide_src/build/* +user_guide_src/cilexer/build/* +user_guide_src/cilexer/dist/* +user_guide_src/cilexer/pycilexer.egg-info/* + +#------------------------- +# Test Files +#------------------------- +tests/coverage* + +# Don't save phpunit under version control. +phpunit + +#------------------------- +# Composer +#------------------------- +composer.lock +vendor/ + +#------------------------- +# IDE / Development Files +#------------------------- + +# Modules Testing +_modules/* + +# phpenv local config +.php-version + +# Jetbrains editors (PHPStorm, etc) +.idea/ +*.iml + +# Netbeans +nbproject/ +build/ +nbbuild/ +nbdist/ +nbactions.xml +nb-configuration.xml +.nb-gradle/ + +# Sublime Text +*.tmlanguage.cache +*.tmPreferences.cache +*.stTheme.cache +*.sublime-workspace +*.sublime-project +.phpintel +/api/ + +# Visual Studio Code +.vscode/ + +/results/ +/phpunit*.xml +/.phpunit.*.cache + +#mapurl 결과물 +public/mapurl/index.html +public/uploads/* \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..0119e5f --- /dev/null +++ b/LICENSE @@ -0,0 +1,22 @@ +The MIT License (MIT) + +Copyright (c) 2014-2019 British Columbia Institute of Technology +Copyright (c) 2019-2023 CodeIgniter Foundation + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/README.md b/README.md index cced35f..d223cdb 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,66 @@ -# cfmgrv3 +#Tips +vscode와 Git의 대소문자 구분시키기 +git config core.ignorecase false +# 1. CodeIgniter 4 Application Starter + +`composer create-project codeigniter4/appstarter 프로젝트명` + +## 2. Setup + +php.ini에 extension=intl 필요 +apache의 DocumentRoot "패키지명/public" 수정 후 restart 필요 +Copy `env` to `.env` and tailor for your app, specifically the baseURL and any database settings. +.env 수정 +CI_ENVIRONMENT = development + +# 3. 필요한 추가 패키지 + +composer require saleh7/proxmox-ve_php_api + +## 4. Running Development Server + +php spark serve + +## 5. Web접속 + +개발용 -> localhost:8080 +실서버 -> https://proxmox.idcjp.jp + +## 6. new Controller추가시 Config\Routes.php에 Routing설정 필요 + +$routes->get('/ProxmoxAPI', 'ProxmoxAPI::index'); + +## 7. composer.json의 "psr-4" 수정시 reload + +"psr-4": { +"Tests\\Support\\": "tests/\_support" +"APP\\": "app" +} +composer dump-autoload + +## 8. php spark 사용법 (https://onlinewebtutorblog.com/how-to-work-with-codeigniter-4-model-and-entity-tutorial/) + +- User Table 관련 + php spark migrate:create create_user_table --> table 생성 + php spark migrate --> table 적용 + php spark make:migration update_and_addfield_to_users_table --> 기존 table 내용변경없이 column변경시 + php spark migrate:refresh --> table 수정후 재생성 + php spark migrate:rollback + php spark migrate:status --> 상태보기 + +- 초기 데이터 넣기 + php spark make:seeder user --suffix + php spark db:seed UsersSeeder + +- mvc 생성 --suffix 추가필요 + php spark make:model user --suffix + php spark make:controller user --suffix + php spark make:entity user --suffix + +- auth용 + php spark make:filter AuthGuard + +## 9. Login관련 참조 + +https://www.jurisic.org/post/2022/11/28/How-to-make-simple-Authentication-with-CodeIgniter-4 diff --git a/app/.htaccess b/app/.htaccess new file mode 100644 index 0000000..f24db0a --- /dev/null +++ b/app/.htaccess @@ -0,0 +1,6 @@ + + Require all denied + + + Deny from all + diff --git a/app/Common.php b/app/Common.php new file mode 100644 index 0000000..23e3e61 --- /dev/null +++ b/app/Common.php @@ -0,0 +1,15 @@ + + */ + public array $allowedHostnames = []; + + /** + * -------------------------------------------------------------------------- + * Index File + * -------------------------------------------------------------------------- + * + * Typically this will be your index.php file, unless you've renamed it to + * something else. If you are using mod_rewrite to remove the page set this + * variable so that it is blank. + */ + //public string $indexPage = 'index.php'; + public string $indexPage = ''; + /** + * -------------------------------------------------------------------------- + * URI PROTOCOL + * -------------------------------------------------------------------------- + * + * This item determines which server global should be used to retrieve the + * URI string. The default setting of 'REQUEST_URI' works for most servers. + * If your links do not seem to work, try one of the other delicious flavors: + * + * 'REQUEST_URI' Uses $_SERVER['REQUEST_URI'] + * 'QUERY_STRING' Uses $_SERVER['QUERY_STRING'] + * 'PATH_INFO' Uses $_SERVER['PATH_INFO'] + * + * WARNING: If you set this to 'PATH_INFO', URIs will always be URL-decoded! + */ + public string $uriProtocol = 'REQUEST_URI'; + + /** + * -------------------------------------------------------------------------- + * Default Locale + * -------------------------------------------------------------------------- + * + * The Locale roughly represents the language and location that your visitor + * is viewing the site from. It affects the language strings and other + * strings (like currency markers, numbers, etc), that your program + * should run under for this request. + */ + public string $defaultLocale = 'en'; + + /** + * -------------------------------------------------------------------------- + * Negotiate Locale + * -------------------------------------------------------------------------- + * + * If true, the current Request object will automatically determine the + * language to use based on the value of the Accept-Language header. + * + * If false, no automatic detection will be performed. + */ + public bool $negotiateLocale = false; + + /** + * -------------------------------------------------------------------------- + * Supported Locales + * -------------------------------------------------------------------------- + * + * If $negotiateLocale is true, this array lists the locales supported + * by the application in descending order of priority. If no match is + * found, the first locale will be used. + * + * @var string[] + */ + public array $supportedLocales = ['en']; + + /** + * -------------------------------------------------------------------------- + * Application Timezone + * -------------------------------------------------------------------------- + * + * The default timezone that will be used in your application to display + * dates with the date helper, and can be retrieved through app_timezone() + */ + public string $appTimezone = 'UTC'; + + /** + * -------------------------------------------------------------------------- + * Default Character Set + * -------------------------------------------------------------------------- + * + * This determines which character set is used by default in various methods + * that require a character set to be provided. + * + * @see http://php.net/htmlspecialchars for a list of supported charsets. + */ + public string $charset = 'UTF-8'; + + /** + * -------------------------------------------------------------------------- + * URI PROTOCOL + * -------------------------------------------------------------------------- + * + * If true, this will force every request made to this application to be + * made via a secure connection (HTTPS). If the incoming request is not + * secure, the user will be redirected to a secure version of the page + * and the HTTP Strict Transport Security header will be set. + */ + public bool $forceGlobalSecureRequests = false; + + /** + * -------------------------------------------------------------------------- + * Session Driver + * -------------------------------------------------------------------------- + * + * The session storage driver to use: + * - `CodeIgniter\Session\Handlers\FileHandler` + * - `CodeIgniter\Session\Handlers\DatabaseHandler` + * - `CodeIgniter\Session\Handlers\MemcachedHandler` + * - `CodeIgniter\Session\Handlers\RedisHandler` + * + * @deprecated use Config\Session::$driver instead. + */ + public string $sessionDriver = FileHandler::class; + + /** + * -------------------------------------------------------------------------- + * Session Cookie Name + * -------------------------------------------------------------------------- + * + * The session cookie name, must contain only [0-9a-z_-] characters + * + * @deprecated use Config\Session::$cookieName instead. + */ + public string $sessionCookieName = 'ci_session'; + + /** + * -------------------------------------------------------------------------- + * Session Expiration + * -------------------------------------------------------------------------- + * + * The number of SECONDS you want the session to last. + * Setting to 0 (zero) means expire when the browser is closed. + * + * @deprecated use Config\Session::$expiration instead. + */ + public int $sessionExpiration = 7200; + + /** + * -------------------------------------------------------------------------- + * Session Save Path + * -------------------------------------------------------------------------- + * + * The location to save sessions to and is driver dependent. + * + * For the 'files' driver, it's a path to a writable directory. + * WARNING: Only absolute paths are supported! + * + * For the 'database' driver, it's a table name. + * Please read up the manual for the format with other session drivers. + * + * IMPORTANT: You are REQUIRED to set a valid save path! + * + * @deprecated use Config\Session::$savePath instead. + */ + public string $sessionSavePath = WRITEPATH . 'session'; + + /** + * -------------------------------------------------------------------------- + * Session Match IP + * -------------------------------------------------------------------------- + * + * Whether to match the user's IP address when reading the session data. + * + * WARNING: If you're using the database driver, don't forget to update + * your session table's PRIMARY KEY when changing this setting. + * + * @deprecated use Config\Session::$matchIP instead. + */ + public bool $sessionMatchIP = false; + + /** + * -------------------------------------------------------------------------- + * Session Time to Update + * -------------------------------------------------------------------------- + * + * How many seconds between CI regenerating the session ID. + * + * @deprecated use Config\Session::$timeToUpdate instead. + */ + public int $sessionTimeToUpdate = 300; + + /** + * -------------------------------------------------------------------------- + * Session Regenerate Destroy + * -------------------------------------------------------------------------- + * + * Whether to destroy session data associated with the old session ID + * when auto-regenerating the session ID. When set to FALSE, the data + * will be later deleted by the garbage collector. + * + * @deprecated use Config\Session::$regenerateDestroy instead. + */ + public bool $sessionRegenerateDestroy = false; + + /** + * -------------------------------------------------------------------------- + * Session Database Group + * -------------------------------------------------------------------------- + * + * DB Group for the database session. + * + * @deprecated use Config\Session::$DBGroup instead. + */ + public ?string $sessionDBGroup = null; + + /** + * -------------------------------------------------------------------------- + * Cookie Prefix + * -------------------------------------------------------------------------- + * + * Set a cookie name prefix if you need to avoid collisions. + * + * @deprecated use Config\Cookie::$prefix property instead. + */ + public string $cookiePrefix = ''; + + /** + * -------------------------------------------------------------------------- + * Cookie Domain + * -------------------------------------------------------------------------- + * + * Set to `.your-domain.com` for site-wide cookies. + * + * @deprecated use Config\Cookie::$domain property instead. + */ + public string $cookieDomain = ''; + + /** + * -------------------------------------------------------------------------- + * Cookie Path + * -------------------------------------------------------------------------- + * + * Typically will be a forward slash. + * + * @deprecated use Config\Cookie::$path property instead. + */ + public string $cookiePath = '/'; + + /** + * -------------------------------------------------------------------------- + * Cookie Secure + * -------------------------------------------------------------------------- + * + * Cookie will only be set if a secure HTTPS connection exists. + * + * @deprecated use Config\Cookie::$secure property instead. + */ + public bool $cookieSecure = false; + + /** + * -------------------------------------------------------------------------- + * Cookie HttpOnly + * -------------------------------------------------------------------------- + * + * Cookie will only be accessible via HTTP(S) (no JavaScript). + * + * @deprecated use Config\Cookie::$httponly property instead. + */ + public bool $cookieHTTPOnly = true; + + /** + * -------------------------------------------------------------------------- + * Cookie SameSite + * -------------------------------------------------------------------------- + * + * Configure cookie SameSite setting. Allowed values are: + * - None + * - Lax + * - Strict + * - '' + * + * Alternatively, you can use the constant names: + * - `Cookie::SAMESITE_NONE` + * - `Cookie::SAMESITE_LAX` + * - `Cookie::SAMESITE_STRICT` + * + * Defaults to `Lax` for compatibility with modern browsers. Setting `''` + * (empty string) means default SameSite attribute set by browsers (`Lax`) + * will be set on cookies. If set to `None`, `$cookieSecure` must also be set. + * + * @deprecated use Config\Cookie::$samesite property instead. + */ + public ?string $cookieSameSite = 'Lax'; + + /** + * -------------------------------------------------------------------------- + * Reverse Proxy IPs + * -------------------------------------------------------------------------- + * + * If your server is behind a reverse proxy, you must whitelist the proxy + * IP addresses from which CodeIgniter should trust headers such as + * X-Forwarded-For or Client-IP in order to properly identify + * the visitor's IP address. + * + * You need to set a proxy IP address or IP address with subnets and + * the HTTP header for the client IP address. + * + * Here are some examples: + * [ + * '10.0.1.200' => 'X-Forwarded-For', + * '192.168.5.0/24' => 'X-Real-IP', + * ] + * + * @var array + */ + public array $proxyIPs = []; + + /** + * -------------------------------------------------------------------------- + * CSRF Token Name + * -------------------------------------------------------------------------- + * + * The token name. + * + * @deprecated Use `Config\Security` $tokenName property instead of using this property. + */ + public string $CSRFTokenName = 'csrf_test_name'; + + /** + * -------------------------------------------------------------------------- + * CSRF Header Name + * -------------------------------------------------------------------------- + * + * The header name. + * + * @deprecated Use `Config\Security` $headerName property instead of using this property. + */ + public string $CSRFHeaderName = 'X-CSRF-TOKEN'; + + /** + * -------------------------------------------------------------------------- + * CSRF Cookie Name + * -------------------------------------------------------------------------- + * + * The cookie name. + * + * @deprecated Use `Config\Security` $cookieName property instead of using this property. + */ + public string $CSRFCookieName = 'csrf_cookie_name'; + + /** + * -------------------------------------------------------------------------- + * CSRF Expire + * -------------------------------------------------------------------------- + * + * The number in seconds the token should expire. + * + * @deprecated Use `Config\Security` $expire property instead of using this property. + */ + public int $CSRFExpire = 7200; + + /** + * -------------------------------------------------------------------------- + * CSRF Regenerate + * -------------------------------------------------------------------------- + * + * Regenerate token on every submission? + * + * @deprecated Use `Config\Security` $regenerate property instead of using this property. + */ + public bool $CSRFRegenerate = true; + + /** + * -------------------------------------------------------------------------- + * CSRF Redirect + * -------------------------------------------------------------------------- + * + * Redirect to previous page with error on failure? + * + * @deprecated Use `Config\Security` $redirect property instead of using this property. + */ + public bool $CSRFRedirect = false; + + /** + * -------------------------------------------------------------------------- + * CSRF SameSite + * -------------------------------------------------------------------------- + * + * Setting for CSRF SameSite cookie token. Allowed values are: + * - None + * - Lax + * - Strict + * - '' + * + * Defaults to `Lax` as recommended in this link: + * + * @see https://portswigger.net/web-security/csrf/samesite-cookies + * + * @deprecated `Config\Cookie` $samesite property is used. + */ + public string $CSRFSameSite = 'Lax'; + + /** + * -------------------------------------------------------------------------- + * Content Security Policy + * -------------------------------------------------------------------------- + * + * Enables the Response's Content Secure Policy to restrict the sources that + * can be used for images, scripts, CSS files, audio, video, etc. If enabled, + * the Response object will populate default values for the policy from the + * `ContentSecurityPolicy.php` file. Controllers can always add to those + * restrictions at run time. + * + * For a better understanding of CSP, see these documents: + * + * @see http://www.html5rocks.com/en/tutorials/security/content-security-policy/ + * @see http://www.w3.org/TR/CSP/ + */ + public bool $CSPEnabled = false; +} diff --git a/app/Config/Autoload.php b/app/Config/Autoload.php new file mode 100644 index 0000000..abd9df9 --- /dev/null +++ b/app/Config/Autoload.php @@ -0,0 +1,97 @@ + SYSTEMPATH, + * 'App' => APPPATH + * ]; + * + * @var array|string> + * @phpstan-var array> + */ + public $psr4 = [ + APP_NAMESPACE => APPPATH, // For custom app namespace + 'Config' => APPPATH . 'Config', + ]; + + /** + * ------------------------------------------------------------------- + * Class Map + * ------------------------------------------------------------------- + * The class map provides a map of class names and their exact + * location on the drive. Classes loaded in this manner will have + * slightly faster performance because they will not have to be + * searched for within one or more directories as they would if they + * were being autoloaded through a namespace. + * + * Prototype: + * $classmap = [ + * 'MyClass' => '/path/to/class/file.php' + * ]; + * + * @var array + */ + public $classmap = []; + + /** + * ------------------------------------------------------------------- + * Files + * ------------------------------------------------------------------- + * The files array provides a list of paths to __non-class__ files + * that will be autoloaded. This can be useful for bootstrap operations + * or for loading functions. + * + * Prototype: + * $files = [ + * '/path/to/my/file.php', + * ]; + * + * @var string[] + * @phpstan-var list + */ + public $files = []; + + /** + * ------------------------------------------------------------------- + * Helpers + * ------------------------------------------------------------------- + * Prototype: + * $helpers = [ + * 'form', + * ]; + * + * @var string[] + * @phpstan-var list + */ + public $helpers = []; +} diff --git a/app/Config/Boot/development.php b/app/Config/Boot/development.php new file mode 100644 index 0000000..05a8612 --- /dev/null +++ b/app/Config/Boot/development.php @@ -0,0 +1,32 @@ + + */ + public array $file = [ + 'storePath' => WRITEPATH . 'cache/', + 'mode' => 0640, + ]; + + /** + * ------------------------------------------------------------------------- + * Memcached settings + * ------------------------------------------------------------------------- + * Your Memcached servers can be specified below, if you are using + * the Memcached drivers. + * + * @see https://codeigniter.com/user_guide/libraries/caching.html#memcached + * + * @var array + */ + public array $memcached = [ + 'host' => '127.0.0.1', + 'port' => 11211, + 'weight' => 1, + 'raw' => false, + ]; + + /** + * ------------------------------------------------------------------------- + * Redis settings + * ------------------------------------------------------------------------- + * Your Redis server can be specified below, if you are using + * the Redis or Predis drivers. + * + * @var array + */ + public array $redis = [ + 'host' => '127.0.0.1', + 'password' => null, + 'port' => 6379, + 'timeout' => 0, + 'database' => 0, + ]; + + /** + * -------------------------------------------------------------------------- + * Available Cache Handlers + * -------------------------------------------------------------------------- + * + * This is an array of cache engine alias' and class names. Only engines + * that are listed here are allowed to be used. + * + * @var array + */ + public array $validHandlers = [ + 'dummy' => DummyHandler::class, + 'file' => FileHandler::class, + 'memcached' => MemcachedHandler::class, + 'predis' => PredisHandler::class, + 'redis' => RedisHandler::class, + 'wincache' => WincacheHandler::class, + ]; +} diff --git a/app/Config/Constants.php b/app/Config/Constants.php new file mode 100644 index 0000000..a74a59b --- /dev/null +++ b/app/Config/Constants.php @@ -0,0 +1,177 @@ + [ + 'path' => 'layouts' . DIRECTORY_SEPARATOR . 'empty', + 'stylesheets' => [ + '', + '', + ], + 'javascripts' => [ + '', + ] + ], + 'front' => [ + 'path' => 'layouts' . DIRECTORY_SEPARATOR . 'front', + 'stylesheets' => [ + '', + '', + '', + '', + ], + 'javascripts' => [ + '', + '', + '', + ] + ], + 'admin' => [ + 'path' => 'layouts' . DIRECTORY_SEPARATOR . 'admin', + 'stylesheets' => [ + '', + '', + '', + '', + ], + 'javascripts' => [ + '', + '', + '', + ] + ] +]); + +//Login 관련 +defined('ISLOGIN') || define('ISLOGIN', "isLoggedIn"); +defined('RETURN_URL') || define('RETURN_URL', "return_url"); + +//Default 정의 +defined('DEFAULT_ROLE') || define('DEFAULT_ROLE', 'user'); +defined('DEFAULT_STATUS') || define('DEFAULT_STATUS', 'use'); +defined('DEFAULT_EMPTY') || define('DEFAULT_EMPTY', ''); +defined('DEFAULT_PERPAGE') || define('DEFAULT_PERPAGE', 20); +defined('Excel_FilePath') || define('Excel_FilePath', "../writable/Excel"); +if (!is_dir(Excel_FilePath)) { + mkdir(Excel_FilePath, 0640); +} +//Cloudflare CLI MAX_PER_PAGE정의 +defined('CF_REQUEST_MAX') || define('CF_REQUEST_MAX', 1000); +defined('CF_REQUEST_WAITTIME') || define('CF_REQUEST_WAITTIME', 60); //Default 60 +defined('CF_ADAPTER_PERPAGE_MAX') || define('CF_ADAPTER_PERPAGE_MAX', 700); //Default 700 +defined('CF_DEFAULT_RELOADING_OPTIONS') || define('CF_DEFAULT_RELOADING_OPTIONS', ['page_limit' => 0, 'child' => 'off', 'cfsetting' => 'off']); +defined('CF_DEFAULT_HOSTS') || define('CF_DEFAULT_HOSTS', ['@', '*', 'm', 'www']); +defined('CF_FilePath') || define('CF_FilePath', "../writable/Cloudflare"); +if (!is_dir(CF_FilePath)) { + mkdir(CF_FilePath); +} + +//Upload , Download 관려 +define('FILES', [ + 'UPLOADS' => ['mode' => 0600, 'path' => 'uploads'], + 'DOWNLOADS' => ['mode' => 0600, 'path' => 'downloads'], +]); + +//아이콘 및 Sound관련 +//'EXCEL' => '', +define('ICONS', [ + 'NEW' => '', + 'DELETE' => '', + 'RELOAD' => '', + 'SETTING' => '', + 'FLAG' => '', + 'EXCEL' => '', + 'AUDIO_Alram_GetEmail' => '' +]); diff --git a/app/Config/ContentSecurityPolicy.php b/app/Config/ContentSecurityPolicy.php new file mode 100644 index 0000000..18612e1 --- /dev/null +++ b/app/Config/ContentSecurityPolicy.php @@ -0,0 +1,176 @@ +` element. + * + * Will default to self if not overridden + * + * @var string|string[]|null + */ + public $baseURI; + + /** + * Lists the URLs for workers and embedded frame contents + * + * @var string|string[] + */ + public $childSrc = 'self'; + + /** + * Limits the origins that you can connect to (via XHR, + * WebSockets, and EventSource). + * + * @var string|string[] + */ + public $connectSrc = 'self'; + + /** + * Specifies the origins that can serve web fonts. + * + * @var string|string[] + */ + public $fontSrc; + + /** + * Lists valid endpoints for submission from `
` tags. + * + * @var string|string[] + */ + public $formAction = 'self'; + + /** + * Specifies the sources that can embed the current page. + * This directive applies to ``, ` + + + + + + +endSection() ?> \ No newline at end of file diff --git a/app/Views/admin/user/insert.php b/app/Views/admin/user/insert.php new file mode 100644 index 0000000..d92203d --- /dev/null +++ b/app/Views/admin/user/insert.php @@ -0,0 +1,22 @@ +extend('layouts/admin') ?> +section('content') ?> +include('templates/admin/header'); ?> + + + + + + + + + +
+ + + + +
"btn btn-outline btn-primary")); ?>
+ +getFlashdata('error')):?>getFlashdata('error') ?> +include('templates/admin/footer'); ?> +endSection() ?> \ No newline at end of file diff --git a/app/Views/admin/user/update.php b/app/Views/admin/user/update.php new file mode 100644 index 0000000..164f1c1 --- /dev/null +++ b/app/Views/admin/user/update.php @@ -0,0 +1,22 @@ +extend('layouts/admin') ?> +section('content') ?> +include('templates/admin/header'); ?> + + + + + + + + + +
+ + + $field:old($field),$fieldFormOptions) ?> + +
"btn btn-outline btn-primary")); ?>
+ +getFlashdata('error')):?>getFlashdata('error') ?> +include('templates/admin/footer'); ?> +endSection() ?> \ No newline at end of file diff --git a/app/Views/admin/user/view.php b/app/Views/admin/user/view.php new file mode 100644 index 0000000..42f6d8d --- /dev/null +++ b/app/Views/admin/user/view.php @@ -0,0 +1,15 @@ +extend('layouts/admin') ?> +section('content') ?> +include('templates/admin/header'); ?> + + + + + + + +
+ +
+include('templates/admin/footer'); ?> +endSection() ?> \ No newline at end of file diff --git a/app/Views/auth/login.php b/app/Views/auth/login.php new file mode 100644 index 0000000..eae794c --- /dev/null +++ b/app/Views/auth/login.php @@ -0,0 +1,29 @@ +extend('layouts/empty') ?> +section('content') ?> +
+ + + + + + + + + +
+ + + + + + + + + +
계정
암호
+
+ getFlashdata('error')):?>getFlashdata('error') ?> +
+ +
+endSection() ?> diff --git a/app/Views/errors/cli/error_404.php b/app/Views/errors/cli/error_404.php new file mode 100644 index 0000000..456ea3e --- /dev/null +++ b/app/Views/errors/cli/error_404.php @@ -0,0 +1,7 @@ +getFile()) . ':' . $exception->getLine(), 'green')); +CLI::newLine(); + +// The backtrace +if (defined('SHOW_DEBUG_BACKTRACE') && SHOW_DEBUG_BACKTRACE) { + $backtraces = $exception->getTrace(); + + if ($backtraces) { + CLI::write('Backtrace:', 'green'); + } + + foreach ($backtraces as $i => $error) { + $padFile = ' '; // 4 spaces + $padClass = ' '; // 7 spaces + $c = str_pad($i + 1, 3, ' ', STR_PAD_LEFT); + + if (isset($error['file'])) { + $filepath = clean_path($error['file']) . ':' . $error['line']; + + CLI::write($c . $padFile . CLI::color($filepath, 'yellow')); + } else { + CLI::write($c . $padFile . CLI::color('[internal function]', 'yellow')); + } + + $function = ''; + + if (isset($error['class'])) { + $type = ($error['type'] === '->') ? '()' . $error['type'] : $error['type']; + $function .= $padClass . $error['class'] . $type . $error['function']; + } elseif (! isset($error['class']) && isset($error['function'])) { + $function .= $padClass . $error['function']; + } + + $args = implode(', ', array_map(static function ($value) { + switch (true) { + case is_object($value): + return 'Object(' . get_class($value) . ')'; + + case is_array($value): + return count($value) ? '[...]' : '[]'; + + case $value === null: + return 'null'; // return the lowercased version + + default: + return var_export($value, true); + } + }, array_values($error['args'] ?? []))); + + $function .= '(' . $args . ')'; + + CLI::write($function); + CLI::newLine(); + } +} diff --git a/app/Views/errors/cli/production.php b/app/Views/errors/cli/production.php new file mode 100644 index 0000000..7db744e --- /dev/null +++ b/app/Views/errors/cli/production.php @@ -0,0 +1,5 @@ + + + + + <?= lang('Errors.pageNotFound') ?> + + + + +
+

404

+ +

+ + + + + +

+
+ + diff --git a/app/Views/errors/html/error_exception.php b/app/Views/errors/html/error_exception.php new file mode 100644 index 0000000..ae46d30 --- /dev/null +++ b/app/Views/errors/html/error_exception.php @@ -0,0 +1,397 @@ + + + + + + + + <?= esc($title) ?> + + + + + + + +
+
+

getCode() ? ' #' . $exception->getCode() : '') ?>

+

+ getMessage())) ?> + getMessage())) ?>" + rel="noreferrer" target="_blank">search → +

+
+
+ + +
+

at line

+ + +
+ +
+ +
+ +
+ + + +
+ + +
+ +
    + $row) : ?> + +
  1. +

    + + + + + {PHP internal code} + + + + +   —   + + + ( arguments ) +

    + + + getParameters(); + } + + foreach ($row['args'] as $key => $value) : ?> + + + + + + +
    name : "#{$key}") ?>
    +
    + + () + + + + +   —   () + +

    + + + +
    + +
    + +
  2. + + +
+ +
+ + +
+ + + +

$

+ + + + + + + + + + $value) : ?> + + + + + + +
KeyValue
+ + + +
+ +
+ + + + + + +

Constants

+ + + + + + + + + + $value) : ?> + + + + + + +
KeyValue
+ + + +
+ +
+ +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
PathgetUri()) ?>
HTTP MethodgetMethod())) ?>
IP AddressgetIPAddress()) ?>
Is AJAX Request?isAJAX() ? 'yes' : 'no' ?>
Is CLI Request?isCLI() ? 'yes' : 'no' ?>
Is Secure Request?isSecure() ? 'yes' : 'no' ?>
User AgentgetUserAgent()->getAgentString()) ?>
+ + + + + + + + +

$

+ + + + + + + + + + $value) : ?> + + + + + + +
KeyValue
+ + + +
+ +
+ + + + + +
+ No $_GET, $_POST, or $_COOKIE Information to show. +
+ + + + headers(); ?> + + +

Headers

+ + + + + + + + + + + + + + + + + + + +
HeaderValue
getName(), 'html') ?>getValueLine(), 'html') ?>
+ + +
+ + + setStatusCode(http_response_code()); + ?> +
+ + + + + +
Response StatusgetStatusCode() . ' - ' . $response->getReasonPhrase()) ?>
+ + headers(); ?> + + + +

Headers

+ + + + + + + + + + $value) : ?> + + + + + + +
HeaderValue
getHeaderLine($name), 'html') ?>
+ + +
+ + +
+ + +
    + +
  1. + +
+
+ + +
+ + + + + + + + + + + + + + + + +
Memory Usage
Peak Memory Usage:
Memory Limit:
+ +
+ +
+ +
+ + + + + diff --git a/app/Views/errors/html/production.php b/app/Views/errors/html/production.php new file mode 100644 index 0000000..2f59a8d --- /dev/null +++ b/app/Views/errors/html/production.php @@ -0,0 +1,25 @@ + + + + + + + <?= lang('Errors.whoops') ?> + + + + + +
+ +

+ +

+ +
+ + + + diff --git a/app/Views/layouts/admin.php b/app/Views/layouts/admin.php new file mode 100644 index 0000000..1881ce6 --- /dev/null +++ b/app/Views/layouts/admin.php @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + <?php echo $title ?> + + + + + include($layout['path'] . '/top_menu'); ?> + +
+
+ + include($layout['path'] . '/left_menu'); ?> + +
+
+ + renderSection('content') ?> + +
+
+ + + \ No newline at end of file diff --git a/app/Views/layouts/admin/left_menu.php b/app/Views/layouts/admin/left_menu.php new file mode 100644 index 0000000..a111f33 --- /dev/null +++ b/app/Views/layouts/admin/left_menu.php @@ -0,0 +1,70 @@ + + + + \ No newline at end of file diff --git a/app/Views/layouts/admin/make_password.php b/app/Views/layouts/admin/make_password.php new file mode 100644 index 0000000..23f0cc2 --- /dev/null +++ b/app/Views/layouts/admin/make_password.php @@ -0,0 +1,4 @@ +
+ + +
\ No newline at end of file diff --git a/app/Views/layouts/admin/member_link.php b/app/Views/layouts/admin/member_link.php new file mode 100644 index 0000000..06cf4ad --- /dev/null +++ b/app/Views/layouts/admin/member_link.php @@ -0,0 +1,17 @@ + + \ No newline at end of file diff --git a/app/Views/layouts/admin/quick_btn.php b/app/Views/layouts/admin/quick_btn.php new file mode 100644 index 0000000..5d7a659 --- /dev/null +++ b/app/Views/layouts/admin/quick_btn.php @@ -0,0 +1,15 @@ + + "post")) ?> + + \ No newline at end of file diff --git a/app/Views/layouts/admin/top_menu.php b/app/Views/layouts/admin/top_menu.php new file mode 100644 index 0000000..8626a05 --- /dev/null +++ b/app/Views/layouts/admin/top_menu.php @@ -0,0 +1,14 @@ + + \ No newline at end of file diff --git a/app/Views/layouts/empty.php b/app/Views/layouts/empty.php new file mode 100644 index 0000000..07900f7 --- /dev/null +++ b/app/Views/layouts/empty.php @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + <?= $title ?> + + + + +
+ + renderSection('content') ?> + +
+ + + + \ No newline at end of file diff --git a/app/Views/layouts/front.php b/app/Views/layouts/front.php new file mode 100644 index 0000000..cd0645d --- /dev/null +++ b/app/Views/layouts/front.php @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + <?php echo $title ?> + + + + +
+ + include($layout['path'] . '/top_logo'); ?> + + include($layout['path'] . '/top_menu'); ?> + + + + renderSection('content') ?> + + + include($layout['path'] . '/copyright'); ?> + +
+ + + + \ No newline at end of file diff --git a/app/Views/layouts/front/cfmgr/copyright.php b/app/Views/layouts/front/cfmgr/copyright.php new file mode 100644 index 0000000..3019147 --- /dev/null +++ b/app/Views/layouts/front/cfmgr/copyright.php @@ -0,0 +1,19 @@ + +
+ + diff --git a/app/Views/layouts/front/cfmgr/header.php b/app/Views/layouts/front/cfmgr/header.php new file mode 100644 index 0000000..6bd4c0b --- /dev/null +++ b/app/Views/layouts/front/cfmgr/header.php @@ -0,0 +1,5 @@ +
+ HOME + title_japanese:$parentCategory->title ?> + title_japanese:$currentCategory->title ?> +
diff --git a/app/Views/layouts/front/cfmgr/siteboard_left_banner.php b/app/Views/layouts/front/cfmgr/siteboard_left_banner.php new file mode 100644 index 0000000..a7e11b4 --- /dev/null +++ b/app/Views/layouts/front/cfmgr/siteboard_left_banner.php @@ -0,0 +1,8 @@ + + + +
+
+
+
+ diff --git a/app/Views/layouts/front/cfmgr/sitecontent_left_banner.php b/app/Views/layouts/front/cfmgr/sitecontent_left_banner.php new file mode 100644 index 0000000..2cf1792 --- /dev/null +++ b/app/Views/layouts/front/cfmgr/sitecontent_left_banner.php @@ -0,0 +1,8 @@ + + + +
+
+
+
+ diff --git a/app/Views/layouts/front/cfmgr/top_logo.php b/app/Views/layouts/front/cfmgr/top_logo.php new file mode 100644 index 0000000..6e5a8d2 --- /dev/null +++ b/app/Views/layouts/front/cfmgr/top_logo.php @@ -0,0 +1,13 @@ + +
+ + +
+ + + + + +
+
+ \ No newline at end of file diff --git a/app/Views/layouts/front/cfmgr/welcome_left_banner.php b/app/Views/layouts/front/cfmgr/welcome_left_banner.php new file mode 100644 index 0000000..18c3514 --- /dev/null +++ b/app/Views/layouts/front/cfmgr/welcome_left_banner.php @@ -0,0 +1,5 @@ +
+ +
+
+
diff --git a/app/Views/layouts/front/cfmgr/welcome_partner_banner.php b/app/Views/layouts/front/cfmgr/welcome_partner_banner.php new file mode 100644 index 0000000..95013bf --- /dev/null +++ b/app/Views/layouts/front/cfmgr/welcome_partner_banner.php @@ -0,0 +1,16 @@ +
+     +   +   +   +   +   +   +   +   +   +   +   +   +   +
diff --git a/app/Views/layouts/front/cfmgr/welcome_right_banner.php b/app/Views/layouts/front/cfmgr/welcome_right_banner.php new file mode 100644 index 0000000..45c9c01 --- /dev/null +++ b/app/Views/layouts/front/cfmgr/welcome_right_banner.php @@ -0,0 +1,14 @@ +
+ +
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/Views/templates/Pagers/bootstrap_full.php b/app/Views/templates/Pagers/bootstrap_full.php new file mode 100644 index 0000000..8d0df7a --- /dev/null +++ b/app/Views/templates/Pagers/bootstrap_full.php @@ -0,0 +1,34 @@ +setSurroundCount(2); +?> + \ No newline at end of file diff --git a/app/Views/templates/Pagers/bootstrap_simple.php b/app/Views/templates/Pagers/bootstrap_simple.php new file mode 100644 index 0000000..e728703 --- /dev/null +++ b/app/Views/templates/Pagers/bootstrap_simple.php @@ -0,0 +1,17 @@ +setSurroundCount(0); +?> + \ No newline at end of file diff --git a/app/Views/templates/admin/cloudflare/dns.php b/app/Views/templates/admin/cloudflare/dns.php new file mode 100644 index 0000000..93b8db8 --- /dev/null +++ b/app/Views/templates/admin/cloudflare/dns.php @@ -0,0 +1,51 @@ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
cloudprime001@idcjp.jp(영,숫자)felicity.ns.cloudflare.comtara.ns.cloudflare.com
cloudjp002@idcjp.jp(ㄱ~ㅅ)aida.ns.cloudflare.comkurt.ns.cloudflare.com
jpcf003@gmail.com(ㅇ~ㅎ)natasha.ns.cloudflare.complato.ns.cloudflare.com
cloudwin001@idcjp.jp(영,숫자)alina.ns.cloudflare.comrick.ns.cloudflare.com
cloudwin002@idcjp.jp(ㄱ~ㅅ)hope.ns.cloudflare.compiotr.ns.cloudflare.com
cloudwin003@idcjp.jp(ㅇ~ㅎ)tani.ns.cloudflare.comwoz.ns.cloudflare.com
+
diff --git a/app/Views/templates/admin/cloudflare/select2.php b/app/Views/templates/admin/cloudflare/select2.php new file mode 100644 index 0000000..ce0af78 --- /dev/null +++ b/app/Views/templates/admin/cloudflare/select2.php @@ -0,0 +1,13 @@ + + + + + + \ No newline at end of file diff --git a/app/Views/templates/admin/footer.php b/app/Views/templates/admin/footer.php new file mode 100644 index 0000000..5be7005 --- /dev/null +++ b/app/Views/templates/admin/footer.php @@ -0,0 +1,28 @@ + + + + + \ No newline at end of file diff --git a/app/Views/templates/admin/header.php b/app/Views/templates/admin/header.php new file mode 100644 index 0000000..bbdb992 --- /dev/null +++ b/app/Views/templates/admin/header.php @@ -0,0 +1,4 @@ + +
+

+
\ No newline at end of file diff --git a/app/Views/templates/admin/index_head.php b/app/Views/templates/admin/index_head.php new file mode 100644 index 0000000..f934d2c --- /dev/null +++ b/app/Views/templates/admin/index_head.php @@ -0,0 +1,6 @@ + + + \ No newline at end of file diff --git a/app/Views/welcome_message.php b/app/Views/welcome_message.php new file mode 100644 index 0000000..6d5da23 --- /dev/null +++ b/app/Views/welcome_message.php @@ -0,0 +1,325 @@ + + + + + Welcome to CodeIgniter 4! + + + + + + + + + + + +
+ + + +
+ +

Welcome to CodeIgniter

+ +

The small framework with powerful features

+ +
+ +
+ + + +
+ +

About this page

+ +

The page you are looking at is being generated dynamically by CodeIgniter.

+ +

If you would like to edit this page you will find it located at:

+ +
app/Views/welcome_message.php
+ +

The corresponding controller for this page can be found at:

+ +
app/Controllers/Home.php
+ +
+ +
+ +
+ +

Go further

+ +

+ + Learn +

+ +

The User Guide contains an introduction, tutorial, a number of "how to" + guides, and then reference documentation for the components that make up + the framework. Check the User Guide !

+ +

+ + Discuss +

+ +

CodeIgniter is a community-developed open source project, with several + venues for the community members to gather and exchange ideas. View all + the threads on CodeIgniter's forum, or chat on Slack !

+ +

+ + Contribute +

+ +

CodeIgniter is a community driven project and accepts contributions + of code and documentation from the community. Why not + + join us ?

+ +
+ +
+ + + +
+
+ +

Page rendered in {elapsed_time} seconds

+ +

Environment:

+ +
+ +
+ +

© CodeIgniter Foundation. CodeIgniter is open source project released under the MIT + open source licence.

+ +
+ +
+ + + + + + + + + diff --git a/app/index.html b/app/index.html new file mode 100644 index 0000000..69df4e1 --- /dev/null +++ b/app/index.html @@ -0,0 +1,11 @@ + + + + 403 Forbidden + + + +

Directory access is forbidden.

+ + + diff --git a/builds b/builds new file mode 100644 index 0000000..cc2ca08 --- /dev/null +++ b/builds @@ -0,0 +1,125 @@ +#!/usr/bin/env php + 'vcs', + 'url' => GITHUB_URL, + ]; + } + + $array['require']['codeigniter4/codeigniter4'] = 'dev-develop'; + unset($array['require']['codeigniter4/framework']); + } else { + unset($array['minimum-stability']); + + if (isset($array['repositories'])) { + foreach ($array['repositories'] as $i => $repository) { + if ($repository['url'] === GITHUB_URL) { + unset($array['repositories'][$i]); + break; + } + } + + if (empty($array['repositories'])) { + unset($array['repositories']); + } + } + + $array['require']['codeigniter4/framework'] = LATEST_RELEASE; + unset($array['require']['codeigniter4/codeigniter4']); + } + + file_put_contents($file, json_encode($array, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES) . PHP_EOL); + + $modified[] = $file; + } else { + echo 'Warning: Unable to decode composer.json! Skipping...' . PHP_EOL; + } + } else { + echo 'Warning: Unable to read composer.json! Skipping...' . PHP_EOL; + } +} + +$files = [ + __DIR__ . DIRECTORY_SEPARATOR . 'app/Config/Paths.php', + __DIR__ . DIRECTORY_SEPARATOR . 'phpunit.xml.dist', + __DIR__ . DIRECTORY_SEPARATOR . 'phpunit.xml', +]; + +foreach ($files as $file) { + if (is_file($file)) { + $contents = file_get_contents($file); + + if ($dev) { + $contents = str_replace('vendor/codeigniter4/framework', 'vendor/codeigniter4/codeigniter4', $contents); + } else { + $contents = str_replace('vendor/codeigniter4/codeigniter4', 'vendor/codeigniter4/framework', $contents); + } + + file_put_contents($file, $contents); + + $modified[] = $file; + } +} + +if ($modified === []) { + echo 'No files modified.' . PHP_EOL; +} else { + echo 'The following files were modified:' . PHP_EOL; + + foreach ($modified as $file) { + echo " * {$file}" . PHP_EOL; + } + + echo 'Run `composer update` to sync changes with your vendor folder.' . PHP_EOL; +} diff --git a/cfmgr_dataflow.png b/cfmgr_dataflow.png new file mode 100644 index 0000000..4a87b3c Binary files /dev/null and b/cfmgr_dataflow.png differ diff --git a/cfmgr_dataflow.xml b/cfmgr_dataflow.xml new file mode 100644 index 0000000..71160b2 --- /dev/null +++ b/cfmgr_dataflow.xml @@ -0,0 +1 @@ +7Z1bc6M4FoB/javSU+UtLr7gx8RJp3s2vZ1Nuio985IiINtMMPKAHNv9sL99JS6+SAKLGBCeqKurYguBhc7R4dM5R6Jjjufr29BezL5BF/gdQ3PXHfO6Yxi6NrLwH1KySUqGWcE09Ny00q7g0fsFsjPT0qXnguigIoLQR97isNCBQQAcdFBmhyFcHVabQP/wVxf2FDAFj47ts6VPnotmaelQ03YHvgBvOst+Ws+OvNjO6zSEyyD9wQAGIDkyt7PrpFWjme3C1V6RedMxxyGEKPk0X4+BT/o167LkvM85R7dtDkGARE64tVHvP5H57fKvh7e36/m/B6vwr64+Si7zZvvLtDMuHQffD0objTZZJ0Urb+7b+PbMqwkM0GN6RMffbd+bBvizg5sCQlzwBkLk4f69TA8guMClzszz3Tt7A5ekwRHCfZd9u5rB0PuFL2v76TXx4RClqmIMDmo8kjNxsYZLQxDhOvdZL+hU0Td7fVDxzo5QWuBA37cXkfeyvY25HU694AoiBOdppdXMQ+BxYTukzgprP2kImmeNZGWQioV0AFjvFaUyuQVwDlC4wVXSo2aqHunQsXrp99WeIg7SstmhDqYDIFX+6fbSOyXAH1I9KKETmcLu6UTHwLc6sOfk9oOXaLG99T39wPeLYrmF8BWMoQ+xIlzH4wErjOf7VFGmMz6YoFyNiXDPe8H0Lq5z3duVPKQdQYogPnfix0Nr5rkuCIi0IbKRnYiWyHEBvQDFHdW/wv/xHY61f/U7fdzwMf6u777j/6R6iMYwwPdie7FkAdabFSC6U14ligfecUVJNQMPAiHFyOpVrxc6Ry8oJfC9WLiJEmS2VH+XBsyxLH2wE/kPohHXXZ1RC5NVC5OjAr79Avx7GHnIg+T6YVKXUo1j0j9Uby+YgdBDdYq9b4iJ3apL6gbfGmgh8KHtXuBHNx48sWnHf31v7qFP2Fb4pFNewgPtGPy9hHExDF0Qdp2kEy/ji4cX3e5++ae4T7Mz8Kdp8pf88sQDfvq7WK3Ac2DPwSdljxq2RwPBB1W/tueUyWjmn1v8UuDSMLiMRPUBY3VdCtFT4FK7odiOujMCl74Cl1PBpbzYpYPLQIGLskcngEuNM+who5oPwMFKpNhFCrvoel9UJ3q16YSl4KV+YzEU1pTWwAvroVXwUhZeSotdNryYOT5YBS8f3B6JwotV13PKZL3An70QrGxyqqIXGfRi6qL0YtamFTleYkUvFVoLU1xT2kIvJuujVfRSkl7Ki106veQ4YhW9fHB7JEovVYQINovfh4sf9+OZt/z+eru+7S0dvdtjn1PXpJPtSMWNGqIXyzjEl6HZpD+OrxW8p5Sil3dbi+Kh10p64TeZ9xxT9JJHLxWJvUF64beYFy4kDBHZb+ACeQh3sDHG5hotI4IvcBopkmjaNjSZfTJYrC3j6VVbwpvPg59fvk9Hf5hdnQ0vfvZ8RRGSKMJqNKrH1wg2qqco4gRLUTzsWkkR/CbzInuKIvIooiKxN0gR/Bbz4naKItplG6TnsLLBlDs4VQwhhyH6Q1GGqC8LRCFE/anubSYIvqNVAcTJC29azA/cBueFUAgxeA75Rde9OIia7Ic7iiBjeMU7KynB4gy48Zd46HWjZOyR8MsiBB1+uAWPAnO0d018+8llkwqZv727NWtxcdxi7v001jLcPc9zEEVktTCvHZQR1nhFw2tlnZu1ztIzYjIY2BuqeKQt3YmP71WxnMbovgsm9tLnG+/SELeVa/awFoW47cL86hWCpfruvuV+xowfJdZI13Yme3v40rUXRAHya6Q99lEtjaAp2Q7Myklv2KtLdXgTAIV6pVCvvNi323lIg72cAPRuyGM2ecwIKccqOCGwEUiNR1HFKUBitdLnASbI3WdlcqrWPUvQ6aAbp2sfN/o2ZENZXhDhO1Dw0owjimYY8U1gtAoYhq8TOcGsDzr8qwlzD1sdvOI3WQWvTk6BKS922SkwQ27wyom7Z+mgi8v7r3jw3EEsOb4LCqyBs0TgomP0cN94aKNiW02bDlG/SBWxDG6TLdYvsly4GFEVVsjBCvEtWmrDCou3h5gKcFVrK6za/B61YYal/B4nY0Z5scvGDIvr9lCYcU6mQz5msJFSF/hAYYYszNC1kXzOyMnhV5xRpbHoCatKaziDtymY4oxynFFa7NI5g+vMVJxxTqZDPmewntBoEziKMiRRxjZ/QyJl5OT4K8qo0lRYwqrSFsoYsZ5PRRllKaO02GVTxojr21SUcU6mQzpljFhH6EO8aU6nP75ceIo2JNGGKbxDbG27lIzULiX1m4zt+Dsj2lC7lJxMG+XFLp02uB7O47RR9d5qClqkW6AmVzFzm6xr7KPpCYavZA2D4hUZvCK8lLmSVTA5SpG3hPE5tk38hYvPscVSJuQkE7Ibj61c+ZLTZvWWnpMx5h2Cb3LtS06buS/qKeE36SRLWu6/5q+HxsfjC1woOmnctLRghYvJxm7UpvXNEspAoz0qwotcqti1nq8WKn5Tv8Uwzy9+w1nRr1CkJIqUF7tsjwpn2X4CD8mqhYu6t6gn2QSKTxq3NtL3pGfnPZeOA5ecxdYKTRpBE/Hlt7WRSc67SxWYVGgq+sJ60hYu4aUxKiwphSWlhS6bStiZ629E4gA9gGjpo6hgD7iUJ2qDFmV9mrQ+0jmFnSz/SSSpIEUKpIyEF9nUphA6b5qsKKXicPDZUYrOm0crTCmXj3JumJK57hnnyRSgR4AQ7vQCUhGok+xIVbsTpiFfT7JCVbmU/pEWuNFX0fBHI5uP8wAcrDSK1iRFu3RLVClqSy3Xc/JxFK5VGR+vLfOmPl5TiTenJ96UFrt0YMtxMSvQUqB1Nrazyb3/uU022FEUp6spypJBWSWynusyqwYboznY+79j9J5D8PcSj5txEuPlTncVk1VoV4zatt216sqGNtS2uyczWXmxbyfksqDM4CUk0gbit8SrdhO496Q72Qr/yyqQ5VhXmyRQWOB7cyZpLPGZvMG40E23q1qYbn0YnlTGq1HjpevC+dYVYNEavt5evwz9m6tv338a9tf/Gj/W3NcYUloAAvcyDGNhpILe6xvgTkEGSbiHZ3AKA9u/2ZViuS0DF7ip1HJZIoLL0El/sfBdPZiY8JBJKv5uPQVXa2N8v7769XJ797P35eFHN7siaVqhFELg42f9GzhoB6+H01PTQZwxTZ9imsGIElJyS+lZOzkxF9pKl4aj7ELJLTMXigW+vZ/36wDrgsx5axHp0TvywMhIc2847unEETvwkqInRxeKVNSBQQCczAJ0tsvhxCE0e2PZiXLv0n4/OJlgM1qHZFg/YDy7OFUw2UO+NZIpK5iTTJ6AE63FJq94BWfdNs/sjw5MVY+er4vaPIM2njoF6Dk2D4vF3uxVSykgt8EG9eZg0zSL22XQ7dIohUtaUOkwZ10TrTLAfWkG+KRxzs7vW2U8K+vVRjtVYLZbqfHEfRhufpIvmOXTr3/sH7teH3zbNGd0M96v2+Yao0OT1NNG77O5vT5l20wxm1uVmWOnzK0yc9Z5mjlObl+r7Fxl3VpXr3InkWxm3HZzN+J6YTpXxQ3y/CaMgDlmOVfmzO5uvUZ3rOf7FziPQBUIKOVLO6IT+SOyFbkZ3ObxtvyjVOCDhwGqF3qDmRnc1nHTtNTGbh/P+jS5GS23eaxPawznczvAFKjhvsJi932yx5t2Mb77yqrHh6SXCvCEmlAJRyUriedwFSEvVyxnk7+PYhfeP/D77cYOtdC4DuwoFrps7OD54MgYd0JgI5CNdKxxpp7YOXJwFRd3M2xImUEZhIp1o8kdXvmgIrAj0nEn7B4z5fp/9vy8cBHLC5ekT3WL0SGsjZOJhv91+PExyot66KgtGgbvFdipkTAqaN8bUBLNcaYyF6I9HDr1qMjx7pYNhOnU7wyL42B09Z6hFdZnuuOw/slxM76us166J/BCIa9C3WpQd9Q61s1dyapg972z3JY72TirJRXuVuBla7ebLW85pKawtzWmQT73iqR1nQP3HslZKBwhAoliZi00PNIqouHB8PBCzLOkIhymk3d1q5iH6fp98wgPDwvr18TDAu9MriG1sRIVzpq6r8Lc/JxkYlH9fI5O5hbTu6PZOkxWeEWJjdR8azAo1kequmU1oY6sc7LJhB/hjBORp9+Ar3R1Z/zwG8M6AJvM+GmwXxvtVoP1JvBfcfMhXQj15/pQFrjZFyMVPpPUe5FaEIFv0WuR+O1Tvok6fBMteikSv33vTAJS70Q6C7PS7CuR+C2Us2Ct7KyueGHaUc/EcMiXw6mLJyiqGNLRCOF5HXWhEf1GgaoWrA2oiV2/eGJH129kZsfZTOdcZ3ZGTnhYysyOsyfNuc7sjvRrs93a9Kq1Ci1ophJHDWjOTPrUTQ4oP+aANnui9pO+kCXoIS7t2LX4Dc5tlyXDfspdClfpOLdaZD8z5fwn2M/ifq2oW/HXEJL1BDvtxmw9+wZd0jU3/wc= \ No newline at end of file diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..ed27063 --- /dev/null +++ b/composer.json @@ -0,0 +1,41 @@ +{ + "name": "codeigniter4/appstarter", + "type": "project", + "description": "CodeIgniter4 starter app", + "homepage": "https://codeigniter.com", + "license": "MIT", + "require": { + "php": "^7.4 || ^8.0", + "phpoffice/phpspreadsheet": "^1.27", + "cloudflare/sdk": "1.3", + "codeigniter4/framework": "^4.3", + "onokumus/metismenu": "dev-master", + "twbs/bootstrap": "5.2.3" + }, + "require-dev": { + "fakerphp/faker": "^1.9", + "mikey179/vfsstream": "^1.6", + "phpunit/phpunit": "^9.1" + }, + "suggest": { + "ext-fileinfo": "Improves mime type detection for files" + }, + "autoload": { + "exclude-from-classmap": [ + "**/Database/Migrations/**" + ] + }, + "autoload-dev": { + "psr-4": { + "Tests\\Support\\": "tests/_support" + } + }, + "scripts": { + "test": "phpunit" + }, + "support": { + "forum": "https://forum.codeigniter.com/", + "source": "https://github.com/codeigniter4/CodeIgniter4", + "slack": "https://codeigniterchat.slack.com" + } +} diff --git a/phpunit.xml.dist b/phpunit.xml.dist new file mode 100644 index 0000000..62a473a --- /dev/null +++ b/phpunit.xml.dist @@ -0,0 +1,57 @@ + + + + + ./app + + + ./app/Views + ./app/Config/Routes.php + + + + + + + + + + + ./tests + + + + + + + + + + + + + + + + + + + diff --git a/preload.php b/preload.php new file mode 100644 index 0000000..63c781c --- /dev/null +++ b/preload.php @@ -0,0 +1,113 @@ + + * + * For the full copyright and license information, please view + * the LICENSE file that was distributed with this source code. + */ + +/* + *--------------------------------------------------------------- + * Sample file for Preloading + *--------------------------------------------------------------- + * See https://www.php.net/manual/en/opcache.preloading.php + * + * How to Use: + * 0. Copy this file to your project root folder. + * 1. Set the $paths property of the preload class below. + * 2. Set opcache.preload in php.ini. + * php.ini: + * opcache.preload=/path/to/preload.php + */ + +// Load the paths config file +require __DIR__ . '/app/Config/Paths.php'; + +// Path to the front controller +define('FCPATH', __DIR__ . DIRECTORY_SEPARATOR . 'public' . DIRECTORY_SEPARATOR); + +/** + * See https://www.php.net/manual/en/function.str-contains.php#126277 + */ +if (! function_exists('str_contains')) { + /** + * Polyfill of str_contains() + */ + function str_contains(string $haystack, string $needle): bool + { + return empty($needle) || strpos($haystack, $needle) !== false; + } +} + +class preload +{ + /** + * @var array Paths to preload. + */ + private array $paths = [ + [ + 'include' => __DIR__ . '/vendor/codeigniter4/framework/system', + 'exclude' => [ + // Not needed if you don't use them. + '/system/Database/OCI8/', + '/system/Database/Postgre/', + '/system/Database/SQLSRV/', + // Not needed. + '/system/Database/Seeder.php', + '/system/Test/', + '/system/Language/', + '/system/CLI/', + '/system/Commands/', + '/system/Publisher/', + '/system/ComposerScripts.php', + '/Views/', + // Errors occur. + '/system/Config/Routes.php', + '/system/ThirdParty/', + ], + ], + ]; + + public function __construct() + { + $this->loadAutoloader(); + } + + private function loadAutoloader() + { + $paths = new Config\Paths(); + require rtrim($paths->systemDirectory, '\\/ ') . DIRECTORY_SEPARATOR . 'bootstrap.php'; + } + + /** + * Load PHP files. + */ + public function load() + { + foreach ($this->paths as $path) { + $directory = new RecursiveDirectoryIterator($path['include']); + $fullTree = new RecursiveIteratorIterator($directory); + $phpFiles = new RegexIterator( + $fullTree, + '/.+((? $file) { + foreach ($path['exclude'] as $exclude) { + if (str_contains($file[0], $exclude)) { + continue 2; + } + } + + require_once $file[0]; + echo 'Loaded: ' . $file[0] . "\n"; + } + } + } +} + +(new preload())->load(); diff --git a/public/.htaccess b/public/.htaccess new file mode 100644 index 0000000..a5d6c2a --- /dev/null +++ b/public/.htaccess @@ -0,0 +1,49 @@ +# Disable directory browsing +Options All -Indexes + +# ---------------------------------------------------------------------- +# Rewrite engine +# ---------------------------------------------------------------------- + +# Turning on the rewrite engine is necessary for the following rules and features. +# FollowSymLinks must be enabled for this to work. + + Options +FollowSymlinks + RewriteEngine On + + # If you installed CodeIgniter in a subfolder, you will need to + # change the following line to match the subfolder you need. + # http://httpd.apache.org/docs/current/mod/mod_rewrite.html#rewritebase + # RewriteBase / + + # Redirect Trailing Slashes... + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_URI} (.+)/$ + RewriteRule ^ %1 [L,R=301] + + # Rewrite "www.example.com -> example.com" + RewriteCond %{HTTPS} !=on + RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC] + RewriteRule ^ http://%1%{REQUEST_URI} [R=301,L] + + # Checks to see if the user is attempting to access a valid file, + # such as an image or css document, if this isn't true it sends the + # request to the front controller, index.php + RewriteCond %{REQUEST_FILENAME} !-f + RewriteCond %{REQUEST_FILENAME} !-d + RewriteRule ^([\s\S]*)$ index.php/$1 [L,NC,QSA] + + # Ensure Authorization header is passed along + RewriteCond %{HTTP:Authorization} . + RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] + + + + # If we don't have mod_rewrite installed, all 404's + # can be sent to index.php, and everything works as normal. + ErrorDocument 404 index.php + + +# Disable server signature start + ServerSignature Off +# Disable server signature end diff --git a/public/css/admin.css b/public/css/admin.css new file mode 100644 index 0000000..6e25e12 --- /dev/null +++ b/public/css/admin.css @@ -0,0 +1,103 @@ +/* ------------------------------------------------------------ + * Name : admin.css + * Desc : Admin StyleSheet + * Created : 2016/9/11 Tri-aBility by Junheum,Choi + * Updated : + ------------------------------------------------------------ */ + +@charset "utf-8"; +/*########################################################################################### +#############################공통 레이아웃################################################### +#############################################################################################*/ +/* CSS Document */ + +/* + * * Start Bootstrap - SB Admin 2 Bootstrap Admin Theme (http://startbootstrap.com) + * * Code licensed under the Apache License v2.0. + * * For details, see http://www.apache.org/licenses/LICENSE-2.0. + */ + +* { + margin:0px; + padding:0px; + border:0px; + font-size:14px; +} + +body { + background-color: #eee; +} + +input[type=text],input[type=password]{ + display: inline-block; + border: 1px solid #ccc; + border-radius: 4px; + box-sizing: border-box; + white-space: nowrap; +} +select,textarea,button { + display: inline-block; + border: 1px solid #ccc; + border-radius: 4px; + box-sizing: border-box; + white-space: nowrap; +} +a:link { text-decoration: none; } +a:visited { text-decoration: none; } +a:hover { text-decoration: underline; } +a:active { text-decoration: underline; } + +div#main{ + padding-top:10px; + padding-bottom:10px; + /* border:1px solid blue; */ + width:100%; +} + +div#main div#content{ + padding-top:10px; + padding-left:30px; + /* border:1px solid red; */ + width:100%; +} + +div.indexTable_wrapper{ + width: 100%; +} +div.indexTable_wrapper div.indexTable_head { + padding:5px 0; +} +div.indexTable_wrapper div.indexTable_head ul.nav li.nav-item{ + /* border:1px solid red; */ + margin-left:15px; +} +div.indexTable_wrapper div.indexTable_body { + width:100%; + overflow-x: auto; + padding-top:5px; + padding-bottom:5px; +} +div.indexTable_wrapper div.indexTable_body table.indexTable{ + white-space: nowrap; +} +div.indexTable_wrapper div.indexTable_body table.indexTable th{ + text-align:center; + font-size: 16px; +} +div.indexTable_wrapper div.indexTable_body table.indexTable td{ + text-align:center; +} + +div.indexTable_wrapper div.indexTable_body ul.nav li.nav-item{ + /* border:1px solid red; */ + margin-left:15px; +} + + +div.indexTable_wrapper div.indexTable_tail { + text-align:center; +} +div.indexTable_wrapper div.indexTable_tail ul.justify-content-center { + /* border:1px solid red; */ + margin-top:20px; +} diff --git a/public/css/admin/header.css b/public/css/admin/header.css new file mode 100644 index 0000000..b48f800 --- /dev/null +++ b/public/css/admin/header.css @@ -0,0 +1,15 @@ +div#main div#content div.header{ + border-radius: 10px; + border: 1px solid silver; + background-color: #e7e7e7; +} + +div#main div#content div.header div.header-head{ + padding:10px; +} + +div#main div#content div.header div.header-body{ + padding:10px; + border-radius: 0px 0px 10px 10px; + background-color:white; +} \ No newline at end of file diff --git a/public/css/admin/left_menu.css b/public/css/admin/left_menu.css new file mode 100644 index 0000000..bf294e8 --- /dev/null +++ b/public/css/admin/left_menu.css @@ -0,0 +1,32 @@ +div#main div#left_menu{ + position:fixed; + margin-top:139px; + z-index:100; + width:28px; + border:1px solid #e7e7e7; + padding:0px; +} + +div#main div#left_menu div#menu div#menu_button{ + float:right; + height: 100px; + width: 20px; + cursor: ew-resize; + border-radius: 0px 5px 5px 0px; + border: 1px solid silver; + background-color: #eaeaea; + padding:0px; +} +div#main div#left_menu div#menu div.accordion { + display:none; + background-color: white; +} +div#main div#left_menu div#menu div.accordion div.accordion-item:hover { + background-color: #e7e7e7; +} +div#main div#left_menu div#menu div.accordion div.accordion-item a{ + padding-left:20px; +} +div#main div#left_menu div#menu div.accordion div.accordion-collapse a{ + padding-left:40px; +} \ No newline at end of file diff --git a/public/css/admin/member_link.css b/public/css/admin/member_link.css new file mode 100644 index 0000000..38ed839 --- /dev/null +++ b/public/css/admin/member_link.css @@ -0,0 +1,17 @@ +nav.top_menu ul.member-link{ + /* border:1px solid red; */ + color:#3a37f3; + padding-right:20px; +} + +nav.top_menu ul.member-link a{ + color:#3a37f3; +} + +nav.top_menu ul.member-link ul.dropdown-menu li:hover{ + background-color: #eaeaea; +} + +nav.top_menu ul.member-link ul.dropdown-menu li a{ + padding-left:10px; +} \ No newline at end of file diff --git a/public/css/admin/quick_btn.css b/public/css/admin/quick_btn.css new file mode 100644 index 0000000..87af879 --- /dev/null +++ b/public/css/admin/quick_btn.css @@ -0,0 +1,10 @@ +.quick1 ul li{ + list-style:none; + float:left; +} + + +.quick1 ul li ul li{ + list-style:none; + float:left; +} \ No newline at end of file diff --git a/public/css/admin/top_menu.css b/public/css/admin/top_menu.css new file mode 100644 index 0000000..089bcdd --- /dev/null +++ b/public/css/admin/top_menu.css @@ -0,0 +1,34 @@ +nav.top_menu{ + position:relative; + border: 1px solid #ccc; +} + +nav.top_menu a.navbar-brand{ + padding-left:30px; + font-size:20px; + font-weight: bold; + color:#3a37f3 +} + +nav.top_menu div#cloudflare { + position:absolute; + top:0px; + left: 30%; + height: 120px; + overflow-y: scroll; +} +nav.top_menu div#cloudflare table.cloudflare { + font-size: 14px; + border: thin solid; +} + +nav.top_menu div#cloudflare table.cloudflare td { + border: thin solid; + text-align: center; + padding: 0px 5px 0px 5px; +} + +nav.top_menu div#cloudflare table.cloudflare td.dnsname:hover { + cursor: pointer; + background-color: #fde9bf; +} \ No newline at end of file diff --git a/public/css/empty.css b/public/css/empty.css new file mode 100644 index 0000000..e373fed --- /dev/null +++ b/public/css/empty.css @@ -0,0 +1,43 @@ +/* ------------------------------------------------------------ + * Name : default.css + * Desc : GIGSNS Layout + * Created : 2012/07 GIGAKOREA by Donghee,kim + * Updated : + ------------------------------------------------------------ */ +@charset "utf-8"; +/*########################################################################################### +#############################공통 레이아웃################################################### +#############################################################################################*/ + +* { + margin:0px; + padding:0px; + border:0px; + font-size:14px; +} + +body { + background-color: white; +} + +input[type=text],input[type=password]{ + display: inline-block; + width:300px; + border: 1px solid #ccc; + border-radius: 4px; + box-sizing: border-box; + white-space: nowrap; +} + +select,textarea,button { + display: inline-block; + border: 1px solid #ccc; + border-radius: 4px; + box-sizing: border-box; + white-space: nowrap; +} + +div.pagination { + text-align:center; + padding-top:5px; +} diff --git a/public/css/front.css b/public/css/front.css new file mode 100644 index 0000000..5959ae7 --- /dev/null +++ b/public/css/front.css @@ -0,0 +1,63 @@ +/* ------------------------------------------------------------ + * Name : front.css + * Desc : Admin StyleSheet + * Created : 2016/9/11 Tri-aBility by Junheum,Choi + * Updated : + ------------------------------------------------------------ */ + +@charset "utf-8"; +/*########################################################################################### +#############################공통 레이아웃################################################### +#############################################################################################*/ +/* CSS Document */ + +/* + * * Start Bootstrap - SB Admin 2 Bootstrap Admin Theme (http://startbootstrap.com) + * * Code licensed under the Apache License v2.0. + * * For details, see http://www.apache.org/licenses/LICENSE-2.0. + */ + +* { + margin:0px; + padding:0px; + border:0px; + font-size:14px; +} + +body { + background-color: white; +} + +input[type=text],input[type=password]{ + display: inline-block; + width:100px; + border: 1px solid #ccc; + border-radius: 4px; + box-sizing: border-box; + white-space: nowrap; +} + +select,textarea,button { + display: inline-block; + border: 1px solid #ccc; + border-radius: 4px; + box-sizing: border-box; + white-space: nowrap; +} + +a:hover, a:visited, a:link, a:active { + text-decoration: none !important; +} + +div.mainContent{ + border:1px solid red; + padding-top:20px; + padding-left:30px; + padding-right:10px; +} + +div.pagination { + border: 1px solid blue; + text-align:center; + padding-top:5px; +} diff --git a/public/css/front/top_banner.css b/public/css/front/top_banner.css new file mode 100644 index 0000000..6ee3e95 --- /dev/null +++ b/public/css/front/top_banner.css @@ -0,0 +1,56 @@ +@CHARSET "UTF-8"; + +/* jssor slider bullet navigator skin 05 css */ +/* +.jssorb05 div (normal) +.jssorb05 div:hover (normal mouseover) +.jssorb05 .av (active) +.jssorb05 .av:hover (active mouseover) +.jssorb05 .dn (mousedown) +*/ +.jssorb05 { + position: absolute; +} +.jssorb05 div, .jssorb05 div:hover, .jssorb05 .av { + position: absolute; + /* size of bullet elment */ + width: 16px; + height: 16px; + background: url('/js/slider/img/b05.png') no-repeat; + overflow: hidden; + cursor: pointer; +} +.jssorb05 div { background-position: -7px -7px; } +.jssorb05 div:hover, .jssorb05 .av:hover { background-position: -37px -7px; } +.jssorb05 .av { background-position: -67px -7px; } +.jssorb05 .dn, .jssorb05 .dn:hover { background-position: -97px -7px; } + +/* jssor slider arrow navigator skin 22 css */ +/* +.jssora22l (normal) +.jssora22r (normal) +.jssora22l:hover (normal mouseover) +.jssora22r:hover (normal mouseover) +.jssora22l.jssora22ldn (mousedown) +.jssora22r.jssora22rdn (mousedown) +.jssora22l.jssora22lds (disabled) +.jssora22r.jssora22rds (disabled) +*/ +.jssora22l, .jssora22r { + display: block; + position: absolute; + /* size of arrow element */ + width: 40px; + height: 58px; + cursor: pointer; + background: url('/js/slider/img/a22.png') center center no-repeat; + overflow: hidden; +} +.jssora22l { background-position: -10px -31px; } +.jssora22r { background-position: -70px -31px; } +.jssora22l:hover { background-position: -130px -31px; } +.jssora22r:hover { background-position: -190px -31px; } +.jssora22l.jssora22ldn { background-position: -250px -31px; } +.jssora22r.jssora22rdn { background-position: -310px -31px; } +.jssora22l.jssora22lds { background-position: -10px -31px; opacity: .3; pointer-events: none; } +.jssora22r.jssora22rds { background-position: -70px -31px; opacity: .3; pointer-events: none; } \ No newline at end of file diff --git a/public/css/front/welcome_left_banner.css b/public/css/front/welcome_left_banner.css new file mode 100644 index 0000000..f2819aa --- /dev/null +++ b/public/css/front/welcome_left_banner.css @@ -0,0 +1,25 @@ +@CHARSET "UTF-8"; +div#left_menu_slideshow { + position: relative; + width: 352px; + height: 296px; +} + +div#left_menu_slideshow > div { + top:9px; + left:53px; + position: absolute; +} + + +/*npy-scorecount.js용*/ +#event_alarm { position:relative; width:100%; max-width:1081px; } +#event_alarm .npy-scwrap { position:absolute !important; top:0; left:0; width:100%; height:100%; } +#event_alarm .npy-scdigit { position:absolute !important; top:24.95%; } +#event_alarm .npy-scdigit._0 { left:18.36%; } +#event_alarm .npy-scdigit._1 { left:28.12%; } +#event_alarm .npy-scdigit._2 { left:40.53%; } +#event_alarm .npy-scdigit._3 { left:50.35%; } +#event_alarm .npy-scdigit._4 { left:62.72%; } +#event_alarm .npy-scdigit._5 { left:72.53%; } +/*npy-scorecount.js용*/ \ No newline at end of file diff --git a/public/css/front/welcome_partner_banner.css b/public/css/front/welcome_partner_banner.css new file mode 100644 index 0000000..5591fc3 --- /dev/null +++ b/public/css/front/welcome_partner_banner.css @@ -0,0 +1,41 @@ +@CHARSET "UTF-8"; +.partner_banner{ + position:relative; + //border:1px solid red; + margin:0 auto; + width:1165px; +} +.partner_banner > .RollDiv{ + margin:0 auto; + width:1165px; + height:60px; + overflow:hidden; +} +.partner_banner > .RollDiv > div{ + overflow:hidden; + height:60px; + width:1200px} +.partner_banner > .RollDiv > div > a{ + float:left; + display:block; +} +.partner_banner > .RollDiv > div > a > img{ + width:180px; + height:60px; + margin-right:10px; +} +.partner_banner > .btn_left{ + position:absolute; + left:0; + top:0; + background:blue; + height:100%; + width:25px; +} +.partner_banner > .btn_right{ + position:absolute; + right:0;top:0; + background:blue; + height:100%; + width:25px; +} \ No newline at end of file diff --git a/public/css/front/zeta-menu.css b/public/css/front/zeta-menu.css new file mode 100644 index 0000000..8e1fdae --- /dev/null +++ b/public/css/front/zeta-menu.css @@ -0,0 +1,54 @@ +@CHARSET "UTF-8"; + +.zeta-menu-bar { + position:relative; + z-index:100; + background: #eee; + display: inline-block; + width: 100%; + + /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#efefef+7,c8c8c8+56,c3c3c3+58,c3c3c3+58,c8c8c8+72,c8c8c8+75,c8c8c8+75,dadada+100 */ + background: rgb(239,239,239); /* Old browsers */ + background: -moz-linear-gradient(top, rgba(239,239,239,1) 7%, rgba(200,200,200,1) 56%, rgba(195,195,195,1) 58%, rgba(195,195,195,1) 58%, rgba(200,200,200,1) 72%, rgba(200,200,200,1) 75%, rgba(200,200,200,1) 75%, rgba(218,218,218,1) 100%); /* FF3.6-15 */ + background: -webkit-linear-gradient(top, rgba(239,239,239,1) 7%,rgba(200,200,200,1) 56%,rgba(195,195,195,1) 58%,rgba(195,195,195,1) 58%,rgba(200,200,200,1) 72%,rgba(200,200,200,1) 75%,rgba(200,200,200,1) 75%,rgba(218,218,218,1) 100%); /* Chrome10-25,Safari5.1-6 */ + background: linear-gradient(to bottom, rgba(239,239,239,1) 7%,rgba(200,200,200,1) 56%,rgba(195,195,195,1) 58%,rgba(195,195,195,1) 58%,rgba(200,200,200,1) 72%,rgba(200,200,200,1) 75%,rgba(200,200,200,1) 75%,rgba(218,218,218,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#efefef', endColorstr='#dadada',GradientType=0 ); +} +.zeta-menu { margin: 0px; padding: 0px; } +.zeta-menu li { + float: left; + list-style:none; + position: relative; +} +.zeta-menu li:hover { background: #ddd; } +.zeta-menu li:hover>a { color: black; } +.zeta-menu a { + color: black; + display: block; + padding: 10px 20px; + text-decoration: none; +} +.zeta-menu ul { + background: #eee; + border: 1px solid silver; + display: none; + padding: 0px; + position: absolute; + left: 0px; + top: 100%; + width: 180px; +} +.zeta-menu ul li { + float: none; + /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#efefef+7,c8c8c8+56,c3c3c3+58,c3c3c3+58,c8c8c8+72,c8c8c8+75,c8c8c8+75,dadada+100 */ + background: rgb(239,239,239); /* Old browsers */ + background: -moz-linear-gradient(top, rgba(239,239,239,1) 7%, rgba(200,200,200,1) 56%, rgba(195,195,195,1) 58%, rgba(195,195,195,1) 58%, rgba(200,200,200,1) 72%, rgba(200,200,200,1) 75%, rgba(200,200,200,1) 75%, rgba(218,218,218,1) 100%); /* FF3.6-15 */ + background: -webkit-linear-gradient(top, rgba(239,239,239,1) 7%,rgba(200,200,200,1) 56%,rgba(195,195,195,1) 58%,rgba(195,195,195,1) 58%,rgba(200,200,200,1) 72%,rgba(200,200,200,1) 75%,rgba(200,200,200,1) 75%,rgba(218,218,218,1) 100%); /* Chrome10-25,Safari5.1-6 */ + background: linear-gradient(to bottom, rgba(239,239,239,1) 7%,rgba(200,200,200,1) 56%,rgba(195,195,195,1) 58%,rgba(195,195,195,1) 58%,rgba(200,200,200,1) 72%,rgba(200,200,200,1) 75%,rgba(200,200,200,1) 75%,rgba(218,218,218,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#efefef', endColorstr='#dadada',GradientType=0 ); +} +.zeta-menu ul li:hover { background: #ddd; } +.zeta-menu ul li:hover a { color: black; } +.zeta-menu ul a { color: black; } +.zeta-menu ul ul { left: 100%; top: 0; } +.zeta-menu ul ul li {float:left; margin-right:10px;} \ No newline at end of file diff --git a/public/css/login.css b/public/css/login.css new file mode 100644 index 0000000..d3ec7af --- /dev/null +++ b/public/css/login.css @@ -0,0 +1,19 @@ +@charset "utf-8"; +/* ------------------------------------------------------------ +* Name : login.css +* Desc : GIGSNS Default +* Created : 2012/07 GIGAKOREA by Donghee,kim +* Updated : +------------------------------------------------------------ */ + +div.header { + margin-top:120px; +} + +input.loginform{ + width:245px; + height:27px; + border:1px solid #bababa; + font-size:120%; + font-weight:700; color:#666 +} \ No newline at end of file diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..7ecfce2 Binary files /dev/null and b/public/favicon.ico differ diff --git a/public/images/common/adminbg.png b/public/images/common/adminbg.png new file mode 100644 index 0000000..68c6a93 Binary files /dev/null and b/public/images/common/adminbg.png differ diff --git a/public/images/common/btn_login.png b/public/images/common/btn_login.png new file mode 100644 index 0000000..c0b2782 Binary files /dev/null and b/public/images/common/btn_login.png differ diff --git a/public/images/common/japanese/adminbg.png b/public/images/common/japanese/adminbg.png new file mode 100644 index 0000000..68c6a93 Binary files /dev/null and b/public/images/common/japanese/adminbg.png differ diff --git a/public/images/common/japanese/bicon1.gif b/public/images/common/japanese/bicon1.gif new file mode 100644 index 0000000..9d2ac62 Binary files /dev/null and b/public/images/common/japanese/bicon1.gif differ diff --git a/public/images/common/japanese/blank.gif b/public/images/common/japanese/blank.gif new file mode 100644 index 0000000..076c753 Binary files /dev/null and b/public/images/common/japanese/blank.gif differ diff --git a/public/images/common/japanese/blit_diamond.jpg b/public/images/common/japanese/blit_diamond.jpg new file mode 100644 index 0000000..70cb1d0 Binary files /dev/null and b/public/images/common/japanese/blit_diamond.jpg differ diff --git a/public/images/common/japanese/blit_orange.gif b/public/images/common/japanese/blit_orange.gif new file mode 100644 index 0000000..b95bdb4 Binary files /dev/null and b/public/images/common/japanese/blit_orange.gif differ diff --git a/public/images/common/japanese/board/img/--arrow.gif b/public/images/common/japanese/board/img/--arrow.gif new file mode 100644 index 0000000..87986e2 Binary files /dev/null and b/public/images/common/japanese/board/img/--arrow.gif differ diff --git a/public/images/common/japanese/board/img/-arrow.gif b/public/images/common/japanese/board/img/-arrow.gif new file mode 100644 index 0000000..c8e6b4c Binary files /dev/null and b/public/images/common/japanese/board/img/-arrow.gif differ diff --git a/public/images/common/japanese/board/img/admin.gif b/public/images/common/japanese/board/img/admin.gif new file mode 100644 index 0000000..198d1dc Binary files /dev/null and b/public/images/common/japanese/board/img/admin.gif differ diff --git a/public/images/common/japanese/board/img/arrow--.gif b/public/images/common/japanese/board/img/arrow--.gif new file mode 100644 index 0000000..9af0d3d Binary files /dev/null and b/public/images/common/japanese/board/img/arrow--.gif differ diff --git a/public/images/common/japanese/board/img/arrow-.gif b/public/images/common/japanese/board/img/arrow-.gif new file mode 100644 index 0000000..714d408 Binary files /dev/null and b/public/images/common/japanese/board/img/arrow-.gif differ diff --git a/public/images/common/japanese/board/img/arrow.gif b/public/images/common/japanese/board/img/arrow.gif new file mode 100644 index 0000000..f280e26 Binary files /dev/null and b/public/images/common/japanese/board/img/arrow.gif differ diff --git a/public/images/common/japanese/board/img/barBg.gif b/public/images/common/japanese/board/img/barBg.gif new file mode 100644 index 0000000..093a136 Binary files /dev/null and b/public/images/common/japanese/board/img/barBg.gif differ diff --git a/public/images/common/japanese/board/img/barLeft.gif b/public/images/common/japanese/board/img/barLeft.gif new file mode 100644 index 0000000..22d8945 Binary files /dev/null and b/public/images/common/japanese/board/img/barLeft.gif differ diff --git a/public/images/common/japanese/board/img/barRight.gif b/public/images/common/japanese/board/img/barRight.gif new file mode 100644 index 0000000..30574ac Binary files /dev/null and b/public/images/common/japanese/board/img/barRight.gif differ diff --git a/public/images/common/japanese/board/img/barTxt1.gif b/public/images/common/japanese/board/img/barTxt1.gif new file mode 100644 index 0000000..9cbaec9 Binary files /dev/null and b/public/images/common/japanese/board/img/barTxt1.gif differ diff --git a/public/images/common/japanese/board/img/barTxt2.gif b/public/images/common/japanese/board/img/barTxt2.gif new file mode 100644 index 0000000..049a5f6 Binary files /dev/null and b/public/images/common/japanese/board/img/barTxt2.gif differ diff --git a/public/images/common/japanese/board/img/barTxt3.gif b/public/images/common/japanese/board/img/barTxt3.gif new file mode 100644 index 0000000..0c34c20 Binary files /dev/null and b/public/images/common/japanese/board/img/barTxt3.gif differ diff --git a/public/images/common/japanese/board/img/barTxt4.gif b/public/images/common/japanese/board/img/barTxt4.gif new file mode 100644 index 0000000..ee1e8bc Binary files /dev/null and b/public/images/common/japanese/board/img/barTxt4.gif differ diff --git a/public/images/common/japanese/board/img/barTxt5.gif b/public/images/common/japanese/board/img/barTxt5.gif new file mode 100644 index 0000000..334f754 Binary files /dev/null and b/public/images/common/japanese/board/img/barTxt5.gif differ diff --git a/public/images/common/japanese/board/img/barTxt6.gif b/public/images/common/japanese/board/img/barTxt6.gif new file mode 100644 index 0000000..35ef9bf Binary files /dev/null and b/public/images/common/japanese/board/img/barTxt6.gif differ diff --git a/public/images/common/japanese/board/img/barTxt7.gif b/public/images/common/japanese/board/img/barTxt7.gif new file mode 100644 index 0000000..815c69e Binary files /dev/null and b/public/images/common/japanese/board/img/barTxt7.gif differ diff --git a/public/images/common/japanese/board/img/barTxt8.gif b/public/images/common/japanese/board/img/barTxt8.gif new file mode 100644 index 0000000..a47d25c Binary files /dev/null and b/public/images/common/japanese/board/img/barTxt8.gif differ diff --git a/public/images/common/japanese/board/img/bdr1.gif b/public/images/common/japanese/board/img/bdr1.gif new file mode 100644 index 0000000..f846ee8 Binary files /dev/null and b/public/images/common/japanese/board/img/bdr1.gif differ diff --git a/public/images/common/japanese/board/img/bdr2.gif b/public/images/common/japanese/board/img/bdr2.gif new file mode 100644 index 0000000..4c9e233 Binary files /dev/null and b/public/images/common/japanese/board/img/bdr2.gif differ diff --git a/public/images/common/japanese/board/img/bdr3.gif b/public/images/common/japanese/board/img/bdr3.gif new file mode 100644 index 0000000..43900a5 Binary files /dev/null and b/public/images/common/japanese/board/img/bdr3.gif differ diff --git a/public/images/common/japanese/board/img/bdr4.gif b/public/images/common/japanese/board/img/bdr4.gif new file mode 100644 index 0000000..a9d2915 Binary files /dev/null and b/public/images/common/japanese/board/img/bdr4.gif differ diff --git a/public/images/common/japanese/board/img/boardTxtNotice.gif b/public/images/common/japanese/board/img/boardTxtNotice.gif new file mode 100644 index 0000000..c11350f Binary files /dev/null and b/public/images/common/japanese/board/img/boardTxtNotice.gif differ diff --git a/public/images/common/japanese/board/img/cnr1.gif b/public/images/common/japanese/board/img/cnr1.gif new file mode 100644 index 0000000..0f1553f Binary files /dev/null and b/public/images/common/japanese/board/img/cnr1.gif differ diff --git a/public/images/common/japanese/board/img/cnr2.gif b/public/images/common/japanese/board/img/cnr2.gif new file mode 100644 index 0000000..cb3973d Binary files /dev/null and b/public/images/common/japanese/board/img/cnr2.gif differ diff --git a/public/images/common/japanese/board/img/cnr3.gif b/public/images/common/japanese/board/img/cnr3.gif new file mode 100644 index 0000000..c491e00 Binary files /dev/null and b/public/images/common/japanese/board/img/cnr3.gif differ diff --git a/public/images/common/japanese/board/img/cnr4.gif b/public/images/common/japanese/board/img/cnr4.gif new file mode 100644 index 0000000..2bdfc49 Binary files /dev/null and b/public/images/common/japanese/board/img/cnr4.gif differ diff --git a/public/images/common/japanese/board/img/del.gif b/public/images/common/japanese/board/img/del.gif new file mode 100644 index 0000000..a641216 Binary files /dev/null and b/public/images/common/japanese/board/img/del.gif differ diff --git a/public/images/common/japanese/board/img/disk1.gif b/public/images/common/japanese/board/img/disk1.gif new file mode 100644 index 0000000..ce3ee40 Binary files /dev/null and b/public/images/common/japanese/board/img/disk1.gif differ diff --git a/public/images/common/japanese/board/img/doc.gif b/public/images/common/japanese/board/img/doc.gif new file mode 100644 index 0000000..92833dc Binary files /dev/null and b/public/images/common/japanese/board/img/doc.gif differ diff --git a/public/images/common/japanese/board/img/dot.gif b/public/images/common/japanese/board/img/dot.gif new file mode 100644 index 0000000..8647c04 Binary files /dev/null and b/public/images/common/japanese/board/img/dot.gif differ diff --git a/public/images/common/japanese/board/img/edit.gif b/public/images/common/japanese/board/img/edit.gif new file mode 100644 index 0000000..02d47ee Binary files /dev/null and b/public/images/common/japanese/board/img/edit.gif differ diff --git a/public/images/common/japanese/board/img/end.gif b/public/images/common/japanese/board/img/end.gif new file mode 100644 index 0000000..d6b692e Binary files /dev/null and b/public/images/common/japanese/board/img/end.gif differ diff --git a/public/images/common/japanese/board/img/footer_reply.gif b/public/images/common/japanese/board/img/footer_reply.gif new file mode 100644 index 0000000..ef9bc78 Binary files /dev/null and b/public/images/common/japanese/board/img/footer_reply.gif differ diff --git a/public/images/common/japanese/board/img/footer_submit.gif b/public/images/common/japanese/board/img/footer_submit.gif new file mode 100644 index 0000000..5a4df20 Binary files /dev/null and b/public/images/common/japanese/board/img/footer_submit.gif differ diff --git a/public/images/common/japanese/board/img/grayDate.gif b/public/images/common/japanese/board/img/grayDate.gif new file mode 100644 index 0000000..5ae0621 Binary files /dev/null and b/public/images/common/japanese/board/img/grayDate.gif differ diff --git a/public/images/common/japanese/board/img/grayHit.gif b/public/images/common/japanese/board/img/grayHit.gif new file mode 100644 index 0000000..5cb312b Binary files /dev/null and b/public/images/common/japanese/board/img/grayHit.gif differ diff --git a/public/images/common/japanese/board/img/grayName.gif b/public/images/common/japanese/board/img/grayName.gif new file mode 100644 index 0000000..c75c7b6 Binary files /dev/null and b/public/images/common/japanese/board/img/grayName.gif differ diff --git a/public/images/common/japanese/board/img/grayNo.gif b/public/images/common/japanese/board/img/grayNo.gif new file mode 100644 index 0000000..650e3c5 Binary files /dev/null and b/public/images/common/japanese/board/img/grayNo.gif differ diff --git a/public/images/common/japanese/board/img/graySubject.gif b/public/images/common/japanese/board/img/graySubject.gif new file mode 100644 index 0000000..dcc4e9a Binary files /dev/null and b/public/images/common/japanese/board/img/graySubject.gif differ diff --git a/public/images/common/japanese/board/img/h_date.gif b/public/images/common/japanese/board/img/h_date.gif new file mode 100644 index 0000000..6a30212 Binary files /dev/null and b/public/images/common/japanese/board/img/h_date.gif differ diff --git a/public/images/common/japanese/board/img/h_hit.gif b/public/images/common/japanese/board/img/h_hit.gif new file mode 100644 index 0000000..36404af Binary files /dev/null and b/public/images/common/japanese/board/img/h_hit.gif differ diff --git a/public/images/common/japanese/board/img/h_memo.gif b/public/images/common/japanese/board/img/h_memo.gif new file mode 100644 index 0000000..1750251 Binary files /dev/null and b/public/images/common/japanese/board/img/h_memo.gif differ diff --git a/public/images/common/japanese/board/img/h_name.gif b/public/images/common/japanese/board/img/h_name.gif new file mode 100644 index 0000000..1e2771f Binary files /dev/null and b/public/images/common/japanese/board/img/h_name.gif differ diff --git a/public/images/common/japanese/board/img/h_next.gif b/public/images/common/japanese/board/img/h_next.gif new file mode 100644 index 0000000..4aff7e7 Binary files /dev/null and b/public/images/common/japanese/board/img/h_next.gif differ diff --git a/public/images/common/japanese/board/img/h_no.gif b/public/images/common/japanese/board/img/h_no.gif new file mode 100644 index 0000000..5889a58 Binary files /dev/null and b/public/images/common/japanese/board/img/h_no.gif differ diff --git a/public/images/common/japanese/board/img/h_prev.gif b/public/images/common/japanese/board/img/h_prev.gif new file mode 100644 index 0000000..c00f0b8 Binary files /dev/null and b/public/images/common/japanese/board/img/h_prev.gif differ diff --git a/public/images/common/japanese/board/img/h_reply.gif b/public/images/common/japanese/board/img/h_reply.gif new file mode 100644 index 0000000..e05432b Binary files /dev/null and b/public/images/common/japanese/board/img/h_reply.gif differ diff --git a/public/images/common/japanese/board/img/h_subject.gif b/public/images/common/japanese/board/img/h_subject.gif new file mode 100644 index 0000000..37e515a Binary files /dev/null and b/public/images/common/japanese/board/img/h_subject.gif differ diff --git a/public/images/common/japanese/board/img/home.gif b/public/images/common/japanese/board/img/home.gif new file mode 100644 index 0000000..20bac07 Binary files /dev/null and b/public/images/common/japanese/board/img/home.gif differ diff --git a/public/images/common/japanese/board/img/hwp.gif b/public/images/common/japanese/board/img/hwp.gif new file mode 100644 index 0000000..1939218 Binary files /dev/null and b/public/images/common/japanese/board/img/hwp.gif differ diff --git a/public/images/common/japanese/board/img/iconBack.gif b/public/images/common/japanese/board/img/iconBack.gif new file mode 100644 index 0000000..74b4f06 Binary files /dev/null and b/public/images/common/japanese/board/img/iconBack.gif differ diff --git a/public/images/common/japanese/board/img/iconDel.gif b/public/images/common/japanese/board/img/iconDel.gif new file mode 100644 index 0000000..b54ce21 Binary files /dev/null and b/public/images/common/japanese/board/img/iconDel.gif differ diff --git a/public/images/common/japanese/board/img/iconEdit.gif b/public/images/common/japanese/board/img/iconEdit.gif new file mode 100644 index 0000000..42f7997 Binary files /dev/null and b/public/images/common/japanese/board/img/iconEdit.gif differ diff --git a/public/images/common/japanese/board/img/iconEnd.gif b/public/images/common/japanese/board/img/iconEnd.gif new file mode 100644 index 0000000..1340c3c Binary files /dev/null and b/public/images/common/japanese/board/img/iconEnd.gif differ diff --git a/public/images/common/japanese/board/img/iconFirst.gif b/public/images/common/japanese/board/img/iconFirst.gif new file mode 100644 index 0000000..1865b3d Binary files /dev/null and b/public/images/common/japanese/board/img/iconFirst.gif differ diff --git a/public/images/common/japanese/board/img/iconList.gif b/public/images/common/japanese/board/img/iconList.gif new file mode 100644 index 0000000..94e056e Binary files /dev/null and b/public/images/common/japanese/board/img/iconList.gif differ diff --git a/public/images/common/japanese/board/img/iconNext.gif b/public/images/common/japanese/board/img/iconNext.gif new file mode 100644 index 0000000..9218de5 Binary files /dev/null and b/public/images/common/japanese/board/img/iconNext.gif differ diff --git a/public/images/common/japanese/board/img/iconPrev.gif b/public/images/common/japanese/board/img/iconPrev.gif new file mode 100644 index 0000000..3bf2341 Binary files /dev/null and b/public/images/common/japanese/board/img/iconPrev.gif differ diff --git a/public/images/common/japanese/board/img/iconReply.gif b/public/images/common/japanese/board/img/iconReply.gif new file mode 100644 index 0000000..e0a2ac0 Binary files /dev/null and b/public/images/common/japanese/board/img/iconReply.gif differ diff --git a/public/images/common/japanese/board/img/iconSave.gif b/public/images/common/japanese/board/img/iconSave.gif new file mode 100644 index 0000000..a8acec1 Binary files /dev/null and b/public/images/common/japanese/board/img/iconSave.gif differ diff --git a/public/images/common/japanese/board/img/iconWrite.gif b/public/images/common/japanese/board/img/iconWrite.gif new file mode 100644 index 0000000..50cf02c Binary files /dev/null and b/public/images/common/japanese/board/img/iconWrite.gif differ diff --git a/public/images/common/japanese/board/img/icon_back.png b/public/images/common/japanese/board/img/icon_back.png new file mode 100644 index 0000000..0adb5dc Binary files /dev/null and b/public/images/common/japanese/board/img/icon_back.png differ diff --git a/public/images/common/japanese/board/img/icon_close.gif b/public/images/common/japanese/board/img/icon_close.gif new file mode 100644 index 0000000..f61c0eb Binary files /dev/null and b/public/images/common/japanese/board/img/icon_close.gif differ diff --git a/public/images/common/japanese/board/img/icon_close.jpg b/public/images/common/japanese/board/img/icon_close.jpg new file mode 100644 index 0000000..16ae0e9 Binary files /dev/null and b/public/images/common/japanese/board/img/icon_close.jpg differ diff --git a/public/images/common/japanese/board/img/icon_del.png b/public/images/common/japanese/board/img/icon_del.png new file mode 100644 index 0000000..87c30e8 Binary files /dev/null and b/public/images/common/japanese/board/img/icon_del.png differ diff --git a/public/images/common/japanese/board/img/icon_done.png b/public/images/common/japanese/board/img/icon_done.png new file mode 100644 index 0000000..126bf00 Binary files /dev/null and b/public/images/common/japanese/board/img/icon_done.png differ diff --git a/public/images/common/japanese/board/img/icon_list.png b/public/images/common/japanese/board/img/icon_list.png new file mode 100644 index 0000000..97d7494 Binary files /dev/null and b/public/images/common/japanese/board/img/icon_list.png differ diff --git a/public/images/common/japanese/board/img/icon_modify.png b/public/images/common/japanese/board/img/icon_modify.png new file mode 100644 index 0000000..6885f07 Binary files /dev/null and b/public/images/common/japanese/board/img/icon_modify.png differ diff --git a/public/images/common/japanese/board/img/icon_reply.png b/public/images/common/japanese/board/img/icon_reply.png new file mode 100644 index 0000000..fb2a872 Binary files /dev/null and b/public/images/common/japanese/board/img/icon_reply.png differ diff --git a/public/images/common/japanese/board/img/icon_save.png b/public/images/common/japanese/board/img/icon_save.png new file mode 100644 index 0000000..d01294e Binary files /dev/null and b/public/images/common/japanese/board/img/icon_save.png differ diff --git a/public/images/common/japanese/board/img/icon_write.png b/public/images/common/japanese/board/img/icon_write.png new file mode 100644 index 0000000..5f024dd Binary files /dev/null and b/public/images/common/japanese/board/img/icon_write.png differ diff --git a/public/images/common/japanese/board/img/jpg.gif b/public/images/common/japanese/board/img/jpg.gif new file mode 100644 index 0000000..9674edc Binary files /dev/null and b/public/images/common/japanese/board/img/jpg.gif differ diff --git a/public/images/common/japanese/board/img/list.gif b/public/images/common/japanese/board/img/list.gif new file mode 100644 index 0000000..1acb696 Binary files /dev/null and b/public/images/common/japanese/board/img/list.gif differ diff --git a/public/images/common/japanese/board/img/login_01.gif b/public/images/common/japanese/board/img/login_01.gif new file mode 100644 index 0000000..5cd6a4c Binary files /dev/null and b/public/images/common/japanese/board/img/login_01.gif differ diff --git a/public/images/common/japanese/board/img/login_02.gif b/public/images/common/japanese/board/img/login_02.gif new file mode 100644 index 0000000..72fe5b7 Binary files /dev/null and b/public/images/common/japanese/board/img/login_02.gif differ diff --git a/public/images/common/japanese/board/img/login_03-over.gif b/public/images/common/japanese/board/img/login_03-over.gif new file mode 100644 index 0000000..e632ca7 Binary files /dev/null and b/public/images/common/japanese/board/img/login_03-over.gif differ diff --git a/public/images/common/japanese/board/img/login_03.gif b/public/images/common/japanese/board/img/login_03.gif new file mode 100644 index 0000000..5ce3207 Binary files /dev/null and b/public/images/common/japanese/board/img/login_03.gif differ diff --git a/public/images/common/japanese/board/img/login_04.gif b/public/images/common/japanese/board/img/login_04.gif new file mode 100644 index 0000000..e1de2e0 Binary files /dev/null and b/public/images/common/japanese/board/img/login_04.gif differ diff --git a/public/images/common/japanese/board/img/login_05.gif b/public/images/common/japanese/board/img/login_05.gif new file mode 100644 index 0000000..bbe4458 Binary files /dev/null and b/public/images/common/japanese/board/img/login_05.gif differ diff --git a/public/images/common/japanese/board/img/login_06.gif b/public/images/common/japanese/board/img/login_06.gif new file mode 100644 index 0000000..6106a44 Binary files /dev/null and b/public/images/common/japanese/board/img/login_06.gif differ diff --git a/public/images/common/japanese/board/img/login_07-over.gif b/public/images/common/japanese/board/img/login_07-over.gif new file mode 100644 index 0000000..78088d0 Binary files /dev/null and b/public/images/common/japanese/board/img/login_07-over.gif differ diff --git a/public/images/common/japanese/board/img/login_07.gif b/public/images/common/japanese/board/img/login_07.gif new file mode 100644 index 0000000..827b8fc Binary files /dev/null and b/public/images/common/japanese/board/img/login_07.gif differ diff --git a/public/images/common/japanese/board/img/login_08.gif b/public/images/common/japanese/board/img/login_08.gif new file mode 100644 index 0000000..e58603d Binary files /dev/null and b/public/images/common/japanese/board/img/login_08.gif differ diff --git a/public/images/common/japanese/board/img/login_09.gif b/public/images/common/japanese/board/img/login_09.gif new file mode 100644 index 0000000..4428215 Binary files /dev/null and b/public/images/common/japanese/board/img/login_09.gif differ diff --git a/public/images/common/japanese/board/img/logout.gif b/public/images/common/japanese/board/img/logout.gif new file mode 100644 index 0000000..b017110 Binary files /dev/null and b/public/images/common/japanese/board/img/logout.gif differ diff --git a/public/images/common/japanese/board/img/mail.gif b/public/images/common/japanese/board/img/mail.gif new file mode 100644 index 0000000..781dd2b Binary files /dev/null and b/public/images/common/japanese/board/img/mail.gif differ diff --git a/public/images/common/japanese/board/img/mail_top2.gif b/public/images/common/japanese/board/img/mail_top2.gif new file mode 100644 index 0000000..699ced2 Binary files /dev/null and b/public/images/common/japanese/board/img/mail_top2.gif differ diff --git a/public/images/common/japanese/board/img/n_end.gif b/public/images/common/japanese/board/img/n_end.gif new file mode 100644 index 0000000..de86fc3 Binary files /dev/null and b/public/images/common/japanese/board/img/n_end.gif differ diff --git a/public/images/common/japanese/board/img/n_next.gif b/public/images/common/japanese/board/img/n_next.gif new file mode 100644 index 0000000..04e5b21 Binary files /dev/null and b/public/images/common/japanese/board/img/n_next.gif differ diff --git a/public/images/common/japanese/board/img/n_prev.gif b/public/images/common/japanese/board/img/n_prev.gif new file mode 100644 index 0000000..c09a6c7 Binary files /dev/null and b/public/images/common/japanese/board/img/n_prev.gif differ diff --git a/public/images/common/japanese/board/img/n_top.gif b/public/images/common/japanese/board/img/n_top.gif new file mode 100644 index 0000000..a7be3c9 Binary files /dev/null and b/public/images/common/japanese/board/img/n_top.gif differ diff --git a/public/images/common/japanese/board/img/next.gif b/public/images/common/japanese/board/img/next.gif new file mode 100644 index 0000000..e5d7a4c Binary files /dev/null and b/public/images/common/japanese/board/img/next.gif differ diff --git a/public/images/common/japanese/board/img/noImage.gif b/public/images/common/japanese/board/img/noImage.gif new file mode 100644 index 0000000..e41583e Binary files /dev/null and b/public/images/common/japanese/board/img/noImage.gif differ diff --git a/public/images/common/japanese/board/img/notice.gif b/public/images/common/japanese/board/img/notice.gif new file mode 100644 index 0000000..2b8cbdc Binary files /dev/null and b/public/images/common/japanese/board/img/notice.gif differ diff --git a/public/images/common/japanese/board/img/off.gif b/public/images/common/japanese/board/img/off.gif new file mode 100644 index 0000000..c434018 Binary files /dev/null and b/public/images/common/japanese/board/img/off.gif differ diff --git a/public/images/common/japanese/board/img/on.gif b/public/images/common/japanese/board/img/on.gif new file mode 100644 index 0000000..f120f0f Binary files /dev/null and b/public/images/common/japanese/board/img/on.gif differ diff --git a/public/images/common/japanese/board/img/paper.gif b/public/images/common/japanese/board/img/paper.gif new file mode 100644 index 0000000..7b10300 Binary files /dev/null and b/public/images/common/japanese/board/img/paper.gif differ diff --git a/public/images/common/japanese/board/img/pdf.gif b/public/images/common/japanese/board/img/pdf.gif new file mode 100644 index 0000000..013c4bb Binary files /dev/null and b/public/images/common/japanese/board/img/pdf.gif differ diff --git a/public/images/common/japanese/board/img/photoBar.gif b/public/images/common/japanese/board/img/photoBar.gif new file mode 100644 index 0000000..03bf86a Binary files /dev/null and b/public/images/common/japanese/board/img/photoBar.gif differ diff --git a/public/images/common/japanese/board/img/photoBody.gif b/public/images/common/japanese/board/img/photoBody.gif new file mode 100644 index 0000000..aef592b Binary files /dev/null and b/public/images/common/japanese/board/img/photoBody.gif differ diff --git a/public/images/common/japanese/board/img/photoShadow.gif b/public/images/common/japanese/board/img/photoShadow.gif new file mode 100644 index 0000000..272b5f0 Binary files /dev/null and b/public/images/common/japanese/board/img/photoShadow.gif differ diff --git a/public/images/common/japanese/board/img/photoTop.gif b/public/images/common/japanese/board/img/photoTop.gif new file mode 100644 index 0000000..b37498b Binary files /dev/null and b/public/images/common/japanese/board/img/photoTop.gif differ diff --git a/public/images/common/japanese/board/img/photoUnder.gif b/public/images/common/japanese/board/img/photoUnder.gif new file mode 100644 index 0000000..3065869 Binary files /dev/null and b/public/images/common/japanese/board/img/photoUnder.gif differ diff --git a/public/images/common/japanese/board/img/point.gif b/public/images/common/japanese/board/img/point.gif new file mode 100644 index 0000000..89069f7 Binary files /dev/null and b/public/images/common/japanese/board/img/point.gif differ diff --git a/public/images/common/japanese/board/img/ppt.gif b/public/images/common/japanese/board/img/ppt.gif new file mode 100644 index 0000000..e0b3fde Binary files /dev/null and b/public/images/common/japanese/board/img/ppt.gif differ diff --git a/public/images/common/japanese/board/img/prev.gif b/public/images/common/japanese/board/img/prev.gif new file mode 100644 index 0000000..32f4878 Binary files /dev/null and b/public/images/common/japanese/board/img/prev.gif differ diff --git a/public/images/common/japanese/board/img/reply.gif b/public/images/common/japanese/board/img/reply.gif new file mode 100644 index 0000000..9b62729 Binary files /dev/null and b/public/images/common/japanese/board/img/reply.gif differ diff --git a/public/images/common/japanese/board/img/reply2.gif b/public/images/common/japanese/board/img/reply2.gif new file mode 100644 index 0000000..aadeeb3 Binary files /dev/null and b/public/images/common/japanese/board/img/reply2.gif differ diff --git a/public/images/common/japanese/board/img/reset.gif b/public/images/common/japanese/board/img/reset.gif new file mode 100644 index 0000000..f2c04f7 Binary files /dev/null and b/public/images/common/japanese/board/img/reset.gif differ diff --git a/public/images/common/japanese/board/img/search.gif b/public/images/common/japanese/board/img/search.gif new file mode 100644 index 0000000..d06a4c2 Binary files /dev/null and b/public/images/common/japanese/board/img/search.gif differ diff --git a/public/images/common/japanese/board/img/submit.gif b/public/images/common/japanese/board/img/submit.gif new file mode 100644 index 0000000..ee9f55b Binary files /dev/null and b/public/images/common/japanese/board/img/submit.gif differ diff --git a/public/images/common/japanese/board/img/t_down.gif b/public/images/common/japanese/board/img/t_down.gif new file mode 100644 index 0000000..b38c641 Binary files /dev/null and b/public/images/common/japanese/board/img/t_down.gif differ diff --git a/public/images/common/japanese/board/img/t_edit.gif b/public/images/common/japanese/board/img/t_edit.gif new file mode 100644 index 0000000..599a31d Binary files /dev/null and b/public/images/common/japanese/board/img/t_edit.gif differ diff --git a/public/images/common/japanese/board/img/t_email.gif b/public/images/common/japanese/board/img/t_email.gif new file mode 100644 index 0000000..7ab35ff Binary files /dev/null and b/public/images/common/japanese/board/img/t_email.gif differ diff --git a/public/images/common/japanese/board/img/t_html.gif b/public/images/common/japanese/board/img/t_html.gif new file mode 100644 index 0000000..689c22d Binary files /dev/null and b/public/images/common/japanese/board/img/t_html.gif differ diff --git a/public/images/common/japanese/board/img/t_memo.gif b/public/images/common/japanese/board/img/t_memo.gif new file mode 100644 index 0000000..551518e Binary files /dev/null and b/public/images/common/japanese/board/img/t_memo.gif differ diff --git a/public/images/common/japanese/board/img/t_name.gif b/public/images/common/japanese/board/img/t_name.gif new file mode 100644 index 0000000..79bc532 Binary files /dev/null and b/public/images/common/japanese/board/img/t_name.gif differ diff --git a/public/images/common/japanese/board/img/t_password.gif b/public/images/common/japanese/board/img/t_password.gif new file mode 100644 index 0000000..aa9b1b3 Binary files /dev/null and b/public/images/common/japanese/board/img/t_password.gif differ diff --git a/public/images/common/japanese/board/img/t_reply.gif b/public/images/common/japanese/board/img/t_reply.gif new file mode 100644 index 0000000..c0922e1 Binary files /dev/null and b/public/images/common/japanese/board/img/t_reply.gif differ diff --git a/public/images/common/japanese/board/img/t_subject.gif b/public/images/common/japanese/board/img/t_subject.gif new file mode 100644 index 0000000..595069b Binary files /dev/null and b/public/images/common/japanese/board/img/t_subject.gif differ diff --git a/public/images/common/japanese/board/img/t_tag.gif b/public/images/common/japanese/board/img/t_tag.gif new file mode 100644 index 0000000..431022d Binary files /dev/null and b/public/images/common/japanese/board/img/t_tag.gif differ diff --git a/public/images/common/japanese/board/img/t_text.gif b/public/images/common/japanese/board/img/t_text.gif new file mode 100644 index 0000000..ffefed9 Binary files /dev/null and b/public/images/common/japanese/board/img/t_text.gif differ diff --git a/public/images/common/japanese/board/img/t_write.gif b/public/images/common/japanese/board/img/t_write.gif new file mode 100644 index 0000000..f2c3ecd Binary files /dev/null and b/public/images/common/japanese/board/img/t_write.gif differ diff --git a/public/images/common/japanese/board/img/top.gif b/public/images/common/japanese/board/img/top.gif new file mode 100644 index 0000000..4822461 Binary files /dev/null and b/public/images/common/japanese/board/img/top.gif differ diff --git a/public/images/common/japanese/board/img/write.gif b/public/images/common/japanese/board/img/write.gif new file mode 100644 index 0000000..6d1cbc5 Binary files /dev/null and b/public/images/common/japanese/board/img/write.gif differ diff --git a/public/images/common/japanese/board/img/xls.gif b/public/images/common/japanese/board/img/xls.gif new file mode 100644 index 0000000..ca548ce Binary files /dev/null and b/public/images/common/japanese/board/img/xls.gif differ diff --git a/public/images/common/japanese/box_1.gif b/public/images/common/japanese/box_1.gif new file mode 100644 index 0000000..fe08dee Binary files /dev/null and b/public/images/common/japanese/box_1.gif differ diff --git a/public/images/common/japanese/box_2.gif b/public/images/common/japanese/box_2.gif new file mode 100644 index 0000000..6cb291f Binary files /dev/null and b/public/images/common/japanese/box_2.gif differ diff --git a/public/images/common/japanese/box_21.gif b/public/images/common/japanese/box_21.gif new file mode 100644 index 0000000..cef0315 Binary files /dev/null and b/public/images/common/japanese/box_21.gif differ diff --git a/public/images/common/japanese/box_22.gif b/public/images/common/japanese/box_22.gif new file mode 100644 index 0000000..6fbc11e Binary files /dev/null and b/public/images/common/japanese/box_22.gif differ diff --git a/public/images/common/japanese/box_23.gif b/public/images/common/japanese/box_23.gif new file mode 100644 index 0000000..b920a9b Binary files /dev/null and b/public/images/common/japanese/box_23.gif differ diff --git a/public/images/common/japanese/box_24.gif b/public/images/common/japanese/box_24.gif new file mode 100644 index 0000000..579a4b6 Binary files /dev/null and b/public/images/common/japanese/box_24.gif differ diff --git a/public/images/common/japanese/box_3.gif b/public/images/common/japanese/box_3.gif new file mode 100644 index 0000000..2a97f1f Binary files /dev/null and b/public/images/common/japanese/box_3.gif differ diff --git a/public/images/common/japanese/box_4.gif b/public/images/common/japanese/box_4.gif new file mode 100644 index 0000000..70546c5 Binary files /dev/null and b/public/images/common/japanese/box_4.gif differ diff --git a/public/images/common/japanese/btn_introduce_1.png b/public/images/common/japanese/btn_introduce_1.png new file mode 100644 index 0000000..ee1a9be Binary files /dev/null and b/public/images/common/japanese/btn_introduce_1.png differ diff --git a/public/images/common/japanese/btn_introduce_1_over.png b/public/images/common/japanese/btn_introduce_1_over.png new file mode 100644 index 0000000..53dc4b1 Binary files /dev/null and b/public/images/common/japanese/btn_introduce_1_over.png differ diff --git a/public/images/common/japanese/btn_introduce_2.png b/public/images/common/japanese/btn_introduce_2.png new file mode 100644 index 0000000..e0b460c Binary files /dev/null and b/public/images/common/japanese/btn_introduce_2.png differ diff --git a/public/images/common/japanese/btn_introduce_2_over.png b/public/images/common/japanese/btn_introduce_2_over.png new file mode 100644 index 0000000..2ce969e Binary files /dev/null and b/public/images/common/japanese/btn_introduce_2_over.png differ diff --git a/public/images/common/japanese/btn_introduce_3.png b/public/images/common/japanese/btn_introduce_3.png new file mode 100644 index 0000000..828ffe6 Binary files /dev/null and b/public/images/common/japanese/btn_introduce_3.png differ diff --git a/public/images/common/japanese/btn_introduce_3_over.png b/public/images/common/japanese/btn_introduce_3_over.png new file mode 100644 index 0000000..a1eebd7 Binary files /dev/null and b/public/images/common/japanese/btn_introduce_3_over.png differ diff --git a/public/images/common/japanese/btn_introduce_bg.png b/public/images/common/japanese/btn_introduce_bg.png new file mode 100644 index 0000000..4bc2d8b Binary files /dev/null and b/public/images/common/japanese/btn_introduce_bg.png differ diff --git a/public/images/common/japanese/btn_login.png b/public/images/common/japanese/btn_login.png new file mode 100644 index 0000000..c0b2782 Binary files /dev/null and b/public/images/common/japanese/btn_login.png differ diff --git a/public/images/common/japanese/btn_search.gif b/public/images/common/japanese/btn_search.gif new file mode 100644 index 0000000..ca1b28c Binary files /dev/null and b/public/images/common/japanese/btn_search.gif differ diff --git a/public/images/common/japanese/btn_waf_1.png b/public/images/common/japanese/btn_waf_1.png new file mode 100644 index 0000000..5828638 Binary files /dev/null and b/public/images/common/japanese/btn_waf_1.png differ diff --git a/public/images/common/japanese/btn_waf_1_over.png b/public/images/common/japanese/btn_waf_1_over.png new file mode 100644 index 0000000..519bc0f Binary files /dev/null and b/public/images/common/japanese/btn_waf_1_over.png differ diff --git a/public/images/common/japanese/btn_waf_2.png b/public/images/common/japanese/btn_waf_2.png new file mode 100644 index 0000000..0bf4a0a Binary files /dev/null and b/public/images/common/japanese/btn_waf_2.png differ diff --git a/public/images/common/japanese/btn_waf_2_over.png b/public/images/common/japanese/btn_waf_2_over.png new file mode 100644 index 0000000..151dd99 Binary files /dev/null and b/public/images/common/japanese/btn_waf_2_over.png differ diff --git a/public/images/common/japanese/btn_waf_3.png b/public/images/common/japanese/btn_waf_3.png new file mode 100644 index 0000000..8a3c2f1 Binary files /dev/null and b/public/images/common/japanese/btn_waf_3.png differ diff --git a/public/images/common/japanese/btn_waf_3_over.png b/public/images/common/japanese/btn_waf_3_over.png new file mode 100644 index 0000000..cc3d0e0 Binary files /dev/null and b/public/images/common/japanese/btn_waf_3_over.png differ diff --git a/public/images/common/japanese/btn_waf_4.png b/public/images/common/japanese/btn_waf_4.png new file mode 100644 index 0000000..f3267ee Binary files /dev/null and b/public/images/common/japanese/btn_waf_4.png differ diff --git a/public/images/common/japanese/btn_waf_4_over.png b/public/images/common/japanese/btn_waf_4_over.png new file mode 100644 index 0000000..48d4ad1 Binary files /dev/null and b/public/images/common/japanese/btn_waf_4_over.png differ diff --git a/public/images/common/japanese/btn_waf_5.png b/public/images/common/japanese/btn_waf_5.png new file mode 100644 index 0000000..f07246a Binary files /dev/null and b/public/images/common/japanese/btn_waf_5.png differ diff --git a/public/images/common/japanese/btn_waf_5_over.png b/public/images/common/japanese/btn_waf_5_over.png new file mode 100644 index 0000000..db6b4c6 Binary files /dev/null and b/public/images/common/japanese/btn_waf_5_over.png differ diff --git a/public/images/common/japanese/buttonBlack.gif b/public/images/common/japanese/buttonBlack.gif new file mode 100644 index 0000000..8873a99 Binary files /dev/null and b/public/images/common/japanese/buttonBlack.gif differ diff --git a/public/images/common/japanese/buttonBlue.gif b/public/images/common/japanese/buttonBlue.gif new file mode 100644 index 0000000..a87ff78 Binary files /dev/null and b/public/images/common/japanese/buttonBlue.gif differ diff --git a/public/images/common/japanese/buttonGreen.gif b/public/images/common/japanese/buttonGreen.gif new file mode 100644 index 0000000..241fd57 Binary files /dev/null and b/public/images/common/japanese/buttonGreen.gif differ diff --git a/public/images/common/japanese/buttonRed.gif b/public/images/common/japanese/buttonRed.gif new file mode 100644 index 0000000..d017d59 Binary files /dev/null and b/public/images/common/japanese/buttonRed.gif differ diff --git a/public/images/common/japanese/common b/public/images/common/japanese/common new file mode 100644 index 0000000..8332399 --- /dev/null +++ b/public/images/common/japanese/common @@ -0,0 +1 @@ +../common/ \ No newline at end of file diff --git a/public/images/common/japanese/content/10.gif b/public/images/common/japanese/content/10.gif new file mode 100644 index 0000000..0595009 Binary files /dev/null and b/public/images/common/japanese/content/10.gif differ diff --git a/public/images/common/japanese/content/10.png b/public/images/common/japanese/content/10.png new file mode 100644 index 0000000..6b4e441 Binary files /dev/null and b/public/images/common/japanese/content/10.png differ diff --git a/public/images/common/japanese/content/11-1.png b/public/images/common/japanese/content/11-1.png new file mode 100644 index 0000000..4eedb29 Binary files /dev/null and b/public/images/common/japanese/content/11-1.png differ diff --git a/public/images/common/japanese/content/11.png b/public/images/common/japanese/content/11.png new file mode 100644 index 0000000..6022e93 Binary files /dev/null and b/public/images/common/japanese/content/11.png differ diff --git a/public/images/common/japanese/content/12.png b/public/images/common/japanese/content/12.png new file mode 100644 index 0000000..61313f3 Binary files /dev/null and b/public/images/common/japanese/content/12.png differ diff --git a/public/images/common/japanese/content/13-1.png b/public/images/common/japanese/content/13-1.png new file mode 100644 index 0000000..3a30078 Binary files /dev/null and b/public/images/common/japanese/content/13-1.png differ diff --git a/public/images/common/japanese/content/13.png b/public/images/common/japanese/content/13.png new file mode 100644 index 0000000..a78e399 Binary files /dev/null and b/public/images/common/japanese/content/13.png differ diff --git a/public/images/common/japanese/content/14.png b/public/images/common/japanese/content/14.png new file mode 100644 index 0000000..1534657 Binary files /dev/null and b/public/images/common/japanese/content/14.png differ diff --git a/public/images/common/japanese/content/15.png b/public/images/common/japanese/content/15.png new file mode 100644 index 0000000..5024c3e Binary files /dev/null and b/public/images/common/japanese/content/15.png differ diff --git a/public/images/common/japanese/content/16.jpg b/public/images/common/japanese/content/16.jpg new file mode 100644 index 0000000..4f08772 Binary files /dev/null and b/public/images/common/japanese/content/16.jpg differ diff --git a/public/images/common/japanese/content/16.png b/public/images/common/japanese/content/16.png new file mode 100644 index 0000000..c4ea32e Binary files /dev/null and b/public/images/common/japanese/content/16.png differ diff --git a/public/images/common/japanese/content/17.png b/public/images/common/japanese/content/17.png new file mode 100644 index 0000000..019d59e Binary files /dev/null and b/public/images/common/japanese/content/17.png differ diff --git a/public/images/common/japanese/content/18.png b/public/images/common/japanese/content/18.png new file mode 100644 index 0000000..52b9769 Binary files /dev/null and b/public/images/common/japanese/content/18.png differ diff --git a/public/images/common/japanese/content/19.png b/public/images/common/japanese/content/19.png new file mode 100644 index 0000000..8bb3d1d Binary files /dev/null and b/public/images/common/japanese/content/19.png differ diff --git a/public/images/common/japanese/content/20.png b/public/images/common/japanese/content/20.png new file mode 100644 index 0000000..a1d3408 Binary files /dev/null and b/public/images/common/japanese/content/20.png differ diff --git a/public/images/common/japanese/content/22-1.jpg b/public/images/common/japanese/content/22-1.jpg new file mode 100644 index 0000000..af7eaf6 Binary files /dev/null and b/public/images/common/japanese/content/22-1.jpg differ diff --git a/public/images/common/japanese/content/22.png b/public/images/common/japanese/content/22.png new file mode 100644 index 0000000..4e9fb9d Binary files /dev/null and b/public/images/common/japanese/content/22.png differ diff --git a/public/images/common/japanese/content/23.jpg b/public/images/common/japanese/content/23.jpg new file mode 100644 index 0000000..669082c Binary files /dev/null and b/public/images/common/japanese/content/23.jpg differ diff --git a/public/images/common/japanese/content/23.png b/public/images/common/japanese/content/23.png new file mode 100644 index 0000000..359b05f Binary files /dev/null and b/public/images/common/japanese/content/23.png differ diff --git a/public/images/common/japanese/content/3.png b/public/images/common/japanese/content/3.png new file mode 100644 index 0000000..145b26a Binary files /dev/null and b/public/images/common/japanese/content/3.png differ diff --git a/public/images/common/japanese/content/4-1.png b/public/images/common/japanese/content/4-1.png new file mode 100644 index 0000000..5accc87 Binary files /dev/null and b/public/images/common/japanese/content/4-1.png differ diff --git a/public/images/common/japanese/content/4-2.png b/public/images/common/japanese/content/4-2.png new file mode 100644 index 0000000..9ea7c24 Binary files /dev/null and b/public/images/common/japanese/content/4-2.png differ diff --git a/public/images/common/japanese/content/4.png b/public/images/common/japanese/content/4.png new file mode 100644 index 0000000..ff98f0b Binary files /dev/null and b/public/images/common/japanese/content/4.png differ diff --git a/public/images/common/japanese/content/50.png b/public/images/common/japanese/content/50.png new file mode 100644 index 0000000..d5e7559 Binary files /dev/null and b/public/images/common/japanese/content/50.png differ diff --git a/public/images/common/japanese/content/51.png b/public/images/common/japanese/content/51.png new file mode 100644 index 0000000..b268061 Binary files /dev/null and b/public/images/common/japanese/content/51.png differ diff --git a/public/images/common/japanese/content/52.png b/public/images/common/japanese/content/52.png new file mode 100644 index 0000000..1355da0 Binary files /dev/null and b/public/images/common/japanese/content/52.png differ diff --git a/public/images/common/japanese/content/53.png b/public/images/common/japanese/content/53.png new file mode 100644 index 0000000..246c6a2 Binary files /dev/null and b/public/images/common/japanese/content/53.png differ diff --git a/public/images/common/japanese/content/54.png b/public/images/common/japanese/content/54.png new file mode 100644 index 0000000..40150e2 Binary files /dev/null and b/public/images/common/japanese/content/54.png differ diff --git a/public/images/common/japanese/content/55.png b/public/images/common/japanese/content/55.png new file mode 100644 index 0000000..7980439 Binary files /dev/null and b/public/images/common/japanese/content/55.png differ diff --git a/public/images/common/japanese/content/56.png b/public/images/common/japanese/content/56.png new file mode 100644 index 0000000..b0e16d5 Binary files /dev/null and b/public/images/common/japanese/content/56.png differ diff --git a/public/images/common/japanese/content/57.png b/public/images/common/japanese/content/57.png new file mode 100644 index 0000000..af8f1a5 Binary files /dev/null and b/public/images/common/japanese/content/57.png differ diff --git a/public/images/common/japanese/content/58.png b/public/images/common/japanese/content/58.png new file mode 100644 index 0000000..f1a1adf Binary files /dev/null and b/public/images/common/japanese/content/58.png differ diff --git a/public/images/common/japanese/content/59.png b/public/images/common/japanese/content/59.png new file mode 100644 index 0000000..69363c5 Binary files /dev/null and b/public/images/common/japanese/content/59.png differ diff --git a/public/images/common/japanese/content/60.png b/public/images/common/japanese/content/60.png new file mode 100644 index 0000000..855e651 Binary files /dev/null and b/public/images/common/japanese/content/60.png differ diff --git a/public/images/common/japanese/content/61.png b/public/images/common/japanese/content/61.png new file mode 100644 index 0000000..222675d Binary files /dev/null and b/public/images/common/japanese/content/61.png differ diff --git a/public/images/common/japanese/content/8.png b/public/images/common/japanese/content/8.png new file mode 100644 index 0000000..9a56043 Binary files /dev/null and b/public/images/common/japanese/content/8.png differ diff --git a/public/images/common/japanese/content/9.png b/public/images/common/japanese/content/9.png new file mode 100644 index 0000000..eebf9ec Binary files /dev/null and b/public/images/common/japanese/content/9.png differ diff --git a/public/images/common/japanese/content/btn_introduce_1.png b/public/images/common/japanese/content/btn_introduce_1.png new file mode 100644 index 0000000..8122056 Binary files /dev/null and b/public/images/common/japanese/content/btn_introduce_1.png differ diff --git a/public/images/common/japanese/content/btn_introduce_1_over.png b/public/images/common/japanese/content/btn_introduce_1_over.png new file mode 100644 index 0000000..e0d77ee Binary files /dev/null and b/public/images/common/japanese/content/btn_introduce_1_over.png differ diff --git a/public/images/common/japanese/content/btn_introduce_2.png b/public/images/common/japanese/content/btn_introduce_2.png new file mode 100644 index 0000000..0b25af5 Binary files /dev/null and b/public/images/common/japanese/content/btn_introduce_2.png differ diff --git a/public/images/common/japanese/content/btn_introduce_2_over.png b/public/images/common/japanese/content/btn_introduce_2_over.png new file mode 100644 index 0000000..935e9cf Binary files /dev/null and b/public/images/common/japanese/content/btn_introduce_2_over.png differ diff --git a/public/images/common/japanese/content/btn_introduce_3.png b/public/images/common/japanese/content/btn_introduce_3.png new file mode 100644 index 0000000..a8ca5dd Binary files /dev/null and b/public/images/common/japanese/content/btn_introduce_3.png differ diff --git a/public/images/common/japanese/content/btn_introduce_3_over.png b/public/images/common/japanese/content/btn_introduce_3_over.png new file mode 100644 index 0000000..c17ad12 Binary files /dev/null and b/public/images/common/japanese/content/btn_introduce_3_over.png differ diff --git a/public/images/common/japanese/content/btn_introduce_bg.png b/public/images/common/japanese/content/btn_introduce_bg.png new file mode 100644 index 0000000..4bc2d8b Binary files /dev/null and b/public/images/common/japanese/content/btn_introduce_bg.png differ diff --git a/public/images/common/japanese/content/cs.png b/public/images/common/japanese/content/cs.png new file mode 100644 index 0000000..0924f42 Binary files /dev/null and b/public/images/common/japanese/content/cs.png differ diff --git a/public/images/common/japanese/content/ddos.png b/public/images/common/japanese/content/ddos.png new file mode 100644 index 0000000..fbca75b Binary files /dev/null and b/public/images/common/japanese/content/ddos.png differ diff --git a/public/images/common/japanese/customervoice.png b/public/images/common/japanese/customervoice.png new file mode 100644 index 0000000..7221c63 Binary files /dev/null and b/public/images/common/japanese/customervoice.png differ diff --git a/public/images/common/japanese/disk1.gif b/public/images/common/japanese/disk1.gif new file mode 100644 index 0000000..a618a52 Binary files /dev/null and b/public/images/common/japanese/disk1.gif differ diff --git a/public/images/common/japanese/dot_bold.gif b/public/images/common/japanese/dot_bold.gif new file mode 100644 index 0000000..f46a561 Binary files /dev/null and b/public/images/common/japanese/dot_bold.gif differ diff --git a/public/images/common/japanese/dot_bronze.gif b/public/images/common/japanese/dot_bronze.gif new file mode 100644 index 0000000..1d1dd30 Binary files /dev/null and b/public/images/common/japanese/dot_bronze.gif differ diff --git a/public/images/common/japanese/dot_dot.gif b/public/images/common/japanese/dot_dot.gif new file mode 100644 index 0000000..693a981 Binary files /dev/null and b/public/images/common/japanese/dot_dot.gif differ diff --git a/public/images/common/japanese/dot_e.gif b/public/images/common/japanese/dot_e.gif new file mode 100644 index 0000000..3b0d106 Binary files /dev/null and b/public/images/common/japanese/dot_e.gif differ diff --git a/public/images/common/japanese/dot_g.gif b/public/images/common/japanese/dot_g.gif new file mode 100644 index 0000000..21fc427 Binary files /dev/null and b/public/images/common/japanese/dot_g.gif differ diff --git a/public/images/common/japanese/dot_gold.gif b/public/images/common/japanese/dot_gold.gif new file mode 100644 index 0000000..f46a561 Binary files /dev/null and b/public/images/common/japanese/dot_gold.gif differ diff --git a/public/images/common/japanese/dot_h.gif b/public/images/common/japanese/dot_h.gif new file mode 100644 index 0000000..da240c3 Binary files /dev/null and b/public/images/common/japanese/dot_h.gif differ diff --git a/public/images/common/japanese/dot_m.gif b/public/images/common/japanese/dot_m.gif new file mode 100644 index 0000000..c36baa4 Binary files /dev/null and b/public/images/common/japanese/dot_m.gif differ diff --git a/public/images/common/japanese/dot_silver.gif b/public/images/common/japanese/dot_silver.gif new file mode 100644 index 0000000..da70aaf Binary files /dev/null and b/public/images/common/japanese/dot_silver.gif differ diff --git a/public/images/common/japanese/dot_u.gif b/public/images/common/japanese/dot_u.gif new file mode 100644 index 0000000..e897359 Binary files /dev/null and b/public/images/common/japanese/dot_u.gif differ diff --git a/public/images/common/japanese/iconBack.gif b/public/images/common/japanese/iconBack.gif new file mode 100644 index 0000000..74b4f06 Binary files /dev/null and b/public/images/common/japanese/iconBack.gif differ diff --git a/public/images/common/japanese/iconDel.gif b/public/images/common/japanese/iconDel.gif new file mode 100644 index 0000000..b54ce21 Binary files /dev/null and b/public/images/common/japanese/iconDel.gif differ diff --git a/public/images/common/japanese/iconEdit.gif b/public/images/common/japanese/iconEdit.gif new file mode 100644 index 0000000..42f7997 Binary files /dev/null and b/public/images/common/japanese/iconEdit.gif differ diff --git a/public/images/common/japanese/iconEnd.gif b/public/images/common/japanese/iconEnd.gif new file mode 100644 index 0000000..1340c3c Binary files /dev/null and b/public/images/common/japanese/iconEnd.gif differ diff --git a/public/images/common/japanese/iconFirst.gif b/public/images/common/japanese/iconFirst.gif new file mode 100644 index 0000000..1865b3d Binary files /dev/null and b/public/images/common/japanese/iconFirst.gif differ diff --git a/public/images/common/japanese/iconList.gif b/public/images/common/japanese/iconList.gif new file mode 100644 index 0000000..94e056e Binary files /dev/null and b/public/images/common/japanese/iconList.gif differ diff --git a/public/images/common/japanese/iconNext.gif b/public/images/common/japanese/iconNext.gif new file mode 100644 index 0000000..9218de5 Binary files /dev/null and b/public/images/common/japanese/iconNext.gif differ diff --git a/public/images/common/japanese/iconPrev.gif b/public/images/common/japanese/iconPrev.gif new file mode 100644 index 0000000..3bf2341 Binary files /dev/null and b/public/images/common/japanese/iconPrev.gif differ diff --git a/public/images/common/japanese/iconReply.gif b/public/images/common/japanese/iconReply.gif new file mode 100644 index 0000000..e0a2ac0 Binary files /dev/null and b/public/images/common/japanese/iconReply.gif differ diff --git a/public/images/common/japanese/iconSave.gif b/public/images/common/japanese/iconSave.gif new file mode 100644 index 0000000..a8acec1 Binary files /dev/null and b/public/images/common/japanese/iconSave.gif differ diff --git a/public/images/common/japanese/iconWrite.gif b/public/images/common/japanese/iconWrite.gif new file mode 100644 index 0000000..50cf02c Binary files /dev/null and b/public/images/common/japanese/iconWrite.gif differ diff --git a/public/images/common/japanese/icon_pdf.gif b/public/images/common/japanese/icon_pdf.gif new file mode 100644 index 0000000..f54941b Binary files /dev/null and b/public/images/common/japanese/icon_pdf.gif differ diff --git a/public/images/common/japanese/idcjp_server_us.png b/public/images/common/japanese/idcjp_server_us.png new file mode 100644 index 0000000..54a049f Binary files /dev/null and b/public/images/common/japanese/idcjp_server_us.png differ diff --git a/public/images/common/japanese/left_banner_1.png b/public/images/common/japanese/left_banner_1.png new file mode 100644 index 0000000..c69edd9 Binary files /dev/null and b/public/images/common/japanese/left_banner_1.png differ diff --git a/public/images/common/japanese/left_banner_2.png b/public/images/common/japanese/left_banner_2.png new file mode 100644 index 0000000..d54f441 Binary files /dev/null and b/public/images/common/japanese/left_banner_2.png differ diff --git a/public/images/common/japanese/left_banner_2.png.130808 b/public/images/common/japanese/left_banner_2.png.130808 new file mode 100644 index 0000000..e41d972 Binary files /dev/null and b/public/images/common/japanese/left_banner_2.png.130808 differ diff --git a/public/images/common/japanese/left_banner_2.png_old20160417 b/public/images/common/japanese/left_banner_2.png_old20160417 new file mode 100644 index 0000000..a763632 Binary files /dev/null and b/public/images/common/japanese/left_banner_2.png_old20160417 differ diff --git a/public/images/common/japanese/left_banner_2_old.png b/public/images/common/japanese/left_banner_2_old.png new file mode 100644 index 0000000..f617908 Binary files /dev/null and b/public/images/common/japanese/left_banner_2_old.png differ diff --git a/public/images/common/japanese/left_banner_3.png b/public/images/common/japanese/left_banner_3.png new file mode 100644 index 0000000..2f01e5f Binary files /dev/null and b/public/images/common/japanese/left_banner_3.png differ diff --git a/public/images/common/japanese/left_menu_addition_1-over.png b/public/images/common/japanese/left_menu_addition_1-over.png new file mode 100644 index 0000000..b52de82 Binary files /dev/null and b/public/images/common/japanese/left_menu_addition_1-over.png differ diff --git a/public/images/common/japanese/left_menu_addition_1.png b/public/images/common/japanese/left_menu_addition_1.png new file mode 100644 index 0000000..f77c05b Binary files /dev/null and b/public/images/common/japanese/left_menu_addition_1.png differ diff --git a/public/images/common/japanese/left_menu_addition_2-over.png b/public/images/common/japanese/left_menu_addition_2-over.png new file mode 100644 index 0000000..f9c16c6 Binary files /dev/null and b/public/images/common/japanese/left_menu_addition_2-over.png differ diff --git a/public/images/common/japanese/left_menu_addition_2.png b/public/images/common/japanese/left_menu_addition_2.png new file mode 100644 index 0000000..c7b614e Binary files /dev/null and b/public/images/common/japanese/left_menu_addition_2.png differ diff --git a/public/images/common/japanese/left_menu_addition_3-over.png b/public/images/common/japanese/left_menu_addition_3-over.png new file mode 100644 index 0000000..3d0a447 Binary files /dev/null and b/public/images/common/japanese/left_menu_addition_3-over.png differ diff --git a/public/images/common/japanese/left_menu_addition_3.png b/public/images/common/japanese/left_menu_addition_3.png new file mode 100644 index 0000000..82fa800 Binary files /dev/null and b/public/images/common/japanese/left_menu_addition_3.png differ diff --git a/public/images/common/japanese/left_menu_addition_4-over.png b/public/images/common/japanese/left_menu_addition_4-over.png new file mode 100644 index 0000000..3a53944 Binary files /dev/null and b/public/images/common/japanese/left_menu_addition_4-over.png differ diff --git a/public/images/common/japanese/left_menu_addition_4.png b/public/images/common/japanese/left_menu_addition_4.png new file mode 100644 index 0000000..84714a0 Binary files /dev/null and b/public/images/common/japanese/left_menu_addition_4.png differ diff --git a/public/images/common/japanese/left_menu_addition_5-over.png b/public/images/common/japanese/left_menu_addition_5-over.png new file mode 100644 index 0000000..46e2862 Binary files /dev/null and b/public/images/common/japanese/left_menu_addition_5-over.png differ diff --git a/public/images/common/japanese/left_menu_addition_5.png b/public/images/common/japanese/left_menu_addition_5.png new file mode 100644 index 0000000..b845809 Binary files /dev/null and b/public/images/common/japanese/left_menu_addition_5.png differ diff --git a/public/images/common/japanese/left_menu_bg.png b/public/images/common/japanese/left_menu_bg.png new file mode 100644 index 0000000..64d5243 Binary files /dev/null and b/public/images/common/japanese/left_menu_bg.png differ diff --git a/public/images/common/japanese/left_menu_bottom.png b/public/images/common/japanese/left_menu_bottom.png new file mode 100644 index 0000000..9f540ad Binary files /dev/null and b/public/images/common/japanese/left_menu_bottom.png differ diff --git a/public/images/common/japanese/left_menu_colacation_1-over.png b/public/images/common/japanese/left_menu_colacation_1-over.png new file mode 100644 index 0000000..5b237cb Binary files /dev/null and b/public/images/common/japanese/left_menu_colacation_1-over.png differ diff --git a/public/images/common/japanese/left_menu_colacation_1.png b/public/images/common/japanese/left_menu_colacation_1.png new file mode 100644 index 0000000..01f82bd Binary files /dev/null and b/public/images/common/japanese/left_menu_colacation_1.png differ diff --git a/public/images/common/japanese/left_menu_colacation_2-over.png b/public/images/common/japanese/left_menu_colacation_2-over.png new file mode 100644 index 0000000..67c1770 Binary files /dev/null and b/public/images/common/japanese/left_menu_colacation_2-over.png differ diff --git a/public/images/common/japanese/left_menu_colacation_2.png b/public/images/common/japanese/left_menu_colacation_2.png new file mode 100644 index 0000000..4b74a11 Binary files /dev/null and b/public/images/common/japanese/left_menu_colacation_2.png differ diff --git a/public/images/common/japanese/left_menu_colacation_3-over.png b/public/images/common/japanese/left_menu_colacation_3-over.png new file mode 100644 index 0000000..ef3b79e Binary files /dev/null and b/public/images/common/japanese/left_menu_colacation_3-over.png differ diff --git a/public/images/common/japanese/left_menu_colacation_3.png b/public/images/common/japanese/left_menu_colacation_3.png new file mode 100644 index 0000000..83d2d06 Binary files /dev/null and b/public/images/common/japanese/left_menu_colacation_3.png differ diff --git a/public/images/common/japanese/left_menu_customer_1-over.png b/public/images/common/japanese/left_menu_customer_1-over.png new file mode 100644 index 0000000..ce01942 Binary files /dev/null and b/public/images/common/japanese/left_menu_customer_1-over.png differ diff --git a/public/images/common/japanese/left_menu_customer_1.png b/public/images/common/japanese/left_menu_customer_1.png new file mode 100644 index 0000000..f644a50 Binary files /dev/null and b/public/images/common/japanese/left_menu_customer_1.png differ diff --git a/public/images/common/japanese/left_menu_customer_2-over.png b/public/images/common/japanese/left_menu_customer_2-over.png new file mode 100644 index 0000000..af6ee22 Binary files /dev/null and b/public/images/common/japanese/left_menu_customer_2-over.png differ diff --git a/public/images/common/japanese/left_menu_customer_2.png b/public/images/common/japanese/left_menu_customer_2.png new file mode 100644 index 0000000..1ddadc9 Binary files /dev/null and b/public/images/common/japanese/left_menu_customer_2.png differ diff --git a/public/images/common/japanese/left_menu_customer_3-over.png b/public/images/common/japanese/left_menu_customer_3-over.png new file mode 100644 index 0000000..b99a5eb Binary files /dev/null and b/public/images/common/japanese/left_menu_customer_3-over.png differ diff --git a/public/images/common/japanese/left_menu_customer_3.png b/public/images/common/japanese/left_menu_customer_3.png new file mode 100644 index 0000000..226a246 Binary files /dev/null and b/public/images/common/japanese/left_menu_customer_3.png differ diff --git a/public/images/common/japanese/left_menu_customer_4-over.png b/public/images/common/japanese/left_menu_customer_4-over.png new file mode 100644 index 0000000..b65623a Binary files /dev/null and b/public/images/common/japanese/left_menu_customer_4-over.png differ diff --git a/public/images/common/japanese/left_menu_customer_4.png b/public/images/common/japanese/left_menu_customer_4.png new file mode 100644 index 0000000..be946a7 Binary files /dev/null and b/public/images/common/japanese/left_menu_customer_4.png differ diff --git a/public/images/common/japanese/left_menu_customer_5-over.png b/public/images/common/japanese/left_menu_customer_5-over.png new file mode 100644 index 0000000..04340a0 Binary files /dev/null and b/public/images/common/japanese/left_menu_customer_5-over.png differ diff --git a/public/images/common/japanese/left_menu_customer_5.png b/public/images/common/japanese/left_menu_customer_5.png new file mode 100644 index 0000000..9205078 Binary files /dev/null and b/public/images/common/japanese/left_menu_customer_5.png differ diff --git a/public/images/common/japanese/left_menu_customer_6-over.png b/public/images/common/japanese/left_menu_customer_6-over.png new file mode 100644 index 0000000..b99a5eb Binary files /dev/null and b/public/images/common/japanese/left_menu_customer_6-over.png differ diff --git a/public/images/common/japanese/left_menu_customer_6.png b/public/images/common/japanese/left_menu_customer_6.png new file mode 100644 index 0000000..226a246 Binary files /dev/null and b/public/images/common/japanese/left_menu_customer_6.png differ diff --git a/public/images/common/japanese/left_menu_customer_7-over.png b/public/images/common/japanese/left_menu_customer_7-over.png new file mode 100644 index 0000000..b4a0390 Binary files /dev/null and b/public/images/common/japanese/left_menu_customer_7-over.png differ diff --git a/public/images/common/japanese/left_menu_customer_7.png b/public/images/common/japanese/left_menu_customer_7.png new file mode 100644 index 0000000..bd11c9a Binary files /dev/null and b/public/images/common/japanese/left_menu_customer_7.png differ diff --git a/public/images/common/japanese/left_menu_hosting_1-over.png b/public/images/common/japanese/left_menu_hosting_1-over.png new file mode 100644 index 0000000..bd9c650 Binary files /dev/null and b/public/images/common/japanese/left_menu_hosting_1-over.png differ diff --git a/public/images/common/japanese/left_menu_hosting_1.png b/public/images/common/japanese/left_menu_hosting_1.png new file mode 100644 index 0000000..11aa2dd Binary files /dev/null and b/public/images/common/japanese/left_menu_hosting_1.png differ diff --git a/public/images/common/japanese/left_menu_hosting_2-over.png b/public/images/common/japanese/left_menu_hosting_2-over.png new file mode 100644 index 0000000..6f7adb0 Binary files /dev/null and b/public/images/common/japanese/left_menu_hosting_2-over.png differ diff --git a/public/images/common/japanese/left_menu_hosting_2.png b/public/images/common/japanese/left_menu_hosting_2.png new file mode 100644 index 0000000..ae461b9 Binary files /dev/null and b/public/images/common/japanese/left_menu_hosting_2.png differ diff --git a/public/images/common/japanese/left_menu_hosting_3-over.png b/public/images/common/japanese/left_menu_hosting_3-over.png new file mode 100644 index 0000000..8e46944 Binary files /dev/null and b/public/images/common/japanese/left_menu_hosting_3-over.png differ diff --git a/public/images/common/japanese/left_menu_hosting_3.png b/public/images/common/japanese/left_menu_hosting_3.png new file mode 100644 index 0000000..8db0a9e Binary files /dev/null and b/public/images/common/japanese/left_menu_hosting_3.png differ diff --git a/public/images/common/japanese/left_menu_independence_1-over.png b/public/images/common/japanese/left_menu_independence_1-over.png new file mode 100644 index 0000000..a1a2b7c Binary files /dev/null and b/public/images/common/japanese/left_menu_independence_1-over.png differ diff --git a/public/images/common/japanese/left_menu_independence_1.png b/public/images/common/japanese/left_menu_independence_1.png new file mode 100644 index 0000000..850e288 Binary files /dev/null and b/public/images/common/japanese/left_menu_independence_1.png differ diff --git a/public/images/common/japanese/left_menu_independence_2-over.png b/public/images/common/japanese/left_menu_independence_2-over.png new file mode 100644 index 0000000..2db450d Binary files /dev/null and b/public/images/common/japanese/left_menu_independence_2-over.png differ diff --git a/public/images/common/japanese/left_menu_independence_2.png b/public/images/common/japanese/left_menu_independence_2.png new file mode 100644 index 0000000..83f0e44 Binary files /dev/null and b/public/images/common/japanese/left_menu_independence_2.png differ diff --git a/public/images/common/japanese/left_menu_independence_3-over.png b/public/images/common/japanese/left_menu_independence_3-over.png new file mode 100644 index 0000000..4d04549 Binary files /dev/null and b/public/images/common/japanese/left_menu_independence_3-over.png differ diff --git a/public/images/common/japanese/left_menu_independence_3.png b/public/images/common/japanese/left_menu_independence_3.png new file mode 100644 index 0000000..dbd2ee0 Binary files /dev/null and b/public/images/common/japanese/left_menu_independence_3.png differ diff --git a/public/images/common/japanese/left_menu_independence_4-ov.png b/public/images/common/japanese/left_menu_independence_4-ov.png new file mode 100644 index 0000000..ba4d3dc Binary files /dev/null and b/public/images/common/japanese/left_menu_independence_4-ov.png differ diff --git a/public/images/common/japanese/left_menu_independence_4-over.png b/public/images/common/japanese/left_menu_independence_4-over.png new file mode 100644 index 0000000..fae368e Binary files /dev/null and b/public/images/common/japanese/left_menu_independence_4-over.png differ diff --git a/public/images/common/japanese/left_menu_independence_4.png b/public/images/common/japanese/left_menu_independence_4.png new file mode 100644 index 0000000..9aa6209 Binary files /dev/null and b/public/images/common/japanese/left_menu_independence_4.png differ diff --git a/public/images/common/japanese/left_menu_introduce_1-over.png b/public/images/common/japanese/left_menu_introduce_1-over.png new file mode 100644 index 0000000..cb37a93 Binary files /dev/null and b/public/images/common/japanese/left_menu_introduce_1-over.png differ diff --git a/public/images/common/japanese/left_menu_introduce_1.png b/public/images/common/japanese/left_menu_introduce_1.png new file mode 100644 index 0000000..900a530 Binary files /dev/null and b/public/images/common/japanese/left_menu_introduce_1.png differ diff --git a/public/images/common/japanese/left_menu_introduce_2-over.png b/public/images/common/japanese/left_menu_introduce_2-over.png new file mode 100644 index 0000000..1b21313 Binary files /dev/null and b/public/images/common/japanese/left_menu_introduce_2-over.png differ diff --git a/public/images/common/japanese/left_menu_introduce_2.png b/public/images/common/japanese/left_menu_introduce_2.png new file mode 100644 index 0000000..e6e19f1 Binary files /dev/null and b/public/images/common/japanese/left_menu_introduce_2.png differ diff --git a/public/images/common/japanese/left_menu_introduce_3-over.png b/public/images/common/japanese/left_menu_introduce_3-over.png new file mode 100644 index 0000000..cba97ab Binary files /dev/null and b/public/images/common/japanese/left_menu_introduce_3-over.png differ diff --git a/public/images/common/japanese/left_menu_introduce_3.png b/public/images/common/japanese/left_menu_introduce_3.png new file mode 100644 index 0000000..4ca991a Binary files /dev/null and b/public/images/common/japanese/left_menu_introduce_3.png differ diff --git a/public/images/common/japanese/left_menu_introduce_4-over.png b/public/images/common/japanese/left_menu_introduce_4-over.png new file mode 100644 index 0000000..70b2784 Binary files /dev/null and b/public/images/common/japanese/left_menu_introduce_4-over.png differ diff --git a/public/images/common/japanese/left_menu_introduce_4.png b/public/images/common/japanese/left_menu_introduce_4.png new file mode 100644 index 0000000..bf63214 Binary files /dev/null and b/public/images/common/japanese/left_menu_introduce_4.png differ diff --git a/public/images/common/japanese/left_menu_introduce_5-over.png b/public/images/common/japanese/left_menu_introduce_5-over.png new file mode 100644 index 0000000..db62689 Binary files /dev/null and b/public/images/common/japanese/left_menu_introduce_5-over.png differ diff --git a/public/images/common/japanese/left_menu_introduce_5.png b/public/images/common/japanese/left_menu_introduce_5.png new file mode 100644 index 0000000..7b5bd66 Binary files /dev/null and b/public/images/common/japanese/left_menu_introduce_5.png differ diff --git a/public/images/common/japanese/left_menu_secure_1-.over.png b/public/images/common/japanese/left_menu_secure_1-.over.png new file mode 100644 index 0000000..97e5535 Binary files /dev/null and b/public/images/common/japanese/left_menu_secure_1-.over.png differ diff --git a/public/images/common/japanese/left_menu_secure_1-over.png b/public/images/common/japanese/left_menu_secure_1-over.png new file mode 100644 index 0000000..441e0d7 Binary files /dev/null and b/public/images/common/japanese/left_menu_secure_1-over.png differ diff --git a/public/images/common/japanese/left_menu_secure_1.png b/public/images/common/japanese/left_menu_secure_1.png new file mode 100644 index 0000000..2a94ba9 Binary files /dev/null and b/public/images/common/japanese/left_menu_secure_1.png differ diff --git a/public/images/common/japanese/left_menu_secure_2-over.png b/public/images/common/japanese/left_menu_secure_2-over.png new file mode 100644 index 0000000..573a586 Binary files /dev/null and b/public/images/common/japanese/left_menu_secure_2-over.png differ diff --git a/public/images/common/japanese/left_menu_secure_2.-over.png b/public/images/common/japanese/left_menu_secure_2.-over.png new file mode 100644 index 0000000..263f0d3 Binary files /dev/null and b/public/images/common/japanese/left_menu_secure_2.-over.png differ diff --git a/public/images/common/japanese/left_menu_secure_2.png b/public/images/common/japanese/left_menu_secure_2.png new file mode 100644 index 0000000..cddb943 Binary files /dev/null and b/public/images/common/japanese/left_menu_secure_2.png differ diff --git a/public/images/common/japanese/left_menu_secure_3-over.png b/public/images/common/japanese/left_menu_secure_3-over.png new file mode 100644 index 0000000..00c1c45 Binary files /dev/null and b/public/images/common/japanese/left_menu_secure_3-over.png differ diff --git a/public/images/common/japanese/left_menu_secure_3.png b/public/images/common/japanese/left_menu_secure_3.png new file mode 100644 index 0000000..62cd6d7 Binary files /dev/null and b/public/images/common/japanese/left_menu_secure_3.png differ diff --git a/public/images/common/japanese/left_menu_vpn_1-over.png b/public/images/common/japanese/left_menu_vpn_1-over.png new file mode 100644 index 0000000..6dd54b3 Binary files /dev/null and b/public/images/common/japanese/left_menu_vpn_1-over.png differ diff --git a/public/images/common/japanese/left_menu_vpn_1.png b/public/images/common/japanese/left_menu_vpn_1.png new file mode 100644 index 0000000..b9db23c Binary files /dev/null and b/public/images/common/japanese/left_menu_vpn_1.png differ diff --git a/public/images/common/japanese/left_menu_vpn_2-over.png b/public/images/common/japanese/left_menu_vpn_2-over.png new file mode 100644 index 0000000..6937902 Binary files /dev/null and b/public/images/common/japanese/left_menu_vpn_2-over.png differ diff --git a/public/images/common/japanese/left_menu_vpn_2.png b/public/images/common/japanese/left_menu_vpn_2.png new file mode 100644 index 0000000..d7ac0bb Binary files /dev/null and b/public/images/common/japanese/left_menu_vpn_2.png differ diff --git a/public/images/common/japanese/left_top.png b/public/images/common/japanese/left_top.png new file mode 100644 index 0000000..a3442ef Binary files /dev/null and b/public/images/common/japanese/left_top.png differ diff --git a/public/images/common/japanese/left_top_addition.png b/public/images/common/japanese/left_top_addition.png new file mode 100644 index 0000000..d258f36 Binary files /dev/null and b/public/images/common/japanese/left_top_addition.png differ diff --git a/public/images/common/japanese/left_top_colacation.png b/public/images/common/japanese/left_top_colacation.png new file mode 100644 index 0000000..a114bcc Binary files /dev/null and b/public/images/common/japanese/left_top_colacation.png differ diff --git a/public/images/common/japanese/left_top_customer.png b/public/images/common/japanese/left_top_customer.png new file mode 100644 index 0000000..2f1f25a Binary files /dev/null and b/public/images/common/japanese/left_top_customer.png differ diff --git a/public/images/common/japanese/left_top_hosting.png b/public/images/common/japanese/left_top_hosting.png new file mode 100644 index 0000000..36a3b4d Binary files /dev/null and b/public/images/common/japanese/left_top_hosting.png differ diff --git a/public/images/common/japanese/left_top_independence.png b/public/images/common/japanese/left_top_independence.png new file mode 100644 index 0000000..96677e8 Binary files /dev/null and b/public/images/common/japanese/left_top_independence.png differ diff --git a/public/images/common/japanese/left_top_introduce.png b/public/images/common/japanese/left_top_introduce.png new file mode 100644 index 0000000..6ebc344 Binary files /dev/null and b/public/images/common/japanese/left_top_introduce.png differ diff --git a/public/images/common/japanese/left_top_secure.png b/public/images/common/japanese/left_top_secure.png new file mode 100644 index 0000000..08e17a6 Binary files /dev/null and b/public/images/common/japanese/left_top_secure.png differ diff --git a/public/images/common/japanese/left_top_vpn.png b/public/images/common/japanese/left_top_vpn.png new file mode 100644 index 0000000..29569a5 Binary files /dev/null and b/public/images/common/japanese/left_top_vpn.png differ diff --git a/public/images/common/japanese/logo.png b/public/images/common/japanese/logo.png new file mode 100644 index 0000000..dd2a384 Binary files /dev/null and b/public/images/common/japanese/logo.png differ diff --git a/public/images/common/japanese/logo_gray.png b/public/images/common/japanese/logo_gray.png new file mode 100644 index 0000000..d504bad Binary files /dev/null and b/public/images/common/japanese/logo_gray.png differ diff --git a/public/images/common/japanese/logo_side.png b/public/images/common/japanese/logo_side.png new file mode 100644 index 0000000..e3902a5 Binary files /dev/null and b/public/images/common/japanese/logo_side.png differ diff --git a/public/images/common/japanese/main_banner_1.png b/public/images/common/japanese/main_banner_1.png new file mode 100644 index 0000000..263afca Binary files /dev/null and b/public/images/common/japanese/main_banner_1.png differ diff --git a/public/images/common/japanese/main_banner_2.png b/public/images/common/japanese/main_banner_2.png new file mode 100644 index 0000000..d54f441 Binary files /dev/null and b/public/images/common/japanese/main_banner_2.png differ diff --git a/public/images/common/japanese/main_banner_2.png_old20160417 b/public/images/common/japanese/main_banner_2.png_old20160417 new file mode 100644 index 0000000..ffe83d4 Binary files /dev/null and b/public/images/common/japanese/main_banner_2.png_old20160417 differ diff --git a/public/images/common/japanese/main_banner_2_old.png b/public/images/common/japanese/main_banner_2_old.png new file mode 100644 index 0000000..aa7cc9b Binary files /dev/null and b/public/images/common/japanese/main_banner_2_old.png differ diff --git a/public/images/common/japanese/main_banner_3.png b/public/images/common/japanese/main_banner_3.png new file mode 100644 index 0000000..8656dd1 Binary files /dev/null and b/public/images/common/japanese/main_banner_3.png differ diff --git a/public/images/common/japanese/main_banner_4.png b/public/images/common/japanese/main_banner_4.png new file mode 100644 index 0000000..9171f00 Binary files /dev/null and b/public/images/common/japanese/main_banner_4.png differ diff --git a/public/images/common/japanese/main_banner_5.png b/public/images/common/japanese/main_banner_5.png new file mode 100644 index 0000000..1c3b615 Binary files /dev/null and b/public/images/common/japanese/main_banner_5.png differ diff --git a/public/images/common/japanese/main_banner_6.png b/public/images/common/japanese/main_banner_6.png new file mode 100644 index 0000000..69c8482 Binary files /dev/null and b/public/images/common/japanese/main_banner_6.png differ diff --git a/public/images/common/japanese/main_cont_antivirus.jpg b/public/images/common/japanese/main_cont_antivirus.jpg new file mode 100644 index 0000000..da3c86e Binary files /dev/null and b/public/images/common/japanese/main_cont_antivirus.jpg differ diff --git a/public/images/common/japanese/main_cont_backup_1.png b/public/images/common/japanese/main_cont_backup_1.png new file mode 100644 index 0000000..23b917a Binary files /dev/null and b/public/images/common/japanese/main_cont_backup_1.png differ diff --git a/public/images/common/japanese/main_cont_bypass_1.png b/public/images/common/japanese/main_cont_bypass_1.png new file mode 100644 index 0000000..7ff957d Binary files /dev/null and b/public/images/common/japanese/main_cont_bypass_1.png differ diff --git a/public/images/common/japanese/main_cont_colocation_1.png b/public/images/common/japanese/main_cont_colocation_1.png new file mode 100644 index 0000000..f070e9c Binary files /dev/null and b/public/images/common/japanese/main_cont_colocation_1.png differ diff --git a/public/images/common/japanese/main_cont_domain_1.png b/public/images/common/japanese/main_cont_domain_1.png new file mode 100644 index 0000000..ff448f7 Binary files /dev/null and b/public/images/common/japanese/main_cont_domain_1.png differ diff --git a/public/images/common/japanese/main_cont_firewall_1.png b/public/images/common/japanese/main_cont_firewall_1.png new file mode 100644 index 0000000..c44a2bb Binary files /dev/null and b/public/images/common/japanese/main_cont_firewall_1.png differ diff --git a/public/images/common/japanese/main_cont_fireweb.jpg b/public/images/common/japanese/main_cont_fireweb.jpg new file mode 100644 index 0000000..803d4a3 Binary files /dev/null and b/public/images/common/japanese/main_cont_fireweb.jpg differ diff --git a/public/images/common/japanese/main_cont_fowarding.jpg b/public/images/common/japanese/main_cont_fowarding.jpg new file mode 100644 index 0000000..af7eaf6 Binary files /dev/null and b/public/images/common/japanese/main_cont_fowarding.jpg differ diff --git a/public/images/common/japanese/main_cont_hosting_1.png b/public/images/common/japanese/main_cont_hosting_1.png new file mode 100644 index 0000000..21dc54c Binary files /dev/null and b/public/images/common/japanese/main_cont_hosting_1.png differ diff --git a/public/images/common/japanese/main_cont_hosting_2.png b/public/images/common/japanese/main_cont_hosting_2.png new file mode 100644 index 0000000..75cd3c4 Binary files /dev/null and b/public/images/common/japanese/main_cont_hosting_2.png differ diff --git a/public/images/common/japanese/main_cont_hosting_2_1.png b/public/images/common/japanese/main_cont_hosting_2_1.png new file mode 100644 index 0000000..c674244 Binary files /dev/null and b/public/images/common/japanese/main_cont_hosting_2_1.png differ diff --git a/public/images/common/japanese/main_cont_hosting_2_2.png b/public/images/common/japanese/main_cont_hosting_2_2.png new file mode 100644 index 0000000..971e899 Binary files /dev/null and b/public/images/common/japanese/main_cont_hosting_2_2.png differ diff --git a/public/images/common/japanese/main_cont_hosting_3.png b/public/images/common/japanese/main_cont_hosting_3.png new file mode 100644 index 0000000..db99bd3 Binary files /dev/null and b/public/images/common/japanese/main_cont_hosting_3.png differ diff --git a/public/images/common/japanese/main_cont_hosting_3_1.png b/public/images/common/japanese/main_cont_hosting_3_1.png new file mode 100644 index 0000000..06136e6 Binary files /dev/null and b/public/images/common/japanese/main_cont_hosting_3_1.png differ diff --git a/public/images/common/japanese/main_cont_hosting_3_1_160302.png b/public/images/common/japanese/main_cont_hosting_3_1_160302.png new file mode 100644 index 0000000..5bb9f1d Binary files /dev/null and b/public/images/common/japanese/main_cont_hosting_3_1_160302.png differ diff --git a/public/images/common/japanese/main_cont_hosting_3_2.png b/public/images/common/japanese/main_cont_hosting_3_2.png new file mode 100644 index 0000000..eee9e61 Binary files /dev/null and b/public/images/common/japanese/main_cont_hosting_3_2.png differ diff --git a/public/images/common/japanese/main_cont_independence4.png b/public/images/common/japanese/main_cont_independence4.png new file mode 100644 index 0000000..f78efff Binary files /dev/null and b/public/images/common/japanese/main_cont_independence4.png differ diff --git a/public/images/common/japanese/main_cont_independence_1.png b/public/images/common/japanese/main_cont_independence_1.png new file mode 100644 index 0000000..e8a3eff Binary files /dev/null and b/public/images/common/japanese/main_cont_independence_1.png differ diff --git a/public/images/common/japanese/main_cont_independence_2.png b/public/images/common/japanese/main_cont_independence_2.png new file mode 100644 index 0000000..3a30078 Binary files /dev/null and b/public/images/common/japanese/main_cont_independence_2.png differ diff --git a/public/images/common/japanese/main_cont_independence_3.png b/public/images/common/japanese/main_cont_independence_3.png new file mode 100644 index 0000000..8986928 Binary files /dev/null and b/public/images/common/japanese/main_cont_independence_3.png differ diff --git a/public/images/common/japanese/main_cont_independence_4.png b/public/images/common/japanese/main_cont_independence_4.png new file mode 100644 index 0000000..1ae08e8 Binary files /dev/null and b/public/images/common/japanese/main_cont_independence_4.png differ diff --git a/public/images/common/japanese/main_cont_introduce_1.png b/public/images/common/japanese/main_cont_introduce_1.png new file mode 100644 index 0000000..83fed0d Binary files /dev/null and b/public/images/common/japanese/main_cont_introduce_1.png differ diff --git a/public/images/common/japanese/main_cont_introduce_2.png b/public/images/common/japanese/main_cont_introduce_2.png new file mode 100644 index 0000000..db06a6b Binary files /dev/null and b/public/images/common/japanese/main_cont_introduce_2.png differ diff --git a/public/images/common/japanese/main_cont_introduce_2_2.png b/public/images/common/japanese/main_cont_introduce_2_2.png new file mode 100644 index 0000000..4289ef3 Binary files /dev/null and b/public/images/common/japanese/main_cont_introduce_2_2.png differ diff --git a/public/images/common/japanese/main_cont_introduce_2_3.png b/public/images/common/japanese/main_cont_introduce_2_3.png new file mode 100644 index 0000000..45a8daa Binary files /dev/null and b/public/images/common/japanese/main_cont_introduce_2_3.png differ diff --git a/public/images/common/japanese/main_cont_tns_1.png b/public/images/common/japanese/main_cont_tns_1.png new file mode 100644 index 0000000..047179e Binary files /dev/null and b/public/images/common/japanese/main_cont_tns_1.png differ diff --git a/public/images/common/japanese/main_cont_vas_1.png b/public/images/common/japanese/main_cont_vas_1.png new file mode 100644 index 0000000..8a99eb2 Binary files /dev/null and b/public/images/common/japanese/main_cont_vas_1.png differ diff --git a/public/images/common/japanese/main_cont_vas_2.png b/public/images/common/japanese/main_cont_vas_2.png new file mode 100644 index 0000000..ad1b9fd Binary files /dev/null and b/public/images/common/japanese/main_cont_vas_2.png differ diff --git a/public/images/common/japanese/main_cont_vpn_1.png b/public/images/common/japanese/main_cont_vpn_1.png new file mode 100644 index 0000000..1061304 Binary files /dev/null and b/public/images/common/japanese/main_cont_vpn_1.png differ diff --git a/public/images/common/japanese/main_cont_waf_1.png b/public/images/common/japanese/main_cont_waf_1.png new file mode 100644 index 0000000..4a9c9e0 Binary files /dev/null and b/public/images/common/japanese/main_cont_waf_1.png differ diff --git a/public/images/common/japanese/main_cont_waf_2.png b/public/images/common/japanese/main_cont_waf_2.png new file mode 100644 index 0000000..e733d9b Binary files /dev/null and b/public/images/common/japanese/main_cont_waf_2.png differ diff --git a/public/images/common/japanese/main_cont_waf_3.png b/public/images/common/japanese/main_cont_waf_3.png new file mode 100644 index 0000000..01e3727 Binary files /dev/null and b/public/images/common/japanese/main_cont_waf_3.png differ diff --git a/public/images/common/japanese/main_cont_waf_4.png b/public/images/common/japanese/main_cont_waf_4.png new file mode 100644 index 0000000..31b55ba Binary files /dev/null and b/public/images/common/japanese/main_cont_waf_4.png differ diff --git a/public/images/common/japanese/main_cont_waf_5.png b/public/images/common/japanese/main_cont_waf_5.png new file mode 100644 index 0000000..804d63c Binary files /dev/null and b/public/images/common/japanese/main_cont_waf_5.png differ diff --git a/public/images/common/japanese/main_icon_1.png b/public/images/common/japanese/main_icon_1.png new file mode 100644 index 0000000..d7e93cd Binary files /dev/null and b/public/images/common/japanese/main_icon_1.png differ diff --git a/public/images/common/japanese/main_icon_2.png b/public/images/common/japanese/main_icon_2.png new file mode 100644 index 0000000..0fb9b7e Binary files /dev/null and b/public/images/common/japanese/main_icon_2.png differ diff --git a/public/images/common/japanese/main_icon_3.png b/public/images/common/japanese/main_icon_3.png new file mode 100644 index 0000000..9b19d06 Binary files /dev/null and b/public/images/common/japanese/main_icon_3.png differ diff --git a/public/images/common/japanese/main_icon_4.png b/public/images/common/japanese/main_icon_4.png new file mode 100644 index 0000000..8aa4d30 Binary files /dev/null and b/public/images/common/japanese/main_icon_4.png differ diff --git a/public/images/common/japanese/main_icon_cisco.png b/public/images/common/japanese/main_icon_cisco.png new file mode 100644 index 0000000..d24fa35 Binary files /dev/null and b/public/images/common/japanese/main_icon_cisco.png differ diff --git a/public/images/common/japanese/main_icon_corel.png b/public/images/common/japanese/main_icon_corel.png new file mode 100644 index 0000000..4bb12f8 Binary files /dev/null and b/public/images/common/japanese/main_icon_corel.png differ diff --git a/public/images/common/japanese/main_icon_dell.png b/public/images/common/japanese/main_icon_dell.png new file mode 100644 index 0000000..c72d858 Binary files /dev/null and b/public/images/common/japanese/main_icon_dell.png differ diff --git a/public/images/common/japanese/main_icon_hp.png b/public/images/common/japanese/main_icon_hp.png new file mode 100644 index 0000000..8788fa8 Binary files /dev/null and b/public/images/common/japanese/main_icon_hp.png differ diff --git a/public/images/common/japanese/main_icon_ibm.png b/public/images/common/japanese/main_icon_ibm.png new file mode 100644 index 0000000..a6a3d22 Binary files /dev/null and b/public/images/common/japanese/main_icon_ibm.png differ diff --git a/public/images/common/japanese/main_icon_jstream.png b/public/images/common/japanese/main_icon_jstream.png new file mode 100644 index 0000000..eacc700 Binary files /dev/null and b/public/images/common/japanese/main_icon_jstream.png differ diff --git a/public/images/common/japanese/main_icon_kddi.png b/public/images/common/japanese/main_icon_kddi.png new file mode 100644 index 0000000..06a79a9 Binary files /dev/null and b/public/images/common/japanese/main_icon_kddi.png differ diff --git a/public/images/common/japanese/main_icon_lg.png b/public/images/common/japanese/main_icon_lg.png new file mode 100644 index 0000000..1164e8f Binary files /dev/null and b/public/images/common/japanese/main_icon_lg.png differ diff --git a/public/images/common/japanese/main_icon_ns.png b/public/images/common/japanese/main_icon_ns.png new file mode 100644 index 0000000..364ee99 Binary files /dev/null and b/public/images/common/japanese/main_icon_ns.png differ diff --git a/public/images/common/japanese/main_icon_ntt.png b/public/images/common/japanese/main_icon_ntt.png new file mode 100644 index 0000000..b7f4530 Binary files /dev/null and b/public/images/common/japanese/main_icon_ntt.png differ diff --git a/public/images/common/japanese/main_icon_partner.png b/public/images/common/japanese/main_icon_partner.png new file mode 100644 index 0000000..1f476e6 Binary files /dev/null and b/public/images/common/japanese/main_icon_partner.png differ diff --git a/public/images/common/japanese/main_icon_red.png b/public/images/common/japanese/main_icon_red.png new file mode 100644 index 0000000..cac92a7 Binary files /dev/null and b/public/images/common/japanese/main_icon_red.png differ diff --git a/public/images/common/japanese/main_icon_slim.png b/public/images/common/japanese/main_icon_slim.png new file mode 100644 index 0000000..71dd1cf Binary files /dev/null and b/public/images/common/japanese/main_icon_slim.png differ diff --git a/public/images/common/japanese/main_icon_softbank.png b/public/images/common/japanese/main_icon_softbank.png new file mode 100644 index 0000000..ad5606d Binary files /dev/null and b/public/images/common/japanese/main_icon_softbank.png differ diff --git a/public/images/common/japanese/main_icon_yahoobb.png b/public/images/common/japanese/main_icon_yahoobb.png new file mode 100644 index 0000000..a938651 Binary files /dev/null and b/public/images/common/japanese/main_icon_yahoobb.png differ diff --git a/public/images/common/japanese/main_icon_yamaha.png b/public/images/common/japanese/main_icon_yamaha.png new file mode 100644 index 0000000..bb47856 Binary files /dev/null and b/public/images/common/japanese/main_icon_yamaha.png differ diff --git a/public/images/common/japanese/main_img.png b/public/images/common/japanese/main_img.png new file mode 100644 index 0000000..8c6f323 Binary files /dev/null and b/public/images/common/japanese/main_img.png differ diff --git a/public/images/common/japanese/main_img_3.png b/public/images/common/japanese/main_img_3.png new file mode 100644 index 0000000..587cd02 Binary files /dev/null and b/public/images/common/japanese/main_img_3.png differ diff --git a/public/images/common/japanese/main_img_addition.png b/public/images/common/japanese/main_img_addition.png new file mode 100644 index 0000000..3361b02 Binary files /dev/null and b/public/images/common/japanese/main_img_addition.png differ diff --git a/public/images/common/japanese/main_img_colacation.png b/public/images/common/japanese/main_img_colacation.png new file mode 100644 index 0000000..3361b02 Binary files /dev/null and b/public/images/common/japanese/main_img_colacation.png differ diff --git a/public/images/common/japanese/main_img_customer.png b/public/images/common/japanese/main_img_customer.png new file mode 100644 index 0000000..3361b02 Binary files /dev/null and b/public/images/common/japanese/main_img_customer.png differ diff --git a/public/images/common/japanese/main_img_hosting.png b/public/images/common/japanese/main_img_hosting.png new file mode 100644 index 0000000..3361b02 Binary files /dev/null and b/public/images/common/japanese/main_img_hosting.png differ diff --git a/public/images/common/japanese/main_img_independence.png b/public/images/common/japanese/main_img_independence.png new file mode 100644 index 0000000..3361b02 Binary files /dev/null and b/public/images/common/japanese/main_img_independence.png differ diff --git a/public/images/common/japanese/main_img_introduce.png b/public/images/common/japanese/main_img_introduce.png new file mode 100644 index 0000000..3361b02 Binary files /dev/null and b/public/images/common/japanese/main_img_introduce.png differ diff --git a/public/images/common/japanese/main_img_secure.png b/public/images/common/japanese/main_img_secure.png new file mode 100644 index 0000000..3361b02 Binary files /dev/null and b/public/images/common/japanese/main_img_secure.png differ diff --git a/public/images/common/japanese/main_img_vpn.png b/public/images/common/japanese/main_img_vpn.png new file mode 100644 index 0000000..3361b02 Binary files /dev/null and b/public/images/common/japanese/main_img_vpn.png differ diff --git a/public/images/common/japanese/main_link_bookmark.png b/public/images/common/japanese/main_link_bookmark.png new file mode 100644 index 0000000..ed88b74 Binary files /dev/null and b/public/images/common/japanese/main_link_bookmark.png differ diff --git a/public/images/common/japanese/main_link_contact.png b/public/images/common/japanese/main_link_contact.png new file mode 100644 index 0000000..ba2b7eb Binary files /dev/null and b/public/images/common/japanese/main_link_contact.png differ diff --git a/public/images/common/japanese/main_link_home.png b/public/images/common/japanese/main_link_home.png new file mode 100644 index 0000000..4e499ad Binary files /dev/null and b/public/images/common/japanese/main_link_home.png differ diff --git a/public/images/common/japanese/main_link_japan.png b/public/images/common/japanese/main_link_japan.png new file mode 100644 index 0000000..05e80c2 Binary files /dev/null and b/public/images/common/japanese/main_link_japan.png differ diff --git a/public/images/common/japanese/main_link_korea.png b/public/images/common/japanese/main_link_korea.png new file mode 100644 index 0000000..68b8a1d Binary files /dev/null and b/public/images/common/japanese/main_link_korea.png differ diff --git a/public/images/common/japanese/main_tab_1-over.png b/public/images/common/japanese/main_tab_1-over.png new file mode 100644 index 0000000..0a6ffa2 Binary files /dev/null and b/public/images/common/japanese/main_tab_1-over.png differ diff --git a/public/images/common/japanese/main_tab_1.png b/public/images/common/japanese/main_tab_1.png new file mode 100644 index 0000000..e5b1d3b Binary files /dev/null and b/public/images/common/japanese/main_tab_1.png differ diff --git a/public/images/common/japanese/main_tab_2-over.png b/public/images/common/japanese/main_tab_2-over.png new file mode 100644 index 0000000..4558d14 Binary files /dev/null and b/public/images/common/japanese/main_tab_2-over.png differ diff --git a/public/images/common/japanese/main_tab_2.png b/public/images/common/japanese/main_tab_2.png new file mode 100644 index 0000000..d1f2342 Binary files /dev/null and b/public/images/common/japanese/main_tab_2.png differ diff --git a/public/images/common/japanese/main_tab_bar.png b/public/images/common/japanese/main_tab_bar.png new file mode 100644 index 0000000..0a59728 Binary files /dev/null and b/public/images/common/japanese/main_tab_bar.png differ diff --git a/public/images/common/japanese/main_tab_link.png b/public/images/common/japanese/main_tab_link.png new file mode 100644 index 0000000..2185a23 Binary files /dev/null and b/public/images/common/japanese/main_tab_link.png differ diff --git a/public/images/common/japanese/mng_logo.png b/public/images/common/japanese/mng_logo.png new file mode 100644 index 0000000..0df9d57 Binary files /dev/null and b/public/images/common/japanese/mng_logo.png differ diff --git a/public/images/common/japanese/mnu_01-over.png b/public/images/common/japanese/mnu_01-over.png new file mode 100644 index 0000000..22e4c34 Binary files /dev/null and b/public/images/common/japanese/mnu_01-over.png differ diff --git a/public/images/common/japanese/mnu_01.png b/public/images/common/japanese/mnu_01.png new file mode 100644 index 0000000..573a283 Binary files /dev/null and b/public/images/common/japanese/mnu_01.png differ diff --git a/public/images/common/japanese/mnu_02-over.png b/public/images/common/japanese/mnu_02-over.png new file mode 100644 index 0000000..d4b5aec Binary files /dev/null and b/public/images/common/japanese/mnu_02-over.png differ diff --git a/public/images/common/japanese/mnu_02.png b/public/images/common/japanese/mnu_02.png new file mode 100644 index 0000000..e880b2b Binary files /dev/null and b/public/images/common/japanese/mnu_02.png differ diff --git a/public/images/common/japanese/mnu_03-over.png b/public/images/common/japanese/mnu_03-over.png new file mode 100644 index 0000000..d523b7b Binary files /dev/null and b/public/images/common/japanese/mnu_03-over.png differ diff --git a/public/images/common/japanese/mnu_03.png b/public/images/common/japanese/mnu_03.png new file mode 100644 index 0000000..1d4972e Binary files /dev/null and b/public/images/common/japanese/mnu_03.png differ diff --git a/public/images/common/japanese/mnu_04-over.png b/public/images/common/japanese/mnu_04-over.png new file mode 100644 index 0000000..072d886 Binary files /dev/null and b/public/images/common/japanese/mnu_04-over.png differ diff --git a/public/images/common/japanese/mnu_04.png b/public/images/common/japanese/mnu_04.png new file mode 100644 index 0000000..03566d7 Binary files /dev/null and b/public/images/common/japanese/mnu_04.png differ diff --git a/public/images/common/japanese/mnu_05-over.png b/public/images/common/japanese/mnu_05-over.png new file mode 100644 index 0000000..efa0eee Binary files /dev/null and b/public/images/common/japanese/mnu_05-over.png differ diff --git a/public/images/common/japanese/mnu_05.png b/public/images/common/japanese/mnu_05.png new file mode 100644 index 0000000..083e1db Binary files /dev/null and b/public/images/common/japanese/mnu_05.png differ diff --git a/public/images/common/japanese/mnu_06-over.png b/public/images/common/japanese/mnu_06-over.png new file mode 100644 index 0000000..19dc272 Binary files /dev/null and b/public/images/common/japanese/mnu_06-over.png differ diff --git a/public/images/common/japanese/mnu_06.png b/public/images/common/japanese/mnu_06.png new file mode 100644 index 0000000..ee5a41d Binary files /dev/null and b/public/images/common/japanese/mnu_06.png differ diff --git a/public/images/common/japanese/mnu_07-over.png b/public/images/common/japanese/mnu_07-over.png new file mode 100644 index 0000000..1d5fbab Binary files /dev/null and b/public/images/common/japanese/mnu_07-over.png differ diff --git a/public/images/common/japanese/mnu_07.png b/public/images/common/japanese/mnu_07.png new file mode 100644 index 0000000..4a1e24e Binary files /dev/null and b/public/images/common/japanese/mnu_07.png differ diff --git a/public/images/common/japanese/mnu_08-over.png b/public/images/common/japanese/mnu_08-over.png new file mode 100644 index 0000000..069851f Binary files /dev/null and b/public/images/common/japanese/mnu_08-over.png differ diff --git a/public/images/common/japanese/mnu_08.png b/public/images/common/japanese/mnu_08.png new file mode 100644 index 0000000..5d57370 Binary files /dev/null and b/public/images/common/japanese/mnu_08.png differ diff --git a/public/images/common/japanese/mnu_09-over.png b/public/images/common/japanese/mnu_09-over.png new file mode 100644 index 0000000..930b655 Binary files /dev/null and b/public/images/common/japanese/mnu_09-over.png differ diff --git a/public/images/common/japanese/mnu_09.png b/public/images/common/japanese/mnu_09.png new file mode 100644 index 0000000..ed20892 Binary files /dev/null and b/public/images/common/japanese/mnu_09.png differ diff --git a/public/images/common/japanese/old_left_menu_secure_1-over.png b/public/images/common/japanese/old_left_menu_secure_1-over.png new file mode 100644 index 0000000..7fcbe22 Binary files /dev/null and b/public/images/common/japanese/old_left_menu_secure_1-over.png differ diff --git a/public/images/common/japanese/old_left_menu_secure_1.-over.png b/public/images/common/japanese/old_left_menu_secure_1.-over.png new file mode 100644 index 0000000..886f291 Binary files /dev/null and b/public/images/common/japanese/old_left_menu_secure_1.-over.png differ diff --git a/public/images/common/japanese/old_left_menu_secure_1.png b/public/images/common/japanese/old_left_menu_secure_1.png new file mode 100644 index 0000000..b9d6914 Binary files /dev/null and b/public/images/common/japanese/old_left_menu_secure_1.png differ diff --git a/public/images/common/japanese/old_left_menu_secure_2-over.png b/public/images/common/japanese/old_left_menu_secure_2-over.png new file mode 100644 index 0000000..f797382 Binary files /dev/null and b/public/images/common/japanese/old_left_menu_secure_2-over.png differ diff --git a/public/images/common/japanese/old_left_menu_secure_2.-over.png b/public/images/common/japanese/old_left_menu_secure_2.-over.png new file mode 100644 index 0000000..6c4a25d Binary files /dev/null and b/public/images/common/japanese/old_left_menu_secure_2.-over.png differ diff --git a/public/images/common/japanese/old_left_menu_secure_2.png b/public/images/common/japanese/old_left_menu_secure_2.png new file mode 100644 index 0000000..5685d64 Binary files /dev/null and b/public/images/common/japanese/old_left_menu_secure_2.png differ diff --git a/public/images/common/japanese/old_page_title_secure_1.png b/public/images/common/japanese/old_page_title_secure_1.png new file mode 100644 index 0000000..263e25a Binary files /dev/null and b/public/images/common/japanese/old_page_title_secure_1.png differ diff --git a/public/images/common/japanese/page_title_addition_1.png b/public/images/common/japanese/page_title_addition_1.png new file mode 100644 index 0000000..a7259c9 Binary files /dev/null and b/public/images/common/japanese/page_title_addition_1.png differ diff --git a/public/images/common/japanese/page_title_addition_2.png b/public/images/common/japanese/page_title_addition_2.png new file mode 100644 index 0000000..4fa23a6 Binary files /dev/null and b/public/images/common/japanese/page_title_addition_2.png differ diff --git a/public/images/common/japanese/page_title_addition_3.png b/public/images/common/japanese/page_title_addition_3.png new file mode 100644 index 0000000..03507d3 Binary files /dev/null and b/public/images/common/japanese/page_title_addition_3.png differ diff --git a/public/images/common/japanese/page_title_addition_4.png b/public/images/common/japanese/page_title_addition_4.png new file mode 100644 index 0000000..ae46cd9 Binary files /dev/null and b/public/images/common/japanese/page_title_addition_4.png differ diff --git a/public/images/common/japanese/page_title_addition_5.png b/public/images/common/japanese/page_title_addition_5.png new file mode 100644 index 0000000..2565f6d Binary files /dev/null and b/public/images/common/japanese/page_title_addition_5.png differ diff --git a/public/images/common/japanese/page_title_colacation_1.png b/public/images/common/japanese/page_title_colacation_1.png new file mode 100644 index 0000000..eccbfa5 Binary files /dev/null and b/public/images/common/japanese/page_title_colacation_1.png differ diff --git a/public/images/common/japanese/page_title_colacation_2.png b/public/images/common/japanese/page_title_colacation_2.png new file mode 100644 index 0000000..c25df36 Binary files /dev/null and b/public/images/common/japanese/page_title_colacation_2.png differ diff --git a/public/images/common/japanese/page_title_colacation_3.png b/public/images/common/japanese/page_title_colacation_3.png new file mode 100644 index 0000000..9127c77 Binary files /dev/null and b/public/images/common/japanese/page_title_colacation_3.png differ diff --git a/public/images/common/japanese/page_title_customer_1.png b/public/images/common/japanese/page_title_customer_1.png new file mode 100644 index 0000000..4cdccb2 Binary files /dev/null and b/public/images/common/japanese/page_title_customer_1.png differ diff --git a/public/images/common/japanese/page_title_customer_2.png b/public/images/common/japanese/page_title_customer_2.png new file mode 100644 index 0000000..328db74 Binary files /dev/null and b/public/images/common/japanese/page_title_customer_2.png differ diff --git a/public/images/common/japanese/page_title_customer_3.png b/public/images/common/japanese/page_title_customer_3.png new file mode 100644 index 0000000..e99f7b8 Binary files /dev/null and b/public/images/common/japanese/page_title_customer_3.png differ diff --git a/public/images/common/japanese/page_title_customer_4.png b/public/images/common/japanese/page_title_customer_4.png new file mode 100644 index 0000000..d8348ec Binary files /dev/null and b/public/images/common/japanese/page_title_customer_4.png differ diff --git a/public/images/common/japanese/page_title_customer_5.png b/public/images/common/japanese/page_title_customer_5.png new file mode 100644 index 0000000..2b6d235 Binary files /dev/null and b/public/images/common/japanese/page_title_customer_5.png differ diff --git a/public/images/common/japanese/page_title_customer_6.png b/public/images/common/japanese/page_title_customer_6.png new file mode 100644 index 0000000..13286ab Binary files /dev/null and b/public/images/common/japanese/page_title_customer_6.png differ diff --git a/public/images/common/japanese/page_title_customer_7.png b/public/images/common/japanese/page_title_customer_7.png new file mode 100644 index 0000000..04211e6 Binary files /dev/null and b/public/images/common/japanese/page_title_customer_7.png differ diff --git a/public/images/common/japanese/page_title_hosting_1.png b/public/images/common/japanese/page_title_hosting_1.png new file mode 100644 index 0000000..e38e110 Binary files /dev/null and b/public/images/common/japanese/page_title_hosting_1.png differ diff --git a/public/images/common/japanese/page_title_hosting_2.png b/public/images/common/japanese/page_title_hosting_2.png new file mode 100644 index 0000000..f1ef74f Binary files /dev/null and b/public/images/common/japanese/page_title_hosting_2.png differ diff --git a/public/images/common/japanese/page_title_hosting_3.png b/public/images/common/japanese/page_title_hosting_3.png new file mode 100644 index 0000000..74169d2 Binary files /dev/null and b/public/images/common/japanese/page_title_hosting_3.png differ diff --git a/public/images/common/japanese/page_title_independence_1.png b/public/images/common/japanese/page_title_independence_1.png new file mode 100644 index 0000000..6acd1b4 Binary files /dev/null and b/public/images/common/japanese/page_title_independence_1.png differ diff --git a/public/images/common/japanese/page_title_independence_2.png b/public/images/common/japanese/page_title_independence_2.png new file mode 100644 index 0000000..1ddaeeb Binary files /dev/null and b/public/images/common/japanese/page_title_independence_2.png differ diff --git a/public/images/common/japanese/page_title_independence_3.png b/public/images/common/japanese/page_title_independence_3.png new file mode 100644 index 0000000..87df084 Binary files /dev/null and b/public/images/common/japanese/page_title_independence_3.png differ diff --git a/public/images/common/japanese/page_title_independence_4.png b/public/images/common/japanese/page_title_independence_4.png new file mode 100644 index 0000000..3dd552b Binary files /dev/null and b/public/images/common/japanese/page_title_independence_4.png differ diff --git a/public/images/common/japanese/page_title_introduce_1.png b/public/images/common/japanese/page_title_introduce_1.png new file mode 100644 index 0000000..b3fd02d Binary files /dev/null and b/public/images/common/japanese/page_title_introduce_1.png differ diff --git a/public/images/common/japanese/page_title_introduce_2.png b/public/images/common/japanese/page_title_introduce_2.png new file mode 100644 index 0000000..2159b8b Binary files /dev/null and b/public/images/common/japanese/page_title_introduce_2.png differ diff --git a/public/images/common/japanese/page_title_introduce_3.png b/public/images/common/japanese/page_title_introduce_3.png new file mode 100644 index 0000000..1acdbd1 Binary files /dev/null and b/public/images/common/japanese/page_title_introduce_3.png differ diff --git a/public/images/common/japanese/page_title_introduce_4.png b/public/images/common/japanese/page_title_introduce_4.png new file mode 100644 index 0000000..aa7aba3 Binary files /dev/null and b/public/images/common/japanese/page_title_introduce_4.png differ diff --git a/public/images/common/japanese/page_title_secure_1.png b/public/images/common/japanese/page_title_secure_1.png new file mode 100644 index 0000000..123abe7 Binary files /dev/null and b/public/images/common/japanese/page_title_secure_1.png differ diff --git a/public/images/common/japanese/page_title_secure_2.png b/public/images/common/japanese/page_title_secure_2.png new file mode 100644 index 0000000..32439b5 Binary files /dev/null and b/public/images/common/japanese/page_title_secure_2.png differ diff --git a/public/images/common/japanese/page_title_secure_3.png b/public/images/common/japanese/page_title_secure_3.png new file mode 100644 index 0000000..76f52d6 Binary files /dev/null and b/public/images/common/japanese/page_title_secure_3.png differ diff --git a/public/images/common/japanese/page_title_vpn_1.png b/public/images/common/japanese/page_title_vpn_1.png new file mode 100644 index 0000000..efa195f Binary files /dev/null and b/public/images/common/japanese/page_title_vpn_1.png differ diff --git a/public/images/common/japanese/page_title_vpn_2.png b/public/images/common/japanese/page_title_vpn_2.png new file mode 100644 index 0000000..8ee2c5b Binary files /dev/null and b/public/images/common/japanese/page_title_vpn_2.png differ diff --git a/public/images/common/japanese/popup/idcjp.png b/public/images/common/japanese/popup/idcjp.png new file mode 100644 index 0000000..c9149e9 Binary files /dev/null and b/public/images/common/japanese/popup/idcjp.png differ diff --git a/public/images/common/japanese/popup/idcjp_coupon.png b/public/images/common/japanese/popup/idcjp_coupon.png new file mode 100644 index 0000000..2fbf914 Binary files /dev/null and b/public/images/common/japanese/popup/idcjp_coupon.png differ diff --git a/public/images/common/japanese/popup/idcjp_server.png b/public/images/common/japanese/popup/idcjp_server.png new file mode 100644 index 0000000..f86859c Binary files /dev/null and b/public/images/common/japanese/popup/idcjp_server.png differ diff --git a/public/images/common/japanese/popup01.png b/public/images/common/japanese/popup01.png new file mode 100644 index 0000000..97a93bf Binary files /dev/null and b/public/images/common/japanese/popup01.png differ diff --git a/public/images/common/japanese/side_left_title.png b/public/images/common/japanese/side_left_title.png new file mode 100644 index 0000000..f05f097 Binary files /dev/null and b/public/images/common/japanese/side_left_title.png differ diff --git a/public/images/common/japanese/side_right_title.gif b/public/images/common/japanese/side_right_title.gif new file mode 100644 index 0000000..5e90078 Binary files /dev/null and b/public/images/common/japanese/side_right_title.gif differ diff --git a/public/images/common/korean/adminbg.png b/public/images/common/korean/adminbg.png new file mode 100644 index 0000000..68c6a93 Binary files /dev/null and b/public/images/common/korean/adminbg.png differ diff --git a/public/images/common/korean/backup/left_menu_customer_1-over.png b/public/images/common/korean/backup/left_menu_customer_1-over.png new file mode 100644 index 0000000..b0830c6 Binary files /dev/null and b/public/images/common/korean/backup/left_menu_customer_1-over.png differ diff --git a/public/images/common/korean/backup/left_menu_customer_1.png b/public/images/common/korean/backup/left_menu_customer_1.png new file mode 100644 index 0000000..fe12893 Binary files /dev/null and b/public/images/common/korean/backup/left_menu_customer_1.png differ diff --git a/public/images/common/korean/backup/left_menu_customer_2-over.png b/public/images/common/korean/backup/left_menu_customer_2-over.png new file mode 100644 index 0000000..a50e7ae Binary files /dev/null and b/public/images/common/korean/backup/left_menu_customer_2-over.png differ diff --git a/public/images/common/korean/backup/left_menu_customer_2.png b/public/images/common/korean/backup/left_menu_customer_2.png new file mode 100644 index 0000000..ea9156b Binary files /dev/null and b/public/images/common/korean/backup/left_menu_customer_2.png differ diff --git a/public/images/common/korean/backup/left_menu_customer_3-over.png b/public/images/common/korean/backup/left_menu_customer_3-over.png new file mode 100644 index 0000000..7b0d981 Binary files /dev/null and b/public/images/common/korean/backup/left_menu_customer_3-over.png differ diff --git a/public/images/common/korean/backup/left_menu_customer_3.png b/public/images/common/korean/backup/left_menu_customer_3.png new file mode 100644 index 0000000..a9de705 Binary files /dev/null and b/public/images/common/korean/backup/left_menu_customer_3.png differ diff --git a/public/images/common/korean/backup/left_menu_customer_4-over.png b/public/images/common/korean/backup/left_menu_customer_4-over.png new file mode 100644 index 0000000..d7a8a31 Binary files /dev/null and b/public/images/common/korean/backup/left_menu_customer_4-over.png differ diff --git a/public/images/common/korean/backup/left_menu_customer_4.png b/public/images/common/korean/backup/left_menu_customer_4.png new file mode 100644 index 0000000..deb351d Binary files /dev/null and b/public/images/common/korean/backup/left_menu_customer_4.png differ diff --git a/public/images/common/korean/backup/left_menu_customer_5-over.png b/public/images/common/korean/backup/left_menu_customer_5-over.png new file mode 100644 index 0000000..960e0e7 Binary files /dev/null and b/public/images/common/korean/backup/left_menu_customer_5-over.png differ diff --git a/public/images/common/korean/backup/left_menu_customer_5.png b/public/images/common/korean/backup/left_menu_customer_5.png new file mode 100644 index 0000000..bceddf4 Binary files /dev/null and b/public/images/common/korean/backup/left_menu_customer_5.png differ diff --git a/public/images/common/korean/backup/left_menu_customer_6-over.png b/public/images/common/korean/backup/left_menu_customer_6-over.png new file mode 100644 index 0000000..960e0e7 Binary files /dev/null and b/public/images/common/korean/backup/left_menu_customer_6-over.png differ diff --git a/public/images/common/korean/backup/left_menu_customer_6.png b/public/images/common/korean/backup/left_menu_customer_6.png new file mode 100644 index 0000000..bceddf4 Binary files /dev/null and b/public/images/common/korean/backup/left_menu_customer_6.png differ diff --git a/public/images/common/korean/backup/left_menu_customer_7-over.png b/public/images/common/korean/backup/left_menu_customer_7-over.png new file mode 100644 index 0000000..8c57584 Binary files /dev/null and b/public/images/common/korean/backup/left_menu_customer_7-over.png differ diff --git a/public/images/common/korean/backup/left_menu_customer_7.png b/public/images/common/korean/backup/left_menu_customer_7.png new file mode 100644 index 0000000..67f83d3 Binary files /dev/null and b/public/images/common/korean/backup/left_menu_customer_7.png differ diff --git a/public/images/common/korean/bicon1.gif b/public/images/common/korean/bicon1.gif new file mode 100644 index 0000000..9d2ac62 Binary files /dev/null and b/public/images/common/korean/bicon1.gif differ diff --git a/public/images/common/korean/blank.gif b/public/images/common/korean/blank.gif new file mode 100644 index 0000000..076c753 Binary files /dev/null and b/public/images/common/korean/blank.gif differ diff --git a/public/images/common/korean/blit_diamond.jpg b/public/images/common/korean/blit_diamond.jpg new file mode 100644 index 0000000..70cb1d0 Binary files /dev/null and b/public/images/common/korean/blit_diamond.jpg differ diff --git a/public/images/common/korean/blit_orange.gif b/public/images/common/korean/blit_orange.gif new file mode 100644 index 0000000..b95bdb4 Binary files /dev/null and b/public/images/common/korean/blit_orange.gif differ diff --git a/public/images/common/korean/board/img/--arrow.gif b/public/images/common/korean/board/img/--arrow.gif new file mode 100644 index 0000000..87986e2 Binary files /dev/null and b/public/images/common/korean/board/img/--arrow.gif differ diff --git a/public/images/common/korean/board/img/-arrow.gif b/public/images/common/korean/board/img/-arrow.gif new file mode 100644 index 0000000..c8e6b4c Binary files /dev/null and b/public/images/common/korean/board/img/-arrow.gif differ diff --git a/public/images/common/korean/board/img/admin.gif b/public/images/common/korean/board/img/admin.gif new file mode 100644 index 0000000..198d1dc Binary files /dev/null and b/public/images/common/korean/board/img/admin.gif differ diff --git a/public/images/common/korean/board/img/arrow--.gif b/public/images/common/korean/board/img/arrow--.gif new file mode 100644 index 0000000..9af0d3d Binary files /dev/null and b/public/images/common/korean/board/img/arrow--.gif differ diff --git a/public/images/common/korean/board/img/arrow-.gif b/public/images/common/korean/board/img/arrow-.gif new file mode 100644 index 0000000..714d408 Binary files /dev/null and b/public/images/common/korean/board/img/arrow-.gif differ diff --git a/public/images/common/korean/board/img/arrow.gif b/public/images/common/korean/board/img/arrow.gif new file mode 100644 index 0000000..f280e26 Binary files /dev/null and b/public/images/common/korean/board/img/arrow.gif differ diff --git a/public/images/common/korean/board/img/barBg.gif b/public/images/common/korean/board/img/barBg.gif new file mode 100644 index 0000000..093a136 Binary files /dev/null and b/public/images/common/korean/board/img/barBg.gif differ diff --git a/public/images/common/korean/board/img/barLeft.gif b/public/images/common/korean/board/img/barLeft.gif new file mode 100644 index 0000000..22d8945 Binary files /dev/null and b/public/images/common/korean/board/img/barLeft.gif differ diff --git a/public/images/common/korean/board/img/barRight.gif b/public/images/common/korean/board/img/barRight.gif new file mode 100644 index 0000000..30574ac Binary files /dev/null and b/public/images/common/korean/board/img/barRight.gif differ diff --git a/public/images/common/korean/board/img/barTxt1.gif b/public/images/common/korean/board/img/barTxt1.gif new file mode 100644 index 0000000..9cbaec9 Binary files /dev/null and b/public/images/common/korean/board/img/barTxt1.gif differ diff --git a/public/images/common/korean/board/img/barTxt2.gif b/public/images/common/korean/board/img/barTxt2.gif new file mode 100644 index 0000000..049a5f6 Binary files /dev/null and b/public/images/common/korean/board/img/barTxt2.gif differ diff --git a/public/images/common/korean/board/img/barTxt3.gif b/public/images/common/korean/board/img/barTxt3.gif new file mode 100644 index 0000000..0c34c20 Binary files /dev/null and b/public/images/common/korean/board/img/barTxt3.gif differ diff --git a/public/images/common/korean/board/img/barTxt4.gif b/public/images/common/korean/board/img/barTxt4.gif new file mode 100644 index 0000000..ee1e8bc Binary files /dev/null and b/public/images/common/korean/board/img/barTxt4.gif differ diff --git a/public/images/common/korean/board/img/barTxt5.gif b/public/images/common/korean/board/img/barTxt5.gif new file mode 100644 index 0000000..334f754 Binary files /dev/null and b/public/images/common/korean/board/img/barTxt5.gif differ diff --git a/public/images/common/korean/board/img/barTxt6.gif b/public/images/common/korean/board/img/barTxt6.gif new file mode 100644 index 0000000..35ef9bf Binary files /dev/null and b/public/images/common/korean/board/img/barTxt6.gif differ diff --git a/public/images/common/korean/board/img/barTxt7.gif b/public/images/common/korean/board/img/barTxt7.gif new file mode 100644 index 0000000..815c69e Binary files /dev/null and b/public/images/common/korean/board/img/barTxt7.gif differ diff --git a/public/images/common/korean/board/img/barTxt8.gif b/public/images/common/korean/board/img/barTxt8.gif new file mode 100644 index 0000000..a47d25c Binary files /dev/null and b/public/images/common/korean/board/img/barTxt8.gif differ diff --git a/public/images/common/korean/board/img/bdr1.gif b/public/images/common/korean/board/img/bdr1.gif new file mode 100644 index 0000000..f846ee8 Binary files /dev/null and b/public/images/common/korean/board/img/bdr1.gif differ diff --git a/public/images/common/korean/board/img/bdr2.gif b/public/images/common/korean/board/img/bdr2.gif new file mode 100644 index 0000000..4c9e233 Binary files /dev/null and b/public/images/common/korean/board/img/bdr2.gif differ diff --git a/public/images/common/korean/board/img/bdr3.gif b/public/images/common/korean/board/img/bdr3.gif new file mode 100644 index 0000000..43900a5 Binary files /dev/null and b/public/images/common/korean/board/img/bdr3.gif differ diff --git a/public/images/common/korean/board/img/bdr4.gif b/public/images/common/korean/board/img/bdr4.gif new file mode 100644 index 0000000..a9d2915 Binary files /dev/null and b/public/images/common/korean/board/img/bdr4.gif differ diff --git a/public/images/common/korean/board/img/boardTxtNotice.gif b/public/images/common/korean/board/img/boardTxtNotice.gif new file mode 100644 index 0000000..c11350f Binary files /dev/null and b/public/images/common/korean/board/img/boardTxtNotice.gif differ diff --git a/public/images/common/korean/board/img/cnr1.gif b/public/images/common/korean/board/img/cnr1.gif new file mode 100644 index 0000000..0f1553f Binary files /dev/null and b/public/images/common/korean/board/img/cnr1.gif differ diff --git a/public/images/common/korean/board/img/cnr2.gif b/public/images/common/korean/board/img/cnr2.gif new file mode 100644 index 0000000..cb3973d Binary files /dev/null and b/public/images/common/korean/board/img/cnr2.gif differ diff --git a/public/images/common/korean/board/img/cnr3.gif b/public/images/common/korean/board/img/cnr3.gif new file mode 100644 index 0000000..c491e00 Binary files /dev/null and b/public/images/common/korean/board/img/cnr3.gif differ diff --git a/public/images/common/korean/board/img/cnr4.gif b/public/images/common/korean/board/img/cnr4.gif new file mode 100644 index 0000000..2bdfc49 Binary files /dev/null and b/public/images/common/korean/board/img/cnr4.gif differ diff --git a/public/images/common/korean/board/img/del.gif b/public/images/common/korean/board/img/del.gif new file mode 100644 index 0000000..a641216 Binary files /dev/null and b/public/images/common/korean/board/img/del.gif differ diff --git a/public/images/common/korean/board/img/disk1.gif b/public/images/common/korean/board/img/disk1.gif new file mode 100644 index 0000000..ce3ee40 Binary files /dev/null and b/public/images/common/korean/board/img/disk1.gif differ diff --git a/public/images/common/korean/board/img/doc.gif b/public/images/common/korean/board/img/doc.gif new file mode 100644 index 0000000..92833dc Binary files /dev/null and b/public/images/common/korean/board/img/doc.gif differ diff --git a/public/images/common/korean/board/img/dot.gif b/public/images/common/korean/board/img/dot.gif new file mode 100644 index 0000000..8647c04 Binary files /dev/null and b/public/images/common/korean/board/img/dot.gif differ diff --git a/public/images/common/korean/board/img/edit.gif b/public/images/common/korean/board/img/edit.gif new file mode 100644 index 0000000..02d47ee Binary files /dev/null and b/public/images/common/korean/board/img/edit.gif differ diff --git a/public/images/common/korean/board/img/end.gif b/public/images/common/korean/board/img/end.gif new file mode 100644 index 0000000..d6b692e Binary files /dev/null and b/public/images/common/korean/board/img/end.gif differ diff --git a/public/images/common/korean/board/img/footer_reply.gif b/public/images/common/korean/board/img/footer_reply.gif new file mode 100644 index 0000000..ef9bc78 Binary files /dev/null and b/public/images/common/korean/board/img/footer_reply.gif differ diff --git a/public/images/common/korean/board/img/footer_submit.gif b/public/images/common/korean/board/img/footer_submit.gif new file mode 100644 index 0000000..5a4df20 Binary files /dev/null and b/public/images/common/korean/board/img/footer_submit.gif differ diff --git a/public/images/common/korean/board/img/grayDate.gif b/public/images/common/korean/board/img/grayDate.gif new file mode 100644 index 0000000..5ae0621 Binary files /dev/null and b/public/images/common/korean/board/img/grayDate.gif differ diff --git a/public/images/common/korean/board/img/grayHit.gif b/public/images/common/korean/board/img/grayHit.gif new file mode 100644 index 0000000..5cb312b Binary files /dev/null and b/public/images/common/korean/board/img/grayHit.gif differ diff --git a/public/images/common/korean/board/img/grayName.gif b/public/images/common/korean/board/img/grayName.gif new file mode 100644 index 0000000..c75c7b6 Binary files /dev/null and b/public/images/common/korean/board/img/grayName.gif differ diff --git a/public/images/common/korean/board/img/grayNo.gif b/public/images/common/korean/board/img/grayNo.gif new file mode 100644 index 0000000..650e3c5 Binary files /dev/null and b/public/images/common/korean/board/img/grayNo.gif differ diff --git a/public/images/common/korean/board/img/graySubject.gif b/public/images/common/korean/board/img/graySubject.gif new file mode 100644 index 0000000..dcc4e9a Binary files /dev/null and b/public/images/common/korean/board/img/graySubject.gif differ diff --git a/public/images/common/korean/board/img/h_date.gif b/public/images/common/korean/board/img/h_date.gif new file mode 100644 index 0000000..6a30212 Binary files /dev/null and b/public/images/common/korean/board/img/h_date.gif differ diff --git a/public/images/common/korean/board/img/h_hit.gif b/public/images/common/korean/board/img/h_hit.gif new file mode 100644 index 0000000..36404af Binary files /dev/null and b/public/images/common/korean/board/img/h_hit.gif differ diff --git a/public/images/common/korean/board/img/h_memo.gif b/public/images/common/korean/board/img/h_memo.gif new file mode 100644 index 0000000..1750251 Binary files /dev/null and b/public/images/common/korean/board/img/h_memo.gif differ diff --git a/public/images/common/korean/board/img/h_name.gif b/public/images/common/korean/board/img/h_name.gif new file mode 100644 index 0000000..1e2771f Binary files /dev/null and b/public/images/common/korean/board/img/h_name.gif differ diff --git a/public/images/common/korean/board/img/h_next.gif b/public/images/common/korean/board/img/h_next.gif new file mode 100644 index 0000000..4aff7e7 Binary files /dev/null and b/public/images/common/korean/board/img/h_next.gif differ diff --git a/public/images/common/korean/board/img/h_no.gif b/public/images/common/korean/board/img/h_no.gif new file mode 100644 index 0000000..5889a58 Binary files /dev/null and b/public/images/common/korean/board/img/h_no.gif differ diff --git a/public/images/common/korean/board/img/h_prev.gif b/public/images/common/korean/board/img/h_prev.gif new file mode 100644 index 0000000..c00f0b8 Binary files /dev/null and b/public/images/common/korean/board/img/h_prev.gif differ diff --git a/public/images/common/korean/board/img/h_reply.gif b/public/images/common/korean/board/img/h_reply.gif new file mode 100644 index 0000000..e05432b Binary files /dev/null and b/public/images/common/korean/board/img/h_reply.gif differ diff --git a/public/images/common/korean/board/img/h_subject.gif b/public/images/common/korean/board/img/h_subject.gif new file mode 100644 index 0000000..37e515a Binary files /dev/null and b/public/images/common/korean/board/img/h_subject.gif differ diff --git a/public/images/common/korean/board/img/home.gif b/public/images/common/korean/board/img/home.gif new file mode 100644 index 0000000..20bac07 Binary files /dev/null and b/public/images/common/korean/board/img/home.gif differ diff --git a/public/images/common/korean/board/img/hwp.gif b/public/images/common/korean/board/img/hwp.gif new file mode 100644 index 0000000..1939218 Binary files /dev/null and b/public/images/common/korean/board/img/hwp.gif differ diff --git a/public/images/common/korean/board/img/iconBack.gif b/public/images/common/korean/board/img/iconBack.gif new file mode 100644 index 0000000..74b4f06 Binary files /dev/null and b/public/images/common/korean/board/img/iconBack.gif differ diff --git a/public/images/common/korean/board/img/iconDel.gif b/public/images/common/korean/board/img/iconDel.gif new file mode 100644 index 0000000..b54ce21 Binary files /dev/null and b/public/images/common/korean/board/img/iconDel.gif differ diff --git a/public/images/common/korean/board/img/iconEdit.gif b/public/images/common/korean/board/img/iconEdit.gif new file mode 100644 index 0000000..42f7997 Binary files /dev/null and b/public/images/common/korean/board/img/iconEdit.gif differ diff --git a/public/images/common/korean/board/img/iconEnd.gif b/public/images/common/korean/board/img/iconEnd.gif new file mode 100644 index 0000000..1340c3c Binary files /dev/null and b/public/images/common/korean/board/img/iconEnd.gif differ diff --git a/public/images/common/korean/board/img/iconFirst.gif b/public/images/common/korean/board/img/iconFirst.gif new file mode 100644 index 0000000..1865b3d Binary files /dev/null and b/public/images/common/korean/board/img/iconFirst.gif differ diff --git a/public/images/common/korean/board/img/iconList.gif b/public/images/common/korean/board/img/iconList.gif new file mode 100644 index 0000000..94e056e Binary files /dev/null and b/public/images/common/korean/board/img/iconList.gif differ diff --git a/public/images/common/korean/board/img/iconNext.gif b/public/images/common/korean/board/img/iconNext.gif new file mode 100644 index 0000000..9218de5 Binary files /dev/null and b/public/images/common/korean/board/img/iconNext.gif differ diff --git a/public/images/common/korean/board/img/iconPrev.gif b/public/images/common/korean/board/img/iconPrev.gif new file mode 100644 index 0000000..3bf2341 Binary files /dev/null and b/public/images/common/korean/board/img/iconPrev.gif differ diff --git a/public/images/common/korean/board/img/iconReply.gif b/public/images/common/korean/board/img/iconReply.gif new file mode 100644 index 0000000..e0a2ac0 Binary files /dev/null and b/public/images/common/korean/board/img/iconReply.gif differ diff --git a/public/images/common/korean/board/img/iconSave.gif b/public/images/common/korean/board/img/iconSave.gif new file mode 100644 index 0000000..a8acec1 Binary files /dev/null and b/public/images/common/korean/board/img/iconSave.gif differ diff --git a/public/images/common/korean/board/img/iconWrite.gif b/public/images/common/korean/board/img/iconWrite.gif new file mode 100644 index 0000000..50cf02c Binary files /dev/null and b/public/images/common/korean/board/img/iconWrite.gif differ diff --git a/public/images/common/korean/board/img/icon_back.png b/public/images/common/korean/board/img/icon_back.png new file mode 100644 index 0000000..0adb5dc Binary files /dev/null and b/public/images/common/korean/board/img/icon_back.png differ diff --git a/public/images/common/korean/board/img/icon_close.gif b/public/images/common/korean/board/img/icon_close.gif new file mode 100644 index 0000000..f61c0eb Binary files /dev/null and b/public/images/common/korean/board/img/icon_close.gif differ diff --git a/public/images/common/korean/board/img/icon_close.jpg b/public/images/common/korean/board/img/icon_close.jpg new file mode 100644 index 0000000..16ae0e9 Binary files /dev/null and b/public/images/common/korean/board/img/icon_close.jpg differ diff --git a/public/images/common/korean/board/img/icon_del.png b/public/images/common/korean/board/img/icon_del.png new file mode 100644 index 0000000..87c30e8 Binary files /dev/null and b/public/images/common/korean/board/img/icon_del.png differ diff --git a/public/images/common/korean/board/img/icon_done.png b/public/images/common/korean/board/img/icon_done.png new file mode 100644 index 0000000..126bf00 Binary files /dev/null and b/public/images/common/korean/board/img/icon_done.png differ diff --git a/public/images/common/korean/board/img/icon_list.png b/public/images/common/korean/board/img/icon_list.png new file mode 100644 index 0000000..97d7494 Binary files /dev/null and b/public/images/common/korean/board/img/icon_list.png differ diff --git a/public/images/common/korean/board/img/icon_modify.png b/public/images/common/korean/board/img/icon_modify.png new file mode 100644 index 0000000..6885f07 Binary files /dev/null and b/public/images/common/korean/board/img/icon_modify.png differ diff --git a/public/images/common/korean/board/img/icon_reply.png b/public/images/common/korean/board/img/icon_reply.png new file mode 100644 index 0000000..fb2a872 Binary files /dev/null and b/public/images/common/korean/board/img/icon_reply.png differ diff --git a/public/images/common/korean/board/img/icon_save.png b/public/images/common/korean/board/img/icon_save.png new file mode 100644 index 0000000..d01294e Binary files /dev/null and b/public/images/common/korean/board/img/icon_save.png differ diff --git a/public/images/common/korean/board/img/icon_write.png b/public/images/common/korean/board/img/icon_write.png new file mode 100644 index 0000000..5f024dd Binary files /dev/null and b/public/images/common/korean/board/img/icon_write.png differ diff --git a/public/images/common/korean/board/img/jpg.gif b/public/images/common/korean/board/img/jpg.gif new file mode 100644 index 0000000..9674edc Binary files /dev/null and b/public/images/common/korean/board/img/jpg.gif differ diff --git a/public/images/common/korean/board/img/list.gif b/public/images/common/korean/board/img/list.gif new file mode 100644 index 0000000..1acb696 Binary files /dev/null and b/public/images/common/korean/board/img/list.gif differ diff --git a/public/images/common/korean/board/img/login_01.gif b/public/images/common/korean/board/img/login_01.gif new file mode 100644 index 0000000..5cd6a4c Binary files /dev/null and b/public/images/common/korean/board/img/login_01.gif differ diff --git a/public/images/common/korean/board/img/login_02.gif b/public/images/common/korean/board/img/login_02.gif new file mode 100644 index 0000000..72fe5b7 Binary files /dev/null and b/public/images/common/korean/board/img/login_02.gif differ diff --git a/public/images/common/korean/board/img/login_03-over.gif b/public/images/common/korean/board/img/login_03-over.gif new file mode 100644 index 0000000..e632ca7 Binary files /dev/null and b/public/images/common/korean/board/img/login_03-over.gif differ diff --git a/public/images/common/korean/board/img/login_03.gif b/public/images/common/korean/board/img/login_03.gif new file mode 100644 index 0000000..5ce3207 Binary files /dev/null and b/public/images/common/korean/board/img/login_03.gif differ diff --git a/public/images/common/korean/board/img/login_04.gif b/public/images/common/korean/board/img/login_04.gif new file mode 100644 index 0000000..e1de2e0 Binary files /dev/null and b/public/images/common/korean/board/img/login_04.gif differ diff --git a/public/images/common/korean/board/img/login_05.gif b/public/images/common/korean/board/img/login_05.gif new file mode 100644 index 0000000..bbe4458 Binary files /dev/null and b/public/images/common/korean/board/img/login_05.gif differ diff --git a/public/images/common/korean/board/img/login_06.gif b/public/images/common/korean/board/img/login_06.gif new file mode 100644 index 0000000..6106a44 Binary files /dev/null and b/public/images/common/korean/board/img/login_06.gif differ diff --git a/public/images/common/korean/board/img/login_07-over.gif b/public/images/common/korean/board/img/login_07-over.gif new file mode 100644 index 0000000..78088d0 Binary files /dev/null and b/public/images/common/korean/board/img/login_07-over.gif differ diff --git a/public/images/common/korean/board/img/login_07.gif b/public/images/common/korean/board/img/login_07.gif new file mode 100644 index 0000000..827b8fc Binary files /dev/null and b/public/images/common/korean/board/img/login_07.gif differ diff --git a/public/images/common/korean/board/img/login_08.gif b/public/images/common/korean/board/img/login_08.gif new file mode 100644 index 0000000..e58603d Binary files /dev/null and b/public/images/common/korean/board/img/login_08.gif differ diff --git a/public/images/common/korean/board/img/login_09.gif b/public/images/common/korean/board/img/login_09.gif new file mode 100644 index 0000000..4428215 Binary files /dev/null and b/public/images/common/korean/board/img/login_09.gif differ diff --git a/public/images/common/korean/board/img/logout.gif b/public/images/common/korean/board/img/logout.gif new file mode 100644 index 0000000..b017110 Binary files /dev/null and b/public/images/common/korean/board/img/logout.gif differ diff --git a/public/images/common/korean/board/img/mail.gif b/public/images/common/korean/board/img/mail.gif new file mode 100644 index 0000000..781dd2b Binary files /dev/null and b/public/images/common/korean/board/img/mail.gif differ diff --git a/public/images/common/korean/board/img/mail_top2.gif b/public/images/common/korean/board/img/mail_top2.gif new file mode 100644 index 0000000..699ced2 Binary files /dev/null and b/public/images/common/korean/board/img/mail_top2.gif differ diff --git a/public/images/common/korean/board/img/n_end.gif b/public/images/common/korean/board/img/n_end.gif new file mode 100644 index 0000000..de86fc3 Binary files /dev/null and b/public/images/common/korean/board/img/n_end.gif differ diff --git a/public/images/common/korean/board/img/n_next.gif b/public/images/common/korean/board/img/n_next.gif new file mode 100644 index 0000000..04e5b21 Binary files /dev/null and b/public/images/common/korean/board/img/n_next.gif differ diff --git a/public/images/common/korean/board/img/n_prev.gif b/public/images/common/korean/board/img/n_prev.gif new file mode 100644 index 0000000..c09a6c7 Binary files /dev/null and b/public/images/common/korean/board/img/n_prev.gif differ diff --git a/public/images/common/korean/board/img/n_top.gif b/public/images/common/korean/board/img/n_top.gif new file mode 100644 index 0000000..a7be3c9 Binary files /dev/null and b/public/images/common/korean/board/img/n_top.gif differ diff --git a/public/images/common/korean/board/img/next.gif b/public/images/common/korean/board/img/next.gif new file mode 100644 index 0000000..e5d7a4c Binary files /dev/null and b/public/images/common/korean/board/img/next.gif differ diff --git a/public/images/common/korean/board/img/noImage.gif b/public/images/common/korean/board/img/noImage.gif new file mode 100644 index 0000000..e41583e Binary files /dev/null and b/public/images/common/korean/board/img/noImage.gif differ diff --git a/public/images/common/korean/board/img/notice.gif b/public/images/common/korean/board/img/notice.gif new file mode 100644 index 0000000..2b8cbdc Binary files /dev/null and b/public/images/common/korean/board/img/notice.gif differ diff --git a/public/images/common/korean/board/img/off.gif b/public/images/common/korean/board/img/off.gif new file mode 100644 index 0000000..c434018 Binary files /dev/null and b/public/images/common/korean/board/img/off.gif differ diff --git a/public/images/common/korean/board/img/on.gif b/public/images/common/korean/board/img/on.gif new file mode 100644 index 0000000..f120f0f Binary files /dev/null and b/public/images/common/korean/board/img/on.gif differ diff --git a/public/images/common/korean/board/img/paper.gif b/public/images/common/korean/board/img/paper.gif new file mode 100644 index 0000000..7b10300 Binary files /dev/null and b/public/images/common/korean/board/img/paper.gif differ diff --git a/public/images/common/korean/board/img/pdf.gif b/public/images/common/korean/board/img/pdf.gif new file mode 100644 index 0000000..013c4bb Binary files /dev/null and b/public/images/common/korean/board/img/pdf.gif differ diff --git a/public/images/common/korean/board/img/photoBar.gif b/public/images/common/korean/board/img/photoBar.gif new file mode 100644 index 0000000..03bf86a Binary files /dev/null and b/public/images/common/korean/board/img/photoBar.gif differ diff --git a/public/images/common/korean/board/img/photoBody.gif b/public/images/common/korean/board/img/photoBody.gif new file mode 100644 index 0000000..aef592b Binary files /dev/null and b/public/images/common/korean/board/img/photoBody.gif differ diff --git a/public/images/common/korean/board/img/photoShadow.gif b/public/images/common/korean/board/img/photoShadow.gif new file mode 100644 index 0000000..272b5f0 Binary files /dev/null and b/public/images/common/korean/board/img/photoShadow.gif differ diff --git a/public/images/common/korean/board/img/photoTop.gif b/public/images/common/korean/board/img/photoTop.gif new file mode 100644 index 0000000..b37498b Binary files /dev/null and b/public/images/common/korean/board/img/photoTop.gif differ diff --git a/public/images/common/korean/board/img/photoUnder.gif b/public/images/common/korean/board/img/photoUnder.gif new file mode 100644 index 0000000..3065869 Binary files /dev/null and b/public/images/common/korean/board/img/photoUnder.gif differ diff --git a/public/images/common/korean/board/img/point.gif b/public/images/common/korean/board/img/point.gif new file mode 100644 index 0000000..89069f7 Binary files /dev/null and b/public/images/common/korean/board/img/point.gif differ diff --git a/public/images/common/korean/board/img/ppt.gif b/public/images/common/korean/board/img/ppt.gif new file mode 100644 index 0000000..e0b3fde Binary files /dev/null and b/public/images/common/korean/board/img/ppt.gif differ diff --git a/public/images/common/korean/board/img/prev.gif b/public/images/common/korean/board/img/prev.gif new file mode 100644 index 0000000..32f4878 Binary files /dev/null and b/public/images/common/korean/board/img/prev.gif differ diff --git a/public/images/common/korean/board/img/reply.gif b/public/images/common/korean/board/img/reply.gif new file mode 100644 index 0000000..9b62729 Binary files /dev/null and b/public/images/common/korean/board/img/reply.gif differ diff --git a/public/images/common/korean/board/img/reply2.gif b/public/images/common/korean/board/img/reply2.gif new file mode 100644 index 0000000..aadeeb3 Binary files /dev/null and b/public/images/common/korean/board/img/reply2.gif differ diff --git a/public/images/common/korean/board/img/reset.gif b/public/images/common/korean/board/img/reset.gif new file mode 100644 index 0000000..f2c04f7 Binary files /dev/null and b/public/images/common/korean/board/img/reset.gif differ diff --git a/public/images/common/korean/board/img/search.gif b/public/images/common/korean/board/img/search.gif new file mode 100644 index 0000000..d06a4c2 Binary files /dev/null and b/public/images/common/korean/board/img/search.gif differ diff --git a/public/images/common/korean/board/img/submit.gif b/public/images/common/korean/board/img/submit.gif new file mode 100644 index 0000000..ee9f55b Binary files /dev/null and b/public/images/common/korean/board/img/submit.gif differ diff --git a/public/images/common/korean/board/img/t_down.gif b/public/images/common/korean/board/img/t_down.gif new file mode 100644 index 0000000..b38c641 Binary files /dev/null and b/public/images/common/korean/board/img/t_down.gif differ diff --git a/public/images/common/korean/board/img/t_edit.gif b/public/images/common/korean/board/img/t_edit.gif new file mode 100644 index 0000000..599a31d Binary files /dev/null and b/public/images/common/korean/board/img/t_edit.gif differ diff --git a/public/images/common/korean/board/img/t_email.gif b/public/images/common/korean/board/img/t_email.gif new file mode 100644 index 0000000..7ab35ff Binary files /dev/null and b/public/images/common/korean/board/img/t_email.gif differ diff --git a/public/images/common/korean/board/img/t_html.gif b/public/images/common/korean/board/img/t_html.gif new file mode 100644 index 0000000..689c22d Binary files /dev/null and b/public/images/common/korean/board/img/t_html.gif differ diff --git a/public/images/common/korean/board/img/t_memo.gif b/public/images/common/korean/board/img/t_memo.gif new file mode 100644 index 0000000..551518e Binary files /dev/null and b/public/images/common/korean/board/img/t_memo.gif differ diff --git a/public/images/common/korean/board/img/t_name.gif b/public/images/common/korean/board/img/t_name.gif new file mode 100644 index 0000000..79bc532 Binary files /dev/null and b/public/images/common/korean/board/img/t_name.gif differ diff --git a/public/images/common/korean/board/img/t_password.gif b/public/images/common/korean/board/img/t_password.gif new file mode 100644 index 0000000..aa9b1b3 Binary files /dev/null and b/public/images/common/korean/board/img/t_password.gif differ diff --git a/public/images/common/korean/board/img/t_reply.gif b/public/images/common/korean/board/img/t_reply.gif new file mode 100644 index 0000000..c0922e1 Binary files /dev/null and b/public/images/common/korean/board/img/t_reply.gif differ diff --git a/public/images/common/korean/board/img/t_subject.gif b/public/images/common/korean/board/img/t_subject.gif new file mode 100644 index 0000000..595069b Binary files /dev/null and b/public/images/common/korean/board/img/t_subject.gif differ diff --git a/public/images/common/korean/board/img/t_tag.gif b/public/images/common/korean/board/img/t_tag.gif new file mode 100644 index 0000000..431022d Binary files /dev/null and b/public/images/common/korean/board/img/t_tag.gif differ diff --git a/public/images/common/korean/board/img/t_text.gif b/public/images/common/korean/board/img/t_text.gif new file mode 100644 index 0000000..ffefed9 Binary files /dev/null and b/public/images/common/korean/board/img/t_text.gif differ diff --git a/public/images/common/korean/board/img/t_write.gif b/public/images/common/korean/board/img/t_write.gif new file mode 100644 index 0000000..f2c3ecd Binary files /dev/null and b/public/images/common/korean/board/img/t_write.gif differ diff --git a/public/images/common/korean/board/img/top.gif b/public/images/common/korean/board/img/top.gif new file mode 100644 index 0000000..4822461 Binary files /dev/null and b/public/images/common/korean/board/img/top.gif differ diff --git a/public/images/common/korean/board/img/write.gif b/public/images/common/korean/board/img/write.gif new file mode 100644 index 0000000..6d1cbc5 Binary files /dev/null and b/public/images/common/korean/board/img/write.gif differ diff --git a/public/images/common/korean/board/img/xls.gif b/public/images/common/korean/board/img/xls.gif new file mode 100644 index 0000000..ca548ce Binary files /dev/null and b/public/images/common/korean/board/img/xls.gif differ diff --git a/public/images/common/korean/box_1.gif b/public/images/common/korean/box_1.gif new file mode 100644 index 0000000..fe08dee Binary files /dev/null and b/public/images/common/korean/box_1.gif differ diff --git a/public/images/common/korean/box_2.gif b/public/images/common/korean/box_2.gif new file mode 100644 index 0000000..6cb291f Binary files /dev/null and b/public/images/common/korean/box_2.gif differ diff --git a/public/images/common/korean/box_21.gif b/public/images/common/korean/box_21.gif new file mode 100644 index 0000000..cef0315 Binary files /dev/null and b/public/images/common/korean/box_21.gif differ diff --git a/public/images/common/korean/box_22.gif b/public/images/common/korean/box_22.gif new file mode 100644 index 0000000..6fbc11e Binary files /dev/null and b/public/images/common/korean/box_22.gif differ diff --git a/public/images/common/korean/box_23.gif b/public/images/common/korean/box_23.gif new file mode 100644 index 0000000..b920a9b Binary files /dev/null and b/public/images/common/korean/box_23.gif differ diff --git a/public/images/common/korean/box_24.gif b/public/images/common/korean/box_24.gif new file mode 100644 index 0000000..579a4b6 Binary files /dev/null and b/public/images/common/korean/box_24.gif differ diff --git a/public/images/common/korean/box_3.gif b/public/images/common/korean/box_3.gif new file mode 100644 index 0000000..2a97f1f Binary files /dev/null and b/public/images/common/korean/box_3.gif differ diff --git a/public/images/common/korean/box_4.gif b/public/images/common/korean/box_4.gif new file mode 100644 index 0000000..70546c5 Binary files /dev/null and b/public/images/common/korean/box_4.gif differ diff --git a/public/images/common/korean/btn_introduce_1.png b/public/images/common/korean/btn_introduce_1.png new file mode 100644 index 0000000..8122056 Binary files /dev/null and b/public/images/common/korean/btn_introduce_1.png differ diff --git a/public/images/common/korean/btn_introduce_1_over.png b/public/images/common/korean/btn_introduce_1_over.png new file mode 100644 index 0000000..e0d77ee Binary files /dev/null and b/public/images/common/korean/btn_introduce_1_over.png differ diff --git a/public/images/common/korean/btn_introduce_2.png b/public/images/common/korean/btn_introduce_2.png new file mode 100644 index 0000000..0b25af5 Binary files /dev/null and b/public/images/common/korean/btn_introduce_2.png differ diff --git a/public/images/common/korean/btn_introduce_2_over.png b/public/images/common/korean/btn_introduce_2_over.png new file mode 100644 index 0000000..935e9cf Binary files /dev/null and b/public/images/common/korean/btn_introduce_2_over.png differ diff --git a/public/images/common/korean/btn_introduce_3.png b/public/images/common/korean/btn_introduce_3.png new file mode 100644 index 0000000..a8ca5dd Binary files /dev/null and b/public/images/common/korean/btn_introduce_3.png differ diff --git a/public/images/common/korean/btn_introduce_3_over.png b/public/images/common/korean/btn_introduce_3_over.png new file mode 100644 index 0000000..a8ca5dd Binary files /dev/null and b/public/images/common/korean/btn_introduce_3_over.png differ diff --git a/public/images/common/korean/btn_introduce_3_over_org.png b/public/images/common/korean/btn_introduce_3_over_org.png new file mode 100644 index 0000000..c17ad12 Binary files /dev/null and b/public/images/common/korean/btn_introduce_3_over_org.png differ diff --git a/public/images/common/korean/btn_introduce_bg.png b/public/images/common/korean/btn_introduce_bg.png new file mode 100644 index 0000000..4bc2d8b Binary files /dev/null and b/public/images/common/korean/btn_introduce_bg.png differ diff --git a/public/images/common/korean/btn_login.png b/public/images/common/korean/btn_login.png new file mode 100644 index 0000000..c0b2782 Binary files /dev/null and b/public/images/common/korean/btn_login.png differ diff --git a/public/images/common/korean/btn_search.gif b/public/images/common/korean/btn_search.gif new file mode 100644 index 0000000..ca1b28c Binary files /dev/null and b/public/images/common/korean/btn_search.gif differ diff --git a/public/images/common/korean/btn_waf_1.png b/public/images/common/korean/btn_waf_1.png new file mode 100644 index 0000000..5828638 Binary files /dev/null and b/public/images/common/korean/btn_waf_1.png differ diff --git a/public/images/common/korean/btn_waf_1_over.png b/public/images/common/korean/btn_waf_1_over.png new file mode 100644 index 0000000..519bc0f Binary files /dev/null and b/public/images/common/korean/btn_waf_1_over.png differ diff --git a/public/images/common/korean/btn_waf_2.png b/public/images/common/korean/btn_waf_2.png new file mode 100644 index 0000000..0bf4a0a Binary files /dev/null and b/public/images/common/korean/btn_waf_2.png differ diff --git a/public/images/common/korean/btn_waf_2_over.png b/public/images/common/korean/btn_waf_2_over.png new file mode 100644 index 0000000..151dd99 Binary files /dev/null and b/public/images/common/korean/btn_waf_2_over.png differ diff --git a/public/images/common/korean/btn_waf_3.png b/public/images/common/korean/btn_waf_3.png new file mode 100644 index 0000000..8a3c2f1 Binary files /dev/null and b/public/images/common/korean/btn_waf_3.png differ diff --git a/public/images/common/korean/btn_waf_3_over.png b/public/images/common/korean/btn_waf_3_over.png new file mode 100644 index 0000000..cc3d0e0 Binary files /dev/null and b/public/images/common/korean/btn_waf_3_over.png differ diff --git a/public/images/common/korean/btn_waf_4.png b/public/images/common/korean/btn_waf_4.png new file mode 100644 index 0000000..f3267ee Binary files /dev/null and b/public/images/common/korean/btn_waf_4.png differ diff --git a/public/images/common/korean/btn_waf_4_over.png b/public/images/common/korean/btn_waf_4_over.png new file mode 100644 index 0000000..48d4ad1 Binary files /dev/null and b/public/images/common/korean/btn_waf_4_over.png differ diff --git a/public/images/common/korean/btn_waf_5.png b/public/images/common/korean/btn_waf_5.png new file mode 100644 index 0000000..f07246a Binary files /dev/null and b/public/images/common/korean/btn_waf_5.png differ diff --git a/public/images/common/korean/btn_waf_5_over.png b/public/images/common/korean/btn_waf_5_over.png new file mode 100644 index 0000000..db6b4c6 Binary files /dev/null and b/public/images/common/korean/btn_waf_5_over.png differ diff --git a/public/images/common/korean/buttonBlack.gif b/public/images/common/korean/buttonBlack.gif new file mode 100644 index 0000000..8873a99 Binary files /dev/null and b/public/images/common/korean/buttonBlack.gif differ diff --git a/public/images/common/korean/buttonBlue.gif b/public/images/common/korean/buttonBlue.gif new file mode 100644 index 0000000..a87ff78 Binary files /dev/null and b/public/images/common/korean/buttonBlue.gif differ diff --git a/public/images/common/korean/buttonGreen.gif b/public/images/common/korean/buttonGreen.gif new file mode 100644 index 0000000..241fd57 Binary files /dev/null and b/public/images/common/korean/buttonGreen.gif differ diff --git a/public/images/common/korean/buttonRed.gif b/public/images/common/korean/buttonRed.gif new file mode 100644 index 0000000..d017d59 Binary files /dev/null and b/public/images/common/korean/buttonRed.gif differ diff --git a/public/images/common/korean/common b/public/images/common/korean/common new file mode 100644 index 0000000..8332399 --- /dev/null +++ b/public/images/common/korean/common @@ -0,0 +1 @@ +../common/ \ No newline at end of file diff --git a/public/images/common/korean/content/10.gif b/public/images/common/korean/content/10.gif new file mode 100644 index 0000000..0595009 Binary files /dev/null and b/public/images/common/korean/content/10.gif differ diff --git a/public/images/common/korean/content/10.png b/public/images/common/korean/content/10.png new file mode 100644 index 0000000..6b4e441 Binary files /dev/null and b/public/images/common/korean/content/10.png differ diff --git a/public/images/common/korean/content/11-1.png b/public/images/common/korean/content/11-1.png new file mode 100644 index 0000000..4eedb29 Binary files /dev/null and b/public/images/common/korean/content/11-1.png differ diff --git a/public/images/common/korean/content/11.png b/public/images/common/korean/content/11.png new file mode 100644 index 0000000..6022e93 Binary files /dev/null and b/public/images/common/korean/content/11.png differ diff --git a/public/images/common/korean/content/12.png b/public/images/common/korean/content/12.png new file mode 100644 index 0000000..61313f3 Binary files /dev/null and b/public/images/common/korean/content/12.png differ diff --git a/public/images/common/korean/content/13-1.png b/public/images/common/korean/content/13-1.png new file mode 100644 index 0000000..3a30078 Binary files /dev/null and b/public/images/common/korean/content/13-1.png differ diff --git a/public/images/common/korean/content/13.png b/public/images/common/korean/content/13.png new file mode 100644 index 0000000..a78e399 Binary files /dev/null and b/public/images/common/korean/content/13.png differ diff --git a/public/images/common/korean/content/14.png b/public/images/common/korean/content/14.png new file mode 100644 index 0000000..1534657 Binary files /dev/null and b/public/images/common/korean/content/14.png differ diff --git a/public/images/common/korean/content/15.png b/public/images/common/korean/content/15.png new file mode 100644 index 0000000..5024c3e Binary files /dev/null and b/public/images/common/korean/content/15.png differ diff --git a/public/images/common/korean/content/16.jpg b/public/images/common/korean/content/16.jpg new file mode 100644 index 0000000..4f08772 Binary files /dev/null and b/public/images/common/korean/content/16.jpg differ diff --git a/public/images/common/korean/content/16.png b/public/images/common/korean/content/16.png new file mode 100644 index 0000000..c4ea32e Binary files /dev/null and b/public/images/common/korean/content/16.png differ diff --git a/public/images/common/korean/content/17.png b/public/images/common/korean/content/17.png new file mode 100644 index 0000000..019d59e Binary files /dev/null and b/public/images/common/korean/content/17.png differ diff --git a/public/images/common/korean/content/18.png b/public/images/common/korean/content/18.png new file mode 100644 index 0000000..52b9769 Binary files /dev/null and b/public/images/common/korean/content/18.png differ diff --git a/public/images/common/korean/content/19.png b/public/images/common/korean/content/19.png new file mode 100644 index 0000000..8bb3d1d Binary files /dev/null and b/public/images/common/korean/content/19.png differ diff --git a/public/images/common/korean/content/20.png b/public/images/common/korean/content/20.png new file mode 100644 index 0000000..a1d3408 Binary files /dev/null and b/public/images/common/korean/content/20.png differ diff --git a/public/images/common/korean/content/22-1.jpg b/public/images/common/korean/content/22-1.jpg new file mode 100644 index 0000000..af7eaf6 Binary files /dev/null and b/public/images/common/korean/content/22-1.jpg differ diff --git a/public/images/common/korean/content/22.png b/public/images/common/korean/content/22.png new file mode 100644 index 0000000..4e9fb9d Binary files /dev/null and b/public/images/common/korean/content/22.png differ diff --git a/public/images/common/korean/content/23.jpg b/public/images/common/korean/content/23.jpg new file mode 100644 index 0000000..669082c Binary files /dev/null and b/public/images/common/korean/content/23.jpg differ diff --git a/public/images/common/korean/content/23.png b/public/images/common/korean/content/23.png new file mode 100644 index 0000000..359b05f Binary files /dev/null and b/public/images/common/korean/content/23.png differ diff --git a/public/images/common/korean/content/3.png b/public/images/common/korean/content/3.png new file mode 100644 index 0000000..145b26a Binary files /dev/null and b/public/images/common/korean/content/3.png differ diff --git a/public/images/common/korean/content/4-1.png b/public/images/common/korean/content/4-1.png new file mode 100644 index 0000000..5accc87 Binary files /dev/null and b/public/images/common/korean/content/4-1.png differ diff --git a/public/images/common/korean/content/4-2.png b/public/images/common/korean/content/4-2.png new file mode 100644 index 0000000..9ea7c24 Binary files /dev/null and b/public/images/common/korean/content/4-2.png differ diff --git a/public/images/common/korean/content/4.png b/public/images/common/korean/content/4.png new file mode 100644 index 0000000..ff98f0b Binary files /dev/null and b/public/images/common/korean/content/4.png differ diff --git a/public/images/common/korean/content/50.png b/public/images/common/korean/content/50.png new file mode 100644 index 0000000..fa735fe Binary files /dev/null and b/public/images/common/korean/content/50.png differ diff --git a/public/images/common/korean/content/51.png b/public/images/common/korean/content/51.png new file mode 100644 index 0000000..bcb4cfc Binary files /dev/null and b/public/images/common/korean/content/51.png differ diff --git a/public/images/common/korean/content/52.png b/public/images/common/korean/content/52.png new file mode 100644 index 0000000..0c82248 Binary files /dev/null and b/public/images/common/korean/content/52.png differ diff --git a/public/images/common/korean/content/53.png b/public/images/common/korean/content/53.png new file mode 100644 index 0000000..5e4e1ee Binary files /dev/null and b/public/images/common/korean/content/53.png differ diff --git a/public/images/common/korean/content/54.png b/public/images/common/korean/content/54.png new file mode 100644 index 0000000..d0a391e Binary files /dev/null and b/public/images/common/korean/content/54.png differ diff --git a/public/images/common/korean/content/55.png b/public/images/common/korean/content/55.png new file mode 100644 index 0000000..2a3e2d3 Binary files /dev/null and b/public/images/common/korean/content/55.png differ diff --git a/public/images/common/korean/content/56.png b/public/images/common/korean/content/56.png new file mode 100644 index 0000000..1564534 Binary files /dev/null and b/public/images/common/korean/content/56.png differ diff --git a/public/images/common/korean/content/57.png b/public/images/common/korean/content/57.png new file mode 100644 index 0000000..47c2064 Binary files /dev/null and b/public/images/common/korean/content/57.png differ diff --git a/public/images/common/korean/content/58.png b/public/images/common/korean/content/58.png new file mode 100644 index 0000000..2e723a6 Binary files /dev/null and b/public/images/common/korean/content/58.png differ diff --git a/public/images/common/korean/content/59.png b/public/images/common/korean/content/59.png new file mode 100644 index 0000000..1b3b7eb Binary files /dev/null and b/public/images/common/korean/content/59.png differ diff --git a/public/images/common/korean/content/60.png b/public/images/common/korean/content/60.png new file mode 100644 index 0000000..886c235 Binary files /dev/null and b/public/images/common/korean/content/60.png differ diff --git a/public/images/common/korean/content/61.png b/public/images/common/korean/content/61.png new file mode 100644 index 0000000..222675d Binary files /dev/null and b/public/images/common/korean/content/61.png differ diff --git a/public/images/common/korean/content/8.png b/public/images/common/korean/content/8.png new file mode 100644 index 0000000..9a56043 Binary files /dev/null and b/public/images/common/korean/content/8.png differ diff --git a/public/images/common/korean/content/9.png b/public/images/common/korean/content/9.png new file mode 100644 index 0000000..eebf9ec Binary files /dev/null and b/public/images/common/korean/content/9.png differ diff --git a/public/images/common/korean/content/btn_introduce_1.png b/public/images/common/korean/content/btn_introduce_1.png new file mode 100644 index 0000000..8122056 Binary files /dev/null and b/public/images/common/korean/content/btn_introduce_1.png differ diff --git a/public/images/common/korean/content/btn_introduce_1_over.png b/public/images/common/korean/content/btn_introduce_1_over.png new file mode 100644 index 0000000..e0d77ee Binary files /dev/null and b/public/images/common/korean/content/btn_introduce_1_over.png differ diff --git a/public/images/common/korean/content/btn_introduce_2.png b/public/images/common/korean/content/btn_introduce_2.png new file mode 100644 index 0000000..0b25af5 Binary files /dev/null and b/public/images/common/korean/content/btn_introduce_2.png differ diff --git a/public/images/common/korean/content/btn_introduce_2_over.png b/public/images/common/korean/content/btn_introduce_2_over.png new file mode 100644 index 0000000..935e9cf Binary files /dev/null and b/public/images/common/korean/content/btn_introduce_2_over.png differ diff --git a/public/images/common/korean/content/btn_introduce_3.png b/public/images/common/korean/content/btn_introduce_3.png new file mode 100644 index 0000000..a8ca5dd Binary files /dev/null and b/public/images/common/korean/content/btn_introduce_3.png differ diff --git a/public/images/common/korean/content/btn_introduce_3_over.png b/public/images/common/korean/content/btn_introduce_3_over.png new file mode 100644 index 0000000..c17ad12 Binary files /dev/null and b/public/images/common/korean/content/btn_introduce_3_over.png differ diff --git a/public/images/common/korean/content/btn_introduce_bg.png b/public/images/common/korean/content/btn_introduce_bg.png new file mode 100644 index 0000000..4bc2d8b Binary files /dev/null and b/public/images/common/korean/content/btn_introduce_bg.png differ diff --git a/public/images/common/korean/content/cs.png b/public/images/common/korean/content/cs.png new file mode 100644 index 0000000..0924f42 Binary files /dev/null and b/public/images/common/korean/content/cs.png differ diff --git a/public/images/common/korean/content/ddos.png b/public/images/common/korean/content/ddos.png new file mode 100644 index 0000000..fbca75b Binary files /dev/null and b/public/images/common/korean/content/ddos.png differ diff --git a/public/images/common/korean/customervoice.png b/public/images/common/korean/customervoice.png new file mode 100644 index 0000000..7221c63 Binary files /dev/null and b/public/images/common/korean/customervoice.png differ diff --git a/public/images/common/korean/disk1.gif b/public/images/common/korean/disk1.gif new file mode 100644 index 0000000..a618a52 Binary files /dev/null and b/public/images/common/korean/disk1.gif differ diff --git a/public/images/common/korean/dot_bold.gif b/public/images/common/korean/dot_bold.gif new file mode 100644 index 0000000..f46a561 Binary files /dev/null and b/public/images/common/korean/dot_bold.gif differ diff --git a/public/images/common/korean/dot_bronze.gif b/public/images/common/korean/dot_bronze.gif new file mode 100644 index 0000000..1d1dd30 Binary files /dev/null and b/public/images/common/korean/dot_bronze.gif differ diff --git a/public/images/common/korean/dot_dot.gif b/public/images/common/korean/dot_dot.gif new file mode 100644 index 0000000..693a981 Binary files /dev/null and b/public/images/common/korean/dot_dot.gif differ diff --git a/public/images/common/korean/dot_e.gif b/public/images/common/korean/dot_e.gif new file mode 100644 index 0000000..3b0d106 Binary files /dev/null and b/public/images/common/korean/dot_e.gif differ diff --git a/public/images/common/korean/dot_g.gif b/public/images/common/korean/dot_g.gif new file mode 100644 index 0000000..21fc427 Binary files /dev/null and b/public/images/common/korean/dot_g.gif differ diff --git a/public/images/common/korean/dot_gold.gif b/public/images/common/korean/dot_gold.gif new file mode 100644 index 0000000..f46a561 Binary files /dev/null and b/public/images/common/korean/dot_gold.gif differ diff --git a/public/images/common/korean/dot_h.gif b/public/images/common/korean/dot_h.gif new file mode 100644 index 0000000..da240c3 Binary files /dev/null and b/public/images/common/korean/dot_h.gif differ diff --git a/public/images/common/korean/dot_m.gif b/public/images/common/korean/dot_m.gif new file mode 100644 index 0000000..c36baa4 Binary files /dev/null and b/public/images/common/korean/dot_m.gif differ diff --git a/public/images/common/korean/dot_silver.gif b/public/images/common/korean/dot_silver.gif new file mode 100644 index 0000000..da70aaf Binary files /dev/null and b/public/images/common/korean/dot_silver.gif differ diff --git a/public/images/common/korean/dot_u.gif b/public/images/common/korean/dot_u.gif new file mode 100644 index 0000000..e897359 Binary files /dev/null and b/public/images/common/korean/dot_u.gif differ diff --git a/public/images/common/korean/iconBack.gif b/public/images/common/korean/iconBack.gif new file mode 100644 index 0000000..74b4f06 Binary files /dev/null and b/public/images/common/korean/iconBack.gif differ diff --git a/public/images/common/korean/iconDel.gif b/public/images/common/korean/iconDel.gif new file mode 100644 index 0000000..b54ce21 Binary files /dev/null and b/public/images/common/korean/iconDel.gif differ diff --git a/public/images/common/korean/iconEdit.gif b/public/images/common/korean/iconEdit.gif new file mode 100644 index 0000000..42f7997 Binary files /dev/null and b/public/images/common/korean/iconEdit.gif differ diff --git a/public/images/common/korean/iconEnd.gif b/public/images/common/korean/iconEnd.gif new file mode 100644 index 0000000..1340c3c Binary files /dev/null and b/public/images/common/korean/iconEnd.gif differ diff --git a/public/images/common/korean/iconFirst.gif b/public/images/common/korean/iconFirst.gif new file mode 100644 index 0000000..1865b3d Binary files /dev/null and b/public/images/common/korean/iconFirst.gif differ diff --git a/public/images/common/korean/iconList.gif b/public/images/common/korean/iconList.gif new file mode 100644 index 0000000..94e056e Binary files /dev/null and b/public/images/common/korean/iconList.gif differ diff --git a/public/images/common/korean/iconNext.gif b/public/images/common/korean/iconNext.gif new file mode 100644 index 0000000..9218de5 Binary files /dev/null and b/public/images/common/korean/iconNext.gif differ diff --git a/public/images/common/korean/iconPrev.gif b/public/images/common/korean/iconPrev.gif new file mode 100644 index 0000000..3bf2341 Binary files /dev/null and b/public/images/common/korean/iconPrev.gif differ diff --git a/public/images/common/korean/iconReply.gif b/public/images/common/korean/iconReply.gif new file mode 100644 index 0000000..e0a2ac0 Binary files /dev/null and b/public/images/common/korean/iconReply.gif differ diff --git a/public/images/common/korean/iconSave.gif b/public/images/common/korean/iconSave.gif new file mode 100644 index 0000000..a8acec1 Binary files /dev/null and b/public/images/common/korean/iconSave.gif differ diff --git a/public/images/common/korean/iconWrite.gif b/public/images/common/korean/iconWrite.gif new file mode 100644 index 0000000..50cf02c Binary files /dev/null and b/public/images/common/korean/iconWrite.gif differ diff --git a/public/images/common/korean/icon_pdf.gif b/public/images/common/korean/icon_pdf.gif new file mode 100644 index 0000000..f54941b Binary files /dev/null and b/public/images/common/korean/icon_pdf.gif differ diff --git a/public/images/common/korean/idcjp_server_us.png b/public/images/common/korean/idcjp_server_us.png new file mode 100644 index 0000000..77b95bd Binary files /dev/null and b/public/images/common/korean/idcjp_server_us.png differ diff --git a/public/images/common/korean/left_banner_1.png b/public/images/common/korean/left_banner_1.png new file mode 100644 index 0000000..d278b34 Binary files /dev/null and b/public/images/common/korean/left_banner_1.png differ diff --git a/public/images/common/korean/left_banner_2.png b/public/images/common/korean/left_banner_2.png new file mode 100644 index 0000000..4f27e7d Binary files /dev/null and b/public/images/common/korean/left_banner_2.png differ diff --git a/public/images/common/korean/left_banner_2.png.130808 b/public/images/common/korean/left_banner_2.png.130808 new file mode 100644 index 0000000..e41d972 Binary files /dev/null and b/public/images/common/korean/left_banner_2.png.130808 differ diff --git a/public/images/common/korean/left_banner_2.png_old20160417 b/public/images/common/korean/left_banner_2.png_old20160417 new file mode 100644 index 0000000..a763632 Binary files /dev/null and b/public/images/common/korean/left_banner_2.png_old20160417 differ diff --git a/public/images/common/korean/left_banner_2_old.png b/public/images/common/korean/left_banner_2_old.png new file mode 100644 index 0000000..f617908 Binary files /dev/null and b/public/images/common/korean/left_banner_2_old.png differ diff --git a/public/images/common/korean/left_banner_3.png b/public/images/common/korean/left_banner_3.png new file mode 100644 index 0000000..f16c26c Binary files /dev/null and b/public/images/common/korean/left_banner_3.png differ diff --git a/public/images/common/korean/left_menu_addition_1-over.png b/public/images/common/korean/left_menu_addition_1-over.png new file mode 100644 index 0000000..4c2c111 Binary files /dev/null and b/public/images/common/korean/left_menu_addition_1-over.png differ diff --git a/public/images/common/korean/left_menu_addition_1.png b/public/images/common/korean/left_menu_addition_1.png new file mode 100644 index 0000000..0bb7300 Binary files /dev/null and b/public/images/common/korean/left_menu_addition_1.png differ diff --git a/public/images/common/korean/left_menu_addition_2-over.png b/public/images/common/korean/left_menu_addition_2-over.png new file mode 100644 index 0000000..4aab253 Binary files /dev/null and b/public/images/common/korean/left_menu_addition_2-over.png differ diff --git a/public/images/common/korean/left_menu_addition_2.png b/public/images/common/korean/left_menu_addition_2.png new file mode 100644 index 0000000..0b71355 Binary files /dev/null and b/public/images/common/korean/left_menu_addition_2.png differ diff --git a/public/images/common/korean/left_menu_addition_3-over.png b/public/images/common/korean/left_menu_addition_3-over.png new file mode 100644 index 0000000..65c3455 Binary files /dev/null and b/public/images/common/korean/left_menu_addition_3-over.png differ diff --git a/public/images/common/korean/left_menu_addition_3.png b/public/images/common/korean/left_menu_addition_3.png new file mode 100644 index 0000000..8a89096 Binary files /dev/null and b/public/images/common/korean/left_menu_addition_3.png differ diff --git a/public/images/common/korean/left_menu_addition_4-over.png b/public/images/common/korean/left_menu_addition_4-over.png new file mode 100644 index 0000000..820723e Binary files /dev/null and b/public/images/common/korean/left_menu_addition_4-over.png differ diff --git a/public/images/common/korean/left_menu_addition_4.png b/public/images/common/korean/left_menu_addition_4.png new file mode 100644 index 0000000..e289729 Binary files /dev/null and b/public/images/common/korean/left_menu_addition_4.png differ diff --git a/public/images/common/korean/left_menu_addition_5-over.png b/public/images/common/korean/left_menu_addition_5-over.png new file mode 100644 index 0000000..ab653a6 Binary files /dev/null and b/public/images/common/korean/left_menu_addition_5-over.png differ diff --git a/public/images/common/korean/left_menu_addition_5.png b/public/images/common/korean/left_menu_addition_5.png new file mode 100644 index 0000000..d5a176a Binary files /dev/null and b/public/images/common/korean/left_menu_addition_5.png differ diff --git a/public/images/common/korean/left_menu_bg.png b/public/images/common/korean/left_menu_bg.png new file mode 100644 index 0000000..64d5243 Binary files /dev/null and b/public/images/common/korean/left_menu_bg.png differ diff --git a/public/images/common/korean/left_menu_bottom.png b/public/images/common/korean/left_menu_bottom.png new file mode 100644 index 0000000..9f540ad Binary files /dev/null and b/public/images/common/korean/left_menu_bottom.png differ diff --git a/public/images/common/korean/left_menu_colacation_1-over.png b/public/images/common/korean/left_menu_colacation_1-over.png new file mode 100644 index 0000000..51725c3 Binary files /dev/null and b/public/images/common/korean/left_menu_colacation_1-over.png differ diff --git a/public/images/common/korean/left_menu_colacation_1.png b/public/images/common/korean/left_menu_colacation_1.png new file mode 100644 index 0000000..df468c0 Binary files /dev/null and b/public/images/common/korean/left_menu_colacation_1.png differ diff --git a/public/images/common/korean/left_menu_colacation_2-over.png b/public/images/common/korean/left_menu_colacation_2-over.png new file mode 100644 index 0000000..88432c2 Binary files /dev/null and b/public/images/common/korean/left_menu_colacation_2-over.png differ diff --git a/public/images/common/korean/left_menu_colacation_2.png b/public/images/common/korean/left_menu_colacation_2.png new file mode 100644 index 0000000..b99d80d Binary files /dev/null and b/public/images/common/korean/left_menu_colacation_2.png differ diff --git a/public/images/common/korean/left_menu_colacation_3-over.png b/public/images/common/korean/left_menu_colacation_3-over.png new file mode 100644 index 0000000..bc0d83d Binary files /dev/null and b/public/images/common/korean/left_menu_colacation_3-over.png differ diff --git a/public/images/common/korean/left_menu_colacation_3.png b/public/images/common/korean/left_menu_colacation_3.png new file mode 100644 index 0000000..6e49556 Binary files /dev/null and b/public/images/common/korean/left_menu_colacation_3.png differ diff --git a/public/images/common/korean/left_menu_customer_1-over.png b/public/images/common/korean/left_menu_customer_1-over.png new file mode 100644 index 0000000..b0830c6 Binary files /dev/null and b/public/images/common/korean/left_menu_customer_1-over.png differ diff --git a/public/images/common/korean/left_menu_customer_1.png b/public/images/common/korean/left_menu_customer_1.png new file mode 100644 index 0000000..fe12893 Binary files /dev/null and b/public/images/common/korean/left_menu_customer_1.png differ diff --git a/public/images/common/korean/left_menu_customer_2-over.png b/public/images/common/korean/left_menu_customer_2-over.png new file mode 100644 index 0000000..a50e7ae Binary files /dev/null and b/public/images/common/korean/left_menu_customer_2-over.png differ diff --git a/public/images/common/korean/left_menu_customer_2.png b/public/images/common/korean/left_menu_customer_2.png new file mode 100644 index 0000000..ea9156b Binary files /dev/null and b/public/images/common/korean/left_menu_customer_2.png differ diff --git a/public/images/common/korean/left_menu_customer_3-over.png b/public/images/common/korean/left_menu_customer_3-over.png new file mode 100644 index 0000000..a26cf38 Binary files /dev/null and b/public/images/common/korean/left_menu_customer_3-over.png differ diff --git a/public/images/common/korean/left_menu_customer_3.png b/public/images/common/korean/left_menu_customer_3.png new file mode 100644 index 0000000..07fa793 Binary files /dev/null and b/public/images/common/korean/left_menu_customer_3.png differ diff --git a/public/images/common/korean/left_menu_customer_4-over.png b/public/images/common/korean/left_menu_customer_4-over.png new file mode 100644 index 0000000..d7a8a31 Binary files /dev/null and b/public/images/common/korean/left_menu_customer_4-over.png differ diff --git a/public/images/common/korean/left_menu_customer_4.png b/public/images/common/korean/left_menu_customer_4.png new file mode 100644 index 0000000..deb351d Binary files /dev/null and b/public/images/common/korean/left_menu_customer_4.png differ diff --git a/public/images/common/korean/left_menu_customer_5-over.png b/public/images/common/korean/left_menu_customer_5-over.png new file mode 100644 index 0000000..960e0e7 Binary files /dev/null and b/public/images/common/korean/left_menu_customer_5-over.png differ diff --git a/public/images/common/korean/left_menu_customer_5.png b/public/images/common/korean/left_menu_customer_5.png new file mode 100644 index 0000000..bceddf4 Binary files /dev/null and b/public/images/common/korean/left_menu_customer_5.png differ diff --git a/public/images/common/korean/left_menu_customer_6-over.png b/public/images/common/korean/left_menu_customer_6-over.png new file mode 100644 index 0000000..960e0e7 Binary files /dev/null and b/public/images/common/korean/left_menu_customer_6-over.png differ diff --git a/public/images/common/korean/left_menu_customer_6.png b/public/images/common/korean/left_menu_customer_6.png new file mode 100644 index 0000000..bceddf4 Binary files /dev/null and b/public/images/common/korean/left_menu_customer_6.png differ diff --git a/public/images/common/korean/left_menu_customer_7-over.png b/public/images/common/korean/left_menu_customer_7-over.png new file mode 100644 index 0000000..8c57584 Binary files /dev/null and b/public/images/common/korean/left_menu_customer_7-over.png differ diff --git a/public/images/common/korean/left_menu_customer_7.png b/public/images/common/korean/left_menu_customer_7.png new file mode 100644 index 0000000..67f83d3 Binary files /dev/null and b/public/images/common/korean/left_menu_customer_7.png differ diff --git a/public/images/common/korean/left_menu_hosting_1-over.png b/public/images/common/korean/left_menu_hosting_1-over.png new file mode 100644 index 0000000..51725c3 Binary files /dev/null and b/public/images/common/korean/left_menu_hosting_1-over.png differ diff --git a/public/images/common/korean/left_menu_hosting_1.png b/public/images/common/korean/left_menu_hosting_1.png new file mode 100644 index 0000000..ef0c979 Binary files /dev/null and b/public/images/common/korean/left_menu_hosting_1.png differ diff --git a/public/images/common/korean/left_menu_hosting_2-over.png b/public/images/common/korean/left_menu_hosting_2-over.png new file mode 100644 index 0000000..88432c2 Binary files /dev/null and b/public/images/common/korean/left_menu_hosting_2-over.png differ diff --git a/public/images/common/korean/left_menu_hosting_2.png b/public/images/common/korean/left_menu_hosting_2.png new file mode 100644 index 0000000..b99d80d Binary files /dev/null and b/public/images/common/korean/left_menu_hosting_2.png differ diff --git a/public/images/common/korean/left_menu_hosting_3-over.png b/public/images/common/korean/left_menu_hosting_3-over.png new file mode 100644 index 0000000..50ebf41 Binary files /dev/null and b/public/images/common/korean/left_menu_hosting_3-over.png differ diff --git a/public/images/common/korean/left_menu_hosting_3.png b/public/images/common/korean/left_menu_hosting_3.png new file mode 100644 index 0000000..558a6d9 Binary files /dev/null and b/public/images/common/korean/left_menu_hosting_3.png differ diff --git a/public/images/common/korean/left_menu_independence_1-over.png b/public/images/common/korean/left_menu_independence_1-over.png new file mode 100644 index 0000000..03b3860 Binary files /dev/null and b/public/images/common/korean/left_menu_independence_1-over.png differ diff --git a/public/images/common/korean/left_menu_independence_1.png b/public/images/common/korean/left_menu_independence_1.png new file mode 100644 index 0000000..307c41a Binary files /dev/null and b/public/images/common/korean/left_menu_independence_1.png differ diff --git a/public/images/common/korean/left_menu_independence_2-over.png b/public/images/common/korean/left_menu_independence_2-over.png new file mode 100644 index 0000000..dd3ad1d Binary files /dev/null and b/public/images/common/korean/left_menu_independence_2-over.png differ diff --git a/public/images/common/korean/left_menu_independence_2.png b/public/images/common/korean/left_menu_independence_2.png new file mode 100644 index 0000000..1b869ae Binary files /dev/null and b/public/images/common/korean/left_menu_independence_2.png differ diff --git a/public/images/common/korean/left_menu_independence_3-over.png b/public/images/common/korean/left_menu_independence_3-over.png new file mode 100644 index 0000000..3007ff2 Binary files /dev/null and b/public/images/common/korean/left_menu_independence_3-over.png differ diff --git a/public/images/common/korean/left_menu_independence_3.png b/public/images/common/korean/left_menu_independence_3.png new file mode 100644 index 0000000..413a89e Binary files /dev/null and b/public/images/common/korean/left_menu_independence_3.png differ diff --git a/public/images/common/korean/left_menu_independence_4-ov.png b/public/images/common/korean/left_menu_independence_4-ov.png new file mode 100644 index 0000000..1d2ea2d Binary files /dev/null and b/public/images/common/korean/left_menu_independence_4-ov.png differ diff --git a/public/images/common/korean/left_menu_independence_4-over.png b/public/images/common/korean/left_menu_independence_4-over.png new file mode 100644 index 0000000..00dcda5 Binary files /dev/null and b/public/images/common/korean/left_menu_independence_4-over.png differ diff --git a/public/images/common/korean/left_menu_independence_4.png b/public/images/common/korean/left_menu_independence_4.png new file mode 100644 index 0000000..42ef3f0 Binary files /dev/null and b/public/images/common/korean/left_menu_independence_4.png differ diff --git a/public/images/common/korean/left_menu_introduce_1-over.png b/public/images/common/korean/left_menu_introduce_1-over.png new file mode 100644 index 0000000..587567d Binary files /dev/null and b/public/images/common/korean/left_menu_introduce_1-over.png differ diff --git a/public/images/common/korean/left_menu_introduce_1.png b/public/images/common/korean/left_menu_introduce_1.png new file mode 100644 index 0000000..e532783 Binary files /dev/null and b/public/images/common/korean/left_menu_introduce_1.png differ diff --git a/public/images/common/korean/left_menu_introduce_2-over.png b/public/images/common/korean/left_menu_introduce_2-over.png new file mode 100644 index 0000000..179047a Binary files /dev/null and b/public/images/common/korean/left_menu_introduce_2-over.png differ diff --git a/public/images/common/korean/left_menu_introduce_2.png b/public/images/common/korean/left_menu_introduce_2.png new file mode 100644 index 0000000..335599c Binary files /dev/null and b/public/images/common/korean/left_menu_introduce_2.png differ diff --git a/public/images/common/korean/left_menu_introduce_3-over.png b/public/images/common/korean/left_menu_introduce_3-over.png new file mode 100644 index 0000000..ac08c8c Binary files /dev/null and b/public/images/common/korean/left_menu_introduce_3-over.png differ diff --git a/public/images/common/korean/left_menu_introduce_3.png b/public/images/common/korean/left_menu_introduce_3.png new file mode 100644 index 0000000..e595a51 Binary files /dev/null and b/public/images/common/korean/left_menu_introduce_3.png differ diff --git a/public/images/common/korean/left_menu_introduce_4-over.png b/public/images/common/korean/left_menu_introduce_4-over.png new file mode 100644 index 0000000..09f3dea Binary files /dev/null and b/public/images/common/korean/left_menu_introduce_4-over.png differ diff --git a/public/images/common/korean/left_menu_introduce_4.png b/public/images/common/korean/left_menu_introduce_4.png new file mode 100644 index 0000000..3571d2b Binary files /dev/null and b/public/images/common/korean/left_menu_introduce_4.png differ diff --git a/public/images/common/korean/left_menu_introduce_5-over.png b/public/images/common/korean/left_menu_introduce_5-over.png new file mode 100644 index 0000000..8f7d1f3 Binary files /dev/null and b/public/images/common/korean/left_menu_introduce_5-over.png differ diff --git a/public/images/common/korean/left_menu_introduce_5.png b/public/images/common/korean/left_menu_introduce_5.png new file mode 100644 index 0000000..7388ec5 Binary files /dev/null and b/public/images/common/korean/left_menu_introduce_5.png differ diff --git a/public/images/common/korean/left_menu_secure_1-.over.png b/public/images/common/korean/left_menu_secure_1-.over.png new file mode 100644 index 0000000..11dfb69 Binary files /dev/null and b/public/images/common/korean/left_menu_secure_1-.over.png differ diff --git a/public/images/common/korean/left_menu_secure_1-over.png b/public/images/common/korean/left_menu_secure_1-over.png new file mode 100644 index 0000000..11dfb69 Binary files /dev/null and b/public/images/common/korean/left_menu_secure_1-over.png differ diff --git a/public/images/common/korean/left_menu_secure_1.png b/public/images/common/korean/left_menu_secure_1.png new file mode 100644 index 0000000..33349b0 Binary files /dev/null and b/public/images/common/korean/left_menu_secure_1.png differ diff --git a/public/images/common/korean/left_menu_secure_2-over.png b/public/images/common/korean/left_menu_secure_2-over.png new file mode 100644 index 0000000..30c6948 Binary files /dev/null and b/public/images/common/korean/left_menu_secure_2-over.png differ diff --git a/public/images/common/korean/left_menu_secure_2.-over.png b/public/images/common/korean/left_menu_secure_2.-over.png new file mode 100644 index 0000000..30c6948 Binary files /dev/null and b/public/images/common/korean/left_menu_secure_2.-over.png differ diff --git a/public/images/common/korean/left_menu_secure_2.png b/public/images/common/korean/left_menu_secure_2.png new file mode 100644 index 0000000..74f9ac9 Binary files /dev/null and b/public/images/common/korean/left_menu_secure_2.png differ diff --git a/public/images/common/korean/left_menu_secure_3-over.png b/public/images/common/korean/left_menu_secure_3-over.png new file mode 100644 index 0000000..86b3615 Binary files /dev/null and b/public/images/common/korean/left_menu_secure_3-over.png differ diff --git a/public/images/common/korean/left_menu_secure_3.png b/public/images/common/korean/left_menu_secure_3.png new file mode 100644 index 0000000..259e0f9 Binary files /dev/null and b/public/images/common/korean/left_menu_secure_3.png differ diff --git a/public/images/common/korean/left_menu_vpn_1-over.png b/public/images/common/korean/left_menu_vpn_1-over.png new file mode 100644 index 0000000..4d980a2 Binary files /dev/null and b/public/images/common/korean/left_menu_vpn_1-over.png differ diff --git a/public/images/common/korean/left_menu_vpn_1.png b/public/images/common/korean/left_menu_vpn_1.png new file mode 100644 index 0000000..4c3ac7c Binary files /dev/null and b/public/images/common/korean/left_menu_vpn_1.png differ diff --git a/public/images/common/korean/left_menu_vpn_2-over.png b/public/images/common/korean/left_menu_vpn_2-over.png new file mode 100644 index 0000000..d47f187 Binary files /dev/null and b/public/images/common/korean/left_menu_vpn_2-over.png differ diff --git a/public/images/common/korean/left_menu_vpn_2.png b/public/images/common/korean/left_menu_vpn_2.png new file mode 100644 index 0000000..f9e2cda Binary files /dev/null and b/public/images/common/korean/left_menu_vpn_2.png differ diff --git a/public/images/common/korean/left_top.png b/public/images/common/korean/left_top.png new file mode 100644 index 0000000..a3442ef Binary files /dev/null and b/public/images/common/korean/left_top.png differ diff --git a/public/images/common/korean/left_top_addition.png b/public/images/common/korean/left_top_addition.png new file mode 100644 index 0000000..f59626c Binary files /dev/null and b/public/images/common/korean/left_top_addition.png differ diff --git a/public/images/common/korean/left_top_colacation.png b/public/images/common/korean/left_top_colacation.png new file mode 100644 index 0000000..01b33c9 Binary files /dev/null and b/public/images/common/korean/left_top_colacation.png differ diff --git a/public/images/common/korean/left_top_customer.png b/public/images/common/korean/left_top_customer.png new file mode 100644 index 0000000..38db940 Binary files /dev/null and b/public/images/common/korean/left_top_customer.png differ diff --git a/public/images/common/korean/left_top_hosting.png b/public/images/common/korean/left_top_hosting.png new file mode 100644 index 0000000..63ed6ad Binary files /dev/null and b/public/images/common/korean/left_top_hosting.png differ diff --git a/public/images/common/korean/left_top_independence.png b/public/images/common/korean/left_top_independence.png new file mode 100644 index 0000000..7045f36 Binary files /dev/null and b/public/images/common/korean/left_top_independence.png differ diff --git a/public/images/common/korean/left_top_introduce.png b/public/images/common/korean/left_top_introduce.png new file mode 100644 index 0000000..6ebc344 Binary files /dev/null and b/public/images/common/korean/left_top_introduce.png differ diff --git a/public/images/common/korean/left_top_secure.png b/public/images/common/korean/left_top_secure.png new file mode 100644 index 0000000..c6762b5 Binary files /dev/null and b/public/images/common/korean/left_top_secure.png differ diff --git a/public/images/common/korean/left_top_vpn.png b/public/images/common/korean/left_top_vpn.png new file mode 100644 index 0000000..a17433d Binary files /dev/null and b/public/images/common/korean/left_top_vpn.png differ diff --git a/public/images/common/korean/logo.png b/public/images/common/korean/logo.png new file mode 100644 index 0000000..dd2a384 Binary files /dev/null and b/public/images/common/korean/logo.png differ diff --git a/public/images/common/korean/logo_gray.png b/public/images/common/korean/logo_gray.png new file mode 100644 index 0000000..d504bad Binary files /dev/null and b/public/images/common/korean/logo_gray.png differ diff --git a/public/images/common/korean/logo_side.png b/public/images/common/korean/logo_side.png new file mode 100644 index 0000000..eb1da00 Binary files /dev/null and b/public/images/common/korean/logo_side.png differ diff --git a/public/images/common/korean/main_banner_1.png b/public/images/common/korean/main_banner_1.png new file mode 100644 index 0000000..27f7a25 Binary files /dev/null and b/public/images/common/korean/main_banner_1.png differ diff --git a/public/images/common/korean/main_banner_2.png b/public/images/common/korean/main_banner_2.png new file mode 100644 index 0000000..4f27e7d Binary files /dev/null and b/public/images/common/korean/main_banner_2.png differ diff --git a/public/images/common/korean/main_banner_2.png_old20160417 b/public/images/common/korean/main_banner_2.png_old20160417 new file mode 100644 index 0000000..ffe83d4 Binary files /dev/null and b/public/images/common/korean/main_banner_2.png_old20160417 differ diff --git a/public/images/common/korean/main_banner_2_old.png b/public/images/common/korean/main_banner_2_old.png new file mode 100644 index 0000000..aa7cc9b Binary files /dev/null and b/public/images/common/korean/main_banner_2_old.png differ diff --git a/public/images/common/korean/main_banner_3.png b/public/images/common/korean/main_banner_3.png new file mode 100644 index 0000000..8656dd1 Binary files /dev/null and b/public/images/common/korean/main_banner_3.png differ diff --git a/public/images/common/korean/main_banner_4.png b/public/images/common/korean/main_banner_4.png new file mode 100644 index 0000000..9171f00 Binary files /dev/null and b/public/images/common/korean/main_banner_4.png differ diff --git a/public/images/common/korean/main_banner_5.png b/public/images/common/korean/main_banner_5.png new file mode 100644 index 0000000..1c3b615 Binary files /dev/null and b/public/images/common/korean/main_banner_5.png differ diff --git a/public/images/common/korean/main_banner_6.png b/public/images/common/korean/main_banner_6.png new file mode 100644 index 0000000..69c8482 Binary files /dev/null and b/public/images/common/korean/main_banner_6.png differ diff --git a/public/images/common/korean/main_cont_antivirus.jpg b/public/images/common/korean/main_cont_antivirus.jpg new file mode 100644 index 0000000..669082c Binary files /dev/null and b/public/images/common/korean/main_cont_antivirus.jpg differ diff --git a/public/images/common/korean/main_cont_backup_1.png b/public/images/common/korean/main_cont_backup_1.png new file mode 100644 index 0000000..a1d3408 Binary files /dev/null and b/public/images/common/korean/main_cont_backup_1.png differ diff --git a/public/images/common/korean/main_cont_bypass_1.png b/public/images/common/korean/main_cont_bypass_1.png new file mode 100644 index 0000000..4e9fb9d Binary files /dev/null and b/public/images/common/korean/main_cont_bypass_1.png differ diff --git a/public/images/common/korean/main_cont_colocation_1.png b/public/images/common/korean/main_cont_colocation_1.png new file mode 100644 index 0000000..6b4e441 Binary files /dev/null and b/public/images/common/korean/main_cont_colocation_1.png differ diff --git a/public/images/common/korean/main_cont_domain_1.png b/public/images/common/korean/main_cont_domain_1.png new file mode 100644 index 0000000..8bb3d1d Binary files /dev/null and b/public/images/common/korean/main_cont_domain_1.png differ diff --git a/public/images/common/korean/main_cont_firewall_1.png b/public/images/common/korean/main_cont_firewall_1.png new file mode 100644 index 0000000..5024c3e Binary files /dev/null and b/public/images/common/korean/main_cont_firewall_1.png differ diff --git a/public/images/common/korean/main_cont_fireweb.jpg b/public/images/common/korean/main_cont_fireweb.jpg new file mode 100644 index 0000000..4f08772 Binary files /dev/null and b/public/images/common/korean/main_cont_fireweb.jpg differ diff --git a/public/images/common/korean/main_cont_fowarding.jpg b/public/images/common/korean/main_cont_fowarding.jpg new file mode 100644 index 0000000..af7eaf6 Binary files /dev/null and b/public/images/common/korean/main_cont_fowarding.jpg differ diff --git a/public/images/common/korean/main_cont_hosting_1.png b/public/images/common/korean/main_cont_hosting_1.png new file mode 100644 index 0000000..eebf9ec Binary files /dev/null and b/public/images/common/korean/main_cont_hosting_1.png differ diff --git a/public/images/common/korean/main_cont_hosting_2.png b/public/images/common/korean/main_cont_hosting_2.png new file mode 100644 index 0000000..77b2593 Binary files /dev/null and b/public/images/common/korean/main_cont_hosting_2.png differ diff --git a/public/images/common/korean/main_cont_hosting_2_1.png b/public/images/common/korean/main_cont_hosting_2_1.png new file mode 100644 index 0000000..f0e5dd8 Binary files /dev/null and b/public/images/common/korean/main_cont_hosting_2_1.png differ diff --git a/public/images/common/korean/main_cont_hosting_2_2.png b/public/images/common/korean/main_cont_hosting_2_2.png new file mode 100644 index 0000000..971e899 Binary files /dev/null and b/public/images/common/korean/main_cont_hosting_2_2.png differ diff --git a/public/images/common/korean/main_cont_hosting_3.png b/public/images/common/korean/main_cont_hosting_3.png new file mode 100644 index 0000000..db99bd3 Binary files /dev/null and b/public/images/common/korean/main_cont_hosting_3.png differ diff --git a/public/images/common/korean/main_cont_hosting_3_1.png b/public/images/common/korean/main_cont_hosting_3_1.png new file mode 100644 index 0000000..06136e6 Binary files /dev/null and b/public/images/common/korean/main_cont_hosting_3_1.png differ diff --git a/public/images/common/korean/main_cont_hosting_3_1_160302.png b/public/images/common/korean/main_cont_hosting_3_1_160302.png new file mode 100644 index 0000000..8305fc5 Binary files /dev/null and b/public/images/common/korean/main_cont_hosting_3_1_160302.png differ diff --git a/public/images/common/korean/main_cont_hosting_3_2.png b/public/images/common/korean/main_cont_hosting_3_2.png new file mode 100644 index 0000000..627e401 Binary files /dev/null and b/public/images/common/korean/main_cont_hosting_3_2.png differ diff --git a/public/images/common/korean/main_cont_independence4.png b/public/images/common/korean/main_cont_independence4.png new file mode 100644 index 0000000..f78efff Binary files /dev/null and b/public/images/common/korean/main_cont_independence4.png differ diff --git a/public/images/common/korean/main_cont_independence_1.png b/public/images/common/korean/main_cont_independence_1.png new file mode 100644 index 0000000..a78e399 Binary files /dev/null and b/public/images/common/korean/main_cont_independence_1.png differ diff --git a/public/images/common/korean/main_cont_independence_2.png b/public/images/common/korean/main_cont_independence_2.png new file mode 100644 index 0000000..3a30078 Binary files /dev/null and b/public/images/common/korean/main_cont_independence_2.png differ diff --git a/public/images/common/korean/main_cont_independence_3.png b/public/images/common/korean/main_cont_independence_3.png new file mode 100644 index 0000000..61313f3 Binary files /dev/null and b/public/images/common/korean/main_cont_independence_3.png differ diff --git a/public/images/common/korean/main_cont_independence_4.png b/public/images/common/korean/main_cont_independence_4.png new file mode 100644 index 0000000..1534657 Binary files /dev/null and b/public/images/common/korean/main_cont_independence_4.png differ diff --git a/public/images/common/korean/main_cont_introduce_1.png b/public/images/common/korean/main_cont_introduce_1.png new file mode 100644 index 0000000..145b26a Binary files /dev/null and b/public/images/common/korean/main_cont_introduce_1.png differ diff --git a/public/images/common/korean/main_cont_introduce_2.png b/public/images/common/korean/main_cont_introduce_2.png new file mode 100644 index 0000000..ff98f0b Binary files /dev/null and b/public/images/common/korean/main_cont_introduce_2.png differ diff --git a/public/images/common/korean/main_cont_introduce_2_2.png b/public/images/common/korean/main_cont_introduce_2_2.png new file mode 100644 index 0000000..5accc87 Binary files /dev/null and b/public/images/common/korean/main_cont_introduce_2_2.png differ diff --git a/public/images/common/korean/main_cont_introduce_2_3.png b/public/images/common/korean/main_cont_introduce_2_3.png new file mode 100644 index 0000000..5661548 Binary files /dev/null and b/public/images/common/korean/main_cont_introduce_2_3.png differ diff --git a/public/images/common/korean/main_cont_tns_1.png b/public/images/common/korean/main_cont_tns_1.png new file mode 100644 index 0000000..047179e Binary files /dev/null and b/public/images/common/korean/main_cont_tns_1.png differ diff --git a/public/images/common/korean/main_cont_vas_1.png b/public/images/common/korean/main_cont_vas_1.png new file mode 100644 index 0000000..8a99eb2 Binary files /dev/null and b/public/images/common/korean/main_cont_vas_1.png differ diff --git a/public/images/common/korean/main_cont_vas_2.png b/public/images/common/korean/main_cont_vas_2.png new file mode 100644 index 0000000..ad1b9fd Binary files /dev/null and b/public/images/common/korean/main_cont_vas_2.png differ diff --git a/public/images/common/korean/main_cont_vpn_1.png b/public/images/common/korean/main_cont_vpn_1.png new file mode 100644 index 0000000..019d59e Binary files /dev/null and b/public/images/common/korean/main_cont_vpn_1.png differ diff --git a/public/images/common/korean/main_cont_waf_1.png b/public/images/common/korean/main_cont_waf_1.png new file mode 100644 index 0000000..4a9c9e0 Binary files /dev/null and b/public/images/common/korean/main_cont_waf_1.png differ diff --git a/public/images/common/korean/main_cont_waf_2.png b/public/images/common/korean/main_cont_waf_2.png new file mode 100644 index 0000000..e733d9b Binary files /dev/null and b/public/images/common/korean/main_cont_waf_2.png differ diff --git a/public/images/common/korean/main_cont_waf_3.png b/public/images/common/korean/main_cont_waf_3.png new file mode 100644 index 0000000..01e3727 Binary files /dev/null and b/public/images/common/korean/main_cont_waf_3.png differ diff --git a/public/images/common/korean/main_cont_waf_4.png b/public/images/common/korean/main_cont_waf_4.png new file mode 100644 index 0000000..31b55ba Binary files /dev/null and b/public/images/common/korean/main_cont_waf_4.png differ diff --git a/public/images/common/korean/main_cont_waf_5.png b/public/images/common/korean/main_cont_waf_5.png new file mode 100644 index 0000000..804d63c Binary files /dev/null and b/public/images/common/korean/main_cont_waf_5.png differ diff --git a/public/images/common/korean/main_icon_1.png b/public/images/common/korean/main_icon_1.png new file mode 100644 index 0000000..18e80d4 Binary files /dev/null and b/public/images/common/korean/main_icon_1.png differ diff --git a/public/images/common/korean/main_icon_2.png b/public/images/common/korean/main_icon_2.png new file mode 100644 index 0000000..2e78ccf Binary files /dev/null and b/public/images/common/korean/main_icon_2.png differ diff --git a/public/images/common/korean/main_icon_3.png b/public/images/common/korean/main_icon_3.png new file mode 100644 index 0000000..95e86e2 Binary files /dev/null and b/public/images/common/korean/main_icon_3.png differ diff --git a/public/images/common/korean/main_icon_4.png b/public/images/common/korean/main_icon_4.png new file mode 100644 index 0000000..f6d99a9 Binary files /dev/null and b/public/images/common/korean/main_icon_4.png differ diff --git a/public/images/common/korean/main_icon_cisco.png b/public/images/common/korean/main_icon_cisco.png new file mode 100644 index 0000000..d24fa35 Binary files /dev/null and b/public/images/common/korean/main_icon_cisco.png differ diff --git a/public/images/common/korean/main_icon_corel.png b/public/images/common/korean/main_icon_corel.png new file mode 100644 index 0000000..4bb12f8 Binary files /dev/null and b/public/images/common/korean/main_icon_corel.png differ diff --git a/public/images/common/korean/main_icon_dell.png b/public/images/common/korean/main_icon_dell.png new file mode 100644 index 0000000..c72d858 Binary files /dev/null and b/public/images/common/korean/main_icon_dell.png differ diff --git a/public/images/common/korean/main_icon_hp.png b/public/images/common/korean/main_icon_hp.png new file mode 100644 index 0000000..8788fa8 Binary files /dev/null and b/public/images/common/korean/main_icon_hp.png differ diff --git a/public/images/common/korean/main_icon_ibm.png b/public/images/common/korean/main_icon_ibm.png new file mode 100644 index 0000000..a6a3d22 Binary files /dev/null and b/public/images/common/korean/main_icon_ibm.png differ diff --git a/public/images/common/korean/main_icon_jstream.png b/public/images/common/korean/main_icon_jstream.png new file mode 100644 index 0000000..eacc700 Binary files /dev/null and b/public/images/common/korean/main_icon_jstream.png differ diff --git a/public/images/common/korean/main_icon_kddi.png b/public/images/common/korean/main_icon_kddi.png new file mode 100644 index 0000000..06a79a9 Binary files /dev/null and b/public/images/common/korean/main_icon_kddi.png differ diff --git a/public/images/common/korean/main_icon_lg.png b/public/images/common/korean/main_icon_lg.png new file mode 100644 index 0000000..1164e8f Binary files /dev/null and b/public/images/common/korean/main_icon_lg.png differ diff --git a/public/images/common/korean/main_icon_ns.png b/public/images/common/korean/main_icon_ns.png new file mode 100644 index 0000000..afdb6a5 Binary files /dev/null and b/public/images/common/korean/main_icon_ns.png differ diff --git a/public/images/common/korean/main_icon_ntt.png b/public/images/common/korean/main_icon_ntt.png new file mode 100644 index 0000000..b7f4530 Binary files /dev/null and b/public/images/common/korean/main_icon_ntt.png differ diff --git a/public/images/common/korean/main_icon_partner.png b/public/images/common/korean/main_icon_partner.png new file mode 100644 index 0000000..1f476e6 Binary files /dev/null and b/public/images/common/korean/main_icon_partner.png differ diff --git a/public/images/common/korean/main_icon_red.png b/public/images/common/korean/main_icon_red.png new file mode 100644 index 0000000..cac92a7 Binary files /dev/null and b/public/images/common/korean/main_icon_red.png differ diff --git a/public/images/common/korean/main_icon_slim.png b/public/images/common/korean/main_icon_slim.png new file mode 100644 index 0000000..71dd1cf Binary files /dev/null and b/public/images/common/korean/main_icon_slim.png differ diff --git a/public/images/common/korean/main_icon_softbank.png b/public/images/common/korean/main_icon_softbank.png new file mode 100644 index 0000000..ad5606d Binary files /dev/null and b/public/images/common/korean/main_icon_softbank.png differ diff --git a/public/images/common/korean/main_icon_yahoobb.png b/public/images/common/korean/main_icon_yahoobb.png new file mode 100644 index 0000000..a938651 Binary files /dev/null and b/public/images/common/korean/main_icon_yahoobb.png differ diff --git a/public/images/common/korean/main_icon_yamaha.png b/public/images/common/korean/main_icon_yamaha.png new file mode 100644 index 0000000..bb47856 Binary files /dev/null and b/public/images/common/korean/main_icon_yamaha.png differ diff --git a/public/images/common/korean/main_img.png b/public/images/common/korean/main_img.png new file mode 100644 index 0000000..8c6f323 Binary files /dev/null and b/public/images/common/korean/main_img.png differ diff --git a/public/images/common/korean/main_img_3.png b/public/images/common/korean/main_img_3.png new file mode 100644 index 0000000..587cd02 Binary files /dev/null and b/public/images/common/korean/main_img_3.png differ diff --git a/public/images/common/korean/main_img_addition.png b/public/images/common/korean/main_img_addition.png new file mode 100644 index 0000000..940377d Binary files /dev/null and b/public/images/common/korean/main_img_addition.png differ diff --git a/public/images/common/korean/main_img_colacation.png b/public/images/common/korean/main_img_colacation.png new file mode 100644 index 0000000..535bc89 Binary files /dev/null and b/public/images/common/korean/main_img_colacation.png differ diff --git a/public/images/common/korean/main_img_customer.png b/public/images/common/korean/main_img_customer.png new file mode 100644 index 0000000..535bc89 Binary files /dev/null and b/public/images/common/korean/main_img_customer.png differ diff --git a/public/images/common/korean/main_img_hosting.png b/public/images/common/korean/main_img_hosting.png new file mode 100644 index 0000000..535bc89 Binary files /dev/null and b/public/images/common/korean/main_img_hosting.png differ diff --git a/public/images/common/korean/main_img_independence.png b/public/images/common/korean/main_img_independence.png new file mode 100644 index 0000000..535bc89 Binary files /dev/null and b/public/images/common/korean/main_img_independence.png differ diff --git a/public/images/common/korean/main_img_introduce.png b/public/images/common/korean/main_img_introduce.png new file mode 100644 index 0000000..940377d Binary files /dev/null and b/public/images/common/korean/main_img_introduce.png differ diff --git a/public/images/common/korean/main_img_secure.png b/public/images/common/korean/main_img_secure.png new file mode 100644 index 0000000..8b72fd5 Binary files /dev/null and b/public/images/common/korean/main_img_secure.png differ diff --git a/public/images/common/korean/main_img_vpn.png b/public/images/common/korean/main_img_vpn.png new file mode 100644 index 0000000..535bc89 Binary files /dev/null and b/public/images/common/korean/main_img_vpn.png differ diff --git a/public/images/common/korean/main_link_bookmark.png b/public/images/common/korean/main_link_bookmark.png new file mode 100644 index 0000000..c6e4746 Binary files /dev/null and b/public/images/common/korean/main_link_bookmark.png differ diff --git a/public/images/common/korean/main_link_contact.png b/public/images/common/korean/main_link_contact.png new file mode 100644 index 0000000..ba2b7eb Binary files /dev/null and b/public/images/common/korean/main_link_contact.png differ diff --git a/public/images/common/korean/main_link_home.png b/public/images/common/korean/main_link_home.png new file mode 100644 index 0000000..4e499ad Binary files /dev/null and b/public/images/common/korean/main_link_home.png differ diff --git a/public/images/common/korean/main_link_japan.png b/public/images/common/korean/main_link_japan.png new file mode 100644 index 0000000..05e80c2 Binary files /dev/null and b/public/images/common/korean/main_link_japan.png differ diff --git a/public/images/common/korean/main_link_korea.png b/public/images/common/korean/main_link_korea.png new file mode 100644 index 0000000..68b8a1d Binary files /dev/null and b/public/images/common/korean/main_link_korea.png differ diff --git a/public/images/common/korean/main_tab_1-over.png b/public/images/common/korean/main_tab_1-over.png new file mode 100644 index 0000000..4d6d82a Binary files /dev/null and b/public/images/common/korean/main_tab_1-over.png differ diff --git a/public/images/common/korean/main_tab_1.png b/public/images/common/korean/main_tab_1.png new file mode 100644 index 0000000..f577a96 Binary files /dev/null and b/public/images/common/korean/main_tab_1.png differ diff --git a/public/images/common/korean/main_tab_2-over.png b/public/images/common/korean/main_tab_2-over.png new file mode 100644 index 0000000..ece8b5c Binary files /dev/null and b/public/images/common/korean/main_tab_2-over.png differ diff --git a/public/images/common/korean/main_tab_2.png b/public/images/common/korean/main_tab_2.png new file mode 100644 index 0000000..33ac3e2 Binary files /dev/null and b/public/images/common/korean/main_tab_2.png differ diff --git a/public/images/common/korean/main_tab_bar.png b/public/images/common/korean/main_tab_bar.png new file mode 100644 index 0000000..0a59728 Binary files /dev/null and b/public/images/common/korean/main_tab_bar.png differ diff --git a/public/images/common/korean/main_tab_link.png b/public/images/common/korean/main_tab_link.png new file mode 100644 index 0000000..2185a23 Binary files /dev/null and b/public/images/common/korean/main_tab_link.png differ diff --git a/public/images/common/korean/mng_logo.png b/public/images/common/korean/mng_logo.png new file mode 100644 index 0000000..0df9d57 Binary files /dev/null and b/public/images/common/korean/mng_logo.png differ diff --git a/public/images/common/korean/mnu_01-over.png b/public/images/common/korean/mnu_01-over.png new file mode 100644 index 0000000..e69b6f6 Binary files /dev/null and b/public/images/common/korean/mnu_01-over.png differ diff --git a/public/images/common/korean/mnu_01.png b/public/images/common/korean/mnu_01.png new file mode 100644 index 0000000..4b35599 Binary files /dev/null and b/public/images/common/korean/mnu_01.png differ diff --git a/public/images/common/korean/mnu_02-over.png b/public/images/common/korean/mnu_02-over.png new file mode 100644 index 0000000..2833936 Binary files /dev/null and b/public/images/common/korean/mnu_02-over.png differ diff --git a/public/images/common/korean/mnu_02.png b/public/images/common/korean/mnu_02.png new file mode 100644 index 0000000..72d7e42 Binary files /dev/null and b/public/images/common/korean/mnu_02.png differ diff --git a/public/images/common/korean/mnu_03-over.png b/public/images/common/korean/mnu_03-over.png new file mode 100644 index 0000000..737ec76 Binary files /dev/null and b/public/images/common/korean/mnu_03-over.png differ diff --git a/public/images/common/korean/mnu_03.png b/public/images/common/korean/mnu_03.png new file mode 100644 index 0000000..7109c21 Binary files /dev/null and b/public/images/common/korean/mnu_03.png differ diff --git a/public/images/common/korean/mnu_04-over.png b/public/images/common/korean/mnu_04-over.png new file mode 100644 index 0000000..3bf9c37 Binary files /dev/null and b/public/images/common/korean/mnu_04-over.png differ diff --git a/public/images/common/korean/mnu_04.png b/public/images/common/korean/mnu_04.png new file mode 100644 index 0000000..cb03e15 Binary files /dev/null and b/public/images/common/korean/mnu_04.png differ diff --git a/public/images/common/korean/mnu_05-over.png b/public/images/common/korean/mnu_05-over.png new file mode 100644 index 0000000..f6a43fa Binary files /dev/null and b/public/images/common/korean/mnu_05-over.png differ diff --git a/public/images/common/korean/mnu_05.png b/public/images/common/korean/mnu_05.png new file mode 100644 index 0000000..0ddbb1f Binary files /dev/null and b/public/images/common/korean/mnu_05.png differ diff --git a/public/images/common/korean/mnu_06-over.png b/public/images/common/korean/mnu_06-over.png new file mode 100644 index 0000000..00ee38b Binary files /dev/null and b/public/images/common/korean/mnu_06-over.png differ diff --git a/public/images/common/korean/mnu_06.png b/public/images/common/korean/mnu_06.png new file mode 100644 index 0000000..1e86d7b Binary files /dev/null and b/public/images/common/korean/mnu_06.png differ diff --git a/public/images/common/korean/mnu_07-over.png b/public/images/common/korean/mnu_07-over.png new file mode 100644 index 0000000..ef89f7c Binary files /dev/null and b/public/images/common/korean/mnu_07-over.png differ diff --git a/public/images/common/korean/mnu_07.png b/public/images/common/korean/mnu_07.png new file mode 100644 index 0000000..e3252fa Binary files /dev/null and b/public/images/common/korean/mnu_07.png differ diff --git a/public/images/common/korean/mnu_08-over.png b/public/images/common/korean/mnu_08-over.png new file mode 100644 index 0000000..4f76e63 Binary files /dev/null and b/public/images/common/korean/mnu_08-over.png differ diff --git a/public/images/common/korean/mnu_08.png b/public/images/common/korean/mnu_08.png new file mode 100644 index 0000000..a20108a Binary files /dev/null and b/public/images/common/korean/mnu_08.png differ diff --git a/public/images/common/korean/mnu_09-over.png b/public/images/common/korean/mnu_09-over.png new file mode 100644 index 0000000..9ec105e Binary files /dev/null and b/public/images/common/korean/mnu_09-over.png differ diff --git a/public/images/common/korean/mnu_09.png b/public/images/common/korean/mnu_09.png new file mode 100644 index 0000000..b615dad Binary files /dev/null and b/public/images/common/korean/mnu_09.png differ diff --git a/public/images/common/korean/old_left_menu_secure_1-over.png b/public/images/common/korean/old_left_menu_secure_1-over.png new file mode 100644 index 0000000..0a4446c Binary files /dev/null and b/public/images/common/korean/old_left_menu_secure_1-over.png differ diff --git a/public/images/common/korean/old_left_menu_secure_1.-over.png b/public/images/common/korean/old_left_menu_secure_1.-over.png new file mode 100644 index 0000000..0a4446c Binary files /dev/null and b/public/images/common/korean/old_left_menu_secure_1.-over.png differ diff --git a/public/images/common/korean/old_left_menu_secure_1.png b/public/images/common/korean/old_left_menu_secure_1.png new file mode 100644 index 0000000..94489d1 Binary files /dev/null and b/public/images/common/korean/old_left_menu_secure_1.png differ diff --git a/public/images/common/korean/old_left_menu_secure_2-over.png b/public/images/common/korean/old_left_menu_secure_2-over.png new file mode 100644 index 0000000..11d3714 Binary files /dev/null and b/public/images/common/korean/old_left_menu_secure_2-over.png differ diff --git a/public/images/common/korean/old_left_menu_secure_2.-over.png b/public/images/common/korean/old_left_menu_secure_2.-over.png new file mode 100644 index 0000000..eb399b2 Binary files /dev/null and b/public/images/common/korean/old_left_menu_secure_2.-over.png differ diff --git a/public/images/common/korean/old_left_menu_secure_2.png b/public/images/common/korean/old_left_menu_secure_2.png new file mode 100644 index 0000000..8d0f228 Binary files /dev/null and b/public/images/common/korean/old_left_menu_secure_2.png differ diff --git a/public/images/common/korean/old_page_title_secure_1.png b/public/images/common/korean/old_page_title_secure_1.png new file mode 100644 index 0000000..263e25a Binary files /dev/null and b/public/images/common/korean/old_page_title_secure_1.png differ diff --git a/public/images/common/korean/page_title_addition_1.png b/public/images/common/korean/page_title_addition_1.png new file mode 100644 index 0000000..a7259c9 Binary files /dev/null and b/public/images/common/korean/page_title_addition_1.png differ diff --git a/public/images/common/korean/page_title_addition_2.png b/public/images/common/korean/page_title_addition_2.png new file mode 100644 index 0000000..4fa23a6 Binary files /dev/null and b/public/images/common/korean/page_title_addition_2.png differ diff --git a/public/images/common/korean/page_title_addition_3.png b/public/images/common/korean/page_title_addition_3.png new file mode 100644 index 0000000..03507d3 Binary files /dev/null and b/public/images/common/korean/page_title_addition_3.png differ diff --git a/public/images/common/korean/page_title_addition_4.png b/public/images/common/korean/page_title_addition_4.png new file mode 100644 index 0000000..ae46cd9 Binary files /dev/null and b/public/images/common/korean/page_title_addition_4.png differ diff --git a/public/images/common/korean/page_title_addition_5.png b/public/images/common/korean/page_title_addition_5.png new file mode 100644 index 0000000..2565f6d Binary files /dev/null and b/public/images/common/korean/page_title_addition_5.png differ diff --git a/public/images/common/korean/page_title_colacation_1.png b/public/images/common/korean/page_title_colacation_1.png new file mode 100644 index 0000000..eccbfa5 Binary files /dev/null and b/public/images/common/korean/page_title_colacation_1.png differ diff --git a/public/images/common/korean/page_title_colacation_2.png b/public/images/common/korean/page_title_colacation_2.png new file mode 100644 index 0000000..c25df36 Binary files /dev/null and b/public/images/common/korean/page_title_colacation_2.png differ diff --git a/public/images/common/korean/page_title_colacation_3.png b/public/images/common/korean/page_title_colacation_3.png new file mode 100644 index 0000000..9127c77 Binary files /dev/null and b/public/images/common/korean/page_title_colacation_3.png differ diff --git a/public/images/common/korean/page_title_customer_1.png b/public/images/common/korean/page_title_customer_1.png new file mode 100644 index 0000000..4cdccb2 Binary files /dev/null and b/public/images/common/korean/page_title_customer_1.png differ diff --git a/public/images/common/korean/page_title_customer_2.png b/public/images/common/korean/page_title_customer_2.png new file mode 100644 index 0000000..328db74 Binary files /dev/null and b/public/images/common/korean/page_title_customer_2.png differ diff --git a/public/images/common/korean/page_title_customer_3.png b/public/images/common/korean/page_title_customer_3.png new file mode 100644 index 0000000..e99f7b8 Binary files /dev/null and b/public/images/common/korean/page_title_customer_3.png differ diff --git a/public/images/common/korean/page_title_customer_4.png b/public/images/common/korean/page_title_customer_4.png new file mode 100644 index 0000000..d8348ec Binary files /dev/null and b/public/images/common/korean/page_title_customer_4.png differ diff --git a/public/images/common/korean/page_title_customer_5.png b/public/images/common/korean/page_title_customer_5.png new file mode 100644 index 0000000..2b6d235 Binary files /dev/null and b/public/images/common/korean/page_title_customer_5.png differ diff --git a/public/images/common/korean/page_title_customer_6.png b/public/images/common/korean/page_title_customer_6.png new file mode 100644 index 0000000..13286ab Binary files /dev/null and b/public/images/common/korean/page_title_customer_6.png differ diff --git a/public/images/common/korean/page_title_customer_7.png b/public/images/common/korean/page_title_customer_7.png new file mode 100644 index 0000000..04211e6 Binary files /dev/null and b/public/images/common/korean/page_title_customer_7.png differ diff --git a/public/images/common/korean/page_title_hosting_1.png b/public/images/common/korean/page_title_hosting_1.png new file mode 100644 index 0000000..e38e110 Binary files /dev/null and b/public/images/common/korean/page_title_hosting_1.png differ diff --git a/public/images/common/korean/page_title_hosting_2.png b/public/images/common/korean/page_title_hosting_2.png new file mode 100644 index 0000000..f1ef74f Binary files /dev/null and b/public/images/common/korean/page_title_hosting_2.png differ diff --git a/public/images/common/korean/page_title_hosting_3.png b/public/images/common/korean/page_title_hosting_3.png new file mode 100644 index 0000000..74169d2 Binary files /dev/null and b/public/images/common/korean/page_title_hosting_3.png differ diff --git a/public/images/common/korean/page_title_independence_1.png b/public/images/common/korean/page_title_independence_1.png new file mode 100644 index 0000000..6acd1b4 Binary files /dev/null and b/public/images/common/korean/page_title_independence_1.png differ diff --git a/public/images/common/korean/page_title_independence_2.png b/public/images/common/korean/page_title_independence_2.png new file mode 100644 index 0000000..1ddaeeb Binary files /dev/null and b/public/images/common/korean/page_title_independence_2.png differ diff --git a/public/images/common/korean/page_title_independence_3.png b/public/images/common/korean/page_title_independence_3.png new file mode 100644 index 0000000..87df084 Binary files /dev/null and b/public/images/common/korean/page_title_independence_3.png differ diff --git a/public/images/common/korean/page_title_independence_4.png b/public/images/common/korean/page_title_independence_4.png new file mode 100644 index 0000000..3dd552b Binary files /dev/null and b/public/images/common/korean/page_title_independence_4.png differ diff --git a/public/images/common/korean/page_title_introduce_1.png b/public/images/common/korean/page_title_introduce_1.png new file mode 100644 index 0000000..b3fd02d Binary files /dev/null and b/public/images/common/korean/page_title_introduce_1.png differ diff --git a/public/images/common/korean/page_title_introduce_2.png b/public/images/common/korean/page_title_introduce_2.png new file mode 100644 index 0000000..2159b8b Binary files /dev/null and b/public/images/common/korean/page_title_introduce_2.png differ diff --git a/public/images/common/korean/page_title_introduce_3.png b/public/images/common/korean/page_title_introduce_3.png new file mode 100644 index 0000000..1acdbd1 Binary files /dev/null and b/public/images/common/korean/page_title_introduce_3.png differ diff --git a/public/images/common/korean/page_title_introduce_4.png b/public/images/common/korean/page_title_introduce_4.png new file mode 100644 index 0000000..aa7aba3 Binary files /dev/null and b/public/images/common/korean/page_title_introduce_4.png differ diff --git a/public/images/common/korean/page_title_secure_1.png b/public/images/common/korean/page_title_secure_1.png new file mode 100644 index 0000000..123abe7 Binary files /dev/null and b/public/images/common/korean/page_title_secure_1.png differ diff --git a/public/images/common/korean/page_title_secure_2.png b/public/images/common/korean/page_title_secure_2.png new file mode 100644 index 0000000..32439b5 Binary files /dev/null and b/public/images/common/korean/page_title_secure_2.png differ diff --git a/public/images/common/korean/page_title_secure_3.png b/public/images/common/korean/page_title_secure_3.png new file mode 100644 index 0000000..76f52d6 Binary files /dev/null and b/public/images/common/korean/page_title_secure_3.png differ diff --git a/public/images/common/korean/page_title_vpn_1.png b/public/images/common/korean/page_title_vpn_1.png new file mode 100644 index 0000000..efa195f Binary files /dev/null and b/public/images/common/korean/page_title_vpn_1.png differ diff --git a/public/images/common/korean/page_title_vpn_2.png b/public/images/common/korean/page_title_vpn_2.png new file mode 100644 index 0000000..8ee2c5b Binary files /dev/null and b/public/images/common/korean/page_title_vpn_2.png differ diff --git a/public/images/common/korean/popup/idcjp.png b/public/images/common/korean/popup/idcjp.png new file mode 100644 index 0000000..c9149e9 Binary files /dev/null and b/public/images/common/korean/popup/idcjp.png differ diff --git a/public/images/common/korean/popup/idcjp2018.png b/public/images/common/korean/popup/idcjp2018.png new file mode 100644 index 0000000..697ccd4 Binary files /dev/null and b/public/images/common/korean/popup/idcjp2018.png differ diff --git a/public/images/common/korean/popup/idcjp_coupon.png b/public/images/common/korean/popup/idcjp_coupon.png new file mode 100644 index 0000000..8c710ce Binary files /dev/null and b/public/images/common/korean/popup/idcjp_coupon.png differ diff --git a/public/images/common/korean/popup/idcjp_server.png b/public/images/common/korean/popup/idcjp_server.png new file mode 100644 index 0000000..f86859c Binary files /dev/null and b/public/images/common/korean/popup/idcjp_server.png differ diff --git a/public/images/common/korean/popup/worldcupevent.png b/public/images/common/korean/popup/worldcupevent.png new file mode 100644 index 0000000..347ffe5 Binary files /dev/null and b/public/images/common/korean/popup/worldcupevent.png differ diff --git a/public/images/common/korean/popup01.png b/public/images/common/korean/popup01.png new file mode 100644 index 0000000..97a93bf Binary files /dev/null and b/public/images/common/korean/popup01.png differ diff --git a/public/images/common/korean/side_left_title.png b/public/images/common/korean/side_left_title.png new file mode 100644 index 0000000..22ac2ae Binary files /dev/null and b/public/images/common/korean/side_left_title.png differ diff --git a/public/images/common/korean/side_right_title.gif b/public/images/common/korean/side_right_title.gif new file mode 100644 index 0000000..a0cac9e Binary files /dev/null and b/public/images/common/korean/side_right_title.gif differ diff --git a/public/images/common/mimetypes/48/excel.png b/public/images/common/mimetypes/48/excel.png new file mode 100644 index 0000000..e67fc00 Binary files /dev/null and b/public/images/common/mimetypes/48/excel.png differ diff --git a/public/index.php b/public/index.php new file mode 100644 index 0000000..96e7f45 --- /dev/null +++ b/public/index.php @@ -0,0 +1,67 @@ +systemDirectory, '\\/ ') . DIRECTORY_SEPARATOR . 'bootstrap.php'; + +// Load environment settings from .env files into $_SERVER and $_ENV +require_once SYSTEMPATH . 'Config/DotEnv.php'; +(new CodeIgniter\Config\DotEnv(ROOTPATH))->load(); + +/* + * --------------------------------------------------------------- + * GRAB OUR CODEIGNITER INSTANCE + * --------------------------------------------------------------- + * + * The CodeIgniter class contains the core functionality to make + * the application run, and does all of the dirty work to get + * the pieces all working together. + */ + +$app = Config\Services::codeigniter(); +$app->initialize(); +$context = is_cli() ? 'php-cli' : 'web'; +$app->setContext($context); + +/* + *--------------------------------------------------------------- + * LAUNCH THE APPLICATION + *--------------------------------------------------------------- + * Now that everything is setup, it's time to actually fire + * up the engines and make this app do its thang. + */ + +$app->run(); diff --git a/public/js/admin.js b/public/js/admin.js new file mode 100644 index 0000000..ec32e90 --- /dev/null +++ b/public/js/admin.js @@ -0,0 +1,104 @@ +/* ------------------------------------------------------------ + * Name : admin.js + * Desc : Admin Javascrip + * Created : 2016/9/11 Tri-aBility by Junheum,Choi + * Updated : + ------------------------------------------------------------ */ +function trim(str){ + return this.replace(/(^\s*)|(\s*$)/gi, ""); +} + +//오른쪽에 위 화살표 방향버튼용 +/*$(document).ready(function(){ + $('body').append('
'); + $("#toTop").bind("click", function () {$("body").animate({ scrollTop: 0 }, 200);}); + $(window).scroll(function () { + if ($(this).scrollTop() != 0) { + $('#toTop').fadeIn(); + } else { + $('#toTop').fadeOut(); + } + }); +}); +//오른쪽에 위 화살표 방향버튼용 +//오른쪽에 아래 화살표 방향버튼용 +$(document).ready(function(){ + $('body').append('
'); + $("#toBottom").bind("click", function () {$("body").animate({ scrollTop: 200000 }, 200);}); + $(window).scroll(function () { + if ($(this).scrollTop() != 0) { + $('#toBottom').fadeIn(); + } else { + $('#toBottom').fadeIn(); + } + }); +});*/ +//오른쪽에 아래 화살표 방향버튼용 + +function is_NumericKey(evt,obj){ + var charCode = (evt.which) ? evt.which : event.keyCode; + switch(charCode){ + case 48://0 + case 49://1 + case 50://2 + case 51://3 + case 52://4 + case 53://5 + case 54://6 + case 55://7 + case 56://8 + case 57://9 + case 96://KeyPad:0 + case 97://KeyPad:1 + case 98://KeyPad:2 + case 99://KeyPad:3 + case 100://KeyPad:4 + case 101://KeyPad:5 + case 102://KeyPad:6 + case 103://KeyPad:7 + case 104://KeyPad:8 + case 105://KeyPad:9 + break; + default: + alert('숫자만 가능합니다['+charCode+']'); + obj.value = obj.value.substring(0,obj.value.length-1); + break; + } +} +function is_NumericType(data){ + if(!data.match(/^[0-9]+$/)){ + throw (new Error('숫자가 아닌값['+data+']이 있습니다')); + } + return true; +}// +function change_CurrencyFormat(obj,currencies){ + //var currencies = document.getElementsByClassName("currency"); + var total_currency = 0; + for(i=0; i { alert("복사가 완료되었습니다."); }) + .catch(err => { console.log('복사가 오류', err); }) +} \ No newline at end of file diff --git a/public/js/admin/left_menu.js b/public/js/admin/left_menu.js new file mode 100644 index 0000000..cba093e --- /dev/null +++ b/public/js/admin/left_menu.js @@ -0,0 +1,14 @@ +function sideMenuToggle (){ + var accordion = $(".accordion")[0]; + // console.log(accordion.clientWidth); + if (accordion.clientWidth == 0){ + accordion.style.display = "block"; + $("#left_menu").css({ "width": '250px' }) + $("#menu_button").html("메뉴닫기"); + } + else { + accordion.style.display = "none"; + $("#left_menu").css({"width":'28px'}) + $("#menu_button").html("메뉴열기"); + } +}//toggleMenu \ No newline at end of file diff --git a/public/js/empty.js b/public/js/empty.js new file mode 100644 index 0000000..f973e71 --- /dev/null +++ b/public/js/empty.js @@ -0,0 +1,6 @@ +/* ------------------------------------------------------------ + * Name : front.js + * Desc : Front Javascrip + * Created : 2016/9/11 Tri-aBility by Junheum,Choi + * Updated : + ------------------------------------------------------------ */ diff --git a/public/js/front.js b/public/js/front.js new file mode 100644 index 0000000..d70189f --- /dev/null +++ b/public/js/front.js @@ -0,0 +1,93 @@ +/* ------------------------------------------------------------ + * Name : front.js + * Desc : Front Javascrip + * Created : 2016/9/11 Tri-aBility by Junheum,Choi + * Updated : + ------------------------------------------------------------ */ + +function trim(str){ + return this.replace(/(^\s*)|(\s*$)/gi, ""); +}// + +function bookmarksite(title,url) { + if (window.sidebar) // firefox + window.sidebar.addPanel(title, url, ""); + else if(window.opera && window.print){ // opera + var elem = document.createElement('a'); + elem.setAttribute('href',url); + elem.setAttribute('title',title); + elem.setAttribute('rel','sidebar'); + elem.click(); + } + else if(document.all) // ie + window.external.AddFavorite(url, title); +}// + +function captcha_refresh(refresh_url) { + $.ajax({ + type: 'POST', + url: refresh_url, + success: function(data, status, xhr){ + if(data) + $('#captcha_span').html(data); + }, + error: function(jqXHR, textStatus, errorThrown) { + console.log(jqXHR.responseText); + console.log(textStatus+'=>'+errorThrown); + } + });//ajax +}// + +function is_NumericKey(evt,obj){ + var charCode = (evt.which) ? evt.which : event.keyCode; + switch(charCode){ + case 48://0 + case 49://1 + case 50://2 + case 51://3 + case 52://4 + case 53://5 + case 54://6 + case 55://7 + case 56://8 + case 57://9 + case 96://KeyPad:0 + case 97://KeyPad:1 + case 98://KeyPad:2 + case 99://KeyPad:3 + case 100://KeyPad:4 + case 101://KeyPad:5 + case 102://KeyPad:6 + case 103://KeyPad:7 + case 104://KeyPad:8 + case 105://KeyPad:9 + break; + default: + alert('숫자만 가능합니다['+charCode+']'); + obj.value = obj.value.substring(0,obj.value.length-1); + break; + } +} +function is_NumericType(data){ + if(!data.match(/^[0-9]+$/)){ + throw (new Error('숫자가 아닌값['+data+']이 있습니다')); + } + return true; +}// +function change_CurrencyFormat(obj,currencies){ + //var currencies = document.getElementsByClassName("currency"); + var total_currency = 0; + for(i=0; i= 0) return 20; + return marginTop; + } + }); +}); diff --git a/public/js/front/top_banner.js b/public/js/front/top_banner.js new file mode 100644 index 0000000..99b8e5b --- /dev/null +++ b/public/js/front/top_banner.js @@ -0,0 +1,47 @@ +/** + * Top_banner + */ +jQuery(document).ready(function ($) { + var jssor_1_SlideoTransitions = [ + [{b:-1,d:1,o:-1},{b:0,d:1000,o:1}], + [{b:1900,d:2000,x:-379,e:{x:7}}], + [{b:1900,d:2000,x:-379,e:{x:7}}], + [{b:-1,d:1,o:-1,r:288,sX:9,sY:9},{b:1000,d:900,x:-1400,y:-660,o:1,r:-288,sX:-9,sY:-9,e:{r:6}},{b:1900,d:1600,x:-200,o:-1,e:{x:16}}] + ]; + + var jssor_1_options = { + $AutoPlay: true, + $SlideDuration: 800, + $SlideEasing: $Jease$.$OutQuint, + $CaptionSliderOptions: { + $Class: $JssorCaptionSlideo$, + $Transitions: jssor_1_SlideoTransitions + }, + $ArrowNavigatorOptions: { + $Class: $JssorArrowNavigator$ + }, + $BulletNavigatorOptions: { + $Class: $JssorBulletNavigator$ + } + }; + + var jssor_1_slider = new $JssorSlider$("jssor_1", jssor_1_options); + + /*responsive code begin*/ + /*you can remove responsive code if you don't want the slider scales while window resizing*/ + function ScaleSlider() { + var refSize = jssor_1_slider.$Elmt.parentNode.clientWidth; + if (refSize) { + refSize = Math.min(refSize, 1920); + jssor_1_slider.$ScaleWidth(refSize); + } + else { + window.setTimeout(ScaleSlider, 30); + } + } + ScaleSlider(); + $(window).bind("load", ScaleSlider); + $(window).bind("resize", ScaleSlider); + $(window).bind("orientationchange", ScaleSlider); + /*responsive code end*/ +}); \ No newline at end of file diff --git a/public/js/front/welcome_left_banner.js b/public/js/front/welcome_left_banner.js new file mode 100644 index 0000000..c335f84 --- /dev/null +++ b/public/js/front/welcome_left_banner.js @@ -0,0 +1,14 @@ +/** + * Welcome_left_banner + */ +$("#left_menu_slideshow > div:gt(0)").hide(); + +setInterval(function() { + $('#left_menu_slideshow > div:first') + .fadeOut(1000) + .next() + .fadeIn(1000) + .end() + .appendTo('#left_menu_slideshow'); +},10000); + diff --git a/public/js/front/welcome_partner_banner.js b/public/js/front/welcome_partner_banner.js new file mode 100644 index 0000000..30a7e23 --- /dev/null +++ b/public/js/front/welcome_partner_banner.js @@ -0,0 +1,86 @@ +/** + * Partner + */ +//moveType (0:left / 1:right) +var moveType = 1; +// 이동시간간격 3초 +var moveSpeed = 3000; +// 움직이는 작업중 다시 명령 받지 않음 +var moveWork = false; +// 일시정지 flag +var movePause = false; +function imgMove(){ + if(moveWork==false){ + // 0d\일경우 left방향 + if(moveType==0){ + // 맨처음 이미지의 폭 + var aWidth = $(".RollDiv > div > a:first").width(); + // 롤링마지막에 맨처음의 a태그 추가 + $(".RollDiv > div").append(" div > a:first").attr("href")+"\">" + $(".RollDiv > div > a:first").html()+ ""); + // 맨처음이미지를 왼쪽으로 이동시킨다. + $(".RollDiv > div > a:first").animate({marginLeft:-aWidth},{ + duration:moveSpeed, + step:function(){ + // 이동중 만약 일시정지 flag가 true라면 + if(movePause==true){// 이동을 멈춘다 + $(this).stop(); + } + }, + complete:function(){ + // 이동을 마친후 첫번째 a태그를 지워버린다 + $(this).remove(); + // 이미지 움직이는것을 다시 실행 + imgMove(); + } + }); + }else{ + // 마지막 a태그의 폭 + var aWidth = $(".RollDiv > div > a:last").width(); + // a태그 앞에 마지막의 a태그를 생성한다 단 스타일은 마지막 a태그의 폭만큼 빼준다 + $(" div > a:last").attr("href")+ "\" style=\"margin-left:-" + aWidth + "px\">" + $(".RollDiv > div > a:last").html()+ "").insertBefore(".RollDiv > div > a:first") + // 맨처음 a태그의 margin-left를 다시 0으로 맞춰준다. + $(".RollDiv > div > a:first").animate({marginLeft:0},{ + duration:moveSpeed,step:function(){ + // 이동중 만약 일시정지 flag가 true라면 + if(movePause==true){ + // 이동을 멈춘다 + $(this).stop(); + } + }, + complete:function(){ + // 이동을 마친후 마지막 a태그를 지워버린다 + $(".RollDiv > div > a:last").remove(); + // 이미지 움직이는것을 다시 실행 + imgMove(); + } + }); + } + } +} +function goMove(){ + // 일시정지가 풀려있을 경우를 대비하여 일시정지를 풀러준다 + movePause=false; + // 0d\일경우 left방향 + if(moveType==0){ + imgMove(); + }else{ + $(".RollDiv > div > a:first").animate({marginLeft:0},{ + duration:moveSpeed,step:function(){ + // 이동중 만약 일시정지 flag가 true라면 + if(movePause==true){ + // 이동을 멈춘다 + $(this).stop(); + } + }, + complete:function(){ + // 이동을 마친후 마지막 a태그를 지워버린다 + //$(".RollDiv > div > a:last").remove(); + // 이미지 움직이는것을 다시 실행 + imgMove(); + } + }); + } +} +imgMove(); +$('.btn_left').mouseover(function(){ moveType=0; }); +$('.btn_right').mouseover(function(){ moveType=1; }); \ No newline at end of file diff --git a/public/js/front/zeta-menu.js b/public/js/front/zeta-menu.js new file mode 100644 index 0000000..357acc7 --- /dev/null +++ b/public/js/front/zeta-menu.js @@ -0,0 +1,15 @@ +/** + * Zeta-Menu width JQuery + */ +$(function(){ + $(".zeta-menu li").hover( + function(){ $('ul:first',this).show(); }, + function(){ $('ul:first',this).hide(); } + ); + $(".zeta-menu>li:has(ul)>a").each( + function() { $(this).html( $(this).html()+' ∨' ); } + ); + $(".zeta-menu ul li:has(ul)") + .find("a:first") + .append("

"); +}); \ No newline at end of file diff --git a/public/js/popup.js b/public/js/popup.js new file mode 100644 index 0000000..386a2ac --- /dev/null +++ b/public/js/popup.js @@ -0,0 +1,54 @@ +function openWin( winName ) { + var blnCookie = getCookie( winName ); + var obj = eval( "window." + winName ); + if( !blnCookie ) { + obj.style.display = "block"; + } +} + +function closeWin(winName, expiredays) { + setCookie( winName, "done" , expiredays); + var obj = eval( "window." + winName ); + obj.style.display = "none"; +} +function closeWinAt00(winName, expiredays) { + setCookieAt00( winName, "done" , expiredays); + var obj = eval( "window." + winName ); + obj.style.display = "none"; +} + +function getCookie( name ) { + var nameOfCookie = name + "="; + var x = 0; + while ( x <= document.cookie.length ) + { + var y = (x+nameOfCookie.length); + if ( document.cookie.substring( x, y ) == nameOfCookie ) { + if ( (endOfCookie=document.cookie.indexOf( ";", y )) == -1 ) + endOfCookie = document.cookie.length; + return unescape( document.cookie.substring( y, endOfCookie ) ); + } + x = document.cookie.indexOf( " ", x ) + 1; + if ( x == 0 ) + break; + } + return ""; +} + + +function setCookie( name, value, expiredays ) { + var todayDate = new Date(); + todayDate.setDate( todayDate.getDate() + expiredays ); + document.cookie = name + "=" + escape( value ) + "; path=/; expires=" + todayDate.toGMTString() + ";" +} + +function setCookieAt00( name, value, expiredays ) { + var todayDate = new Date(); + todayDate = new Date(parseInt(todayDate.getTime() / 86400000) * 86400000 + 54000000); + if ( todayDate > new Date() ) + { + expiredays = expiredays - 1; + } + todayDate.setDate( todayDate.getDate() + expiredays ); + document.cookie = name + "=" + escape( value ) + "; path=/; expires=" + todayDate.toGMTString() + ";" +} \ No newline at end of file diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 0000000..9e60f97 --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,2 @@ +User-agent: * +Disallow: diff --git a/spark b/spark new file mode 100644 index 0000000..f2ba3f3 --- /dev/null +++ b/spark @@ -0,0 +1,99 @@ +#!/usr/bin/env php + + * + * For the full copyright and license information, please view + * the LICENSE file that was distributed with this source code. + */ + +/* + * -------------------------------------------------------------------- + * CodeIgniter command-line tools + * -------------------------------------------------------------------- + * The main entry point into the CLI system and allows you to run + * commands and perform maintenance on your application. + * + * Because CodeIgniter can handle CLI requests as just another web request + * this class mainly acts as a passthru to the framework itself. + */ + +// Refuse to run when called from php-cgi +if (strpos(PHP_SAPI, 'cgi') === 0) { + exit("The cli tool is not supported when running php-cgi. It needs php-cli to function!\n\n"); +} + +// Check PHP version. +$minPhpVersion = '7.4'; // If you update this, don't forget to update `public/index.php`. +if (version_compare(PHP_VERSION, $minPhpVersion, '<')) { + $message = sprintf( + 'Your PHP version must be %s or higher to run CodeIgniter. Current version: %s', + $minPhpVersion, + PHP_VERSION + ); + + exit($message); +} + +// We want errors to be shown when using it from the CLI. +error_reporting(-1); +ini_set('display_errors', '1'); + +/** + * @var bool + * + * @deprecated No longer in use. `CodeIgniter` has `$context` property. + */ +define('SPARKED', true); + +// Path to the front controller +define('FCPATH', __DIR__ . DIRECTORY_SEPARATOR . 'public' . DIRECTORY_SEPARATOR); + +// Ensure the current directory is pointing to the front controller's directory +chdir(FCPATH); + +/* + *--------------------------------------------------------------- + * BOOTSTRAP THE APPLICATION + *--------------------------------------------------------------- + * This process sets up the path constants, loads and registers + * our autoloader, along with Composer's, loads our constants + * and fires up an environment-specific bootstrapping. + */ + +// Load our paths config file +// This is the line that might need to be changed, depending on your folder structure. +require FCPATH . '../app/Config/Paths.php'; +// ^^^ Change this line if you move your application folder + +$paths = new Config\Paths(); + +// Location of the framework bootstrap file. +require rtrim($paths->systemDirectory, '\\/ ') . DIRECTORY_SEPARATOR . 'bootstrap.php'; + +// Load environment settings from .env files into $_SERVER and $_ENV +require_once SYSTEMPATH . 'Config/DotEnv.php'; +(new CodeIgniter\Config\DotEnv(ROOTPATH))->load(); + +// Grab our CodeIgniter +$app = Config\Services::codeigniter(); +$app->initialize(); + +// Grab our Console +$console = new CodeIgniter\CLI\Console(); + +// Show basic information before we do anything else. +if (is_int($suppress = array_search('--no-header', $_SERVER['argv'], true))) { + unset($_SERVER['argv'][$suppress]); // @codeCoverageIgnore + $suppress = true; +} + +$console->showHeader($suppress); + +// fire off the command in the main framework. +$exit = $console->run(); + +exit(is_int($exit) ? $exit : EXIT_SUCCESS); diff --git a/tests/README.md b/tests/README.md new file mode 100644 index 0000000..473d0f8 --- /dev/null +++ b/tests/README.md @@ -0,0 +1,122 @@ +# Running Application Tests + +This is the quick-start to CodeIgniter testing. Its intent is to describe what +it takes to set up your application and get it ready to run unit tests. +It is not intended to be a full description of the test features that you can +use to test your application. Those details can be found in the documentation. + +## Resources + +* [CodeIgniter 4 User Guide on Testing](https://codeigniter4.github.io/userguide/testing/index.html) +* [PHPUnit docs](https://phpunit.de/documentation.html) +* [Any tutorials on Unit testing in CI4?](https://forum.codeigniter.com/showthread.php?tid=81830) + +## Requirements + +It is recommended to use the latest version of PHPUnit. At the time of this +writing we are running version 9.x. Support for this has been built into the +**composer.json** file that ships with CodeIgniter and can easily be installed +via [Composer](https://getcomposer.org/) if you don't already have it installed globally. + +```console +> composer install +``` + +If running under macOS or Linux, you can create a symbolic link to make running tests a touch nicer. + +```console +> ln -s ./vendor/bin/phpunit ./phpunit +``` + +You also need to install [XDebug](https://xdebug.org/docs/install) in order +for code coverage to be calculated successfully. After installing `XDebug`, you must add `xdebug.mode=coverage` in the **php.ini** file to enable code coverage. + +## Setting Up + +A number of the tests use a running database. +In order to set up the database edit the details for the `tests` group in +**app/Config/Database.php** or **phpunit.xml**. +Make sure that you provide a database engine that is currently running on your machine. +More details on a test database setup are in the +[Testing Your Database](https://codeigniter4.github.io/userguide/testing/database.html) section of the documentation. + +## Running the tests + +The entire test suite can be run by simply typing one command-line command from the main directory. + +```console +> ./phpunit +``` + +If you are using Windows, use the following command. + +```console +> vendor\bin\phpunit +``` + +You can limit tests to those within a single test directory by specifying the +directory name after phpunit. + +```console +> ./phpunit app/Models +``` + +## Generating Code Coverage + +To generate coverage information, including HTML reports you can view in your browser, +you can use the following command: + +```console +> ./phpunit --colors --coverage-text=tests/coverage.txt --coverage-html=tests/coverage/ -d memory_limit=1024m +``` + +This runs all of the tests again collecting information about how many lines, +functions, and files are tested. It also reports the percentage of the code that is covered by tests. +It is collected in two formats: a simple text file that provides an overview as well +as a comprehensive collection of HTML files that show the status of every line of code in the project. + +The text file can be found at **tests/coverage.txt**. +The HTML files can be viewed by opening **tests/coverage/index.html** in your favorite browser. + +## PHPUnit XML Configuration + +The repository has a ``phpunit.xml.dist`` file in the project root that's used for +PHPUnit configuration. This is used to provide a default configuration if you +do not have your own configuration file in the project root. + +The normal practice would be to copy ``phpunit.xml.dist`` to ``phpunit.xml`` +(which is git ignored), and to tailor it as you see fit. +For instance, you might wish to exclude database tests, or automatically generate +HTML code coverage reports. + +## Test Cases + +Every test needs a *test case*, or class that your tests extend. CodeIgniter 4 +provides a few that you may use directly: +* `CodeIgniter\Test\CIUnitTestCase` - for basic tests with no other service needs +* `CodeIgniter\Test\DatabaseTestTrait` - for tests that need database access + +Most of the time you will want to write your own test cases to hold functions and services +common to your test suites. + +## Creating Tests + +All tests go in the **tests/** directory. Each test file is a class that extends a +**Test Case** (see above) and contains methods for the individual tests. These method +names must start with the word "test" and should have descriptive names for precisely what +they are testing: +`testUserCanModifyFile()` `testOutputColorMatchesInput()` `testIsLoggedInFailsWithInvalidUser()` + +Writing tests is an art, and there are many resources available to help learn how. +Review the links above and always pay attention to your code coverage. + +### Database Tests + +Tests can include migrating, seeding, and testing against a mock or live1 database. +Be sure to modify the test case (or create your own) to point to your seed and migrations +and include any additional steps to be run before tests in the `setUp()` method. + +1 Note: If you are using database tests that require a live database connection +you will need to rename **phpunit.xml.dist** to **phpunit.xml**, uncomment the database +configuration lines and add your connection details. Prevent **phpunit.xml** from being +tracked in your repo by adding it to **.gitignore**. diff --git a/tests/_support/Database/Migrations/2020-02-22-222222_example_migration.php b/tests/_support/Database/Migrations/2020-02-22-222222_example_migration.php new file mode 100644 index 0000000..2bbdcfe --- /dev/null +++ b/tests/_support/Database/Migrations/2020-02-22-222222_example_migration.php @@ -0,0 +1,37 @@ +forge->addField('id'); + $this->forge->addField([ + 'name' => ['type' => 'varchar', 'constraint' => 31], + 'uid' => ['type' => 'varchar', 'constraint' => 31], + 'class' => ['type' => 'varchar', 'constraint' => 63], + 'icon' => ['type' => 'varchar', 'constraint' => 31], + 'summary' => ['type' => 'varchar', 'constraint' => 255], + 'created_at' => ['type' => 'datetime', 'null' => true], + 'updated_at' => ['type' => 'datetime', 'null' => true], + 'deleted_at' => ['type' => 'datetime', 'null' => true], + ]); + + $this->forge->addKey('name'); + $this->forge->addKey('uid'); + $this->forge->addKey(['deleted_at', 'id']); + $this->forge->addKey('created_at'); + + $this->forge->createTable('factories'); + } + + public function down() + { + $this->forge->dropTable('factories'); + } +} diff --git a/tests/_support/Database/Seeds/ExampleSeeder.php b/tests/_support/Database/Seeds/ExampleSeeder.php new file mode 100644 index 0000000..f67bf8f --- /dev/null +++ b/tests/_support/Database/Seeds/ExampleSeeder.php @@ -0,0 +1,41 @@ + 'Test Factory', + 'uid' => 'test001', + 'class' => 'Factories\Tests\NewFactory', + 'icon' => 'fas fa-puzzle-piece', + 'summary' => 'Longer sample text for testing', + ], + [ + 'name' => 'Widget Factory', + 'uid' => 'widget', + 'class' => 'Factories\Tests\WidgetPlant', + 'icon' => 'fas fa-puzzle-piece', + 'summary' => 'Create widgets in your factory', + ], + [ + 'name' => 'Evil Factory', + 'uid' => 'evil-maker', + 'class' => 'Factories\Evil\MyFactory', + 'icon' => 'fas fa-book-dead', + 'summary' => 'Abandon all hope, ye who enter here', + ], + ]; + + $builder = $this->db->table('factories'); + + foreach ($factories as $factory) { + $builder->insert($factory); + } + } +} diff --git a/tests/_support/Libraries/ConfigReader.php b/tests/_support/Libraries/ConfigReader.php new file mode 100644 index 0000000..40d057a --- /dev/null +++ b/tests/_support/Libraries/ConfigReader.php @@ -0,0 +1,17 @@ +findAll(); + + // Make sure the count is as expected + $this->assertCount(3, $objects); + } + + public function testSoftDeleteLeavesRow() + { + $model = new ExampleModel(); + $this->setPrivateProperty($model, 'useSoftDeletes', true); + $this->setPrivateProperty($model, 'tempUseSoftDeletes', true); + + /** @var stdClass $object */ + $object = $model->first(); + $model->delete($object->id); + + // The model should no longer find it + $this->assertNull($model->find($object->id)); + + // ... but it should still be in the database + $result = $model->builder()->where('id', $object->id)->get()->getResult(); + + $this->assertCount(1, $result); + } +} diff --git a/tests/session/ExampleSessionTest.php b/tests/session/ExampleSessionTest.php new file mode 100644 index 0000000..98fe7af --- /dev/null +++ b/tests/session/ExampleSessionTest.php @@ -0,0 +1,18 @@ +set('logged_in', 123); + $this->assertSame(123, $session->get('logged_in')); + } +} diff --git a/tests/unit/HealthTest.php b/tests/unit/HealthTest.php new file mode 100644 index 0000000..ab3e2aa --- /dev/null +++ b/tests/unit/HealthTest.php @@ -0,0 +1,50 @@ +assertTrue(defined('APPPATH')); + } + + public function testBaseUrlHasBeenSet() + { + $validation = Services::validation(); + + $env = false; + + // Check the baseURL in .env + if (is_file(HOMEPATH . '.env')) { + $env = preg_grep('/^app\.baseURL = ./', file(HOMEPATH . '.env')) !== false; + } + + if ($env) { + // BaseURL in .env is a valid URL? + // phpunit.xml.dist sets app.baseURL in $_SERVER + // So if you set app.baseURL in .env, it takes precedence + $config = new App(); + $this->assertTrue( + $validation->check($config->baseURL, 'valid_url'), + 'baseURL "' . $config->baseURL . '" in .env is not valid URL' + ); + } + + // Get the baseURL in app/Config/App.php + // You can't use Config\App, because phpunit.xml.dist sets app.baseURL + $reader = new ConfigReader(); + + // BaseURL in app/Config/App.php is a valid URL? + $this->assertTrue( + $validation->check($reader->baseURL, 'valid_url'), + 'baseURL "' . $reader->baseURL . '" in app/Config/App.php is not valid URL' + ); + } +} diff --git a/writable/.htaccess b/writable/.htaccess new file mode 100644 index 0000000..f24db0a --- /dev/null +++ b/writable/.htaccess @@ -0,0 +1,6 @@ + + Require all denied + + + Deny from all + diff --git a/writable/cache/index.html b/writable/cache/index.html new file mode 100644 index 0000000..b702fbc --- /dev/null +++ b/writable/cache/index.html @@ -0,0 +1,11 @@ + + + + 403 Forbidden + + + +

Directory access is forbidden.

+ + + diff --git a/writable/logs/index.html b/writable/logs/index.html new file mode 100644 index 0000000..b702fbc --- /dev/null +++ b/writable/logs/index.html @@ -0,0 +1,11 @@ + + + + 403 Forbidden + + + +

Directory access is forbidden.

+ + + diff --git a/writable/uploads/index.html b/writable/uploads/index.html new file mode 100644 index 0000000..b702fbc --- /dev/null +++ b/writable/uploads/index.html @@ -0,0 +1,11 @@ + + + + 403 Forbidden + + + +

Directory access is forbidden.

+ + +