国产无遮挡裸体免费直播视频,久久精品国产蜜臀av,动漫在线视频一区二区,欧亚日韩一区二区三区,久艹在线 免费视频,国产精品美女网站免费,正在播放 97超级视频在线观看,斗破苍穹年番在线观看免费,51最新乱码中文字幕

php封裝的smarty類完整實(shí)例

 更新時(shí)間:2016年10月19日 08:52:34   作者:Love滿天星  
這篇文章主要介紹了php封裝的smarty類,針對(duì)Smarty的基本操作技巧進(jìn)行了封裝整理,具有一定參考借鑒價(jià)值,需要的朋友可以參考下

本文實(shí)例講述了php封裝的smarty類。分享給大家供大家參考,具體如下:

<?php
/**
 * Project:   Smarty: the PHP compiling template engine
 * File:    Smarty.class.php
 * SVN:     $Id: Smarty.class.php 4848 2014-06-08 18:12:09Z Uwe.Tews@googlemail.com $
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 * For questions, help, comments, discussion, etc., please join the
 * Smarty mailing list. Send a blank e-mail to
 * smarty-discussion-subscribe@googlegroups.com
 *
 * @link   http://www.smarty.net/
 * @copyright 2008 New Digital Group, Inc.
 * @author  Monte Ohrt <monte at ohrt dot com>
 * @author  Uwe Tews
 * @author  Rodney Rehm
 * @package  Smarty
 * @version  3.1.19
 */
/**
 * define shorthand directory separator constant
 */
if (!defined('DS')) {
  define('DS', DIRECTORY_SEPARATOR);
}
/**
 * set SMARTY_DIR to absolute path to Smarty library files.
 * Sets SMARTY_DIR only if user application has not already defined it.
 */
if (!defined('SMARTY_DIR')) {
  define('SMARTY_DIR', dirname(__FILE__) . DS);
}
/**
 * set SMARTY_SYSPLUGINS_DIR to absolute path to Smarty internal plugins.
 * Sets SMARTY_SYSPLUGINS_DIR only if user application has not already defined it.
 */
if (!defined('SMARTY_SYSPLUGINS_DIR')) {
  define('SMARTY_SYSPLUGINS_DIR', SMARTY_DIR . 'sysplugins' . DS);
}
if (!defined('SMARTY_PLUGINS_DIR')) {
  define('SMARTY_PLUGINS_DIR', SMARTY_DIR . 'plugins' . DS);
}
if (!defined('SMARTY_MBSTRING')) {
  define('SMARTY_MBSTRING', function_exists('mb_split'));
}
if (!defined('SMARTY_RESOURCE_CHAR_SET')) {
  // UTF-8 can only be done properly when mbstring is available!
  /**
   * @deprecated in favor of Smarty::$_CHARSET
   */
  define('SMARTY_RESOURCE_CHAR_SET', SMARTY_MBSTRING ? 'UTF-8' : 'ISO-8859-1');
}
if (!defined('SMARTY_RESOURCE_DATE_FORMAT')) {
  /**
   * @deprecated in favor of Smarty::$_DATE_FORMAT
   */
  define('SMARTY_RESOURCE_DATE_FORMAT', '%b %e, %Y');
}
/**
 * register the class autoloader
 */
if (!defined('SMARTY_SPL_AUTOLOAD')) {
  define('SMARTY_SPL_AUTOLOAD', 0);
}
if (SMARTY_SPL_AUTOLOAD && set_include_path(get_include_path() . PATH_SEPARATOR . SMARTY_SYSPLUGINS_DIR) !== false) {
  $registeredAutoLoadFunctions = spl_autoload_functions();
  if (!isset($registeredAutoLoadFunctions['spl_autoload'])) {
    spl_autoload_register();
  }
} else {
  spl_autoload_register('smartyAutoload');
}
/**
 * Load always needed external class files
 */
include_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_data.php';
include_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_templatebase.php';
include_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_template.php';
include_once SMARTY_SYSPLUGINS_DIR . 'smarty_resource.php';
include_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_resource_file.php';
include_once SMARTY_SYSPLUGINS_DIR . 'smarty_cacheresource.php';
include_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_cacheresource_file.php';
/**
 * This is the main Smarty class
 *
 * @package Smarty
 */
