<?php
// ============================================================
// 加载解密加载器
// ============================================================
require_once(__DIR__ . '/system/decrypt_loader.php');

// Version
define('VERSION', '4.1.0.0');

// Configuration
if (is_file('config.php')) {
    require_once('config.php');
}

// Install
if (!defined('DIR_APPLICATION')) {
    header('Location: install/index.php');
    exit();
}

// ============================================================
// Startup - 直接加载（不解密，确保核心类全局可用）
// ============================================================
require_once(DIR_SYSTEM . 'startup.php');

// Framework - 直接加载（不解密）
require_once(DIR_SYSTEM . 'framework.php');

// ============================================================
// 后续应用程序代码
// ============================================================
$application = new Application();
$application->run();