class Smarty extends Smarty_Internal_TemplateBase
{
  /**#@+
   * constant definitions
   */
  /**
   * smarty version
   */
  const SMARTY_VERSION = 'Smarty-3.1.19';
  /**
   * define variable scopes
   */
  const SCOPE_LOCAL = 0;
  const SCOPE_PARENT = 1;
  const SCOPE_ROOT = 2;
  const SCOPE_GLOBAL = 3;
  /**
   * define caching modes
   */
  const CACHING_OFF = 0;
  const CACHING_LIFETIME_CURRENT = 1;
  const CACHING_LIFETIME_SAVED = 2;
  /**
   * define constant for clearing cache files be saved expiration datees
   */
  const CLEAR_EXPIRED = - 1;
  /**
   * define compile check modes
   */
  const COMPILECHECK_OFF = 0;
  const COMPILECHECK_ON = 1;
  const COMPILECHECK_CACHEMISS = 2;
  /**
   * modes for handling of "<?php ... ?>" tags in templates.
   */
  const PHP_PASSTHRU = 0; //-> print tags as plain text
  const PHP_QUOTE = 1; //-> escape tags as entities
  const PHP_REMOVE = 2; //-> escape tags as entities
  const PHP_ALLOW = 3; //-> escape tags as entities
  /**
   * filter types
   */
  const FILTER_POST = 'post';
  const FILTER_PRE = 'pre';
  const FILTER_OUTPUT = 'output';
  const FILTER_VARIABLE = 'variable';
  /**
   * plugin types
   */
  const PLUGIN_FUNCTION = 'function';
  const PLUGIN_BLOCK = 'block';
  const PLUGIN_COMPILER = 'compiler';
  const PLUGIN_MODIFIER = 'modifier';
  const PLUGIN_MODIFIERCOMPILER = 'modifiercompiler';
  /**#@-*/
  /**
   * assigned global tpl vars
   */
  public static $global_tpl_vars = array();
  /**
   * error handler returned by set_error_hanlder() in Smarty::muteExpectedErrors()
   */
  public static $_previous_error_handler = null;
  /**
   * contains directories outside of SMARTY_DIR that are to be muted by muteExpectedErrors()
   */
  public static $_muted_directories = array();
  /**
   * Flag denoting if Multibyte String functions are available
   */
  public static $_MBSTRING = SMARTY_MBSTRING;
  /**
   * The character set to adhere to (e.g. "UTF-8")
   */
  public static $_CHARSET = SMARTY_RESOURCE_CHAR_SET;
  /**
   * The date format to be used internally
   * (accepts date() and strftime())
   */
  public static $_DATE_FORMAT = SMARTY_RESOURCE_DATE_FORMAT;
  /**
   * Flag denoting if PCRE should run in UTF-8 mode
   */
  public static $_UTF8_MODIFIER = 'u';
  /**
   * Flag denoting if operating system is windows
   */
  public static $_IS_WINDOWS = false;
  /**#@+
   * variables
   */
  /**
   * auto literal on delimiters with whitspace
   *
   * @var boolean
   */
  public $auto_literal = true;
  /**
   * display error on not assigned variables
   *
   * @var boolean
   */
  public $error_unassigned = false;
  /**
   * look up relative filepaths in include_path
   *
   * @var boolean
   */
  public $use_include_path = false;
  /**
   * template directory
   *
   * @var array
   */
  private $template_dir = array();
  /**
   * joined template directory string used in cache keys
   *
   * @var string
   */
  public $joined_template_dir = null;
  /**
   * joined config directory string used in cache keys
   *
   * @var string
   */
  public $joined_config_dir = null;
  /**
   * default template handler
   *
   * @var callable
   */
  public $default_template_handler_func = null;
  /**
   * default config handler
   *
   * @var callable
   */
  public $default_config_handler_func = null;
  /**
   * default plugin handler
   *
   * @var callable
   */
  public $default_plugin_handler_func = null;
  /**
   * compile directory
   *
   * @var string
   */
  private $compile_dir = null;
  /**
   * plugins directory
   *
   * @var array
   */
  private $plugins_dir = array();
  /**
   * cache directory
   *
   * @var string
   */
  private $cache_dir = null;
  /**
   * config directory
   *
   * @var array
   */
  private $config_dir = array();
  /**
   * force template compiling?
   *
   * @var boolean
   */
  public $force_compile = false;
  /**
   * check template for modifications?
   *
   * @var boolean
   */
  public $compile_check = true;
  /**
   * use sub dirs for compiled/cached files?
   *
   * @var boolean
   */
  public $use_sub_dirs = false;
  /**
   * allow ambiguous resources (that are made unique by the resource handler)
   *
   * @var boolean
   */
  public $allow_ambiguous_resources = false;
  /**
   * caching enabled
   *
   * @var boolean
   */
  public $caching = false;
  /**
   * merge compiled includes
   *
   * @var boolean
   */
  public $merge_compiled_includes = false;
  /**
   * template inheritance merge compiled includes
   *
   * @var boolean
   */
  public $inheritance_merge_compiled_includes = true;
  /**
   * cache lifetime in seconds
   *
   * @var integer
   */
  public $cache_lifetime = 3600;
  /**
   * force cache file creation
   *
   * @var boolean
   */
  public $force_cache = false;
  /**
   * Set this if you want different sets of cache files for the same
   * templates.
   *
   * @var string
   */
  public $cache_id = null;
  /**
   * Set this if you want different sets of compiled files for the same
   * templates.
   *
   * @var string
   */
  public $compile_id = null;
  /**
   * template left-delimiter
   *
   * @var string
   */
  public $left_delimiter = "{";
  /**
   * template right-delimiter
   *
   * @var string
   */
  public $right_delimiter = "}";
  /**#@+
   * security
   */
  /**
   * class name
   * This should be instance of Smarty_Security.
   *
   * @var string
   * @see Smarty_Security
   */
  public $security_class = 'Smarty_Security';
  /**
   * implementation of security class
   *
   * @var Smarty_Security
   */
  public $security_policy = null;
  /**
   * controls handling of PHP-blocks
   *
   * @var integer
   */
  public $php_handling = self::PHP_PASSTHRU;
  /**
   * controls if the php template file resource is allowed
   *
   * @var bool
   */
  public $allow_php_templates = false;
  /**
   * Should compiled-templates be prevented from being called directly?
   * {@internal
   * Currently used by Smarty_Internal_Template only.
   * }}
   *
   * @var boolean
   */
  public $direct_access_security = true;
  /**#@-*/
  /**
   * debug mode
   * Setting this to true enables the debug-console.
   *
   * @var boolean
   */
  public $debugging = false;
  /**
   * This determines if debugging is enable-able from the browser.
   * <ul>
   * <li>NONE => no debugging control allowed</li>
   * <li>URL => enable debugging when SMARTY_DEBUG is found in the URL.</li>
   * </ul>
   *
   * @var string
   */
  public $debugging_ctrl = 'NONE';
  /**
   * Name of debugging URL-param.
   * Only used when $debugging_ctrl is set to 'URL'.
   * The name of the URL-parameter that activates debugging.
   *
   * @var type
   */
  public $smarty_debug_id = 'SMARTY_DEBUG';
  /**
   * Path of debug template.
   *
   * @var string
   */
  public $debug_tpl = null;
  /**
   * When set, smarty uses this value as error_reporting-level.
   *
   * @var int
   */
  public $error_reporting = null;
  /**
   * Internal flag for getTags()
   *
   * @var boolean
   */
  public $get_used_tags = false;
  /**#@+
   * config var settings
   */
  /**
   * Controls whether variables with the same name overwrite each other.
   *
   * @var boolean
   */
  public $config_overwrite = true;
  /**
   * Controls whether config values of on/true/yes and off/false/no get converted to boolean.
   *
   * @var boolean
   */
  public $config_booleanize = true;
  /**
   * Controls whether hidden config sections/vars are read from the file.
   *
   * @var boolean
   */
  public $config_read_hidden = false;
  /**#@-*/
  /**#@+
   * resource locking
   */
  /**
   * locking concurrent compiles
   *
   * @var boolean
   */
  public $compile_locking = true;
  /**
   * Controls whether cache resources should emply locking mechanism
   *
   * @var boolean
   */
  public $cache_locking = false;
  /**
   * seconds to wait for acquiring a lock before ignoring the write lock
   *
   * @var float
   */
  public $locking_timeout = 10;
  /**#@-*/
  /**
   * global template functions
   *
   * @var array
   */
  public $template_functions = array();
  /**
   * resource type used if none given
   * Must be an valid key of $registered_resources.
   *
   * @var string
   */
  public $default_resource_type = 'file';
  /**
   * caching type
   * Must be an element of $cache_resource_types.
   *
   * @var string
   */
  public $caching_type = 'file';
  /**
   * internal config properties
   *
   * @var array
   */
  public $properties = array();
  /**
   * config type
   *
   * @var string
   */
  public $default_config_type = 'file';
  /**
   * cached template objects
   *
   * @var array
   */
  public $template_objects = array();
  /**
   * check If-Modified-Since headers
   *
   * @var boolean
   */
  public $cache_modified_check = false;
  /**
   * registered plugins
   *
   * @var array
   */
  public $registered_plugins = array();
  /**
   * plugin search order
   *
   * @var array
   */
  public $plugin_search_order = array('function', 'block', 'compiler', 'class');
  /**
   * registered objects
   *
   * @var array
   */
  public $registered_objects = array();
  /**
   * registered classes
   *
   * @var array
   */
  public $registered_classes = array();
  /**
   * registered filters
   *
   * @var array
   */
  public $registered_filters = array();
  /**
   * registered resources
   *
   * @var array
   */
  public $registered_resources = array();
  /**
   * resource handler cache
   *
   * @var array
   */
  public $_resource_handlers = array();
  /**
   * registered cache resources
   *
   * @var array
   */
  public $registered_cache_resources = array();
  /**
   * cache resource handler cache
   *
   * @var array
   */
  public $_cacheresource_handlers = array();
  /**
   * autoload filter
   *
   * @var array
   */
  public $autoload_filters = array();
  /**
   * default modifier
   *
   * @var array
   */
  public $default_modifiers = array();
  /**
   * autoescape variable output
   *
   * @var boolean
   */
  public $escape_html = false;
  /**
   * global internal smarty vars
   *
   * @var array
   */
  public static $_smarty_vars = array();
  /**
   * start time for execution time calculation
   *
   * @var int
   */
  public $start_time = 0;
  /**
   * default file permissions
   *
   * @var int
   */
  public $_file_perms = 0644;
  /**
   * default dir permissions
   *
   * @var int
   */
  public $_dir_perms = 0771;
  /**
   * block tag hierarchy
   *
   * @var array
   */
  public $_tag_stack = array();
  /**
   * self pointer to Smarty object
   *
   * @var Smarty
   */
  public $smarty;
  /**
   * required by the compiler for BC
   *
   * @var string
   */
  public $_current_file = null;
  /**
   * internal flag to enable parser debugging
   *
   * @var bool
   */
  public $_parserdebug = false;
  /**
   * Saved parameter of merged templates during compilation
   *
   * @var array
   */
  public $merged_templates_func = array();
  /**#@-*/
  /**
   * Initialize new Smarty object
   */
  public function __construct()
  {
    // selfpointer needed by some other class methods
    $this->smarty = $this;
    if (is_callable('mb_internal_encoding')) {
      mb_internal_encoding(Smarty::$_CHARSET);
    }
    $this->start_time = microtime(true);
    // set default dirs
    $this->setTemplateDir('.' . DS . 'templates' . DS)
      ->setCompileDir('.' . DS . 'templates_c' . DS)
      ->setPluginsDir(SMARTY_PLUGINS_DIR)
      ->setCacheDir('.' . DS . 'cache' . DS)
      ->setConfigDir('.' . DS . 'configs' . DS);
    $this->debug_tpl = 'file:' . dirname(__FILE__) . '/debug.tpl';
    if (isset($_SERVER['SCRIPT_NAME'])) {
      $this->assignGlobal('SCRIPT_NAME', $_SERVER['SCRIPT_NAME']);
    }
  }
  /**
   * Class destructor
   */
  public function __destruct()
  {
    // intentionally left blank
  }
  /**
   * <<magic>> set selfpointer on cloned object
   */
  public function __clone()
  {
    $this->smarty = $this;
  }
  /**
   * <<magic>> Generic getter.
   * Calls the appropriate getter function.
   * Issues an E_USER_NOTICE if no valid getter is found.
   *
   * @param string $name property name
   *
   * @return mixed
   */
  public function __get($name)
  {
    $allowed = array(
      'template_dir' => 'getTemplateDir',
      'config_dir'  => 'getConfigDir',
      'plugins_dir' => 'getPluginsDir',
      'compile_dir' => 'getCompileDir',
      'cache_dir'  => 'getCacheDir',
    );
    if (isset($allowed[$name])) {
      return $this->{$allowed[$name]}();
    } else {
      trigger_error('Undefined property: ' . get_class($this) . '::$' . $name, E_USER_NOTICE);
    }
  }
  /**
   * <<magic>> Generic setter.
   * Calls the appropriate setter function.
   * Issues an E_USER_NOTICE if no valid setter is found.
   *
   * @param string $name property name
   * @param mixed $value parameter passed to setter
   */
  public function __set($name, $value)
  {
    $allowed = array(
      'template_dir' => 'setTemplateDir',
      'config_dir'  => 'setConfigDir',
      'plugins_dir' => 'setPluginsDir',
      'compile_dir' => 'setCompileDir',
      'cache_dir'  => 'setCacheDir',
    );
    if (isset($allowed[$name])) {
      $this->{$allowed[$name]}($value);
    } else {
      trigger_error('Undefined property: ' . get_class($this) . '::$' . $name, E_USER_NOTICE);
    }
  }
  /**
   * Check if a template resource exists
   *
   * @param string $resource_name template name
   *
   * @return boolean status
   */
  public function templateExists($resource_name)
  {
    // create template object
    $save = $this->template_objects;
    $tpl = new $this->template_class($resource_name, $this);
    // check if it does exists
    $result = $tpl->source->exists;
    $this->template_objects = $save;
    return $result;
  }
  /**
   * Returns a single or all global variables
   *
   * @param string $varname variable name or null
   *
   * @return string variable value or or array of variables
   */
  public function getGlobal($varname = null)
  {
    if (isset($varname)) {
      if (isset(self::$global_tpl_vars[$varname])) {
        return self::$global_tpl_vars[$varname]->value;
      } else {
        return '';
      }
    } else {
      $_result = array();
      foreach (self::$global_tpl_vars AS $key => $var) {
        $_result[$key] = $var->value;
      }
      return $_result;
    }
  }
  /**
   * Empty cache folder
   *
   * @param integer $exp_time expiration time
   * @param string $type   resource type
   *
   * @return integer number of cache files deleted
   */
  public function clearAllCache($exp_time = null, $type = null)
  {
    // load cache resource and call clearAll
    $_cache_resource = Smarty_CacheResource::load($this, $type);
    Smarty_CacheResource::invalidLoadedCache($this);
    return $_cache_resource->clearAll($this, $exp_time);
  }
  /**
   * Empty cache for a specific template
   *
   * @param string $template_name template name
   * @param string $cache_id   cache id
   * @param string $compile_id  compile id
   * @param integer $exp_time   expiration time
   * @param string $type     resource type
   *
   * @return integer number of cache files deleted
   */
  public function clearCache($template_name, $cache_id = null, $compile_id = null, $exp_time = null, $type = null)
  {
    // load cache resource and call clear
    $_cache_resource = Smarty_CacheResource::load($this, $type);
    Smarty_CacheResource::invalidLoadedCache($this);
    return $_cache_resource->clear($this, $template_name, $cache_id, $compile_id, $exp_time);
  }
  /**
   * Loads security class and enables security
   *
   * @param string|Smarty_Security $security_class if a string is used, it must be class-name
   *
   * @return Smarty         current Smarty instance for chaining
   * @throws SmartyException    when an invalid class name is provided
   */
  public function enableSecurity($security_class = null)
  {
    if ($security_class instanceof Smarty_Security) {
      $this->security_policy = $security_class;
      return $this;
    } elseif (is_object($security_class)) {
      throw new SmartyException("Class '" . get_class($security_class) . "' must extend Smarty_Security.");
    }
    if ($security_class == null) {
      $security_class = $this->security_class;
    }
    if (!class_exists($security_class)) {
      throw new SmartyException("Security class '$security_class' is not defined");
    } elseif ($security_class !== 'Smarty_Security' && !is_subclass_of($security_class, 'Smarty_Security')) {
      throw new SmartyException("Class '$security_class' must extend Smarty_Security.");
    } else {
      $this->security_policy = new $security_class($this);
    }
    return $this;
  }
  /**
   * Disable security
   *
   * @return Smarty current Smarty instance for chaining
   */
  public function disableSecurity()
  {
    $this->security_policy = null;
    return $this;
  }
  /**
   * Set template directory
   *
   * @param string|array $template_dir directory(s) of template sources
   *
   * @return Smarty    current Smarty instance for chaining
   */
  public function setTemplateDir($template_dir)
  {
    $this->template_dir = array();
    foreach ((array) $template_dir as $k => $v) {
      $this->template_dir[$k] = preg_replace('#(\w+)(/|\\\\){1,}#', '$1$2', rtrim($v, '/\\')) . DS;
    }
    $this->joined_template_dir = join(DIRECTORY_SEPARATOR, $this->template_dir);
    return $this;
  }
  /**
   * Add template directory(s)
   *
   * @param string|array $template_dir directory(s) of template sources
   * @param string    $key     of the array element to assign the template dir to
   *
   * @return Smarty     current Smarty instance for chaining
   * @throws SmartyException when the given template directory is not valid
   */
  public function addTemplateDir($template_dir, $key = null)
  {
    // make sure we're dealing with an array
    $this->template_dir = (array) $this->template_dir;
    if (is_array($template_dir)) {
      foreach ($template_dir as $k => $v) {
        $v = preg_replace('#(\w+)(/|\\\\){1,}#', '$1$2', rtrim($v, '/\\')) . DS;
        if (is_int($k)) {
          // indexes are not merged but appended
          $this->template_dir[] = $v;
        } else {
          // string indexes are overridden
          $this->template_dir[$k] = $v;
        }
      }
    } else {
      $v = preg_replace('#(\w+)(/|\\\\){1,}#', '$1$2', rtrim($template_dir, '/\\')) . DS;
      if ($key !== null) {
        // override directory at specified index
        $this->template_dir[$key] = $v;
      } else {
        // append new directory
        $this->template_dir[] = $v;
      }
    }
    $this->joined_template_dir = join(DIRECTORY_SEPARATOR, $this->template_dir);
    return $this;
  }
  /**
   * Get template directories
   *
   * @param mixed $index index of directory to get, null to get all
   *
   * @return array|string list of template directories, or directory of $index
   */
  public function getTemplateDir($index = null)
  {
    if ($index !== null) {
      return isset($this->template_dir[$index]) ? $this->template_dir[$index] : null;
    }
    return (array) $this->template_dir;
  }
  /**
   * Set config directory
   *
   * @param $config_dir
   *
   * @return Smarty    current Smarty instance for chaining
   */
  public function setConfigDir($config_dir)
  {
    $this->config_dir = array();
    foreach ((array) $config_dir as $k => $v) {
      $this->config_dir[$k] = preg_replace('#(\w+)(/|\\\\){1,}#', '$1$2', rtrim($v, '/\\')) . DS;
    }
    $this->joined_config_dir = join(DIRECTORY_SEPARATOR, $this->config_dir);
    return $this;
  }
  /**
   * Add config directory(s)
   *
   * @param string|array    $config_dir directory(s) of config sources
   * @param mixed $key    key of the array element to assign the config dir to
   *
   * @return Smarty current Smarty instance for chaining
   */
  public function addConfigDir($config_dir, $key = null)
  {
    // make sure we're dealing with an array
    $this->config_dir = (array) $this->config_dir;
    if (is_array($config_dir)) {
      foreach ($config_dir as $k => $v) {
        $v = preg_replace('#(\w+)(/|\\\\){1,}#', '$1$2', rtrim($v, '/\\')) . DS;
        if (is_int($k)) {
          // indexes are not merged but appended
          $this->config_dir[] = $v;
        } else {
          // string indexes are overridden
          $this->config_dir[$k] = $v;
        }
      }
    } else {
      $v = preg_replace('#(\w+)(/|\\\\){1,}#', '$1$2', rtrim($config_dir, '/\\')) . DS;
      if ($key !== null) {
        // override directory at specified index
        $this->config_dir[$key] = rtrim($v, '/\\') . DS;
      } else {
        // append new directory
        $this->config_dir[] = rtrim($v, '/\\') . DS;
      }
    }
    $this->joined_config_dir = join(DIRECTORY_SEPARATOR, $this->config_dir);
    return $this;
  }
  /**
   * Get config directory
   *
   * @param mixed $index index of directory to get, null to get all
   *
   * @return array|string configuration directory
   */
  public function getConfigDir($index = null)
  {
    if ($index !== null) {
      return isset($this->config_dir[$index]) ? $this->config_dir[$index] : null;
    }
    return (array) $this->config_dir;
  }
  /**
   * Set plugins directory
   *
   * @param string|array $plugins_dir directory(s) of plugins
   *
   * @return Smarty    current Smarty instance for chaining
   */
  public function setPluginsDir($plugins_dir)
  {
    $this->plugins_dir = array();
    foreach ((array) $plugins_dir as $k => $v) {
      $this->plugins_dir[$k] = rtrim($v, '/\\') . DS;
    }
    return $this;
  }
  /**
   * Adds directory of plugin files
   *
   * @param $plugins_dir
   *
   * @return Smarty current Smarty instance for chaining
   */
  public function addPluginsDir($plugins_dir)
  {
    // make sure we're dealing with an array
    $this->plugins_dir = (array) $this->plugins_dir;
    if (is_array($plugins_dir)) {
      foreach ($plugins_dir as $k => $v) {
        if (is_int($k)) {
          // indexes are not merged but appended
          $this->plugins_dir[] = rtrim($v, '/\\') . DS;
        } else {
          // string indexes are overridden
          $this->plugins_dir[$k] = rtrim($v, '/\\') . DS;
        }
      }
    } else {
      // append new directory
      $this->plugins_dir[] = rtrim($plugins_dir, '/\\') . DS;
    }
    $this->plugins_dir = array_unique($this->plugins_dir);
    return $this;
  }
  /**
   * Get plugin directories
   *
   * @return array list of plugin directories
   */
  public function getPluginsDir()
  {
    return (array) $this->plugins_dir;
  }
  /**
   * Set compile directory
   *
   * @param string $compile_dir directory to store compiled templates in
   *
   * @return Smarty current Smarty instance for chaining
   */
  public function setCompileDir($compile_dir)
  {
    $this->compile_dir = rtrim($compile_dir, '/\\') . DS;
    if (!isset(Smarty::$_muted_directories[$this->compile_dir])) {
      Smarty::$_muted_directories[$this->compile_dir] = null;
    }
    return $this;
  }
  /**
   * Get compiled directory
   *
   * @return string path to compiled templates
   */
  public function getCompileDir()
  {
    return $this->compile_dir;
  }
  /**
   * Set cache directory
   *
   * @param string $cache_dir directory to store cached templates in
   *
   * @return Smarty current Smarty instance for chaining
   */
  public function setCacheDir($cache_dir)
  {
    $this->cache_dir = rtrim($cache_dir, '/\\') . DS;
    if (!isset(Smarty::$_muted_directories[$this->cache_dir])) {
      Smarty::$_muted_directories[$this->cache_dir] = null;
    }
    return $this;
  }
  /**
   * Get cache directory
   *
   * @return string path of cache directory
   */
  public function getCacheDir()
  {
    return $this->cache_dir;
  }
  /**
   * Set default modifiers
   *
   * @param array|string $modifiers modifier or list of modifiers to set
   *
   * @return Smarty    current Smarty instance for chaining
   */
  public function setDefaultModifiers($modifiers)
  {
    $this->default_modifiers = (array) $modifiers;
    return $this;
  }
  /**
   * Add default modifiers
   *
   * @param array|string $modifiers modifier or list of modifiers to add
   *
   * @return Smarty    current Smarty instance for chaining
   */
  public function addDefaultModifiers($modifiers)
  {
    if (is_array($modifiers)) {
      $this->default_modifiers = array_merge($this->default_modifiers, $modifiers);
    } else {
      $this->default_modifiers[] = $modifiers;
    }
    return $this;
  }
  /**
   * Get default modifiers
   *
   * @return array list of default modifiers
   */
  public function getDefaultModifiers()
  {
    return $this->default_modifiers;
  }
  /**
   * Set autoload filters
   *
   * @param array $filters filters to load automatically
   * @param string $type  "pre", "output", … specify the filter type to set. Defaults to none treating $filters' keys as the appropriate types
   *
   * @return Smarty current Smarty instance for chaining
   */
  public function setAutoloadFilters($filters, $type = null)
  {
    if ($type !== null) {
      $this->autoload_filters[$type] = (array) $filters;
    } else {
      $this->autoload_filters = (array) $filters;
    }
    return $this;
  }
  /**
   * Add autoload filters
   *
   * @param array $filters filters to load automatically
   * @param string $type  "pre", "output", … specify the filter type to set. Defaults to none treating $filters' keys as the appropriate types
   *
   * @return Smarty current Smarty instance for chaining
   */
  public function addAutoloadFilters($filters, $type = null)
  {
    if ($type !== null) {
      if (!empty($this->autoload_filters[$type])) {
        $this->autoload_filters[$type] = array_merge($this->autoload_filters[$type], (array) $filters);
      } else {
        $this->autoload_filters[$type] = (array) $filters;
      }
    } else {
      foreach ((array) $filters as $key => $value) {
        if (!empty($this->autoload_filters[$key])) {
          $this->autoload_filters[$key] = array_merge($this->autoload_filters[$key], (array) $value);
        } else {
          $this->autoload_filters[$key] = (array) $value;
        }
      }
    }
    return $this;
  }
  /**
   * Get autoload filters
   *
   * @param string $type type of filter to get autoloads for. Defaults to all autoload filters
   *
   * @return array array( 'type1' => array( 'filter1', 'filter2', … ) ) or array( 'filter1', 'filter2', …) if $type was specified
   */
  public function getAutoloadFilters($type = null)
  {
    if ($type !== null) {
      return isset($this->autoload_filters[$type]) ? $this->autoload_filters[$type] : array();
    }
    return $this->autoload_filters;
  }
  /**
   * return name of debugging template
   *
   * @return string
   */
  public function getDebugTemplate()
  {
    return $this->debug_tpl;
  }
  /**
   * set the debug template
   *
   * @param string $tpl_name
   *
   * @return Smarty     current Smarty instance for chaining
   * @throws SmartyException if file is not readable
   */
  public function setDebugTemplate($tpl_name)
  {
    if (!is_readable($tpl_name)) {
      throw new SmartyException("Unknown file '{$tpl_name}'");
    }
    $this->debug_tpl = $tpl_name;
    return $this;
  }
  /**
   * creates a template object
   *
   * @param string $template  the resource handle of the template file
   * @param mixed  $cache_id  cache id to be used with this template
   * @param mixed  $compile_id compile id to be used with this template
   * @param object $parent   next higher level of Smarty variables
   * @param boolean $do_clone  flag is Smarty object shall be cloned
   *
   * @return object template object
   */
  public function createTemplate($template, $cache_id = null, $compile_id = null, $parent = null, $do_clone = true)
  {
    if ($cache_id !== null && (is_object($cache_id) || is_array($cache_id))) {
      $parent = $cache_id;
      $cache_id = null;
    }
    if ($parent !== null && is_array($parent)) {
      $data = $parent;
      $parent = null;
    } else {
      $data = null;
    }
    // default to cache_id and compile_id of Smarty object
    $cache_id = $cache_id === null ? $this->cache_id : $cache_id;
    $compile_id = $compile_id === null ? $this->compile_id : $compile_id;
    // already in template cache?
    if ($this->allow_ambiguous_resources) {
      $_templateId = Smarty_Resource::getUniqueTemplateName($this, $template) . $cache_id . $compile_id;
    } else {
      $_templateId = $this->joined_template_dir . '#' . $template . $cache_id . $compile_id;
    }
    if (isset($_templateId[150])) {
      $_templateId = sha1($_templateId);
    }
    if ($do_clone) {
      if (isset($this->template_objects[$_templateId])) {
        // return cached template object
        $tpl = clone $this->template_objects[$_templateId];
        $tpl->smarty = clone $tpl->smarty;
        $tpl->parent = $parent;
        $tpl->tpl_vars = array();
        $tpl->config_vars = array();
      } else {
        $tpl = new $this->template_class($template, clone $this, $parent, $cache_id, $compile_id);
      }
    } else {
      if (isset($this->template_objects[$_templateId])) {
        // return cached template object
        $tpl = $this->template_objects[$_templateId];
        $tpl->parent = $parent;
        $tpl->tpl_vars = array();
        $tpl->config_vars = array();
      } else {
        $tpl = new $this->template_class($template, $this, $parent, $cache_id, $compile_id);
      }
    }
    // fill data if present
    if (!empty($data) && is_array($data)) {
      // set up variable values
      foreach ($data as $_key => $_val) {
        $tpl->tpl_vars[$_key] = new Smarty_variable($_val);
      }
    }
    return $tpl;
  }
  /**
   * Takes unknown classes and loads plugin files for them
   * class name format: Smarty_PluginType_PluginName
   * plugin filename format: plugintype.pluginname.php
   *
   * @param string $plugin_name class plugin name to load
   * @param bool  $check    check if already loaded
   *
   * @throws SmartyException
   * @return string |boolean filepath of loaded file or false
   */
  public function loadPlugin($plugin_name, $check = true)
  {
    // if function or class exists, exit silently (already loaded)
    if ($check && (is_callable($plugin_name) || class_exists($plugin_name, false))) {
      return true;
    }
    // Plugin name is expected to be: Smarty_[Type]_[Name]
    $_name_parts = explode('_', $plugin_name, 3);
    // class name must have three parts to be valid plugin
    // count($_name_parts) < 3 === !isset($_name_parts[2])
    if (!isset($_name_parts[2]) || strtolower($_name_parts[0]) !== 'smarty') {
      throw new SmartyException("plugin {$plugin_name} is not a valid name format");
    }
    // if type is "internal", get plugin from sysplugins
    if (strtolower($_name_parts[1]) == 'internal') {
      $file = SMARTY_SYSPLUGINS_DIR . strtolower($plugin_name) . '.php';
      if (file_exists($file)) {
        require_once($file);
        return $file;
      } else {
        return false;
      }
    }
    // plugin filename is expected to be: [type].[name].php
    $_plugin_filename = "{$_name_parts[1]}.{$_name_parts[2]}.php";
    $_stream_resolve_include_path = function_exists('stream_resolve_include_path');
    // loop through plugin dirs and find the plugin
    foreach ($this->getPluginsDir() as $_plugin_dir) {
      $names = array(
        $_plugin_dir . $_plugin_filename,
        $_plugin_dir . strtolower($_plugin_filename),
      );
      foreach ($names as $file) {
        if (file_exists($file)) {
          require_once($file);
          return $file;
        }
        if ($this->use_include_path && !preg_match('/^([\/\\\\]|[a-zA-Z]:[\/\\\\])/', $_plugin_dir)) {
          // try PHP include_path
          if ($_stream_resolve_include_path) {
            $file = stream_resolve_include_path($file);
          } else {
            $file = Smarty_Internal_Get_Include_Path::getIncludePath($file);
          }
          if ($file !== false) {
            require_once($file);
            return $file;
          }
        }
      }
    }
    // no plugin loaded
    return false;
  }
  /**
   * Compile all template files
   *
   * @param string $extension   file extension
   * @param bool  $force_compile force all to recompile
   * @param int  $time_limit
   * @param int  $max_errors
   *
   * @return integer number of template files recompiled
   */
  public function compileAllTemplates($extension = '.tpl', $force_compile = false, $time_limit = 0, $max_errors = null)
  {
    return Smarty_Internal_Utility::compileAllTemplates($extension, $force_compile, $time_limit, $max_errors, $this);
  }
  /**
   * Compile all config files
   *
   * @param string $extension   file extension
   * @param bool  $force_compile force all to recompile
   * @param int  $time_limit
   * @param int  $max_errors
   *
   * @return integer number of template files recompiled
   */
  public function compileAllConfig($extension = '.conf', $force_compile = false, $time_limit = 0, $max_errors = null)
  {
    return Smarty_Internal_Utility::compileAllConfig($extension, $force_compile, $time_limit, $max_errors, $this);
  }
  /**
   * Delete compiled template file
   *
   * @param string $resource_name template name
   * @param string $compile_id  compile id
   * @param integer $exp_time   expiration time
   *
   * @return integer number of template files deleted
   */
  public function clearCompiledTemplate($resource_name = null, $compile_id = null, $exp_time = null)
  {
    return Smarty_Internal_Utility::clearCompiledTemplate($resource_name, $compile_id, $exp_time, $this);
  }
  /**
   * Return array of tag/attributes of all tags used by an template
   *
   * @param Smarty_Internal_Template $template
   *
   * @return array of tag/attributes
   */
  public function getTags(Smarty_Internal_Template $template)
  {
    return Smarty_Internal_Utility::getTags($template);
  }
  /**
   * Run installation test
   *
   * @param array $errors Array to write errors into, rather than outputting them
   *
   * @return boolean true if setup is fine, false if something is wrong
   */
  public function testInstall(&$errors = null)
  {
    return Smarty_Internal_Utility::testInstall($this, $errors);
  }
  /**
   * Error Handler to mute expected messages
   *
   * @link http://php.net/set_error_handler
   *
   * @param integer $errno Error level
   * @param     $errstr
   * @param     $errfile
   * @param     $errline
   * @param     $errcontext
   *
   * @return boolean
   */
  public static function mutingErrorHandler($errno, $errstr, $errfile, $errline, $errcontext)
  {
    $_is_muted_directory = false;
    // add the SMARTY_DIR to the list of muted directories
    if (!isset(Smarty::$_muted_directories[SMARTY_DIR])) {
      $smarty_dir = realpath(SMARTY_DIR);
      if ($smarty_dir !== false) {
        Smarty::$_muted_directories[SMARTY_DIR] = array(
          'file'  => $smarty_dir,
          'length' => strlen($smarty_dir),
        );
      }
    }
    // walk the muted directories and test against $errfile
    foreach (Smarty::$_muted_directories as $key => &$dir) {
      if (!$dir) {
        // resolve directory and length for speedy comparisons
        $file = realpath($key);
        if ($file === false) {
          // this directory does not exist, remove and skip it
          unset(Smarty::$_muted_directories[$key]);
          continue;
        }
        $dir = array(
          'file'  => $file,
          'length' => strlen($file),
        );
      }
      if (!strncmp($errfile, $dir['file'], $dir['length'])) {
        $_is_muted_directory = true;
        break;
      }
    }
    // pass to next error handler if this error did not occur inside SMARTY_DIR
    // or the error was within smarty but masked to be ignored
    if (!$_is_muted_directory || ($errno && $errno & error_reporting())) {
      if (Smarty::$_previous_error_handler) {
        return call_user_func(Smarty::$_previous_error_handler, $errno, $errstr, $errfile, $errline, $errcontext);
      } else {
        return false;
      }
    }
  }
  /**
   * Enable error handler to mute expected messages
   *
   * @return void
   */
  public static function muteExpectedErrors()
  {
    /*
      error muting is done because some people implemented custom error_handlers using
      http://php.net/set_error_handler and for some reason did not understand the following paragraph:
        It is important to remember that the standard PHP error handler is completely bypassed for the
        error types specified by error_types unless the callback function returns FALSE.
        error_reporting() settings will have no effect and your error handler will be called regardless -
        however you are still able to read the current value of error_reporting and act appropriately.
        Of particular note is that this value will be 0 if the statement that caused the error was
        prepended by the @ error-control operator.
      Smarty deliberately uses @filemtime() over file_exists() and filemtime() in some places. Reasons include
        - @filemtime() is almost twice as fast as using an additional file_exists()
        - between file_exists() and filemtime() a possible race condition is opened,
         which does not exist using the simple @filemtime() approach.
    */
    $error_handler = array('Smarty', 'mutingErrorHandler');
    $previous = set_error_handler($error_handler);
    // avoid dead loops
    if ($previous !== $error_handler) {
      Smarty::$_previous_error_handler = $previous;
    }
  }
  /**
   * Disable error handler muting expected messages
   *
   * @return void
   */
  public static function unmuteExpectedErrors()
  {
    restore_error_handler();
  }
}
// Check if we're running on windows
Smarty::$_IS_WINDOWS = strtoupper(substr(PHP_OS, 0, 3)) === 'WIN';
// let PCRE (preg_*) treat strings as ISO-8859-1 if we're not dealing with UTF-8
if (Smarty::$_CHARSET !== 'UTF-8') {
  Smarty::$_UTF8_MODIFIER = '';
}
/**
 * Smarty exception class
 *
 * @package Smarty
 */
class SmartyException extends Exception
{
  public static $escape = false;
  public function __toString()
  {
    return ' --> Smarty: ' . (self::$escape ? htmlentities($this->message) : $this->message) . ' <-- ';
  }
}
/**
 * Smarty compiler exception class
 *
 * @package Smarty
 */
class SmartyCompilerException extends SmartyException
{
  public function __toString()
  {
    return ' --> Smarty Compiler: ' . $this->message . ' <-- ';
  }
  /**
   * The line number of the template error
   *
   * @type int|null
   */
  public $line = null;
  /**
   * The template source snippet relating to the error
   *
   * @type string|null
   */
  public $source = null;
  /**
   * The raw text of the error message
   *
   * @type string|null
   */
  public $desc = null;
  /**
   * The resource identifier or template name
   *
   * @type string|null
   */
  public $template = null;
}
/**
 * Autoloader
 */
function smartyAutoload($class)
{
  $_class = strtolower($class);
  static $_classes = array(
    'smarty_config_source'        => true,
    'smarty_config_compiled'       => true,
    'smarty_security'          => true,
    'smarty_cacheresource'        => true,
    'smarty_cacheresource_custom'    => true,
    'smarty_cacheresource_keyvaluestore' => true,
    'smarty_resource'          => true,
    'smarty_resource_custom'       => true,
    'smarty_resource_uncompiled'     => true,
    'smarty_resource_recompiled'     => true,
  );
  if (!strncmp($_class, 'smarty_internal_', 16) || isset($_classes[$_class])) {
    include SMARTY_SYSPLUGINS_DIR . $_class . '.php';
  }
}
<?php
/**
 * Project:   Smarty: the PHP compiling template engine
 * File:    Smarty.class.php
 * SVN:     $Id: Smarty.class.php 4848 2014-06-08 18:12:09Z Uwe.Tews@googlemail.com $
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 * For questions, help, comments, discussion, etc., please join the
 * Smarty mailing list. Send a blank e-mail to
 * smarty-discussion-subscribe@googlegroups.com
 *
 * @link   http://www.smarty.net/
 * @copyright 2008 New Digital Group, Inc.
 * @author  Monte Ohrt <monte at ohrt dot com>
 * @author  Uwe Tews
 * @author  Rodney Rehm
 * @package  Smarty
 * @version  3.1.19
 */
/**
 * define shorthand directory separator constant
 */
if (!defined('DS')) {
  define('DS', DIRECTORY_SEPARATOR);
}
/**
 * set SMARTY_DIR to absolute path to Smarty library files.
 * Sets SMARTY_DIR only if user application has not already defined it.
 */
if (!defined('SMARTY_DIR')) {
  define('SMARTY_DIR', dirname(__FILE__) . DS);
}
/**
 * set SMARTY_SYSPLUGINS_DIR to absolute path to Smarty internal plugins.
 * Sets SMARTY_SYSPLUGINS_DIR only if user application has not already defined it.
 */
if (!defined('SMARTY_SYSPLUGINS_DIR')) {
  define('SMARTY_SYSPLUGINS_DIR', SMARTY_DIR . 'sysplugins' . DS);
}
if (!defined('SMARTY_PLUGINS_DIR')) {
  define('SMARTY_PLUGINS_DIR', SMARTY_DIR . 'plugins' . DS);
}
if (!defined('SMARTY_MBSTRING')) {
  define('SMARTY_MBSTRING', function_exists('mb_split'));
}
if (!defined('SMARTY_RESOURCE_CHAR_SET')) {
  // UTF-8 can only be done properly when mbstring is available!
  /**
   * @deprecated in favor of Smarty::$_CHARSET
   */
  define('SMARTY_RESOURCE_CHAR_SET', SMARTY_MBSTRING ? 'UTF-8' : 'ISO-8859-1');
}
if (!defined('SMARTY_RESOURCE_DATE_FORMAT')) {
  /**
   * @deprecated in favor of Smarty::$_DATE_FORMAT
   */
  define('SMARTY_RESOURCE_DATE_FORMAT', '%b %e, %Y');
}
/**
 * register the class autoloader
 */
if (!defined('SMARTY_SPL_AUTOLOAD')) {
  define('SMARTY_SPL_AUTOLOAD', 0);
}
if (SMARTY_SPL_AUTOLOAD && set_include_path(get_include_path() . PATH_SEPARATOR . SMARTY_SYSPLUGINS_DIR) !== false) {
  $registeredAutoLoadFunctions = spl_autoload_functions();
  if (!isset($registeredAutoLoadFunctions['spl_autoload'])) {
    spl_autoload_register();
  }
} else {
  spl_autoload_register('smartyAutoload');
}
/**
 * Load always needed external class files
 */
include_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_data.php';
include_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_templatebase.php';
include_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_template.php';
include_once SMARTY_SYSPLUGINS_DIR . 'smarty_resource.php';
include_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_resource_file.php';
include_once SMARTY_SYSPLUGINS_DIR . 'smarty_cacheresource.php';
include_once SMARTY_SYSPLUGINS_DIR . 'smarty_internal_cacheresource_file.php';
/**
 * This is the main Smarty class
 *
 * @package Smarty
 */
class Smarty extends Smarty_Internal_TemplateBase
{
  /**#@+
   * constant definitions
   */
  /**
   * smarty version
   */
  const SMARTY_VERSION = 'Smarty-3.1.19';
  /**
   * define variable scopes
   */
  const SCOPE_LOCAL = 0;
  const SCOPE_PARENT = 1;
  const SCOPE_ROOT = 2;
  const SCOPE_GLOBAL = 3;
  /**
   * define caching modes
   */
  const CACHING_OFF = 0;
  const CACHING_LIFETIME_CURRENT = 1;
  const CACHING_LIFETIME_SAVED = 2;
  /**
   * define constant for clearing cache files be saved expiration datees
   */
  const CLEAR_EXPIRED = - 1;
  /**
   * define compile check modes
   */
  const COMPILECHECK_OFF = 0;
  const COMPILECHECK_ON = 1;
  const COMPILECHECK_CACHEMISS = 2;
  /**
   * modes for handling of "<?php ... ?>" tags in templates.
   */
  const PHP_PASSTHRU = 0; //-> print tags as plain text
  const PHP_QUOTE = 1; //-> escape tags as entities
  const PHP_REMOVE = 2; //-> escape tags as entities
  const PHP_ALLOW = 3; //-> escape tags as entities
  /**
   * filter types
   */
  const FILTER_POST = 'post';
  const FILTER_PRE = 'pre';
  const FILTER_OUTPUT = 'output';
  const FILTER_VARIABLE = 'variable';
  /**
   * plugin types
   */
  const PLUGIN_FUNCTION = 'function';
  const PLUGIN_BLOCK = 'block';
  const PLUGIN_COMPILER = 'compiler';
  const PLUGIN_MODIFIER = 'modifier';
  const PLUGIN_MODIFIERCOMPILER = 'modifiercompiler';
  /**#@-*/
  /**
   * assigned global tpl vars
   */
  public static $global_tpl_vars = array();
  /**
   * error handler returned by set_error_hanlder() in Smarty::muteExpectedErrors()
   */
  public static $_previous_error_handler = null;
  /**
   * contains directories outside of SMARTY_DIR that are to be muted by muteExpectedErrors()
   */
  public static $_muted_directories = array();
  /**
   * Flag denoting if Multibyte String functions are available
   */
  public static $_MBSTRING = SMARTY_MBSTRING;
  /**
   * The character set to adhere to (e.g. "UTF-8")
   */
  public static $_CHARSET = SMARTY_RESOURCE_CHAR_SET;
  /**
   * The date format to be used internally
   * (accepts date() and strftime())
   */
  public static $_DATE_FORMAT = SMARTY_RESOURCE_DATE_FORMAT;
  /**
   * Flag denoting if PCRE should run in UTF-8 mode
   */
  public static $_UTF8_MODIFIER = 'u';
  /**
   * Flag denoting if operating system is windows
   */
  public static $_IS_WINDOWS = false;
  /**#@+
   * variables
   */
  /**
   * auto literal on delimiters with whitspace
   *
   * @var boolean
   */
  public $auto_literal = true;
  /**
   * display error on not assigned variables
   *
   * @var boolean
   */
  public $error_unassigned = false;
  /**
   * look up relative filepaths in include_path
   *
   * @var boolean
   */
  public $use_include_path = false;
  /**
   * template directory
   *
   * @var array
   */
  private $template_dir = array();
  /**
   * joined template directory string used in cache keys
   *
   * @var string
   */
  public $joined_template_dir = null;
  /**
   * joined config directory string used in cache keys
   *
   * @var string
   */
  public $joined_config_dir = null;
  /**
   * default template handler
   *
   * @var callable
   */
  public $default_template_handler_func = null;
  /**
   * default config handler
   *
   * @var callable
   */
  public $default_config_handler_func = null;
  /**
   * default plugin handler
   *
   * @var callable
   */
  public $default_plugin_handler_func = null;
  /**
   * compile directory
   *
   * @var string
   */
  private $compile_dir = null;
  /**
   * plugins directory
   *
   * @var array
   */
  private $plugins_dir = array();
  /**
   * cache directory
   *
   * @var string
   */
  private $cache_dir = null;
  /**
   * config directory
   *
   * @var array
   */
  private $config_dir = array();
  /**
   * force template compiling?
   *
   * @var boolean
   */
  public $force_compile = false;
  /**
   * check template for modifications?
   *
   * @var boolean
   */
  public $compile_check = true;
  /**
   * use sub dirs for compiled/cached files?
   *
   * @var boolean
   */
  public $use_sub_dirs = false;
  /**
   * allow ambiguous resources (that are made unique by the resource handler)
   *
   * @var boolean
   */
  public $allow_ambiguous_resources = false;
  /**
   * caching enabled
   *
   * @var boolean
   */
  public $caching = false;
  /**
   * merge compiled includes
   *
   * @var boolean
   */
  public $merge_compiled_includes = false;
  /**
   * template inheritance merge compiled includes
   *
   * @var boolean
   */
  public $inheritance_merge_compiled_includes = true;
  /**
   * cache lifetime in seconds
   *
   * @var integer
   */
  public $cache_lifetime = 3600;
  /**
   * force cache file creation
   *
   * @var boolean
   */
  public $force_cache = false;
  /**
   * Set this if you want different sets of cache files for the same
   * templates.
   *
   * @var string
   */
  public $cache_id = null;
  /**
   * Set this if you want different sets of compiled files for the same
   * templates.
   *
   * @var string
   */
  public $compile_id = null;
  /**
   * template left-delimiter
   *
   * @var string
   */
  public $left_delimiter = "{";
  /**
   * template right-delimiter
   *
   * @var string
   */
  public $right_delimiter = "}";
  /**#@+
   * security
   */
  /**
   * class name
   * This should be instance of Smarty_Security.
   *
   * @var string
   * @see Smarty_Security
   */
  public $security_class = 'Smarty_Security';
  /**
   * implementation of security class
   *
   * @var Smarty_Security
   */
  public $security_policy = null;
  /**
   * controls handling of PHP-blocks
   *
   * @var integer
   */
  public $php_handling = self::PHP_PASSTHRU;
  /**
   * controls if the php template file resource is allowed
   *
   * @var bool
   */
  public $allow_php_templates = false;
  /**
   * Should compiled-templates be prevented from being called directly?
   * {@internal
   * Currently used by Smarty_Internal_Template only.
   * }}
   *
   * @var boolean
   */
  public $direct_access_security = true;
  /**#@-*/
  /**
   * debug mode
   * Setting this to true enables the debug-console.
   *
   * @var boolean
   */
  public $debugging = false;
  /**
   * This determines if debugging is enable-able from the browser.
   * <ul>
   * <li>NONE => no debugging control allowed</li>
   * <li>URL => enable debugging when SMARTY_DEBUG is found in the URL.</li>
   * </ul>
   *
   * @var string
   */
  public $debugging_ctrl = 'NONE';
  /**
   * Name of debugging URL-param.
   * Only used when $debugging_ctrl is set to 'URL'.
   * The name of the URL-parameter that activates debugging.
   *
   * @var type
   */
  public $smarty_debug_id = 'SMARTY_DEBUG';
  /**
   * Path of debug template.
   *
   * @var string
   */
  public $debug_tpl = null;
  /**
   * When set, smarty uses this value as error_reporting-level.
   *
   * @var int
   */
  public $error_reporting = null;
  /**
   * Internal flag for getTags()
   *
   * @var boolean
   */
  public $get_used_tags = false;
  /**#@+
   * config var settings
   */
  /**
   * Controls whether variables with the same name overwrite each other.
   *
   * @var boolean
   */
  public $config_overwrite = true;
  /**
   * Controls whether config values of on/true/yes and off/false/no get converted to boolean.
   *
   * @var boolean
   */
  public $config_booleanize = true;
  /**
   * Controls whether hidden config sections/vars are read from the file.
   *
   * @var boolean
   */
  public $config_read_hidden = false;
  /**#@-*/
  /**#@+
   * resource locking
   */
  /**
   * locking concurrent compiles
   *
   * @var boolean
   */
  public $compile_locking = true;
  /**
   * Controls whether cache resources should emply locking mechanism
   *
   * @var boolean
   */
  public $cache_locking = false;
  /**
   * seconds to wait for acquiring a lock before ignoring the write lock
   *
   * @var float
   */
  public $locking_timeout = 10;
  /**#@-*/
  /**
   * global template functions
   *
   * @var array
   */
  public $template_functions = array();
  /**
   * resource type used if none given
   * Must be an valid key of $registered_resources.
   *
   * @var string
   */
  public $default_resource_type = 'file';
  /**
   * caching type
   * Must be an element of $cache_resource_types.
   *
   * @var string
   */
  public $caching_type = 'file';
  /**
   * internal config properties
   *
   * @var array
   */
  public $properties = array();
  /**
   * config type
   *
   * @var string
   */
  public $default_config_type = 'file';
  /**
   * cached template objects
   *
   * @var array
   */
  public $template_objects = array();
  /**
   * check If-Modified-Since headers
   *
   * @var boolean
   */
  public $cache_modified_check = false;
  /**
   * registered plugins
   *
   * @var array
   */
  public $registered_plugins = array();
  /**
   * plugin search order
   *
   * @var array
   */
  public $plugin_search_order = array('function', 'block', 'compiler', 'class');
  /**
   * registered objects
   *
   * @var array
   */
  public $registered_objects = array();
  /**
   * registered classes
   *
   * @var array
   */
  public $registered_classes = array();
  /**
   * registered filters
   *
   * @var array
   */
  public $registered_filters = array();
  /**
   * registered resources
   *
   * @var array
   */
  public $registered_resources = array();
  /**
   * resource handler cache
   *
   * @var array
   */
  public $_resource_handlers = array();
  /**
   * registered cache resources
   *
   * @var array
   */
  public $registered_cache_resources = array();
  /**
   * cache resource handler cache
   *
   * @var array
   */
  public $_cacheresource_handlers = array();
  /**
   * autoload filter
   *
   * @var array
   */
  public $autoload_filters = array();
  /**
   * default modifier
   *
   * @var array
   */
  public $default_modifiers = array();
  /**
   * autoescape variable output
   *
   * @var boolean
   */
  public $escape_html = false;
  /**
   * global internal smarty vars
   *
   * @var array
   */
  public static $_smarty_vars = array();
  /**
   * start time for execution time calculation
   *
   * @var int
   */
  public $start_time = 0;
  /**
   * default file permissions
   *
   * @var int
   */
  public $_file_perms = 0644;
  /**
   * default dir permissions
   *
   * @var int
   */
  public $_dir_perms = 0771;
  /**
   * block tag hierarchy
   *
   * @var array
   */
  public $_tag_stack = array();
  /**
   * self pointer to Smarty object
   *
   * @var Smarty
   */
  public $smarty;
  /**
   * required by the compiler for BC
   *
   * @var string
   */
  public $_current_file = null;
  /**
   * internal flag to enable parser debugging
   *
   * @var bool
   */
  public $_parserdebug = false;
  /**
   * Saved parameter of merged templates during compilation
   *
   * @var array
   */
  public $merged_templates_func = array();
  /**#@-*/
  /**
   * Initialize new Smarty object
   */
  public function __construct()
  {
    // selfpointer needed by some other class methods
    $this->smarty = $this;
    if (is_callable('mb_internal_encoding')) {
      mb_internal_encoding(Smarty::$_CHARSET);
    }
    $this->start_time = microtime(true);
    // set default dirs
    $this->setTemplateDir('.' . DS . 'templates' . DS)
      ->setCompileDir('.' . DS . 'templates_c' . DS)
      ->setPluginsDir(SMARTY_PLUGINS_DIR)
      ->setCacheDir('.' . DS . 'cache' . DS)
      ->setConfigDir('.' . DS . 'configs' . DS);
    $this->debug_tpl = 'file:' . dirname(__FILE__) . '/debug.tpl';
    if (isset($_SERVER['SCRIPT_NAME'])) {
      $this->assignGlobal('SCRIPT_NAME', $_SERVER['SCRIPT_NAME']);
    }
  }
  /**
   * Class destructor
   */
  public function __destruct()
  {
    // intentionally left blank
  }
  /**
   * <<magic>> set selfpointer on cloned object
   */
  public function __clone()
  {
    $this->smarty = $this;
  }
  /**
   * <<magic>> Generic getter.
   * Calls the appropriate getter function.
   * Issues an E_USER_NOTICE if no valid getter is found.
   *
   * @param string $name property name
   *
   * @return mixed
   */
  public function __get($name)
  {
    $allowed = array(
      'template_dir' => 'getTemplateDir',
      'config_dir'  => 'getConfigDir',
      'plugins_dir' => 'getPluginsDir',
      'compile_dir' => 'getCompileDir',
      'cache_dir'  => 'getCacheDir',
    );
    if (isset($allowed[$name])) {
      return $this->{$allowed[$name]}();
    } else {
      trigger_error('Undefined property: ' . get_class($this) . '::$' . $name, E_USER_NOTICE);
    }
  }
  /**
   * <<magic>> Generic setter.
   * Calls the appropriate setter function.
   * Issues an E_USER_NOTICE if no valid setter is found.
   *
   * @param string $name property name
   * @param mixed $value parameter passed to setter
   */
  public function __set($name, $value)
  {
    $allowed = array(
      'template_dir' => 'setTemplateDir',
      'config_dir'  => 'setConfigDir',
      'plugins_dir' => 'setPluginsDir',
      'compile_dir' => 'setCompileDir',
      'cache_dir'  => 'setCacheDir',
    );
    if (isset($allowed[$name])) {
      $this->{$allowed[$name]}($value);
    } else {
      trigger_error('Undefined property: ' . get_class($this) . '::$' . $name, E_USER_NOTICE);
    }
  }
  /**
   * Check if a template resource exists
   *
   * @param string $resource_name template name
   *
   * @return boolean status
   */
  public function templateExists($resource_name)
  {
    // create template object
    $save = $this->template_objects;
    $tpl = new $this->template_class($resource_name, $this);
    // check if it does exists
    $result = $tpl->source->exists;
    $this->template_objects = $save;
    return $result;
  }
  /**
   * Returns a single or all global variables
   *
   * @param string $varname variable name or null
   *
   * @return string variable value or or array of variables
   */
  public function getGlobal($varname = null)
  {
    if (isset($varname)) {
      if (isset(self::$global_tpl_vars[$varname])) {
        return self::$global_tpl_vars[$varname]->value;
      } else {
        return '';
      }
    } else {
      $_result = array();
      foreach (self::$global_tpl_vars AS $key => $var) {
        $_result[$key] = $var->value;
      }
      return $_result;
    }
  }
  /**
   * Empty cache folder
   *
   * @param integer $exp_time expiration time
   * @param string $type   resource type
   *
   * @return integer number of cache files deleted
   */
  public function clearAllCache($exp_time = null, $type = null)
  {
    // load cache resource and call clearAll
    $_cache_resource = Smarty_CacheResource::load($this, $type);
    Smarty_CacheResource::invalidLoadedCache($this);
    return $_cache_resource->clearAll($this, $exp_time);
  }
  /**
   * Empty cache for a specific template
   *
   * @param string $template_name template name
   * @param string $cache_id   cache id
   * @param string $compile_id  compile id
   * @param integer $exp_time   expiration time
   * @param string $type     resource type
   *
   * @return integer number of cache files deleted
   */
  public function clearCache($template_name, $cache_id = null, $compile_id = null, $exp_time = null, $type = null)
  {
    // load cache resource and call clear
    $_cache_resource = Smarty_CacheResource::load($this, $type);
    Smarty_CacheResource::invalidLoadedCache($this);
    return $_cache_resource->clear($this, $template_name, $cache_id, $compile_id, $exp_time);
  }
  /**
   * Loads security class and enables security
   *
   * @param string|Smarty_Security $security_class if a string is used, it must be class-name
   *
   * @return Smarty         current Smarty instance for chaining
   * @throws SmartyException    when an invalid class name is provided
   */
  public function enableSecurity($security_class = null)
  {
    if ($security_class instanceof Smarty_Security) {
      $this->security_policy = $security_class;
      return $this;
    } elseif (is_object($security_class)) {
      throw new SmartyException("Class '" . get_class($security_class) . "' must extend Smarty_Security.");
    }
    if ($security_class == null) {
      $security_class = $this->security_class;
    }
    if (!class_exists($security_class)) {
      throw new SmartyException("Security class '$security_class' is not defined");
    } elseif ($security_class !== 'Smarty_Security' && !is_subclass_of($security_class, 'Smarty_Security')) {
      throw new SmartyException("Class '$security_class' must extend Smarty_Security.");
    } else {
      $this->security_policy = new $security_class($this);
    }
    return $this;
  }
  /**
   * Disable security
   *
   * @return Smarty current Smarty instance for chaining
   */
  public function disableSecurity()
  {
    $this->security_policy = null;
    return $this;
  }
  /**
   * Set template directory
   *
   * @param string|array $template_dir directory(s) of template sources
   *
   * @return Smarty    current Smarty instance for chaining
   */
  public function setTemplateDir($template_dir)
  {
    $this->template_dir = array();
    foreach ((array) $template_dir as $k => $v) {
      $this->template_dir[$k] = preg_replace('#(\w+)(/|\\\\){1,}#', '$1$2', rtrim($v, '/\\')) . DS;
    }
    $this->joined_template_dir = join(DIRECTORY_SEPARATOR, $this->template_dir);
    return $this;
  }
  /**
   * Add template directory(s)
   *
   * @param string|array $template_dir directory(s) of template sources
   * @param string    $key     of the array element to assign the template dir to
   *
   * @return Smarty     current Smarty instance for chaining
   * @throws SmartyException when the given template directory is not valid
   */
  public function addTemplateDir($template_dir, $key = null)
  {
    // make sure we're dealing with an array
    $this->template_dir = (array) $this->template_dir;
    if (is_array($template_dir)) {
      foreach ($template_dir as $k => $v) {
        $v = preg_replace('#(\w+)(/|\\\\){1,}#', '$1$2', rtrim($v, '/\\')) . DS;
        if (is_int($k)) {
          // indexes are not merged but appended
          $this->template_dir[] = $v;
        } else {
          // string indexes are overridden
          $this->template_dir[$k] = $v;
        }
      }
    } else {
      $v = preg_replace('#(\w+)(/|\\\\){1,}#', '$1$2', rtrim($template_dir, '/\\')) . DS;
      if ($key !== null) {
        // override directory at specified index
        $this->template_dir[$key] = $v;
      } else {
        // append new directory
        $this->template_dir[] = $v;
      }
    }
    $this->joined_template_dir = join(DIRECTORY_SEPARATOR, $this->template_dir);
    return $this;
  }
  /**
   * Get template directories
   *
   * @param mixed $index index of directory to get, null to get all
   *
   * @return array|string list of template directories, or directory of $index
   */
  public function getTemplateDir($index = null)
  {
    if ($index !== null) {
      return isset($this->template_dir[$index]) ? $this->template_dir[$index] : null;
    }
    return (array) $this->template_dir;
  }
  /**
   * Set config directory
   *
   * @param $config_dir
   *
   * @return Smarty    current Smarty instance for chaining
   */
  public function setConfigDir($config_dir)
  {
    $this->config_dir = array();
    foreach ((array) $config_dir as $k => $v) {
      $this->config_dir[$k] = preg_replace('#(\w+)(/|\\\\){1,}#', '$1$2', rtrim($v, '/\\')) . DS;
    }
    $this->joined_config_dir = join(DIRECTORY_SEPARATOR, $this->config_dir);
    return $this;
  }
  /**
   * Add config directory(s)
   *
   * @param string|array    $config_dir directory(s) of config sources
   * @param mixed $key    key of the array element to assign the config dir to
   *
   * @return Smarty current Smarty instance for chaining
   */
  public function addConfigDir($config_dir, $key = null)
  {
    // make sure we're dealing with an array
    $this->config_dir = (array) $this->config_dir;
    if (is_array($config_dir)) {
      foreach ($config_dir as $k => $v) {
        $v = preg_replace('#(\w+)(/|\\\\){1,}#', '$1$2', rtrim($v, '/\\')) . DS;
        if (is_int($k)) {
          // indexes are not merged but appended
          $this->config_dir[] = $v;
        } else {
          // string indexes are overridden
          $this->config_dir[$k] = $v;
        }
      }
    } else {
      $v = preg_replace('#(\w+)(/|\\\\){1,}#', '$1$2', rtrim($config_dir, '/\\')) . DS;
      if ($key !== null) {
        // override directory at specified index
        $this->config_dir[$key] = rtrim($v, '/\\') . DS;
      } else {
        // append new directory
        $this->config_dir[] = rtrim($v, '/\\') . DS;
      }
    }
    $this->joined_config_dir = join(DIRECTORY_SEPARATOR, $this->config_dir);
    return $this;
  }
  /**
   * Get config directory
   *
   * @param mixed $index index of directory to get, null to get all
   *
   * @return array|string configuration directory
   */
  public function getConfigDir($index = null)
  {
    if ($index !== null) {
      return isset($this->config_dir[$index]) ? $this->config_dir[$index] : null;
    }
    return (array) $this->config_dir;
  }
  /**
   * Set plugins directory
   *
   * @param string|array $plugins_dir directory(s) of plugins
   *
   * @return Smarty    current Smarty instance for chaining
   */
  public function setPluginsDir($plugins_dir)
  {
    $this->plugins_dir = array();
    foreach ((array) $plugins_dir as $k => $v) {
      $this->plugins_dir[$k] = rtrim($v, '/\\') . DS;
    }
    return $this;
  }
  /**
   * Adds directory of plugin files
   *
   * @param $plugins_dir
   *
   * @return Smarty current Smarty instance for chaining
   */
  public function addPluginsDir($plugins_dir)
  {
    // make sure we're dealing with an array
    $this->plugins_dir = (array) $this->plugins_dir;
    if (is_array($plugins_dir)) {
      foreach ($plugins_dir as $k => $v) {
        if (is_int($k)) {
          // indexes are not merged but appended
          $this->plugins_dir[] = rtrim($v, '/\\') . DS;
        } else {
          // string indexes are overridden
          $this->plugins_dir[$k] = rtrim($v, '/\\') . DS;
        }
      }
    } else {
      // append new directory
      $this->plugins_dir[] = rtrim($plugins_dir, '/\\') . DS;
    }
    $this->plugins_dir = array_unique($this->plugins_dir);
    return $this;
  }
  /**
   * Get plugin directories
   *
   * @return array list of plugin directories
   */
  public function getPluginsDir()
  {
    return (array) $this->plugins_dir;
  }
  /**
   * Set compile directory
   *
   * @param string $compile_dir directory to store compiled templates in
   *
   * @return Smarty current Smarty instance for chaining
   */
  public function setCompileDir($compile_dir)
  {
    $this->compile_dir = rtrim($compile_dir, '/\\') . DS;
    if (!isset(Smarty::$_muted_directories[$this->compile_dir])) {
      Smarty::$_muted_directories[$this->compile_dir] = null;
    }
    return $this;
  }
  /**
   * Get compiled directory
   *
   * @return string path to compiled templates
   */
  public function getCompileDir()
  {
    return $this->compile_dir;
  }
  /**
   * Set cache directory
   *
   * @param string $cache_dir directory to store cached templates in
   *
   * @return Smarty current Smarty instance for chaining
   */
  public function setCacheDir($cache_dir)
  {
    $this->cache_dir = rtrim($cache_dir, '/\\') . DS;
    if (!isset(Smarty::$_muted_directories[$this->cache_dir])) {
      Smarty::$_muted_directories[$this->cache_dir] = null;
    }
    return $this;
  }
  /**
   * Get cache directory
   *
   * @return string path of cache directory
   */
  public function getCacheDir()
  {
    return $this->cache_dir;
  }
  /**
   * Set default modifiers
   *
   * @param array|string $modifiers modifier or list of modifiers to set
   *
   * @return Smarty    current Smarty instance for chaining
   */
  public function setDefaultModifiers($modifiers)
  {
    $this->default_modifiers = (array) $modifiers;
    return $this;
  }
  /**
   * Add default modifiers
   *
   * @param array|string $modifiers modifier or list of modifiers to add
   *
   * @return Smarty    current Smarty instance for chaining
   */
  public function addDefaultModifiers($modifiers)
  {
    if (is_array($modifiers)) {
      $this->default_modifiers = array_merge($this->default_modifiers, $modifiers);
    } else {
      $this->default_modifiers[] = $modifiers;
    }
    return $this;
  }
  /**
   * Get default modifiers
   *
   * @return array list of default modifiers
   */
  public function getDefaultModifiers()
  {
    return $this->default_modifiers;
  }
  /**
   * Set autoload filters
   *
   * @param array $filters filters to load automatically
   * @param string $type  "pre", "output", … specify the filter type to set. Defaults to none treating $filters' keys as the appropriate types
   *
   * @return Smarty current Smarty instance for chaining
   */
  public function setAutoloadFilters($filters, $type = null)
  {
    if ($type !== null) {
      $this->autoload_filters[$type] = (array) $filters;
    } else {
      $this->autoload_filters = (array) $filters;
    }
    return $this;
  }
  /**
   * Add autoload filters
   *
   * @param array $filters filters to load automatically
   * @param string $type  "pre", "output", … specify the filter type to set. Defaults to none treating $filters' keys as the appropriate types
   *
   * @return Smarty current Smarty instance for chaining
   */
  public function addAutoloadFilters($filters, $type = null)
  {
    if ($type !== null) {
      if (!empty($this->autoload_filters[$type])) {
        $this->autoload_filters[$type] = array_merge($this->autoload_filters[$type], (array) $filters);
      } else {
        $this->autoload_filters[$type] = (array) $filters;
      }
    } else {
      foreach ((array) $filters as $key => $value) {
        if (!empty($this->autoload_filters[$key])) {
          $this->autoload_filters[$key] = array_merge($this->autoload_filters[$key], (array) $value);
        } else {
          $this->autoload_filters[$key] = (array) $value;
        }
      }
    }
    return $this;
  }
  /**
   * Get autoload filters
   *
   * @param string $type type of filter to get autoloads for. Defaults to all autoload filters
   *
   * @return array array( 'type1' => array( 'filter1', 'filter2', … ) ) or array( 'filter1', 'filter2', …) if $type was specified
   */
  public function getAutoloadFilters($type = null)
  {
    if ($type !== null) {
      return isset($this->autoload_filters[$type]) ? $this->autoload_filters[$type] : array();
    }
    return $this->autoload_filters;
  }
  /**
   * return name of debugging template
   *
   * @return string
   */
  public function getDebugTemplate()
  {
    return $this->debug_tpl;
  }
  /**
   * set the debug template
   *
   * @param string $tpl_name
   *
   * @return Smarty     current Smarty instance for chaining
   * @throws SmartyException if file is not readable
   */
  public function setDebugTemplate($tpl_name)
  {
    if (!is_readable($tpl_name)) {
      throw new SmartyException("Unknown file '{$tpl_name}'");
    }
    $this->debug_tpl = $tpl_name;
    return $this;
  }
  /**
   * creates a template object
   *
   * @param string $template  the resource handle of the template file
   * @param mixed  $cache_id  cache id to be used with this template
   * @param mixed  $compile_id compile id to be used with this template
   * @param object $parent   next higher level of Smarty variables
   * @param boolean $do_clone  flag is Smarty object shall be cloned
   *
   * @return object template object
   */
  public function createTemplate($template, $cache_id = null, $compile_id = null, $parent = null, $do_clone = true)
  {
    if ($cache_id !== null && (is_object($cache_id) || is_array($cache_id))) {
      $parent = $cache_id;
      $cache_id = null;
    }
    if ($parent !== null && is_array($parent)) {
      $data = $parent;
      $parent = null;
    } else {
      $data = null;
    }
    // default to cache_id and compile_id of Smarty object
    $cache_id = $cache_id === null ? $this->cache_id : $cache_id;
    $compile_id = $compile_id === null ? $this->compile_id : $compile_id;
    // already in template cache?
    if ($this->allow_ambiguous_resources) {
      $_templateId = Smarty_Resource::getUniqueTemplateName($this, $template) . $cache_id . $compile_id;
    } else {
      $_templateId = $this->joined_template_dir . '#' . $template . $cache_id . $compile_id;
    }
    if (isset($_templateId[150])) {
      $_templateId = sha1($_templateId);
    }
    if ($do_clone) {
      if (isset($this->template_objects[$_templateId])) {
        // return cached template object
        $tpl = clone $this->template_objects[$_templateId];
        $tpl->smarty = clone $tpl->smarty;
        $tpl->parent = $parent;
        $tpl->tpl_vars = array();
        $tpl->config_vars = array();
      } else {
        $tpl = new $this->template_class($template, clone $this, $parent, $cache_id, $compile_id);
      }
    } else {
      if (isset($this->template_objects[$_templateId])) {
        // return cached template object
        $tpl = $this->template_objects[$_templateId];
        $tpl->parent = $parent;
        $tpl->tpl_vars = array();
        $tpl->config_vars = array();
      } else {
        $tpl = new $this->template_class($template, $this, $parent, $cache_id, $compile_id);
      }
    }
    // fill data if present
    if (!empty($data) && is_array($data)) {
      // set up variable values
      foreach ($data as $_key => $_val) {
        $tpl->tpl_vars[$_key] = new Smarty_variable($_val);
      }
    }
    return $tpl;
  }
  /**
   * Takes unknown classes and loads plugin files for them
   * class name format: Smarty_PluginType_PluginName
   * plugin filename format: plugintype.pluginname.php
   *
   * @param string $plugin_name class plugin name to load
   * @param bool  $check    check if already loaded
   *
   * @throws SmartyException
   * @return string |boolean filepath of loaded file or false
   */
  public function loadPlugin($plugin_name, $check = true)
  {
    // if function or class exists, exit silently (already loaded)
    if ($check && (is_callable($plugin_name) || class_exists($plugin_name, false))) {
      return true;
    }
    // Plugin name is expected to be: Smarty_[Type]_[Name]
    $_name_parts = explode('_', $plugin_name, 3);
    // class name must have three parts to be valid plugin
    // count($_name_parts) < 3 === !isset($_name_parts[2])
    if (!isset($_name_parts[2]) || strtolower($_name_parts[0]) !== 'smarty') {
      throw new SmartyException("plugin {$plugin_name} is not a valid name format");
    }
    // if type is "internal", get plugin from sysplugins
    if (strtolower($_name_parts[1]) == 'internal') {
      $file = SMARTY_SYSPLUGINS_DIR . strtolower($plugin_name) . '.php';
      if (file_exists($file)) {
        require_once($file);
        return $file;
      } else {
        return false;
      }
    }
    // plugin filename is expected to be: [type].[name].php
    $_plugin_filename = "{$_name_parts[1]}.{$_name_parts[2]}.php";
    $_stream_resolve_include_path = function_exists('stream_resolve_include_path');
    // loop through plugin dirs and find the plugin
    foreach ($this->getPluginsDir() as $_plugin_dir) {
      $names = array(
        $_plugin_dir . $_plugin_filename,
        $_plugin_dir . strtolower($_plugin_filename),
      );
      foreach ($names as $file) {
        if (file_exists($file)) {
          require_once($file);
          return $file;
        }
        if ($this->use_include_path && !preg_match('/^([\/\\\\]|[a-zA-Z]:[\/\\\\])/', $_plugin_dir)) {
          // try PHP include_path
          if ($_stream_resolve_include_path) {
            $file = stream_resolve_include_path($file);
          } else {
            $file = Smarty_Internal_Get_Include_Path::getIncludePath($file);
          }
          if ($file !== false) {
            require_once($file);
            return $file;
          }
        }
      }
    }
    // no plugin loaded
    return false;
  }
  /**
   * Compile all template files
   *
   * @param string $extension   file extension
   * @param bool  $force_compile force all to recompile
   * @param int  $time_limit
   * @param int  $max_errors
   *
   * @return integer number of template files recompiled
   */
  public function compileAllTemplates($extension = '.tpl', $force_compile = false, $time_limit = 0, $max_errors = null)
  {
    return Smarty_Internal_Utility::compileAllTemplates($extension, $force_compile, $time_limit, $max_errors, $this);
  }
  /**
   * Compile all config files
   *
   * @param string $extension   file extension
   * @param bool  $force_compile force all to recompile
   * @param int  $time_limit
   * @param int  $max_errors
   *
   * @return integer number of template files recompiled
   */
  public function compileAllConfig($extension = '.conf', $force_compile = false, $time_limit = 0, $max_errors = null)
  {
    return Smarty_Internal_Utility::compileAllConfig($extension, $force_compile, $time_limit, $max_errors, $this);
  }
  /**
   * Delete compiled template file
   *
   * @param string $resource_name template name
   * @param string $compile_id  compile id
   * @param integer $exp_time   expiration time
   *
   * @return integer number of template files deleted
   */
  public function clearCompiledTemplate($resource_name = null, $compile_id = null, $exp_time = null)
  {
    return Smarty_Internal_Utility::clearCompiledTemplate($resource_name, $compile_id, $exp_time, $this);
  }
  /**
   * Return array of tag/attributes of all tags used by an template
   *
   * @param Smarty_Internal_Template $template
   *
   * @return array of tag/attributes
   */
  public function getTags(Smarty_Internal_Template $template)
  {
    return Smarty_Internal_Utility::getTags($template);
  }
  /**
   * Run installation test
   *
   * @param array $errors Array to write errors into, rather than outputting them
   *
   * @return boolean true if setup is fine, false if something is wrong
   */
  public function testInstall(&$errors = null)
  {
    return Smarty_Internal_Utility::testInstall($this, $errors);
  }
  /**
   * Error Handler to mute expected messages
   *
   * @link http://php.net/set_error_handler
   *
   * @param integer $errno Error level
   * @param     $errstr
   * @param     $errfile
   * @param     $errline
   * @param     $errcontext
   *
   * @return boolean
   */
  public static function mutingErrorHandler($errno, $errstr, $errfile, $errline, $errcontext)
  {
    $_is_muted_directory = false;
    // add the SMARTY_DIR to the list of muted directories
    if (!isset(Smarty::$_muted_directories[SMARTY_DIR])) {
      $smarty_dir = realpath(SMARTY_DIR);
      if ($smarty_dir !== false) {
        Smarty::$_muted_directories[SMARTY_DIR] = array(
          'file'  => $smarty_dir,
          'length' => strlen($smarty_dir),
        );
      }
    }
    // walk the muted directories and test against $errfile
    foreach (Smarty::$_muted_directories as $key => &$dir) {
      if (!$dir) {
        // resolve directory and length for speedy comparisons
        $file = realpath($key);
        if ($file === false) {
          // this directory does not exist, remove and skip it
          unset(Smarty::$_muted_directories[$key]);
          continue;
        }
        $dir = array(
          'file'  => $file,
          'length' => strlen($file),
        );
      }
      if (!strncmp($errfile, $dir['file'], $dir['length'])) {
        $_is_muted_directory = true;
        break;
      }
    }
    // pass to next error handler if this error did not occur inside SMARTY_DIR
    // or the error was within smarty but masked to be ignored
    if (!$_is_muted_directory || ($errno && $errno & error_reporting())) {
      if (Smarty::$_previous_error_handler) {
        return call_user_func(Smarty::$_previous_error_handler, $errno, $errstr, $errfile, $errline, $errcontext);
      } else {
        return false;
      }
    }
  }
  /**
   * Enable error handler to mute expected messages
   *
   * @return void
   */
  public static function muteExpectedErrors()
  {
    /*
      error muting is done because some people implemented custom error_handlers using
      http://php.net/set_error_handler and for some reason did not understand the following paragraph:
        It is important to remember that the standard PHP error handler is completely bypassed for the
        error types specified by error_types unless the callback function returns FALSE.
        error_reporting() settings will have no effect and your error handler will be called regardless -
        however you are still able to read the current value of error_reporting and act appropriately.
        Of particular note is that this value will be 0 if the statement that caused the error was
        prepended by the @ error-control operator.
      Smarty deliberately uses @filemtime() over file_exists() and filemtime() in some places. Reasons include
        - @filemtime() is almost twice as fast as using an additional file_exists()
        - between file_exists() and filemtime() a possible race condition is opened,
         which does not exist using the simple @filemtime() approach.
    */
    $error_handler = array('Smarty', 'mutingErrorHandler');
    $previous = set_error_handler($error_handler);
    // avoid dead loops
    if ($previous !== $error_handler) {
      Smarty::$_previous_error_handler = $previous;
    }
  }
  /**
   * Disable error handler muting expected messages
   *
   * @return void
   */
  public static function unmuteExpectedErrors()
  {
    restore_error_handler();
  }
}
// Check if we're running on windows
Smarty::$_IS_WINDOWS = strtoupper(substr(PHP_OS, 0, 3)) === 'WIN';
// let PCRE (preg_*) treat strings as ISO-8859-1 if we're not dealing with UTF-8
if (Smarty::$_CHARSET !== 'UTF-8') {
  Smarty::$_UTF8_MODIFIER = '';
}
/**
 * Smarty exception class
 *
 * @package Smarty
 */
class SmartyException extends Exception
{
  public static $escape = false;
  public function __toString()
  {
    return ' --> Smarty: ' . (self::$escape ? htmlentities($this->message) : $this->message) . ' <-- ';
  }
}
/**
 * Smarty compiler exception class
 *
 * @package Smarty
 */
class SmartyCompilerException extends SmartyException
{
  public function __toString()
  {
    return ' --> Smarty Compiler: ' . $this->message . ' <-- ';
  }
  /**
   * The line number of the template error
   *
   * @type int|null
   */
  public $line = null;
  /**
   * The template source snippet relating to the error
   *
   * @type string|null
   */
  public $source = null;
  /**
   * The raw text of the error message
   *
   * @type string|null
   */
  public $desc = null;
  /**
   * The resource identifier or template name
   *
   * @type string|null
   */
  public $template = null;
}
/**
 * Autoloader
 */
function smartyAutoload($class)
{
  $_class = strtolower($class);
  static $_classes = array(
    'smarty_config_source'        => true,
    'smarty_config_compiled'       => true,
    'smarty_security'          => true,
    'smarty_cacheresource'        => true,
    'smarty_cacheresource_custom'    => true,
    'smarty_cacheresource_keyvaluestore' => true,
    'smarty_resource'          => true,
    'smarty_resource_custom'       => true,
    'smarty_resource_uncompiled'     => true,
    'smarty_resource_recompiled'     => true,
  );
  if (!strncmp($_class, 'smarty_internal_', 16) || isset($_classes[$_class])) {
    include SMARTY_SYSPLUGINS_DIR . $_class . '.php';
  }
}

更多關(guān)于Smarty相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《smarty模板入門基礎(chǔ)教程》、《PHP模板技術(shù)總結(jié)》、《PHP基于pdo操作數(shù)據(jù)庫(kù)技巧總結(jié)》、《PHP運(yùn)算與運(yùn)算符用法總結(jié)》、《PHP網(wǎng)絡(luò)編程技巧總結(jié)》、《PHP基本語(yǔ)法入門教程》、《php面向?qū)ο蟪绦蛟O(shè)計(jì)入門教程》、《php字符串(string)用法總結(jié)》、《php+mysql數(shù)據(jù)庫(kù)操作入門教程》及《php常見數(shù)據(jù)庫(kù)操作技巧匯總

希望本文所述對(duì)大家基于smarty模板的PHP程序設(shè)計(jì)有所幫助。

相關(guān)文章

  • php微信開發(fā)之上傳臨時(shí)素材

    php微信開發(fā)之上傳臨時(shí)素材

    這篇文章主要為大家詳細(xì)介紹了PHP微信開發(fā)之簡(jiǎn)單實(shí)現(xiàn)上傳臨時(shí)素材的相關(guān)資料,感興趣的小伙伴們可以參考一下
    2016-06-06
  • TP5框架頁(yè)面跳轉(zhuǎn)樣式操作示例

    TP5框架頁(yè)面跳轉(zhuǎn)樣式操作示例

    這篇文章主要介紹了TP5框架頁(yè)面跳轉(zhuǎn)樣式操作,結(jié)合實(shí)例形式分析了TP5框架移動(dòng)設(shè)備支持及頁(yè)面跳轉(zhuǎn)樣式定義相關(guān)操作技巧,需要的朋友可以參考下
    2020-04-04
  • Yii2框架實(shí)現(xiàn)數(shù)據(jù)庫(kù)常用操作總結(jié)

    Yii2框架實(shí)現(xiàn)數(shù)據(jù)庫(kù)常用操作總結(jié)

    本篇文章主要介紹了Yii2框架實(shí)現(xiàn)數(shù)據(jù)庫(kù)常用操作總結(jié),小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧
    2017-02-02
  • 使用phpQuery獲取數(shù)組的實(shí)例

    使用phpQuery獲取數(shù)組的實(shí)例

    下面小編就為大家?guī)硪黄褂胮hpQuery獲取數(shù)組的實(shí)例.小編覺得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧
    2017-03-03
  • Yii中CGridView關(guān)聯(lián)表搜索排序方法實(shí)例詳解

    Yii中CGridView關(guān)聯(lián)表搜索排序方法實(shí)例詳解

    這篇文章主要介紹了Yii中CGridView關(guān)聯(lián)表搜索排序方法,以實(shí)例形式詳細(xì)分析了CGridView關(guān)聯(lián)表搜索排序的實(shí)現(xiàn)過程與搜索結(jié)果出現(xiàn)問題的解決方法,是非常實(shí)用的技巧,需要的朋友可以參考下
    2014-12-12
  • php生成縮略圖填充白邊(等比縮略圖方案)

    php生成縮略圖填充白邊(等比縮略圖方案)

    上傳圖片直接縮放的話就會(huì)導(dǎo)致圖片變形,這樣體驗(yàn)肯定就不好了。下面提供一種解決方法,縮小后添加白邊的方法看下面的代碼實(shí)現(xiàn)
    2013-12-12
  • php讀取excel文件的簡(jiǎn)單實(shí)例

    php讀取excel文件的簡(jiǎn)單實(shí)例

    這篇文章介紹了php讀取excel文件的簡(jiǎn)單實(shí)例,有需要的朋友可以參考一下
    2013-08-08
  • thinkphp5.1框架模板布局與模板繼承用法分析

    thinkphp5.1框架模板布局與模板繼承用法分析

    這篇文章主要介紹了thinkphp5.1框架模板布局與模板繼承用法,結(jié)合實(shí)例形式分析了thinkPHP5.1框架模板布局與模板繼承相關(guān)配置、調(diào)用、操作技巧與注意事項(xiàng),需要的朋友可以參考下
    2019-07-07
  • ThinkPHP之N方法實(shí)例詳解

    ThinkPHP之N方法實(shí)例詳解

    ThinkPHP的N方法屬于計(jì)數(shù)器方法,這篇文章主要介紹了ThinkPHP的N方法,需要的朋友可以參考下
    2014-06-06
  • Yii2實(shí)現(xiàn)ActiveForm ajax提交

    Yii2實(shí)現(xiàn)ActiveForm ajax提交

    這篇文章主要 為大家詳細(xì)介紹了Yii2實(shí)現(xiàn)ActiveForm ajax提交的相關(guān)資料,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2017-05-05

最新評(píng)論

亚洲免费成人a v| 日本a级视频老女人| 91麻豆精品秘密入口在线观看| 黄色片黄色片wyaa| 55夜色66夜色国产精品站| 久草电影免费在线观看| 国产成人自拍视频播放| 国产亚洲精品欧洲在线观看| 91九色porny蝌蚪国产成人| 年轻的人妻被夫上司侵犯| 都市激情校园春色狠狠| 成人av久久精品一区二区| 国产欧美日韩在线观看不卡| 岛国一区二区三区视频在线| 免费黄页网站4188| 日韩成人综艺在线播放| 不戴胸罩引我诱的隔壁的人妻| av俺也去在线播放| 天天操天天弄天天射| 人妻久久久精品69系列| 1024久久国产精品| 亚洲推理片免费看网站| 国产精品中文av在线播放 | 久草视频在线免播放| 涩爱综合久久五月蜜臀| 黑人大几巴狂插日本少妇| 国产视频网站一区二区三区| 欧美亚洲自偷自拍 在线| 性欧美日本大妈母与子| 日本高清成人一区二区三区| 国产三级影院在线观看| 久久机热/这里只有| 日本福利午夜电影在线观看| 成年人免费看在线视频| 亚洲国产欧美国产综合在线| 日韩av大胆在线观看| 成人sm视频在线观看| 中文字幕最新久久久| 日本www中文字幕| 中文字幕在线观看极品视频| 天天操夜夜骑日日摸| 免费手机黄页网址大全| 9色在线视频免费观看| 男人操女人的逼免费视频| av在线shipin| 日本少妇在线视频大香蕉在线观看| 国产高清精品极品美女| 国产成人自拍视频播放| 久久精品久久精品亚洲人| 亚洲 欧美 自拍 偷拍 在线| 亚洲国产成人无码麻豆艾秋| 亚洲一级美女啪啪啪| 91中文字幕免费在线观看| 天堂av在线播放免费| 久久久久久久精品老熟妇| 日本av高清免费网站| 中文字幕一区二区三区蜜月| 国产一区自拍黄视频免费观看| 午夜美女少妇福利视频| 成人动漫大肉棒插进去视频| 涩爱综合久久五月蜜臀| 一区二区三区麻豆福利视频| 99精品一区二区三区的区| 日韩精品中文字幕福利| 成人高潮aa毛片免费| 人妻熟女在线一区二区| 成人免费公开视频无毒| 精品av国产一区二区三区四区| 日韩亚国产欧美三级涩爱| 懂色av蜜桃a v| 自拍偷拍 国产资源| 国产精品国产三级麻豆| av网址国产在线观看| 欧美成人综合色在线噜噜| 小泽玛利亚视频在线观看| 18禁无翼鸟成人在线| 欧美日韩高清午夜蜜桃大香蕉| 欧美精品资源在线观看| 91麻豆精品久久久久| 国产女人露脸高潮对白视频| 欧美偷拍亚洲一区二区| 亚洲图库另类图片区| 天堂va蜜桃一区入口| 成人乱码一区二区三区av| 精品一区二区三四区| 国产妇女自拍区在线观看| 天天操,天天干,天天射| 国产精品视频资源在线播放| 欧美日韩精品永久免费网址| 精品视频中文字幕在线播放 | 欧美性感尤物人妻在线免费看| 国产精品国产三级国产午| 亚洲视频在线视频看视频在线| 绝色少妇高潮3在线观看| 亚洲综合另类欧美久久| 日韩精品激情在线观看| 在线观看视频 你懂的| 久久h视频在线观看| av中文字幕福利网| 亚洲熟妇x久久av久久| 免费在线黄色观看网站| 久久久精品999精品日本| 香港三日本三韩国三欧美三级| 亚洲精品国产综合久久久久久久久| 国产精品女邻居小骚货| 亚洲免费av在线视频| 中文字幕奴隷色的舞台50| 成人国产激情自拍三区| sspd152中文字幕在线| 天天日天天日天天擦| 欲满人妻中文字幕在线| 青青青青青青青在线播放视频| 特级欧美插插插插插bbbbb| 在线免费91激情四射| 国产成人精品亚洲男人的天堂| 亚洲日产av一区二区在线| 亚洲精品国品乱码久久久久| 国产日本欧美亚洲精品视| 欧美亚洲自偷自拍 在线| 一本久久精品一区二区| 在线新三级黄伊人网| 综合色区亚洲熟妇shxstz| 91久久精品色伊人6882| 中文字幕第一页国产在线| 亚洲成av人无码不卡影片一| 经典亚洲伊人第一页| 亚洲一级美女啪啪啪| 78色精品一区二区三区| 98视频精品在线观看| 日韩欧美国产一区ab| 国产精品久久久久久久女人18| 最近中文字幕国产在线| 99热这里只有国产精品6| 国产普通话插插视频| 最新日韩av传媒在线| 日本午夜福利免费视频| 亚洲欧美成人综合在线观看| 国产a级毛久久久久精品| 日韩伦理短片在线观看| huangse网站在线观看| 精品亚洲国产中文自在线| 男人靠女人的逼视频| 日日夜夜狠狠干视频| 人人妻人人人操人人人爽| 精品国产高潮中文字幕| 青青草人人妻人人妻| 一区二区三区美女毛片| 免费在线黄色观看网站| 国产 在线 免费 精品| 馒头大胆亚洲一区二区| huangse网站在线观看| 国产视频一区在线观看| 熟女人妻在线中出观看完整版| 啪啪啪18禁一区二区三区| 无码中文字幕波多野不卡| 97资源人妻免费在线视频| 人妻无码色噜噜狠狠狠狠色| 国产午夜亚洲精品不卡在线观看| 色婷婷精品大在线观看| 免费岛国喷水视频在线观看 | 91精品啪在线免费| 午夜美女少妇福利视频| 哥哥姐姐综合激情小说| 天天日天天干天天插舔舔| 亚洲一区二区三区精品乱码| 日韩美在线观看视频黄| 国产精品久久久久久美女校花| 国产精品视频资源在线播放| 伊人综合aⅴ在线网| 日本人妻少妇18—xx| 3344免费偷拍视频| 91精品视频在线观看免费| 亚洲精品精品国产综合| 欧美中文字幕一区最新网址| 亚洲日产av一区二区在线| 精品亚洲中文字幕av | 国产三级片久久久久久久| 亚洲精品在线资源站| 黄页网视频在线免费观看| 天天日天天做天天日天天做| 只有精品亚洲视频在线观看| 国产亚洲成人免费在线观看| 中出中文字幕在线观看| 久久久久五月天丁香社区| 1000部国产精品成人观看视频 | 传媒在线播放国产精品一区| 天天日天天添天天爽| 色偷偷伊人大杳蕉综合网| 国产福利小视频免费观看| 无套猛戳丰满少妇人妻| 久久久久久久99精品| 欧美黑人性猛交xxxxⅹooo| 我想看操逼黄色大片| 青青青aaaa免费| 亚洲综合在线视频可播放| 特黄老太婆aa毛毛片| 欧美天堂av无线av欧美| 日韩美女搞黄视频免费| 青青青国产免费视频| 亚洲男人在线天堂网| 成年美女黄网站18禁久久| 日本高清在线不卡一区二区| 亚洲免费国产在线日韩| 99热国产精品666| 都市激情校园春色狠狠| 中文字幕—97超碰网| 小泽玛利亚视频在线观看| 亚洲一区二区三区久久午夜| 99人妻视频免费在线| 天堂v男人视频在线观看| 粉嫩欧美美人妻小视频| 欧美黄色录像免费看的| 在线播放 日韩 av| 色伦色伦777国产精品| 东京热男人的av天堂| 香蕉aⅴ一区二区三区| 欧美黑人性猛交xxxxⅹooo| 亚洲成人情色电影在线观看| 大学生A级毛片免费视频| 久久久久久久精品成人热| 国产中文精品在线观看| 午夜在线一区二区免费| 最新97国产在线视频| 2022中文字幕在线| 国产亚洲四十路五十路| 国产一区二区火爆视频 | 91桃色成人网络在线观看| 国产精品久久久久久久精品视频| 视频久久久久久久人妻| av网址国产在线观看| 黄页网视频在线免费观看 | aⅴ五十路av熟女中出| 2020中文字幕在线播放| 中国视频一区二区三区| 久久久精品999精品日本| 男人操女人逼逼视频网站| 动色av一区二区三区| 亚洲人妻视频在线网| 中文字幕在线第一页成人| 中文字幕综合一区二区| 亚洲av成人免费网站| tube69日本少妇| 在线观看亚洲人成免费网址| 亚洲麻豆一区二区三区| 天天日天天操天天摸天天舔| 精品美女福利在线观看| 天天日天天干天天搡| 可以在线观看的av中文字幕| 伊人成人在线综合网| 99亚洲美女一区二区三区| 欧美黑人性暴力猛交喷水| 成人国产影院在线观看| 91老熟女连续高潮对白| 天天操天天插天天色| 人妻少妇亚洲一区二区| 大鸡吧插入女阴道黄色片 | 亚洲 欧美 精品 激情 偷拍| av破解版在线观看| 好太好爽好想要免费| 国产精品福利小视频a| 激情小视频国产在线| 婷婷五月亚洲综合在线| 日比视频老公慢点好舒服啊| av黄色成人在线观看| 午夜福利资源综合激情午夜福利资| 2022国产精品视频| 青青青爽视频在线播放| aⅴ五十路av熟女中出| 最近的中文字幕在线mv视频| 最近中文2019年在线看| 91国内精品自线在拍白富美| 偷拍自拍亚洲美腿丝袜| 在线免费观看欧美小视频| 老司机免费视频网站在线看| 1769国产精品视频免费观看| www,久久久,com| 摧残蹂躏av一二三区| 91极品新人『兔兔』精品新作| 国产乱子伦一二三区| 午夜成午夜成年片在线观看| 成人蜜臀午夜久久一区| 亚洲av无硬久久精品蜜桃| 亚洲国产免费av一区二区三区| 无码国产精品一区二区高潮久久4| 久久丁香婷婷六月天| 亚洲午夜在线视频福利| 国产黄色大片在线免费播放| 中文字幕在线永久免费播放| yy6080国产在线视频| 欧美亚洲一二三区蜜臀| 肏插流水妹子在线乐播下载| 精品日产卡一卡二卡国色天香 | 亚洲 中文 自拍 无码| 女同性ⅹxx女同hd| 日本阿v视频在线免费观看| 红杏久久av人妻一区| 在线观看av观看av| lutube在线成人免费看| 日曰摸日日碰夜夜爽歪歪| 人人超碰国字幕观看97| 久久国产精品精品美女| 天天操天天操天天碰| 一区二区三区 自拍偷拍| 中国黄色av一级片| rct470中文字幕在线| 亚洲伊人久久精品影院一美女洗澡| 亚洲熟女久久久36d| 亚洲熟女久久久36d| 亚洲成人线上免费视频观看| 美女av色播在线播放| 亚洲高清免费在线观看视频| 亚洲一区二区人妻av| 久久免费看少妇高潮完整版| 日本后入视频在线观看| 中文字幕在线一区精品| 亚洲一区二区人妻av| 性感美女高潮视频久久久| 欧美女同性恋免费a| 欧美日韩一级黄片免费观看| 亚洲一区二区三区精品视频在线 | 欧美一区二区中文字幕电影 | 久久这里有免费精品| 一区二区三区 自拍偷拍| 91九色porny蝌蚪国产成人| 久久久噜噜噜久久熟女av| 国产夫妻视频在线观看免费 | 亚洲男人在线天堂网| 性色蜜臀av一区二区三区| 欧美乱妇无乱码一区二区| 午夜福利资源综合激情午夜福利资 | 99精品视频在线观看婷婷| 免费手机黄页网址大全| 精品日产卡一卡二卡国色天香| 精品一线二线三线日本| 一区二区三区的久久的蜜桃的视频 | 亚洲国产精品久久久久久6| 天天摸天天亲天天舔天天操天天爽 | 丝袜肉丝一区二区三区四区在线看| 青青草视频手机免费在线观看| 亚洲av男人的天堂你懂的| 国产精品久久久久网| 黄色录像鸡巴插进去| 日韩成人免费电影二区| 在线观看日韩激情视频| 91精品国产高清自在线看香蕉网 | 同居了嫂子在线播高清中文| 欧美精品一区二区三区xxxx| 全国亚洲男人的天堂| 蜜臀av久久久久久久| 99热这里只有国产精品6| 天天日天天日天天擦| 欧美一区二区三区高清不卡tv| 一区二区三区蜜臀在线| 成年人啪啪视频在线观看| 久久久久久久99精品| 日本福利午夜电影在线观看| 啪啪啪啪啪啪啪免费视频| 老鸭窝日韩精品视频观看| 丰满少妇人妻xxxxx| 日本女大学生的黄色小视频| 成人影片高清在线观看 | 五月婷婷在线观看视频免费| 人人妻人人人操人人人爽| 国产精品亚洲在线观看| 欧美国产亚洲中英文字幕| 成年人免费看在线视频| 国产超码片内射在线| 成年人午夜黄片视频资源| AV无码一区二区三区不卡| av手机在线观播放网站| 国语对白xxxx乱大交| 2018在线福利视频| 99精品免费久久久久久久久a| 黄色视频成年人免费观看| 男生舔女生逼逼的视频| 欧美精品一二三视频| 色伦色伦777国产精品| 精彩视频99免费在线| 老司机你懂得福利视频| 91综合久久亚洲综合| 亚洲成a人片777777| 中文字幕在线永久免费播放| 欧美亚洲一二三区蜜臀| 人妻少妇av在线观看| 欧美一区二区三区四区性视频| 国产成人精品亚洲男人的天堂| yy96视频在线观看| 在线观看操大逼视频| 亚洲美女自偷自拍11页| yellow在线播放av啊啊啊| 国产福利小视频二区| 黑人3p华裔熟女普通话| 人妻丝袜av在线播放网址| 热久久只有这里有精品| 日本熟妇一区二区x x| 91快播视频在线观看| 伊人网中文字幕在线视频| 强行扒开双腿猛烈进入免费版| 午夜福利人人妻人人澡人人爽 | 亚洲国产最大av综合| 五十路熟女人妻一区二区9933| 亚洲在线免费h观看网站| 久久艹在线观看视频| 国产精品成久久久久三级蜜臀av | 中文字幕亚洲久久久| 欧美交性又色又爽又黄麻豆| 中文字幕之无码色多多| 精品一区二区三四区| 日本精品美女在线观看| 白嫩白嫩美女极品国产在线观看| 2020久久躁狠狠躁夜夜躁| 亚洲欧美另类手机在线| 亚洲另类在线免费观看| 都市家庭人妻激情自拍视频| 亚洲成高清a人片在线观看| 日韩一个色综合导航| 19一区二区三区在线播放| 日韩国产乱码中文字幕| 黄色中文字幕在线播放| 国产麻豆国语对白露脸剧情| 伊人日日日草夜夜草| 伊人情人综合成人久久网小说| 日本裸体熟妇区二区欧美| 亚洲精品乱码久久久本| 自拍偷拍日韩欧美一区二区| 亚洲福利精品视频在线免费观看| 91九色porny国产蝌蚪视频| 久久这里只有精品热视频| 亚洲成人三级在线播放| 国产精品入口麻豆啊啊啊| 欧美久久久久久三级网| 日本熟女50视频免费| 亚洲av日韩av网站| 精品91自产拍在线观看一区| 任我爽精品视频在线播放| 边摸边做超爽毛片18禁色戒| 人妻熟女在线一区二区| av老司机亚洲一区二区| 久草视频首页在线观看| 男人的天堂av日韩亚洲| 中文字日产幕乱六区蜜桃| 69精品视频一区二区在线观看| 在线视频免费观看网| av网址在线播放大全| 精品欧美一区二区vr在线观看| 天天干天天日天天谢综合156| 亚洲精品亚洲人成在线导航| 免费男阳茎伸入女阳道视频| 92福利视频午夜1000看| 国产精品亚洲а∨天堂免| 亚洲国产精品中文字幕网站| 国产亚洲成人免费在线观看| 青青在线视频性感少妇和隔壁黑丝| 激情五月婷婷免费视频| 视频一区 视频二区 视频| 国产品国产三级国产普通话三级| 亚洲综合图片20p| 一级黄片久久久久久久久| 强行扒开双腿猛烈进入免费版| 自拍偷拍 国产资源| 水蜜桃一区二区三区在线观看视频 | 天天射夜夜操狠狠干| 国产清纯美女al在线| 欧美精品国产综合久久| 国产精品黄大片在线播放| 成年午夜免费无码区| 国产av国片精品一区二区| 偷拍自拍 中文字幕| av完全免费在线观看av| 免费黄高清无码国产| 青春草视频在线免费播放| 看一级特黄a大片日本片黑人| 中出中文字幕在线观看| 精品黑人巨大在线一区| 中文字幕1卡1区2区3区| 激情色图一区二区三区| 99热这里只有精品中文| 国产91嫩草久久成人在线视频| 2022精品久久久久久中文字幕| 国产福利小视频大全| 91自产国产精品视频| 五月婷婷在线观看视频免费 | 国产黄色大片在线免费播放| 男女啪啪视频免费在线观看| 亚洲国产精品免费在线观看| 久久久精品国产亚洲AV一| 粉嫩av蜜乳av蜜臀| 亚洲 人妻 激情 中文| 熟妇一区二区三区高清版| 午夜精品一区二区三区更新| 日韩成人综艺在线播放| 福利视频一区二区三区筱慧| 亚洲欧美日韩视频免费观看| 亚洲丝袜老师诱惑在线观看| 日韩不卡中文在线视频网站| 青青青青在线视频免费观看| 中文字幕最新久久久| 日韩中文字幕在线播放第二页 | 人妻丝袜精品中文字幕| 欧美在线精品一区二区三区视频| 亚洲精品无码久久久久不卡| 亚洲天堂精品久久久| 国产成人精品一区在线观看 | sejizz在线视频| 不卡一不卡二不卡三| 亚洲国产40页第21页| 色97视频在线播放| 亚洲欧美另类手机在线| 小穴多水久久精品免费看| 亚洲成人激情视频免费观看了| 2020久久躁狠狠躁夜夜躁| 日本精品视频不卡一二三| 欧美性受xx黑人性猛交| 少妇人妻二三区视频| 精品高潮呻吟久久av| 成人影片高清在线观看| 日本精品一区二区三区在线视频。| 男人的天堂一区二区在线观看| 欧美成人精品欧美一级黄色| 久久久久久九九99精品| 天天操天天干天天日狠狠插| 亚洲天堂成人在线观看视频网站| 国产亚洲精品欧洲在线观看| 青青草亚洲国产精品视频| 91九色porny蝌蚪国产成人| 久久三久久三久久三久久| 久草极品美女视频在线观看| 国产老熟女伦老熟妇ⅹ| 51精品视频免费在线观看| 一区二区三区国产精选在线播放| 亚洲国产精品免费在线观看| 国产精品污污污久久| 在线观看免费视频网| 男人的网址你懂的亚洲欧洲av| 真实国模和老外性视频| 黄色三级网站免费下载| 97超碰免费在线视频| 性感美女高潮视频久久久| 国产精品污污污久久| 美女福利视频网址导航| 淫秽激情视频免费观看| 中文字幕之无码色多多| 中文字幕日本人妻中出| 国产乱弄免费视频观看| 亚洲熟女女同志女同| 免费在线观看视频啪啪| 播放日本一区二区三区电影| 2020久久躁狠狠躁夜夜躁| 亚洲人妻30pwc| 精品欧美一区二区vr在线观看| av在线观看网址av| 黄色录像鸡巴插进去| 伊人开心婷婷国产av| 成年人午夜黄片视频资源| 在线视频自拍第三页| 韩国AV无码不卡在线播放| 天天干天天插天天谢| 午夜激情精品福利视频| 非洲黑人一级特黄片| 中文字幕av熟女人妻| 亚洲一区二区人妻av| 操的小逼流水的文章| 男人天堂色男人av| av老司机精品在线观看| 色哟哟国产精品入口| 国产黑丝高跟鞋视频在线播放| 亚洲精品无码色午夜福利理论片| av中文字幕在线观看第三页| 99久久超碰人妻国产| 色伦色伦777国产精品| 三级等保密码要求条款| 国产精品人妻一区二区三区网站| av在线播放国产不卡| 国产成人无码精品久久久电影| 都市激情校园春色狠狠| 男人的天堂在线黄色| 91精品国产麻豆国产| 欧美精品一区二区三区xxxx| 搡老妇人老女人老熟女| 大屁股肉感人妻中文字幕在线| 中文字幕综合一区二区| 91久久国产成人免费网站| 亚洲2021av天堂| 欧美成人猛片aaaaaaa| 日韩a级精品一区二区| 国产在线拍揄自揄视频网站| 久久久久久久99精品| 偷拍3456eee| 成人午夜电影在线观看 久久| av破解版在线观看| 88成人免费av网站| 国产精品大陆在线2019不卡| 午夜美女少妇福利视频| 精彩视频99免费在线| 免费成人av中文字幕| 免费大片在线观看视频网站| 日本熟女精品一区二区三区| 国产九色91在线视频| 亚洲最大免费在线观看| 性感美女福利视频网站| 亚洲一级av无码一级久久精品| 国产V亚洲V天堂无码欠欠| 六月婷婷激情一区二区三区| 99精品亚洲av无码国产另类| 偷拍自拍福利视频在线观看| 中文字幕中文字幕人妻| 欧美日韩高清午夜蜜桃大香蕉| 在线新三级黄伊人网| 日韩成人免费电影二区| 欧美黑人巨大性xxxxx猛交| 亚洲精品高清自拍av| 国产在线观看黄色视频| 开心 色 六月 婷婷| 老司机免费福利视频网| 青青社区2国产视频| 伊人成人综合开心网| 成人性黑人一级av| 69精品视频一区二区在线观看| 午夜精品一区二区三区城中村| 国产日韩av一区二区在线| 国产在线自在拍91国语自产精品| 日本韩国免费一区二区三区视频 | 久久机热/这里只有| 国产真实乱子伦a视频| 亚洲2021av天堂| 超碰在线中文字幕一区二区| 国产第一美女一区二区三区四区| 天天躁夜夜躁日日躁a麻豆| 欧洲日韩亚洲一区二区三区| 熟女少妇激情五十路| 大学生A级毛片免费视频| 97人妻色免费视频| 在线视频国产欧美日韩| 久久三久久三久久三久久| 国产熟妇一区二区三区av| 天天躁日日躁狠狠躁av麻豆| 福利午夜视频在线观看| 亚洲成人激情av在线| 国产97在线视频观看| 福利在线视频网址导航| 自拍偷拍亚洲欧美在线视频| 91福利在线视频免费观看| 国产精品伦理片一区二区| 91av中文视频在线| 国产亚洲四十路五十路| 一区二区熟女人妻视频| 欧美交性又色又爽又黄麻豆| 九色视频在线观看免费| 亚洲精品一区二区三区老狼| 又粗又硬又猛又爽又黄的| 4个黑人操素人视频网站精品91 | 91色网站免费在线观看| 亚洲中文精品字幕在线观看| 亚洲激情唯美亚洲激情图片| 五十路丰满人妻熟妇| 100%美女蜜桃视频| 真实国模和老外性视频| 青青草视频手机免费在线观看| 初美沙希中文字幕在线| 亚洲午夜电影之麻豆 | 亚洲精品高清自拍av| 92福利视频午夜1000看 | 99久久成人日韩欧美精品| 亚洲成人av在线一区二区| 伊人情人综合成人久久网小说| 中文字幕视频一区二区在线观看| 大陆胖女人与丈夫操b国语高清| 欧美亚洲免费视频观看| 熟女视频一区,二区,三区| 早川濑里奈av黑人番号| 精品少妇一二三视频在线| 97瑟瑟超碰在线香蕉| 亚洲熟女久久久36d| 欧美精品中文字幕久久二区| 日本一道二三区视频久久| 我想看操逼黄色大片| 欧美一区二区三区啪啪同性| av中文字幕网址在线| 亚洲粉嫩av一区二区三区| 国产精品国产三级麻豆| 521精品视频在线观看| 亚洲一区久久免费视频| 97超碰免费在线视频| 3D动漫精品啪啪一区二区下载| 97国产精品97久久| 亚洲一区二区三区久久受| 午夜精品在线视频一区| 亚洲综合一区成人在线| 一本一本久久a久久精品综合不卡 亚洲另类综合一区小说 | 青青草原网站在线观看| 中文字幕无码一区二区免费| 黄色片年轻人在线观看| 久久永久免费精品人妻专区| 自拍偷拍vs一区二区三区| 国产精品免费不卡av| 11久久久久久久久久久| 一个人免费在线观看ww视频| 成人区人妻精品一区二视频| 亚洲第一黄色在线观看| 黄色片黄色片wyaa| 久久一区二区三区人妻欧美| 亚洲图库另类图片区| 在线观看的黄色免费网站| 天天射夜夜操狠狠干| 午夜av一区二区三区| 国产成人无码精品久久久电影 | 综合激情网激情五月五月婷婷| 久久久久久99国产精品| 亚洲激情唯美亚洲激情图片| 成人综合亚洲欧美一区 | 日韩激情文学在线视频| 日日摸夜夜添夜夜添毛片性色av| 亚洲区美熟妇久久久久| 亚洲综合在线视频可播放| 日本美女性生活一级片| 亚洲va国产va欧美va在线| 一区国内二区日韩三区欧美| 中文字幕一区的人妻欧美日韩| 国产激情av网站在线观看| 1769国产精品视频免费观看| 天天色天天舔天天射天天爽| 美女 午夜 在线视频| 天天草天天色天天干| 国产又粗又猛又爽又黄的视频在线| 日韩中文字幕福利av| 国产男女视频在线播放| 亚洲久久午夜av一区二区| 国产极品美女久久久久久| 五十路息与子猛烈交尾视频| 欧美精品激情在线最新观看视频| av一区二区三区人妻| 日韩精品激情在线观看| 精品一区二区三区欧美| 中文字幕成人日韩欧美| 午夜精品亚洲精品五月色| 国产麻豆国语对白露脸剧情| 男女第一次视频在线观看| 久久麻豆亚洲精品av| 午夜精品福利91av| 日韩欧美国产精品91| 欧美日韩v中文在线| 成人性黑人一级av| 亚洲午夜电影之麻豆| 自拍偷拍亚洲另类色图| 久久久久久9999久久久久| 黄色录像鸡巴插进去| www天堂在线久久| 久草电影免费在线观看| 成人福利视频免费在线| 国产精品视频男人的天堂| 国产av国片精品一区二区| 抽查舔水白紧大视频| sspd152中文字幕在线| 91麻豆精品传媒国产黄色片| 中文字幕在线第一页成人| 国产高清在线观看1区2区| 午夜精品一区二区三区更新| 青青青青操在线观看免费| 亚洲日本一区二区久久久精品| 中文字幕中文字幕人妻| 亚洲欧美激情人妻偷拍| 色伦色伦777国产精品| 综合页自拍视频在线播放| 日本少妇人妻xxxxx18| yy6080国产在线视频| 色呦呦视频在线观看视频| 大胸性感美女羞爽操逼毛片| 在线免费观看av日韩| 国产精品福利小视频a| 国产午夜福利av导航| 中文字幕 亚洲av| 成人av在线资源网站| 经典亚洲伊人第一页| 91大屁股国产一区二区| 一色桃子人妻一区二区三区| 欧美激情电影免费在线| 亚洲av色图18p| 66久久久久久久久久久| 九九热99视频在线观看97| 亚洲精品ww久久久久久| 精品久久久久久久久久久久人妻| okirakuhuhu在线观看| 日视频免费在线观看| 国产高清在线观看1区2区| 欲满人妻中文字幕在线| 大陆胖女人与丈夫操b国语高清 | 亚洲激情,偷拍视频| 亚洲精品麻豆免费在线观看| 丝袜国产专区在线观看| 亚洲欧美色一区二区| 国产精品久久久黄网站| 欧美精品免费aaaaaa| 欧美久久一区二区伊人| 日韩精品二区一区久久| 亚洲综合另类精品小说| 天天躁夜夜躁日日躁a麻豆| av中文字幕电影在线看| 大鸡巴后入爆操大屁股美女| 欧美亚洲中文字幕一区二区三区| 欧美亚洲牲夜夜综合久久| 中文字幕av第1页中文字幕| 美女日逼视频免费观看| 无码日韩人妻精品久久| 日韩精品激情在线观看| 成人综合亚洲欧美一区| 偷拍自拍国产在线视频| 欧美精品激情在线最新观看视频| 天天做天天干天天舔| av手机在线观播放网站| 五十路人妻熟女av一区二区| 亚洲综合一区成人在线| 亚洲狠狠婷婷综合久久app| 沈阳熟妇28厘米大战黑人| 熟妇一区二区三区高清版| 视频在线亚洲一区二区| 亚洲精品国品乱码久久久久| 又粗又长 明星操逼小视频| 婷婷久久久综合中文字幕| 日本a级视频老女人| 日本在线不卡免费视频| 男女啪啪啪啪啪的网站| 无忧传媒在线观看视频| 大胆亚洲av日韩av| 欧美日韩一级黄片免费观看| 乱亲女秽乱长久久久| 亚洲国产成人无码麻豆艾秋| 日韩一区二区三区三州| 亚洲 中文 自拍 无码| 日韩欧美一级aa大片| 狠狠操操操操操操操操操| 国产高潮无码喷水AV片在线观看| 久久香蕉国产免费天天| 日本午夜久久女同精女女| 毛片av在线免费看| 任你操任你干精品在线视频| 成人激情文学网人妻| av中文字幕福利网| 三级黄色亚洲成人av| 成年人啪啪视频在线观看| 亚洲av日韩av网站| 亚洲av日韩精品久久久| 熟女人妻在线观看视频| 亚洲天堂av最新网址| 99精品视频在线观看婷婷| 91大屁股国产一区二区| 国产精品国产三级麻豆| 青青草国内在线视频精选| 国产成人精品福利短视频| 男女啪啪视频免费在线观看| av乱码一区二区三区| 这里有精品成人国产99| 成年人黄视频在线观看| 亚洲国产美女一区二区三区软件| 1000部国产精品成人观看视频| 老司机福利精品免费视频一区二区 | 欧美黑人巨大性xxxxx猛交| 中文字幕第三十八页久久| 果冻传媒av一区二区三区| 国产又粗又猛又爽又黄的视频美国| 熟女在线视频一区二区三区| 少妇高潮一区二区三区| 晚上一个人看操B片| 伊人综合aⅴ在线网| 国产久久久精品毛片| 扒开让我视频在线观看| 日视频免费在线观看| 馒头大胆亚洲一区二区| 精品人妻伦一二三区久| 黑人解禁人妻叶爱071| 天天日天天干天天插舔舔| 精品亚洲在线免费观看| 91精品国产观看免费| 欧美专区第八页一区在线播放| 亚洲老熟妇日本老妇| 92福利视频午夜1000看| 精品av国产一区二区三区四区 | 班长撕开乳罩揉我胸好爽| 熟女人妻在线中出观看完整版| 中文亚洲欧美日韩无线码| 黄色的网站在线免费看| 欧洲欧美日韩国产在线| av在线资源中文字幕| 天天做天天干天天舔| 中文字幕日韩精品日本| av中文字幕网址在线| 青青青青青手机视频| 国产在线自在拍91国语自产精品| 人人爽亚洲av人人爽av| 日本后入视频在线观看| 亚洲美女自偷自拍11页| 亚洲人妻30pwc| 四虎永久在线精品免费区二区| wwwxxx一级黄色片| 黄色av网站免费在线| gogo国模私拍视频| 国产日韩av一区二区在线| 国产精品黄大片在线播放| 亚洲欧美久久久久久久久| 2018最新中文字幕在线观看| av中文字幕电影在线看| 国产精品成久久久久三级蜜臀av| 日本乱人一区二区三区| 美女视频福利免费看| 美女被肏内射视频网站| 自拍偷拍亚洲另类色图| 黄色视频成年人免费观看| 国产露脸对白在线观看| 亚洲国产欧美一区二区丝袜黑人| 少妇高潮无套内谢麻豆| 亚洲精品国偷自产在线观看蜜桃| 亚洲自拍偷拍综合色| 亚洲精品 欧美日韩| 天天夜天天日天天日| 久久精品国产亚洲精品166m| 亚洲麻豆一区二区三区| 日本一区精品视频在线观看| 亚洲国产欧美一区二区三区久久| 99热碰碰热精品a中文| 99精品国自产在线人| av一本二本在线观看| 男人天堂最新地址av| 亚洲区欧美区另类最新章节| 中文字幕一区二区自拍| 手机看片福利盒子日韩在线播放| 5528327男人天堂| 极品丝袜一区二区三区| 一区二区三区av高清免费| 制丝袜业一区二区三区| 亚洲色偷偷综合亚洲AV伊人| 中文字幕高清免费在线人妻| 2021久久免费视频| 3337p日本欧洲大胆色噜噜| 欧美一级色视频美日韩| 精品国产亚洲av一淫| 人人超碰国字幕观看97| 都市家庭人妻激情自拍视频| 社区自拍揄拍尻屁你懂的| 国产精品探花熟女在线观看| 含骚鸡巴玩逼逼视频| 天天日夜夜操天天摸| 国产精品三级三级三级| 超级福利视频在线观看| 欧洲日韩亚洲一区二区三区| 久久午夜夜伦痒痒想咳嗽P| av线天堂在线观看| 99久久中文字幕一本人| 2018在线福利视频| 家庭女教师中文字幕在线播放| 男生用鸡操女生视频动漫| 在线观看av观看av| 久久久久久97三级| 久久农村老妇乱69系列| 欧美成人一二三在线网| 18禁美女无遮挡免费| 动色av一区二区三区| 大香蕉福利在线观看| 亚洲精品午夜久久久久| 四虎永久在线精品免费区二区| 久久精品美女免费视频| 含骚鸡巴玩逼逼视频| 欧美精品免费aaaaaa| 九九视频在线精品播放| 18禁美女羞羞免费网站| 亚洲精品福利网站图片| 天天躁日日躁狠狠躁躁欧美av | 91 亚洲视频在线观看| 夜夜嗨av蜜臀av| 亚洲精品午夜aaa久久| 日韩成人性色生活片| 中文字幕av熟女人妻| 不卡日韩av在线观看| 国产一线二线三线的区别在哪| 日比视频老公慢点好舒服啊| 青青在线视频性感少妇和隔壁黑丝 | 女生被男生插的视频网站| 亚洲国产成人在线一区| 欧美亚洲国产成人免费在线| 91国产在线视频免费观看| 亚洲综合一区成人在线| 久久久制服丝袜中文字幕| 日本免费一级黄色录像| 人人妻人人爽人人添夜| 极品丝袜一区二区三区| 青青青国产免费视频| 国产精品亚洲在线观看| 懂色av蜜桃a v| 日本丰满熟妇BBXBBXHD| 亚洲综合图片20p| 天天操天天爽天天干| 99av国产精品欲麻豆| 欧美精品国产综合久久| 中文字幕网站你懂的| 天天操夜夜操天天操天天操| 久精品人妻一区二区三区 | 免费看美女脱光衣服的视频| 欧美黑人性猛交xxxxⅹooo| 亚洲va天堂va国产va久| 欧美 亚洲 另类综合| 欧美一区二区三区啪啪同性| 成人动漫大肉棒插进去视频| 97超碰人人搞人人| 久久久久久九九99精品| 亚洲精品欧美日韩在线播放 | 免费看美女脱光衣服的视频| 日韩无码国产精品强奸乱伦| 亚洲综合一区成人在线| 欧美另类一区二区视频| 国产不卡av在线免费| 婷婷久久一区二区字幕网址你懂得| 日韩中文字幕福利av| 天天插天天狠天天操| 久草视频中文字幕在线观看| av天堂中文字幕最新| 国产精品系列在线观看一区二区| 精品美女在线观看视频在线观看| 国产精品久久久久久久精品视频| 亚洲欧洲av天堂综合| 午夜dv内射一区区| 久久艹在线观看视频| 国产一区自拍黄视频免费观看| 日本人妻少妇18—xx| 日本免费视频午夜福利视频| 亚洲午夜电影之麻豆| 毛片一级完整版免费| 91在线视频在线精品3| 日韩中文字幕福利av| 大鸡吧插逼逼视频免费看| 自拍偷拍vs一区二区三区| 男人靠女人的逼视频| 日韩亚洲高清在线观看| 少妇与子乱在线观看| 免费在线看的黄片视频| 自拍偷拍 国产资源| 丝袜亚洲另类欧美变态| 亚洲第一黄色在线观看| 黑人乱偷人妻中文字幕| 天天夜天天日天天日| 欧美亚洲中文字幕一区二区三区| 免费福利av在线一区二区三区| 青青草在观免费国产精品| 久久艹在线观看视频| 十八禁在线观看地址免费| 天天干天天爱天天色| 亚洲精品ww久久久久久| 极品性荡少妇一区二区色欲| 精品一区二区亚洲欧美| 少妇深喉口爆吞精韩国| 77久久久久国产精产品| 美女少妇亚洲精选av| 毛茸茸的大外阴中国视频| www日韩毛片av| 欧美一区二区中文字幕电影| 久久久久久9999久久久久| 四川五十路熟女av| 在线国产中文字幕视频| 亚洲高清一区二区三区视频在线| 丰满的子国产在线观看| 在线网站你懂得老司机| 国产精品人妻66p| 大香蕉伊人国产在线| 天天艹天天干天天操| av天堂加勒比在线| 黑人大几巴狂插日本少妇| 在线免费观看日本伦理| 国产性色生活片毛片春晓精品| 国产一线二线三线的区别在哪| 亚洲图片欧美校园春色| 久久精品美女免费视频| 狠狠的往里顶撞h百合| 天天日天天摸天天爱| 夜色福利视频在线观看| 一区二区三区激情在线| 无码中文字幕波多野不卡| 中文字幕高清资源站| 人妻无码中文字幕专区| av手机在线观播放网站| 国产成人精品久久二区91| 成年人该看的视频黄免费| 日本少妇人妻xxxxx18| 亚洲一区二区人妻av| 天堂av中文在线最新版| 午夜大尺度无码福利视频| 欧美久久一区二区伊人| 日韩影片一区二区三区不卡免费| 国产九色91在线视频| 沙月文乃人妻侵犯中文字幕在线| 粉嫩av蜜乳av蜜臀| 2025年人妻中文字幕乱码在线| 亚洲综合一区成人在线| 国产高清精品一区二区三区| 日本真人性生活视频免费看| 91精品国产综合久久久蜜| 中文字幕av一区在线观看| 欧美精品中文字幕久久二区| 人妻无码色噜噜狠狠狠狠色| 中文字幕乱码人妻电影| 亚洲av色香蕉一区二区三区| 日本韩国免费一区二区三区视频| 亚洲丝袜老师诱惑在线观看| 日本一区美女福利视频| 精品亚洲中文字幕av| 午夜免费观看精品视频| 韩国AV无码不卡在线播放| 精品久久久久久久久久久a√国产 日本女大学生的黄色小视频 | 深夜男人福利在线观看| 亚洲国产免费av一区二区三区| 99精品免费观看视频| 国产高清97在线观看视频| 99精品国自产在线人| 亚洲护士一区二区三区| 中文字幕午夜免费福利视频| 亚洲欧美色一区二区| 天天日天天爽天天干| 国产精品黄片免费在线观看| av一本二本在线观看| 国产女人叫床高潮大片视频| 强行扒开双腿猛烈进入免费版| 日视频免费在线观看| 热99re69精品8在线播放| 免费岛国喷水视频在线观看| 强行扒开双腿猛烈进入免费版| 亚洲免费视频欧洲免费视频| 在线观看欧美黄片一区二区三区| 日本精品视频不卡一二三| 天天日天天日天天擦| 青青青青草手机在线视频免费看 | 亚洲精品高清自拍av| 亚洲免费成人a v| 国产精品自拍在线视频| 九色精品视频在线播放| 五月天色婷婷在线观看视频免费| 成熟丰满熟妇高潮xx×xx| 成熟熟女国产精品一区| 中文字母永久播放1区2区3区| 一色桃子人妻一区二区三区| 国产女人被做到高潮免费视频 | 国产综合视频在线看片| 婷婷激情四射在线观看视频| 1000小视频在线| 欧美色婷婷综合在线| 在线观看免费av网址大全| 青青青青青青青青青青草青青| 天天干夜夜操啊啊啊| 沙月文乃人妻侵犯中文字幕在线| 人妻无码中文字幕专区| 偷拍自拍福利视频在线观看| av天堂中文免费在线| 中文字幕第一页国产在线| 中文字幕欧美日韩射射一| 欧美成人一二三在线网| 日本女大学生的黄色小视频| 98精产国品一二三产区区别| 中文字幕日本人妻中出| 久久久久久99国产精品| 深夜男人福利在线观看| 91麻豆精品传媒国产黄色片| 国内自拍第一页在线观看| 521精品视频在线观看| 40道精品招牌菜特色| 在线观看国产免费麻豆| 中文亚洲欧美日韩无线码| 日韩欧美中文国产在线| 亚洲av色图18p| 93精品视频在线观看| 国产精品黄色的av| 综合精品久久久久97| 午夜影院在线观看视频羞羞羞| 日韩精品中文字幕在线| 五月天色婷婷在线观看视频免费| 一区二区三区久久久91| 在线不卡日韩视频播放| 很黄很污很色的午夜网站在线观看| 欧美日韩亚洲国产无线码| 传媒在线播放国产精品一区| 一区二区三区精品日本| 欧美少妇性一区二区三区| 免费成人av中文字幕| 人妻无码色噜噜狠狠狠狠色| 激情五月婷婷综合色啪| 一区二区三区四区中文| 欧美香蕉人妻精品一区二区| 啪啪啪18禁一区二区三区| 人妻久久无码中文成人| 日韩在线中文字幕色| 亚欧在线视频你懂的| 国产成人精品一区在线观看| 99精品视频在线观看婷婷| 北条麻妃高跟丝袜啪啪| 99久久中文字幕一本人| 欧美亚洲少妇福利视频| 93精品视频在线观看| v888av在线观看视频| 亚洲精品三级av在线免费观看| 亚洲精品国品乱码久久久久| 亚洲精品欧美日韩在线播放| 亚洲一级av大片免费观看| 女同性ⅹxx女同hd| 成人亚洲国产综合精品| 国产真实灌醉下药美女av福利| 日韩av有码一区二区三区4| 欧洲日韩亚洲一区二区三区| 国产片免费观看在线观看| 人人妻人人爽人人澡人人精品| 换爱交换乱高清大片| 欧美中文字幕一区最新网址| 免费大片在线观看视频网站| 天堂av在线官网中文| 一区二区三区av高清免费| 日韩人妻xxxxx| 97精品人妻一区二区三区精品| 水蜜桃国产一区二区三区| 国产亚洲欧美45p| 好吊操视频这里只有精品| 日本一道二三区视频久久| 插逼视频双插洞国产操逼插洞| 操的小逼流水的文章| 夜夜骑夜夜操夜夜奸| 黄色av网站免费在线| 亚洲熟女女同志女同| 9色在线视频免费观看| 91久久人澡人人添人人爽乱| 大陆胖女人与丈夫操b国语高清| 免费福利av在线一区二区三区| 免费av岛国天堂网站| 97精品视频在线观看| 老熟妇凹凸淫老妇女av在线观看| 成人30分钟免费视频| 偷拍3456eee| av完全免费在线观看av| 91极品大一女神正在播放| 成人av中文字幕一区| 精品91高清在线观看| 亚洲中文字幕乱码区| 白白操白白色在线免费视频| 日韩欧美中文国产在线| 青青草人人妻人人妻| 2021久久免费视频| 国产精品久久久久久美女校花| 视频一区 视频二区 视频| 亚洲欧美精品综合图片小说| 91av精品视频在线| 精品少妇一二三视频在线| 北条麻妃av在线免费观看| 老熟妇xxxhd老熟女| 国产黄色高清资源在线免费观看| 麻豆精品成人免费视频| 国产大学生援交正在播放| 欧洲日韩亚洲一区二区三区 | 久久亚洲天堂中文对白| 亚洲国产中文字幕啊啊啊不行了 | 大学生A级毛片免费视频| 国产品国产三级国产普通话三级| 粉嫩av蜜乳av蜜臀| 丝袜肉丝一区二区三区四区在线看| 国产极品精品免费视频| 中文字幕国产专区欧美激情| 久久亚洲天堂中文对白| 一区国内二区日韩三区欧美| 日韩精品电影亚洲一区| 亚洲高清视频在线不卡| 欧美香蕉人妻精品一区二区| 国产欧美精品一区二区高清| 国产精品午夜国产小视频| 国产91精品拍在线观看| 欧美熟妇一区二区三区仙踪林| 午夜激情久久不卡一区二区| 国产精品午夜国产小视频| 绝顶痉挛大潮喷高潮无码 | 亚洲2021av天堂| 国产老熟女伦老熟妇ⅹ| 国产福利小视频大全| 男人插女人视频网站| 亚洲第一黄色在线观看| 黑人性生活视频免费看| 久久麻豆亚洲精品av| 中文字幕成人日韩欧美| 夜夜嗨av一区二区三区中文字幕| 热久久只有这里有精品| 亚洲成人国产综合一区| 中文字幕 亚洲av| 日韩不卡中文在线视频网站| 黄色三级网站免费下载| 中文字幕亚洲中文字幕| 40道精品招牌菜特色| 97小视频人妻一区二区| 日本韩国免费福利精品| 国产精品久久久久久久久福交| 日韩美女综合中文字幕pp| 欧美另类z0z变态| 久久机热/这里只有| 久久精品国产23696| 91破解版永久免费| 亚洲一级av无码一级久久精品| 黑人性生活视频免费看| 香蕉av影视在线观看| 中文字幕国产专区欧美激情| 青青青青青青青青青国产精品视频| 免费在线黄色观看网站| 久久精品国产999| 日本少妇人妻xxxxx18| 免费男阳茎伸入女阳道视频| 亚洲欧美人精品高清| xxx日本hd高清| 国产亚洲精品视频合集| 亚洲中文字幕校园春色| 日韩a级精品一区二区| 三级等保密码要求条款| 中文字幕亚洲久久久| 国产变态另类在线观看| 特黄老太婆aa毛毛片| 激情国产小视频在线| 在线观看视频 你懂的| 亚洲一区二区三区久久受| 青青草成人福利电影| 玩弄人妻熟妇性色av少妇| 中文字幕无码日韩专区免费| 亚洲欧美久久久久久久久| 综合一区二区三区蜜臀| 亚洲1069综合男同| 伊人情人综合成人久久网小说| 日美女屁股黄邑视频| 午夜青青草原网在线观看| 日本熟妇一区二区x x| 亚洲女人的天堂av| 熟女人妻在线中出观看完整版| 国产中文精品在线观看| 日韩a级精品一区二区| 天天干天天爱天天色| 91免费黄片可看视频| 日韩加勒比东京热二区| 偷拍自拍 中文字幕| 午夜精品九一唐人麻豆嫩草成人| 同居了嫂子在线播高清中文| 成人高潮aa毛片免费| 欧美日韩情色在线观看| 77久久久久国产精产品| 在线观看av亚洲情色| 一个色综合男人天堂| 久久久人妻一区二区| 美洲精品一二三产区区别| 日韩av大胆在线观看| 岳太深了紧紧的中文字幕| 免费男阳茎伸入女阳道视频 | 国产日韩欧美美利坚蜜臀懂色| xxx日本hd高清| 青青青青青手机视频| 又粗又硬又猛又爽又黄的| 天天操天天插天天色| 一区二区三区麻豆福利视频| 成人免费毛片aaaa| 欧美香蕉人妻精品一区二区| 成人H精品动漫在线无码播放| 91小伙伴中女熟女高潮| 亚洲 中文 自拍 另类 欧美| 亚洲综合一区成人在线| 91免费观看在线网站| 成人av在线资源网站| 婷婷综合蜜桃av在线| 美女少妇亚洲精选av| 午夜精品九一唐人麻豆嫩草成人 | 中文字幕之无码色多多| 中文字幕 人妻精品| 久久免看30视频口爆视频| 成人av免费不卡在线观看| 快点插进来操我逼啊视频| 香蕉aⅴ一区二区三区| 欧美男人大鸡吧插女人视频| 午夜在线精品偷拍一区二| 中文字幕亚洲久久久| 狠狠鲁狠狠操天天晚上干干| 亚洲视频在线观看高清| 人人人妻人人澡人人| 国产精品国产三级国产精东 | 一区二区三区四区五区性感视频| 天天干天天操天天爽天天摸| 午夜久久香蕉电影网| 中文字幕在线第一页成人 | 40道精品招牌菜特色| 精品人妻一二三区久久| 精品高跟鞋丝袜一区二区| 亚洲图片欧美校园春色| 精品91高清在线观看| 国产一线二线三线的区别在哪| 亚洲av男人的天堂你懂的| 欧美亚洲一二三区蜜臀| 日本午夜爽爽爽爽爽视频在线观看 | 黄页网视频在线免费观看| 2021久久免费视频| 97国产在线观看高清| 夜夜骑夜夜操夜夜奸| 色97视频在线播放| 色综合久久久久久久久中文| 亚洲高清自偷揄拍自拍| 亚洲国产欧美一区二区三区…| 五月天久久激情视频| 蜜桃专区一区二区在线观看| 亚洲女人的天堂av| 日韩中文字幕在线播放第二页| 午夜精品九一唐人麻豆嫩草成人 | 一区二区三区美女毛片| 4个黑人操素人视频网站精品91| 日韩欧美国产精品91| 欧美日本在线观看一区二区| 女同互舔一区二区三区| 熟妇一区二区三区高清版| 岛国免费大片在线观看| 国产老熟女伦老熟妇ⅹ| 夜色17s精品人妻熟女| 欧美韩国日本国产亚洲| 播放日本一区二区三区电影| 亚洲精品国产综合久久久久久久久| 人人妻人人澡欧美91精品| 天码人妻一区二区三区在线看| 91超碰青青中文字幕| 在线免费观看日本伦理| 黄色成人在线中文字幕| weyvv5国产成人精品的视频| 中国产一级黄片免费视频播放| 欧美日韩一级黄片免费观看| 人妻少妇亚洲一区二区| 老司机欧美视频在线看| 午夜婷婷在线观看视频| 啊慢点鸡巴太大了啊舒服视频| 中出中文字幕在线观看| 在线观看日韩激情视频| 91传媒一区二区三区| 狠狠地躁夜夜躁日日躁| av完全免费在线观看av| 国产麻豆剧果冻传媒app| 99热碰碰热精品a中文| 亚洲一区久久免费视频| 丰满的子国产在线观看| 日本男女操逼视频免费看| 在线可以看的视频你懂的| 国内精品在线播放第一页| 午夜在线精品偷拍一区二| 亚洲av男人天堂久久| 欧美区一区二区三视频| 午夜美女少妇福利视频| 传媒在线播放国产精品一区| 91自产国产精品视频| 91人妻人人做人人爽在线| 好男人视频在线免费观看网站| 国产精品手机在线看片| 99久久中文字幕一本人| 国产中文字幕四区在线观看| 日韩成人免费电影二区| 午夜久久香蕉电影网| 中文字幕人妻av在线观看| 亚洲午夜电影在线观看| 国产在线观看黄色视频| 亚洲成人黄色一区二区三区| gav成人免费播放| 中文字幕在线永久免费播放| 成人乱码一区二区三区av| 国产午夜激情福利小视频在线| 19一区二区三区在线播放| 亚洲一级av大片免费观看| 欧美成人综合视频一区二区| 亚洲一区二区三区五区| 国产黄色a级三级三级三级| 东游记中文字幕版哪里可以看到| 午夜精品久久久久久99热| 久久精品久久精品亚洲人| av日韩在线免费播放| 在线免费观看黄页视频| 亚洲一区自拍高清免费视频| 把腿张开让我插进去视频| 久久精品在线观看一区二区| 色天天天天射天天舔| 国产午夜男女爽爽爽爽爽视频| 亚洲中文字幕国产日韩| 偷拍自拍国产在线视频| 久久久久久久亚洲午夜综合福利| 一级黄片大鸡巴插入美女| 亚洲国产精品久久久久久6| 日本高清在线不卡一区二区| 国产变态另类在线观看| 国产成人小视频在线观看无遮挡| 国产性色生活片毛片春晓精品| 国产av一区2区3区| 久久精品国产亚洲精品166m| 欧美成一区二区三区四区| 亚洲欧美成人综合视频| 天天射,天天操,天天说| 亚洲熟女久久久36d| 伊人综合免费在线视频| 色伦色伦777国产精品| 色综合久久五月色婷婷综合| 青青青激情在线观看视频| 一色桃子人妻一区二区三区| 亚洲中文精品字幕在线观看| 馒头大胆亚洲一区二区| 国产精品精品精品999| av天堂加勒比在线| 人妻丝袜精品中文字幕| 任我爽精品视频在线播放| 亚洲一区二区三区久久受| 九一传媒制片厂视频在线免费观看 | 中国熟女@视频91| 国产久久久精品毛片| 中文字幕1卡1区2区3区| 99精品国产自在现线观看| 在线国产中文字幕视频| 肏插流水妹子在线乐播下载| 亚洲综合色在线免费观看| 亚洲美女自偷自拍11页| 可以在线观看的av中文字幕| 中文字幕日韩91人妻在线| av俺也去在线播放| 天天操天天射天天操天天天| xxx日本hd高清| 久久艹在线观看视频| 国产综合精品久久久久蜜臀| 欧美麻豆av在线播放| 一区二区三区四区视频| 97年大学生大白天操逼| 亚洲视频在线观看高清| 免费啪啪啪在线观看视频| 含骚鸡巴玩逼逼视频| 国产精品探花熟女在线观看| 欧美在线一二三视频| 午夜在线一区二区免费| 97小视频人妻一区二区| 五月婷婷在线观看视频免费| 一区二区麻豆传媒黄片| 不卡一区一区三区在线| 黄色黄色黄片78在线| 国产一区av澳门在线观看| 国产普通话插插视频| 最新中文字幕乱码在线| 国产亚洲四十路五十路| 2020av天堂网在线观看| 欧美3p在线观看一区二区三区| 国产av一区2区3区| 偷拍自拍福利视频在线观看| 中文字幕人妻三级在线观看| 亚洲欧美国产麻豆综合| 亚洲成人激情av在线| 国产精品久久久久国产三级试频| 最近中文字幕国产在线| 丁香花免费在线观看中文字幕| 亚洲精品久久视频婷婷| 一个色综合男人天堂| 涩涩的视频在线观看视频| 黄色成年网站午夜在线观看 | 98视频精品在线观看| 日本性感美女三级视频| 任你操视频免费在线观看| 日本成人一区二区不卡免费在线| av在线播放国产不卡| 国产日韩精品电影7777| 91国语爽死我了不卡| 狠狠的往里顶撞h百合| 亚洲2021av天堂| 青青在线视频性感少妇和隔壁黑丝 | 国产又粗又硬又猛的毛片视频| 99人妻视频免费在线| 黑人解禁人妻叶爱071| 人人超碰国字幕观看97| 国产在线观看免费人成短视频| 91色九色porny| 白白操白白色在线免费视频 | 人妻激情图片视频小说| 麻豆精品成人免费视频| 天天躁日日躁狠狠躁av麻豆| av男人天堂狠狠干| 91国内精品自线在拍白富美| 91色秘乱一区二区三区| 手机看片福利盒子日韩在线播放| 久精品人妻一区二区三区| 色综合久久无码中文字幕波多| 亚洲 自拍 色综合图| 亚洲va欧美va人人爽3p| 亚洲另类伦春色综合小| 天天操天天干天天日狠狠插| 天天插天天色天天日| 人妻在线精品录音叫床| 亚洲成人国产综合一区| 97a片免费在线观看| 97少妇精品在线观看| 国产亚洲精品视频合集| 天天躁夜夜躁日日躁a麻豆| 夜鲁夜鲁狠鲁天天在线| 91快播视频在线观看| 亚洲麻豆一区二区三区| 青青操免费日综合视频观看| 91免费福利网91麻豆国产精品 | 国产视频在线视频播放| 日本熟妇一区二区x x| 国产黑丝高跟鞋视频在线播放| 亚洲一级 片内射视正片| 亚洲1区2区3区精华液| 欧美第一页在线免费观看视频| 午夜精品一区二区三区福利视频| 在线观看一区二区三级| 天天日天天干天天搡| 五月天中文字幕内射| 人妻无码中文字幕专区| 青青青青青青青青青国产精品视频| 国产九色91在线观看精品| 日本一本午夜在线播放| 国产精品国产三级国产精东 | 亚洲 中文 自拍 另类 欧美| av在线资源中文字幕| 中文字幕 人妻精品| 欧美精产国品一二三区| 一区二区在线观看少妇| 国产成人精品福利短视频| 边摸边做超爽毛片18禁色戒 | 国产成人无码精品久久久电影| 二区中出在线观看老师| 99精品视频在线观看婷婷| 国产V亚洲V天堂无码欠欠| 人人妻人人澡欧美91精品| 在线观看视频一区麻豆| 毛片一级完整版免费| 大鸡巴后入爆操大屁股美女| 国产日韩一区二区在线看| 天堂中文字幕翔田av| 日韩美女综合中文字幕pp| 老司机欧美视频在线看| 亚洲中文字幕校园春色| 黄色黄色黄片78在线| 欧美成人猛片aaaaaaa| 激情五月婷婷综合色啪| 国产亚洲四十路五十路| 日本性感美女视频网站| 日本黄在免费看视频| 国产刺激激情美女网站| gogo国模私拍视频| 揄拍成人国产精品免费看视频 | 亚洲综合一区二区精品久久| 五月天久久激情视频| 91精品国产91久久自产久强| 在线视频这里只有精品自拍| 欧美日韩亚洲国产无线码| 亚洲日本一区二区久久久精品| 在线观看免费av网址大全| 日韩二区视频一线天婷婷五| 岛国毛片视频免费在线观看| 国产福利小视频大全| 99re久久这里都是精品视频| 夫妻在线观看视频91| 国产成人精品久久二区91| 国产av国片精品一区二区| 久久久91蜜桃精品ad| 综合一区二区三区蜜臀| 欧美viboss性丰满| 一区二区三区视频,福利一区二区| 国产视频一区二区午夜| 无码精品一区二区三区人| aiss午夜免费视频| 亚洲国产成人最新资源| 在线观看av观看av| 日本女人一级免费片| 天天干天天爱天天色| 一个色综合男人天堂| 熟女在线视频一区二区三区| 国产日韩一区二区在线看| av视网站在线观看| 大鸡吧插逼逼视频免费看| 亚洲综合在线视频可播放| 人妻丝袜榨强中文字幕| 精品亚洲在线免费观看| 天天夜天天日天天日| 美女被肏内射视频网站| 亚洲成高清a人片在线观看| 天天干狠狠干天天操| 老师啊太大了啊啊啊尻视频| 一级A一级a爰片免费免会员| 国产剧情演绎系列丝袜高跟| 视频一区二区三区高清在线| 欧美亚洲偷拍自拍色图| 黄色片一级美女黄色片| 青青社区2国产视频| 又色又爽又黄又刺激av网站| 国产精品自拍视频大全| av中文在线天堂精品| 91破解版永久免费| 99热久久极品热亚洲| 黄片三级三级三级在线观看| 一区二区视频视频视频| 性欧美日本大妈母与子| 精品国产午夜视频一区二区| 日韩精品激情在线观看| 亚洲Av无码国产综合色区| 人人人妻人人澡人人| 成人av天堂丝袜在线观看| 欧洲精品第一页欧洲精品亚洲| 91精品激情五月婷婷在线| 国产精品三级三级三级| 麻豆性色视频在线观看| 扒开腿挺进肉嫩小18禁视频| 毛片一级完整版免费| 欧洲国产成人精品91铁牛tv | 啊慢点鸡巴太大了啊舒服视频| 日本一区美女福利视频| 国产精品亚洲在线观看| 国产97视频在线精品| 一区二区三区毛片国产一区| 国产精品午夜国产小视频| 老师让我插进去69AV| 欧美黑人与人妻精品| 天天射,天天操,天天说| 在线观看日韩激情视频| 丰满少妇人妻xxxxx| gogo国模私拍视频| 日韩精品啪啪视频一道免费| 福利视频一区二区三区筱慧| 男生舔女生逼逼的视频| 午夜dv内射一区区| 中文字幕日韩精品就在这里| 久久尻中国美女视频| 91香蕉成人app下载| 亚洲av男人天堂久久| 换爱交换乱高清大片| 亚洲国产中文字幕啊啊啊不行了| 国产一区二区三免费视频| 北条麻妃av在线免费观看| 日韩中文字幕福利av| 久精品人妻一区二区三区| 国产内射中出在线观看| 亚洲成人国产综合一区| 专门看国产熟妇的网站| 日本脱亚入欧是指什么| 亚洲免费av在线视频| 人妻另类专区欧美制服| 插逼视频双插洞国产操逼插洞 | 久久久久久久久久久久久97| 小穴多水久久精品免费看| 久久久超爽一二三av| 视频啪啪啪免费观看| 任你操视频免费在线观看| 国产黄色大片在线免费播放| 大香蕉玖玖一区2区| 在线不卡日韩视频播放| 99精品国产免费久久| 欧美日本在线视频一区| 大白屁股精品视频国产| 天天艹天天干天天操| 97香蕉碰碰人妻国产樱花| 欧美爆乳肉感大码在线观看| 美女被肏内射视频网站| 午夜毛片不卡在线看| 9国产精品久久久久老师| 日韩中文字幕福利av| 日韩欧美国产精品91| 久精品人妻一区二区三区| 中文字幕第1页av一天堂网| 天天操天天干天天插| 综合色区亚洲熟妇shxstz| 亚洲熟女久久久36d| 福利视频网久久91| 熟女视频一区,二区,三区| 福利视频广场一区二区| 视频一区二区综合精品| 人妻少妇一区二区三区蜜桃| 美女在线观看日本亚洲一区| 福利在线视频网址导航| asmr福利视频在线观看| 成人18禁网站在线播放| 白嫩白嫩美女极品国产在线观看| 中文字幕在线视频一区二区三区| 成年人的在线免费视频| 天天干天天爱天天色| 黄色视频成年人免费观看| 欲乱人妻少妇在线视频裸| 国产chinesehd精品麻豆| 成人乱码一区二区三区av| 男人操女人逼逼视频网站| 亚洲av自拍天堂网| 91在线视频在线精品3| 欧美一区二区三区激情啪啪啪| 欧美精品激情在线最新观看视频| 亚洲精品乱码久久久久久密桃明| 欧美怡红院视频在线观看| 91精品综合久久久久3d动漫| 国产精品黄大片在线播放| 国产精品久久久久久久久福交 | av完全免费在线观看av| 日本韩国在线观看一区二区| 一区二区三区久久中文字幕| 国产变态另类在线观看| 在线免费观看靠比视频的网站| 六月婷婷激情一区二区三区| 国产午夜亚洲精品麻豆| 国产成人午夜精品福利| 1区2区3区4区视频在线观看| 亚洲一区二区三区精品乱码| 免费观看国产综合视频| 亚洲av香蕉一区区二区三区犇| 91社福利《在线观看| 免费一级特黄特色大片在线观看| 成人免费做爰高潮视频| 国产大学生援交正在播放| 欧洲亚洲欧美日韩综合| 伊人开心婷婷国产av| 免费无码人妻日韩精品一区二区| 青青青国产免费视频| 色综合久久五月色婷婷综合| 少妇被强干到高潮视频在线观看| 青娱乐极品视频青青草| 久久热久久视频在线观看| 亚洲一区久久免费视频| av欧美网站在线观看| 人人妻人人爽人人添夜| 亚洲偷自拍高清视频| 一级A一级a爰片免费免会员| 天天日天天干天天插舔舔| 边摸边做超爽毛片18禁色戒| 亚洲国产40页第21页| 久久久人妻一区二区| 亚洲精品无码色午夜福利理论片| 亚洲麻豆一区二区三区| 亚洲一区制服丝袜美腿| 91精品国产黑色丝袜| 亚洲欧洲av天堂综合| 91传媒一区二区三区| 免费在线观看视频啪啪| 视频啪啪啪免费观看| 无套猛戳丰满少妇人妻| 超pen在线观看视频公开97| 国产精彩对白一区二区三区| 97人妻人人澡爽人人精品| 国产日韩一区二区在线看 | 国产伦精品一区二区三区竹菊| 91久久精品色伊人6882| 欧美精品免费aaaaaa| 91av中文视频在线| 久久久久久久久久性潮| 老司机午夜精品视频资源| 不卡一不卡二不卡三| 久久这里只有精彩视频免费| 日韩av中文在线免费观看| 午夜场射精嗯嗯啊啊视频| 国产在线自在拍91国语自产精品| 亚洲一区二区三区久久午夜 | 国产麻豆精品人妻av| 精品久久久久久久久久久久人妻| 激情人妻校园春色亚洲欧美| 亚洲欧美清纯唯美另类 | 天天操天天插天天色| 97超碰免费在线视频| 亚洲图库另类图片区| 亚洲精品av在线观看| 自拍偷区二区三区麻豆| 福利视频一区二区三区筱慧| 亚洲第17页国产精品| 国产福利小视频大全| 孕妇奶水仑乱A级毛片免费看| aiss午夜免费视频| 天天日天天爽天天干| 蜜臀成人av在线播放| 超级福利视频在线观看| 啊啊啊想要被插进去视频| 免费啪啪啪在线观看视频| 天天干天天爱天天色| 一区二区三区四区视频| 99久久超碰人妻国产| 国产精品大陆在线2019不卡| 日韩亚国产欧美三级涩爱| 国产一区二区火爆视频| 日韩近亲视频在线观看| 欧美男人大鸡吧插女人视频| 一级黄片大鸡巴插入美女| 成年女人免费播放视频| wwwxxx一级黄色片| 男人操女人逼逼视频网站| 操操网操操伊剧情片中文字幕网| 免费在线黄色观看网站| 在线视频自拍第三页| 综合精品久久久久97| 999热精品视频在线| 韩国女主播精品视频网站| 成人H精品动漫在线无码播放| 亚洲公开视频在线观看| av亚洲中文天堂字幕网| av高潮迭起在线观看| 欧美日韩在线精品一区二区三| wwwxxx一级黄色片| 天堂资源网av中文字幕| av在线观看网址av| 91久久综合男人天堂| 亚洲va天堂va国产va久| 亚洲一区二区三区五区| 亚洲综合一区成人在线| 沈阳熟妇28厘米大战黑人| 亚洲国际青青操综合网站| 超碰在线中文字幕一区二区| 亚洲av自拍偷拍综合| 五月天色婷婷在线观看视频免费| 亚洲成人三级在线播放| 粉嫩av懂色av蜜臀av| 天天日天天干天天舔天天射| 视频 国产 精品 熟女 | av网址国产在线观看| 国产chinesehd精品麻豆| 香蕉aⅴ一区二区三区| 成人区人妻精品一区二视频| 中文字幕一区的人妻欧美日韩| 巨乳人妻日下部加奈被邻居中出| 欧洲欧美日韩国产在线| 自拍偷拍一区二区三区图片| 精品一区二区三区在线观看| 精品国产午夜视频一区二区| 91中文字幕最新合集| 99视频精品全部15| 偷拍自拍亚洲美腿丝袜| 99视频精品全部15| yellow在线播放av啊啊啊| 一区二区三区激情在线| 成人av中文字幕一区| 蜜桃专区一区二区在线观看| 国内资源最丰富的网站| 黄色男人的天堂视频| 中文字幕乱码人妻电影| 青青青青青青青在线播放视频| 老熟妇xxxhd老熟女| 2o22av在线视频| 国产在线观看黄色视频| 啪啪啪啪啪啪啪啪啪啪黄色| 午夜青青草原网在线观看| av久久精品北条麻妃av观看| 中文字幕免费福利视频6| 被大鸡吧操的好舒服视频免费 | 国产欧美日韩第三页| 亚洲国产第一页在线观看| 无套猛戳丰满少妇人妻| 中文字幕网站你懂的| 75国产综合在线视频| 亚洲天堂精品福利成人av| 黄网十四区丁香社区激情五月天 | 涩涩的视频在线观看视频| 性生活第二下硬不起来| 特级无码毛片免费视频播放| 人妻激情图片视频小说| 伊拉克及约旦宣布关闭领空| 黄色男人的天堂视频| aⅴ精产国品一二三产品| 四川五十路熟女av| 色秀欧美视频第一页| 早川濑里奈av黑人番号| 熟女俱乐部一二三区| 国产激情av网站在线观看| 精品久久久久久久久久久99| 十八禁在线观看地址免费 | 伊人精品福利综合导航| 亚洲国产第一页在线观看| 青青热久免费精品视频在线观看| 亚洲综合另类精品小说| 把腿张开让我插进去视频| 视频一区二区综合精品| 福利一二三在线视频观看| 久久久久久久久久一区二区三区| 无忧传媒在线观看视频| 黄色成年网站午夜在线观看| 日韩精品啪啪视频一道免费| 可以免费看的www视频你懂的| 色av色婷婷人妻久久久精品高清| 国产精品亚洲а∨天堂免| 夫妻在线观看视频91| 欧美日本在线观看一区二区| 一区二区三区 自拍偷拍| 国产av自拍偷拍盛宴| 93视频一区二区三区| 人妻熟女在线一区二区| 五月激情婷婷久久综合网| 亚洲av黄色在线网站| weyvv5国产成人精品的视频| 中文字幕无码日韩专区免费| 成人av天堂丝袜在线观看| 2017亚洲男人天堂| 哥哥姐姐综合激情小说| 中文字幕免费福利视频6| 啪啪啪18禁一区二区三区| 边摸边做超爽毛片18禁色戒| 夜夜操,天天操,狠狠操| 国产麻豆剧果冻传媒app| 日本精品美女在线观看| 国产大学生援交正在播放| 福利午夜视频在线合集| 97国产在线观看高清| 久久精品亚洲国产av香蕉| 中文乱理伦片在线观看| 欧美80老妇人性视频| 任你操视频免费在线观看| 精品成人啪啪18免费蜜臀| 国产精品黄大片在线播放| 亚洲欧美福利在线观看| 午夜的视频在线观看| 被大鸡吧操的好舒服视频免费| 中文字幕av熟女人妻| 亚洲高清国产一区二区三区| 91大屁股国产一区二区| 日本韩国免费福利精品| 日韩视频一区二区免费观看| 国产精品久久久久国产三级试频| 国产真实灌醉下药美女av福利| 18禁美女黄网站色大片下载| 天天躁夜夜躁日日躁a麻豆| 在线 中文字幕 一区| 国产使劲操在线播放| 日韩欧美在线观看不卡一区二区| 2018最新中文字幕在线观看| 日辽宁老肥女在线观看视频| 欧美成人黄片一区二区三区| 欧美亚洲一二三区蜜臀| 欧美香蕉人妻精品一区二区| 淫秽激情视频免费观看| 日韩中文字幕精品淫| 内射久久久久综合网| 中文字幕最新久久久| 日本av在线一区二区三区| 免费在线观看视频啪啪| 又色又爽又黄的美女裸体| 在线观看视频网站麻豆| 美女福利视频导航网站| 精品国产亚洲av一淫| 久草视频 久草视频2| 国产精品污污污久久| 大胸性感美女羞爽操逼毛片| 国产综合精品久久久久蜜臀| 色综合久久五月色婷婷综合| 91九色porny蝌蚪国产成人| 日韩亚国产欧美三级涩爱| 免费观看丰满少妇做受| okirakuhuhu在线观看| 亚洲美女高潮喷浆视频| 狠狠鲁狠狠操天天晚上干干| 极品粉嫩小泬白浆20p主播| 最新的中文字幕 亚洲| 日韩av免费观看一区| 久久精品视频一区二区三区四区| 国产熟妇一区二区三区av| 人人妻人人澡欧美91精品| 国产品国产三级国产普通话三级| 女警官打开双腿沦为性奴| 人人妻人人爽人人澡人人精品| 51国产成人精品视频| japanese日本熟妇另类| 9国产精品久久久久老师 | 日韩美女搞黄视频免费| 亚洲av日韩精品久久久| 经典亚洲伊人第一页| 狠狠躁夜夜躁人人爽天天天天97| 国产九色91在线视频| 98精产国品一二三产区区别| 天天干天天操天天玩天天射| 日本韩国亚洲综合日韩欧美国产 | 成人免费做爰高潮视频| 天天综合天天综合天天网| 熟女人妻一区二区精品视频| 护士特殊服务久久久久久久| 2019av在线视频| 98精产国品一二三产区区别| 精品一区二区三区三区色爱| 韩国三级aaaaa高清视频| 精品区一区二区三区四区人妻 | 亚洲一级美女啪啪啪| 亚洲天堂第一页中文字幕| 久久久噜噜噜久久熟女av| 另类av十亚洲av| 国产 在线 免费 精品| 日本少妇的秘密免费视频| 2o22av在线视频| 快插进小逼里大鸡吧视频| 无码中文字幕波多野不卡| 漂亮 人妻被中出中文| 国产午夜亚洲精品不卡在线观看 | 国产视频一区二区午夜| 91久久精品色伊人6882| 国产精品自拍在线视频| 熟女在线视频一区二区三区| 黑人巨大的吊bdsm| 沙月文乃人妻侵犯中文字幕在线| 国产精品一二三不卡带免费视频| 亚洲av琪琪男人的天堂| 亚洲精品欧美日韩在线播放 | 任我爽精品视频在线播放| 天天色天天爱天天爽| 超碰97人人做人人爱| 在线观看视频 你懂的| 香蕉片在线观看av| 国产一区二区欧美三区| 亚洲少妇人妻无码精品| 欧美日本在线观看一区二区| 最近中文字幕国产在线| 国产精品久久久久网| 青青草精品在线视频观看| 青青色国产视频在线| 久草视频在线一区二区三区资源站| 懂色av之国产精品| 国产精品中文av在线播放| 亚洲欧美激情中文字幕| 一区二区三区四区中文| 91久久综合男人天堂| 91精品国产黑色丝袜| 免费观看国产综合视频| 欧美成一区二区三区四区| chinese国产盗摄一区二区| 中文字幕高清在线免费播放| 玖玖一区二区在线观看| 日韩近亲视频在线观看| 日本熟女50视频免费| 中文字幕无码日韩专区免费| 又色又爽又黄又刺激av网站| 啊用力插好舒服视频| 国产精品日韩欧美一区二区| 黄色中文字幕在线播放| 国产精品精品精品999| 99精品视频在线观看婷婷| 中文字幕人妻被公上司喝醉在线| 成人综合亚洲欧美一区| 亚洲2021av天堂| 亚洲第一黄色在线观看| 欧美一级视频一区二区| 成人30分钟免费视频| 韩国AV无码不卡在线播放| 日韩人妻在线视频免费| 国产精品久久久久久久久福交| 青青青艹视频在线观看| 日本真人性生活视频免费看| 91免费黄片可看视频| 日本av高清免费网站| 一区二区熟女人妻视频| 亚洲青青操骚货在线视频| 大屁股肉感人妻中文字幕在线| 久久三久久三久久三久久| 亚洲 欧美 精品 激情 偷拍| 欧美成人黄片一区二区三区 | 国产精品女邻居小骚货| 班长撕开乳罩揉我胸好爽| 久久精品在线观看一区二区| 精品国产乱码一区二区三区乱| 日本高清在线不卡一区二区| 干逼又爽又黄又免费的视频| 欧美日韩亚洲国产无线码| 天堂va蜜桃一区入口| 免费十精品十国产网站| 久青青草视频手机在线免费观看| 在线网站你懂得老司机| 国产在线免费观看成人| 日韩精品电影亚洲一区| 又黄又刺激的午夜小视频| 欧亚乱色一区二区三区| 婷婷久久一区二区字幕网址你懂得| 高清一区二区欧美系列| 国产熟妇乱妇熟色T区| 亚洲欧美久久久久久久久| 噜噜色噜噜噜久色超碰| 日韩亚国产欧美三级涩爱| 老师啊太大了啊啊啊尻视频| 亚洲av极品精品在线观看| 国产精品免费不卡av| 无码精品一区二区三区人| av视屏免费在线播放| 2021天天色天天干| 日本熟妇一区二区x x| 大黑人性xxxxbbbb| 我想看操逼黄色大片| 午夜毛片不卡免费观看视频 | 这里只有精品双飞在线播放| 午夜美女福利小视频| 91 亚洲视频在线观看| 99精品国产aⅴ在线观看| 97精品综合久久在线| 一区国内二区日韩三区欧美| 国产女人被做到高潮免费视频| 日韩精品一区二区三区在线播放| av中文字幕在线观看第三页| 人人妻人人澡欧美91精品| 亚洲综合在线观看免费| 中文字幕 人妻精品| 99精品一区二区三区的区| 天天摸天天干天天操科普| 国产精品视频男人的天堂| 97超碰国语国产97超碰| 国产又粗又猛又爽又黄的视频在线| 中文字幕人妻一区二区视频 | 在线观看免费视频网| 9国产精品久久久久老师 | 人人妻人人爽人人添夜| 天天干天天操天天扣| 狍和女人的王色毛片| 污污小视频91在线观看| 亚洲国产免费av一区二区三区| 香蕉av影视在线观看| 丝袜国产专区在线观看| 久久久精品999精品日本| 亚洲熟女综合色一区二区三区四区| 成人免费公开视频无毒| 天天日天天爽天天干| 蜜桃视频在线欧美一区| 日辽宁老肥女在线观看视频| 青青草精品在线视频观看| 九色视频在线观看免费| 岛国av高清在线成人在线| 日本午夜福利免费视频| 天天干天天日天天谢综合156| 国产大鸡巴大鸡巴操小骚逼小骚逼| 国产精品成久久久久三级蜜臀av | 亚洲欧美综合另类13p| 在线视频免费观看网| 午夜场射精嗯嗯啊啊视频| 成人免费毛片aaaa| 中文字幕在线永久免费播放 | 只有精品亚洲视频在线观看| 色在线观看视频免费的| 天天射,天天操,天天说| 视频啪啪啪免费观看| 日本一二三区不卡无| 三级av中文字幕在线观看| 久久久极品久久蜜桃| 日韩激情文学在线视频| 鸡巴操逼一级黄色气| 国产日韩一区二区在线看| 一区二区三区的久久的蜜桃的视频| 狠狠操操操操操操操操操| 天天插天天狠天天操| 中文乱理伦片在线观看| 亚洲一级av大片免费观看| 2022国产综合在线干| 欲乱人妻少妇在线视频裸| yy96视频在线观看| 一区二区免费高清黄色视频| 在线免费观看欧美小视频| 一级黄色片夫妻性生活| 9国产精品久久久久老师| 亚洲粉嫩av一区二区三区| 91精品一区二区三区站长推荐| 丝袜长腿第一页在线| 一区二区三区四区中文| 久久人人做人人妻人人玩精品vr| 日本少妇人妻xxxxxhd| 亚洲精品国产久久久久久| 黄色无码鸡吧操逼视频| 久草视频 久草视频2| 欧亚乱色一区二区三区| 2o22av在线视频| 国内资源最丰富的网站| 一区二区三区精品日本| 精品区一区二区三区四区人妻| 91九色porny蝌蚪国产成人| 大白屁股精品视频国产| 色狠狠av线不卡香蕉一区二区 | 激情内射在线免费观看| 91国语爽死我了不卡| 清纯美女在线观看国产| 做爰视频毛片下载蜜桃视频1 | 护士小嫩嫩又紧又爽20p| 成年午夜影片国产片| 中文字幕在线欧美精品| 欧美伊人久久大香线蕉综合| 美女被肏内射视频网站| 中文字幕在线免费第一页| 999久久久久999| 天天射夜夜操狠狠干| 国产a级毛久久久久精品| 日日夜夜精品一二三| 亚洲 人妻 激情 中文| 国产露脸对白在线观看| 国产精品3p和黑人大战| 亚洲精品欧美日韩在线播放| 亚洲福利天堂久久久久久| 亚洲成人av一区久久| 日韩欧美一级精品在线观看| 无码国产精品一区二区高潮久久4| 日韩欧美制服诱惑一区在线| 国产九色91在线视频| 乱亲女秽乱长久久久| 超污视频在线观看污污污| eeuss鲁片一区二区三区| 78色精品一区二区三区| 77久久久久国产精产品| 在线制服丝袜中文字幕| 蜜臀av久久久久久久| 天天爽夜夜爽人人爽QC| 日本韩国免费福利精品| 91精品国产观看免费| 欧美精产国品一二三产品价格| av在线免费资源站| 成人av中文字幕一区| 日本啪啪啪啪啪啪啪| 免费岛国喷水视频在线观看 | 日本韩国免费福利精品| caoporn蜜桃视频| 日韩精品二区一区久久| 亚洲激情偷拍一区二区| 亚洲欧美精品综合图片小说| 国产日韩精品电影7777| 在线观看911精品国产| 国产亚州色婷婷久久99精品| 天天夜天天日天天日| 91九色porny国产在线| 91av精品视频在线| 中文字幕在线观看极品视频| 88成人免费av网站| 国产黄色片在线收看| 丝袜美腿视频诱惑亚洲无 | 青娱乐最新视频在线| 新婚人妻聚会被中出| 国产一区二区欧美三区 | 视频一区 视频二区 视频| 99热这里只有精品中文| 999热精品视频在线| 欧美视频一区免费在线| 欧美一区二区三区久久久aaa| 岛国av高清在线成人在线| 中文字幕欧美日韩射射一| 日本韩国在线观看一区二区| eeuss鲁片一区二区三区| 午夜福利资源综合激情午夜福利资| 国产高清女主播在线| 夜女神免费福利视频| 人人妻人人爱人人草| 亚洲综合一区成人在线| 国产成人自拍视频在线免费观看| 91九色国产porny蝌蚪| 中国无遮挡白丝袜二区精品| 91国语爽死我了不卡| 欧美aa一级一区三区四区| 国产精品自偷自拍啪啪啪| 在线观看黄色成年人网站| 中出中文字幕在线观看| 免费黄色成人午夜在线网站| 精品国产成人亚洲午夜| 亚洲天堂第一页中文字幕| 天天日天天日天天射天天干| 久久久久国产成人精品亚洲午夜| 九色精品视频在线播放| 日韩人妻丝袜中文字幕| 99热碰碰热精品a中文| 亚洲一区二区三区精品乱码| 啊啊好慢点插舔我逼啊啊啊视频| 91人妻精品一区二区在线看| 亚洲av琪琪男人的天堂| av成人在线观看一区| 黄片色呦呦视频免费看| 中文字幕日本人妻中出| 午夜精品亚洲精品五月色| 人妻av无码专区久久绿巨人| 国产亚洲欧美45p| 综合激情网激情五月五月婷婷| 日本a级视频老女人| 日韩加勒比东京热二区| 午夜精品亚洲精品五月色| 久久综合老鸭窝色综合久久| av中文字幕在线导航| 亚洲综合乱码一区二区| 亚洲国产欧美国产综合在线 | 蜜臀成人av在线播放| 少妇人妻久久久久视频黄片| 久久久久五月天丁香社区| 在线观看日韩激情视频| 欧洲欧美日韩国产在线| 18禁精品网站久久| 国产精品人妻66p| 一区二区三区蜜臀在线| 欧美视频综合第一页| 久久尻中国美女视频| 夏目彩春在线中文字幕| 亚洲欧洲一区二区在线观看| av视网站在线观看| 人妻丝袜诱惑我操她视频| 91免费观看在线网站| 亚洲第一黄色在线观看| 果冻传媒av一区二区三区| 影音先锋女人av噜噜色| 绝顶痉挛大潮喷高潮无码| 日韩精品激情在线观看| 中国黄色av一级片| 99热国产精品666| 女人精品内射国产99| 欧美一区二区三区在线资源 | 自拍偷拍vs一区二区三区| 国产精品欧美日韩区二区| 亚洲欧美久久久久久久久| 国产一区二区久久久裸臀| 91啪国自产中文字幕在线| 欧洲国产成人精品91铁牛tv| 久久久久久久久久一区二区三区| 日本免费午夜视频网站| 人妻凌辱欧美丰满熟妇| 午夜频道成人在线91| 扒开让我视频在线观看| 欧美日本国产自视大全| 黄色大片免费观看网站| 夜夜骑夜夜操夜夜奸| 青青色国产视频在线| 18禁网站一区二区三区四区 | 国产精品久久久久久久精品视频| 绝顶痉挛大潮喷高潮无码 | 久碰精品少妇中文字幕av| 亚洲成人三级在线播放| 91精品国产黑色丝袜| 亚洲免费成人a v| 特一级特级黄色网片| 国产在线自在拍91国语自产精品| 国产熟妇乱妇熟色T区| 丰满少妇人妻xxxxx| 亚洲中文字幕国产日韩| 国产在线91观看免费观看| 婷婷综合亚洲爱久久| 中文字母永久播放1区2区3区| 91人妻精品久久久久久久网站 | 欧美香蕉人妻精品一区二区| 91色老99久久九九爱精品| 中文人妻AV久久人妻水| 最新97国产在线视频| 欧洲国产成人精品91铁牛tv| 中文字幕在线观看极品视频| 亚洲av黄色在线网站| 亚洲综合在线观看免费| 日本五十路熟新垣里子| 3337p日本欧洲大胆色噜噜| 91精品激情五月婷婷在线| 福利片区一区二体验区| 婷婷色中文亚洲网68| 五十路熟女av天堂| 激情图片日韩欧美人妻| 中文字幕+中文字幕| 伊人日日日草夜夜草| 夜女神免费福利视频| 在线观看欧美黄片一区二区三区| 80电影天堂网官网| 亚洲美女自偷自拍11页| 被大鸡吧操的好舒服视频免费| 在线观看的a站 最新|