ETH Price: $2,153.02 (-15.20%)
Gas: 0.97 Gwei

Token

PepeFork (PORK)
 

Overview

Max Total Supply

1,000,000,000 PORK

Holders

81

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Binance: Withdrawals 7
Balance
13,485,721 PORK

Value
$0.00
0xe2fc31f816a9b94326492132018c3aecc4a93ae1
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
TOKEN

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-01-31
*/

/**
 *Submitted for verification at BscScan.com on 2024-01-26
*/

/**
 *Submitted for verification at BscScan.com on 2024-01-24
*/

/**
 *Submitted for verification at BscScan.com on 2023-11-17
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/* pragma solidity ^0.8.0; */


abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */


abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

   
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

////// src/IUniswapV2Factory.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

////// src/IUniswapV2Router02.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

/* pragma solidity >=0.8.10; */

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

contract TOKEN is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    uint256 public percentForLPBurn = 25; // 25 = .25%
    bool public lpBurnEnabled = true;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

    /******************/

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event devWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    event AutoNukeLP();

    event ManualNukeLP();
    //nametoken

    constructor() ERC20("PepeFork", "PORK") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyMarketingFee = 0;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

        uint256 _sellMarketingFee = 0;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 1000000000 * 1e18;

        maxTransactionAmount = 1_000_000_000 * 1e18; // 100% from total supply maxTransactionAmountTxn
        maxWallet = 1_000_000_000 * 1e18; // 100% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 10000) / 10000; // 100% swap wallet

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = address(0x632ba6daB1c93d4AC42402F83D6BCBe5CcF78485);
        devWallet = address(0x632ba6daB1c93d4AC42402F83D6BCBe5CcF78485);

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 100, "Must keep fees at 11% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 100, "Must keep fees at 11% or less");
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    event BoughtEarly(address indexed sniper);

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            deadAddress,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMarketing +
            tokensForDev;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

        (success, ) = address(devWallet).call{value: ethForDev}("");

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }
    function mint(address to, uint256 amount) external onlyOwner {
    _mint(to, amount);
}


    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600881526020017f50657065466f726b0000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f504f524b00000000000000000000000000000000000000000000000000000000815250816003908162000127919062000d70565b50806004908162000139919062000d70565b5050506200015c62000150620005b760201b60201c565b620005bf60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001888160016200068560201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000208573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022e919062000ec1565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000296573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bc919062000ec1565b6040518363ffffffff1660e01b8152600401620002db92919062000f04565b6020604051808303816000875af1158015620002fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000321919062000ec1565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200036960a05160016200068560201b60201c565b6200037e60a05160016200076f60201b60201c565b60008060008060008060006b033b2e3c9fd0803ce800000090506b033b2e3c9fd0803ce80000006008819055506b033b2e3c9fd0803ce8000000600a819055506127108082620003cf919062000f60565b620003db919062000fda565b6009819055508660158190555085601681905550846017819055506017546016546015546200040b919062001012565b62000417919062001012565b6014819055508360198190555082601a8190555081601b81905550601b54601a5460195462000447919062001012565b62000453919062001012565b60188190555073632ba6dab1c93d4ac42402f83d6bcbe5ccf78485600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073632ba6dab1c93d4ac42402f83d6bcbe5ccf78485600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000525620005176200081060201b60201c565b60016200083a60201b60201c565b620005383060016200083a60201b60201c565b6200054d61dead60016200083a60201b60201c565b6200056f620005616200081060201b60201c565b60016200068560201b60201c565b620005823060016200068560201b60201c565b6200059761dead60016200068560201b60201c565b620005a933826200097460201b60201c565b5050505050505050620011aa565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000695620005b760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006bb6200081060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000714576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200070b90620010ae565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200084a620005b760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008706200081060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008c9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008c090620010ae565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009689190620010ed565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009e6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009dd906200115a565b60405180910390fd5b620009fa6000838362000aec60201b60201c565b806002600082825462000a0e919062001012565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a65919062001012565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000acc91906200118d565b60405180910390a362000ae86000838362000af160201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b7857607f821691505b60208210810362000b8e5762000b8d62000b30565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000bf87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000bb9565b62000c04868362000bb9565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c5162000c4b62000c458462000c1c565b62000c26565b62000c1c565b9050919050565b6000819050919050565b62000c6d8362000c30565b62000c8562000c7c8262000c58565b84845462000bc6565b825550505050565b600090565b62000c9c62000c8d565b62000ca981848462000c62565b505050565b5b8181101562000cd15762000cc560008262000c92565b60018101905062000caf565b5050565b601f82111562000d205762000cea8162000b94565b62000cf58462000ba9565b8101602085101562000d05578190505b62000d1d62000d148562000ba9565b83018262000cae565b50505b505050565b600082821c905092915050565b600062000d456000198460080262000d25565b1980831691505092915050565b600062000d60838362000d32565b9150826002028217905092915050565b62000d7b8262000af6565b67ffffffffffffffff81111562000d975762000d9662000b01565b5b62000da3825462000b5f565b62000db082828562000cd5565b600060209050601f83116001811462000de8576000841562000dd3578287015190505b62000ddf858262000d52565b86555062000e4f565b601f19841662000df88662000b94565b60005b8281101562000e225784890151825560018201915060208501945060208101905062000dfb565b8683101562000e42578489015162000e3e601f89168262000d32565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e898262000e5c565b9050919050565b62000e9b8162000e7c565b811462000ea757600080fd5b50565b60008151905062000ebb8162000e90565b92915050565b60006020828403121562000eda5762000ed962000e57565b5b600062000eea8482850162000eaa565b91505092915050565b62000efe8162000e7c565b82525050565b600060408201905062000f1b600083018562000ef3565b62000f2a602083018462000ef3565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f6d8262000c1c565b915062000f7a8362000c1c565b925082820262000f8a8162000c1c565b9150828204841483151762000fa45762000fa362000f31565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000fe78262000c1c565b915062000ff48362000c1c565b92508262001007576200100662000fab565b5b828204905092915050565b60006200101f8262000c1c565b91506200102c8362000c1c565b925082820190508082111562001047576200104662000f31565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620010966020836200104d565b9150620010a3826200105e565b602082019050919050565b60006020820190508181036000830152620010c98162001087565b9050919050565b60008115159050919050565b620010e781620010d0565b82525050565b6000602082019050620011046000830184620010dc565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001142601f836200104d565b91506200114f826200110a565b602082019050919050565b60006020820190508181036000830152620011758162001133565b9050919050565b620011878162000c1c565b82525050565b6000602082019050620011a460008301846200117c565b92915050565b60805160a051615e0862001232600039600081816114ab01528181611cbb01528181612803015281816128ba015281816128e701528181612f260152818161418701528181614240015261426d015260008181610fc401528181612ece015281816143e3015281816144c4015281816144eb0152818161458701526145ae0152615e086000f3fe6080604052600436106103bc5760003560e01c80638a8c523c116101f2578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e37578063f637434214610e60578063f8b45b0514610e8b578063fe72b27a14610eb6576103c3565b8063dd62ed3e14610d79578063e2f4560514610db6578063e884f26014610de1578063f11a24d314610e0c576103c3565b8063c876d0b9116100dc578063c876d0b914610cbb578063c8c8ebe414610ce6578063d257b34f14610d11578063d85ba06314610d4e576103c3565b8063bbc0c74214610c15578063c024666814610c40578063c17b5b8c14610c69578063c18bc19514610c92576103c3565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b47578063a9059cbb14610b72578063aacebbe314610baf578063b62496f514610bd8576103c3565b80639ec22c0e14610a895780639fccce3214610ab4578063a0d82dc514610adf578063a457c2d714610b0a576103c3565b8063924de9b7116101c1578063924de9b7146109e157806395d89b4114610a0a5780639a7a23d614610a355780639c3b4fdc14610a5e576103c3565b80638a8c523c146109495780638da5cb5b146109605780638ea5220f1461098b57806392136913146109b6576103c3565b8063313ce567116102e257806370a08231116102755780637571336a116102445780637571336a146108a157806375f0a874146108ca5780637bce5a04146108f55780638095d56414610920576103c3565b806370a08231146107f9578063715018a614610836578063730c18881461084d578063751039fc14610876576103c3565b80634a62bb65116102b15780634a62bb651461073b5780634fbee193146107665780636a486a8e146107a35780636ddd1713146107ce576103c3565b8063313ce5671461067f57806339509351146106aa57806340c10f19146106e757806349bd5a5e14610710576103c3565b8063199ffc721161035a57806323b872dd1161032957806323b872dd146105c157806327c8f835146105fe5780632c3e486c146106295780632e82f1a014610654576103c3565b8063199ffc72146105175780631a8145bb146105425780631f3fed8f1461056d578063203e727e14610598576103c3565b80631694505e116103965780631694505e1461046d57806318160ddd146104985780631816467f146104c3578063184c16c5146104ec576103c3565b806306fdde03146103c8578063095ea7b3146103f357806310d5de5314610430576103c3565b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610ef3565b6040516103ea91906146ed565b60405180910390f35b3480156103ff57600080fd5b5061041a600480360381019061041591906147a8565b610f85565b6040516104279190614803565b60405180910390f35b34801561043c57600080fd5b506104576004803603810190610452919061481e565b610fa3565b6040516104649190614803565b60405180910390f35b34801561047957600080fd5b50610482610fc2565b60405161048f91906148aa565b60405180910390f35b3480156104a457600080fd5b506104ad610fe6565b6040516104ba91906148d4565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e5919061481e565b610ff0565b005b3480156104f857600080fd5b5061050161112c565b60405161050e91906148d4565b60405180910390f35b34801561052357600080fd5b5061052c611132565b60405161053991906148d4565b60405180910390f35b34801561054e57600080fd5b50610557611138565b60405161056491906148d4565b60405180910390f35b34801561057957600080fd5b5061058261113e565b60405161058f91906148d4565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba91906148ef565b611144565b005b3480156105cd57600080fd5b506105e860048036038101906105e3919061491c565b611253565b6040516105f59190614803565b60405180910390f35b34801561060a57600080fd5b5061061361134b565b604051610620919061497e565b60405180910390f35b34801561063557600080fd5b5061063e611351565b60405161064b91906148d4565b60405180910390f35b34801561066057600080fd5b50610669611357565b6040516106769190614803565b60405180910390f35b34801561068b57600080fd5b5061069461136a565b6040516106a191906149b5565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc91906147a8565b611373565b6040516106de9190614803565b60405180910390f35b3480156106f357600080fd5b5061070e600480360381019061070991906147a8565b61141f565b005b34801561071c57600080fd5b506107256114a9565b604051610732919061497e565b60405180910390f35b34801561074757600080fd5b506107506114cd565b60405161075d9190614803565b60405180910390f35b34801561077257600080fd5b5061078d6004803603810190610788919061481e565b6114e0565b60405161079a9190614803565b60405180910390f35b3480156107af57600080fd5b506107b8611536565b6040516107c591906148d4565b60405180910390f35b3480156107da57600080fd5b506107e361153c565b6040516107f09190614803565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b919061481e565b61154f565b60405161082d91906148d4565b60405180910390f35b34801561084257600080fd5b5061084b611597565b005b34801561085957600080fd5b50610874600480360381019061086f91906149fc565b61161f565b005b34801561088257600080fd5b5061088b61175f565b6040516108989190614803565b60405180910390f35b3480156108ad57600080fd5b506108c860048036038101906108c39190614a4f565b6117ff565b005b3480156108d657600080fd5b506108df6118d6565b6040516108ec919061497e565b60405180910390f35b34801561090157600080fd5b5061090a6118fc565b60405161091791906148d4565b60405180910390f35b34801561092c57600080fd5b5061094760048036038101906109429190614a8f565b611902565b005b34801561095557600080fd5b5061095e611a01565b005b34801561096c57600080fd5b50610975611abc565b604051610982919061497e565b60405180910390f35b34801561099757600080fd5b506109a0611ae6565b6040516109ad919061497e565b60405180910390f35b3480156109c257600080fd5b506109cb611b0c565b6040516109d891906148d4565b60405180910390f35b3480156109ed57600080fd5b50610a086004803603810190610a039190614ae2565b611b12565b005b348015610a1657600080fd5b50610a1f611bab565b604051610a2c91906146ed565b60405180910390f35b348015610a4157600080fd5b50610a5c6004803603810190610a579190614a4f565b611c3d565b005b348015610a6a57600080fd5b50610a73611d55565b604051610a8091906148d4565b60405180910390f35b348015610a9557600080fd5b50610a9e611d5b565b604051610aab91906148d4565b60405180910390f35b348015610ac057600080fd5b50610ac9611d61565b604051610ad691906148d4565b60405180910390f35b348015610aeb57600080fd5b50610af4611d67565b604051610b0191906148d4565b60405180910390f35b348015610b1657600080fd5b50610b316004803603810190610b2c91906147a8565b611d6d565b604051610b3e9190614803565b60405180910390f35b348015610b5357600080fd5b50610b5c611e58565b604051610b6991906148d4565b60405180910390f35b348015610b7e57600080fd5b50610b996004803603810190610b9491906147a8565b611e5e565b604051610ba69190614803565b60405180910390f35b348015610bbb57600080fd5b50610bd66004803603810190610bd1919061481e565b611e7c565b005b348015610be457600080fd5b50610bff6004803603810190610bfa919061481e565b611fb8565b604051610c0c9190614803565b60405180910390f35b348015610c2157600080fd5b50610c2a611fd8565b604051610c379190614803565b60405180910390f35b348015610c4c57600080fd5b50610c676004803603810190610c629190614a4f565b611feb565b005b348015610c7557600080fd5b50610c906004803603810190610c8b9190614a8f565b612110565b005b348015610c9e57600080fd5b50610cb96004803603810190610cb491906148ef565b61220f565b005b348015610cc757600080fd5b50610cd061231e565b604051610cdd9190614803565b60405180910390f35b348015610cf257600080fd5b50610cfb612331565b604051610d0891906148d4565b60405180910390f35b348015610d1d57600080fd5b50610d386004803603810190610d3391906148ef565b612337565b604051610d459190614803565b60405180910390f35b348015610d5a57600080fd5b50610d6361248c565b604051610d7091906148d4565b60405180910390f35b348015610d8557600080fd5b50610da06004803603810190610d9b9190614b0f565b612492565b604051610dad91906148d4565b60405180910390f35b348015610dc257600080fd5b50610dcb612519565b604051610dd891906148d4565b60405180910390f35b348015610ded57600080fd5b50610df661251f565b604051610e039190614803565b60405180910390f35b348015610e1857600080fd5b50610e216125bf565b604051610e2e91906148d4565b60405180910390f35b348015610e4357600080fd5b50610e5e6004803603810190610e59919061481e565b6125c5565b005b348015610e6c57600080fd5b50610e756126bc565b604051610e8291906148d4565b60405180910390f35b348015610e9757600080fd5b50610ea06126c2565b604051610ead91906148d4565b60405180910390f35b348015610ec257600080fd5b50610edd6004803603810190610ed891906148ef565b6126c8565b604051610eea9190614803565b60405180910390f35b606060038054610f0290614b7e565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2e90614b7e565b8015610f7b5780601f10610f5057610100808354040283529160200191610f7b565b820191906000526020600020905b815481529060010190602001808311610f5e57829003601f168201915b5050505050905090565b6000610f99610f926129a0565b84846129a8565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610ff86129a0565b73ffffffffffffffffffffffffffffffffffffffff16611016611abc565b73ffffffffffffffffffffffffffffffffffffffff161461106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390614bfb565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b61114c6129a0565b73ffffffffffffffffffffffffffffffffffffffff1661116a611abc565b73ffffffffffffffffffffffffffffffffffffffff16146111c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b790614bfb565b60405180910390fd5b670de0b6b3a76400006103e860016111d6610fe6565b6111e09190614c4a565b6111ea9190614cbb565b6111f49190614cbb565b811015611236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122d90614d5e565b60405180910390fd5b670de0b6b3a76400008161124a9190614c4a565b60088190555050565b6000611260848484612b71565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112ab6129a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561132b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132290614df0565b60405180910390fd5b61133f856113376129a0565b8584036129a8565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006114156113806129a0565b84846001600061138e6129a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114109190614e10565b6129a8565b6001905092915050565b6114276129a0565b73ffffffffffffffffffffffffffffffffffffffff16611445611abc565b73ffffffffffffffffffffffffffffffffffffffff161461149b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149290614bfb565b60405180910390fd5b6114a58282613906565b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61159f6129a0565b73ffffffffffffffffffffffffffffffffffffffff166115bd611abc565b73ffffffffffffffffffffffffffffffffffffffff1614611613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160a90614bfb565b60405180910390fd5b61161d6000613a65565b565b6116276129a0565b73ffffffffffffffffffffffffffffffffffffffff16611645611abc565b73ffffffffffffffffffffffffffffffffffffffff161461169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290614bfb565b60405180910390fd5b6102588310156116e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d790614eb6565b60405180910390fd5b6103e882111580156116f3575060008210155b611732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172990614f48565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006117696129a0565b73ffffffffffffffffffffffffffffffffffffffff16611787611abc565b73ffffffffffffffffffffffffffffffffffffffff16146117dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d490614bfb565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6118076129a0565b73ffffffffffffffffffffffffffffffffffffffff16611825611abc565b73ffffffffffffffffffffffffffffffffffffffff161461187b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187290614bfb565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61190a6129a0565b73ffffffffffffffffffffffffffffffffffffffff16611928611abc565b73ffffffffffffffffffffffffffffffffffffffff161461197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197590614bfb565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546119a69190614e10565b6119b09190614e10565b601481905550606460145411156119fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f390614fb4565b60405180910390fd5b505050565b611a096129a0565b73ffffffffffffffffffffffffffffffffffffffff16611a27611abc565b73ffffffffffffffffffffffffffffffffffffffff1614611a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7490614bfb565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611b1a6129a0565b73ffffffffffffffffffffffffffffffffffffffff16611b38611abc565b73ffffffffffffffffffffffffffffffffffffffff1614611b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8590614bfb565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611bba90614b7e565b80601f0160208091040260200160405190810160405280929190818152602001828054611be690614b7e565b8015611c335780601f10611c0857610100808354040283529160200191611c33565b820191906000526020600020905b815481529060010190602001808311611c1657829003601f168201915b5050505050905090565b611c456129a0565b73ffffffffffffffffffffffffffffffffffffffff16611c63611abc565b73ffffffffffffffffffffffffffffffffffffffff1614611cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb090614bfb565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3e90615046565b60405180910390fd5b611d518282613b2b565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611d7c6129a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e30906150d8565b60405180910390fd5b611e4d611e446129a0565b858584036129a8565b600191505092915050565b600e5481565b6000611e72611e6b6129a0565b8484612b71565b6001905092915050565b611e846129a0565b73ffffffffffffffffffffffffffffffffffffffff16611ea2611abc565b73ffffffffffffffffffffffffffffffffffffffff1614611ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eef90614bfb565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611ff36129a0565b73ffffffffffffffffffffffffffffffffffffffff16612011611abc565b73ffffffffffffffffffffffffffffffffffffffff1614612067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205e90614bfb565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516121049190614803565b60405180910390a25050565b6121186129a0565b73ffffffffffffffffffffffffffffffffffffffff16612136611abc565b73ffffffffffffffffffffffffffffffffffffffff161461218c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218390614bfb565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546121b49190614e10565b6121be9190614e10565b6018819055506064601854111561220a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220190614fb4565b60405180910390fd5b505050565b6122176129a0565b73ffffffffffffffffffffffffffffffffffffffff16612235611abc565b73ffffffffffffffffffffffffffffffffffffffff161461228b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228290614bfb565b60405180910390fd5b670de0b6b3a76400006103e860056122a1610fe6565b6122ab9190614c4a565b6122b59190614cbb565b6122bf9190614cbb565b811015612301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f89061516a565b60405180910390fd5b670de0b6b3a7640000816123159190614c4a565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006123416129a0565b73ffffffffffffffffffffffffffffffffffffffff1661235f611abc565b73ffffffffffffffffffffffffffffffffffffffff16146123b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ac90614bfb565b60405180910390fd5b620186a060016123c3610fe6565b6123cd9190614c4a565b6123d79190614cbb565b821015612419576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612410906151fc565b60405180910390fd5b6103e86005612426610fe6565b6124309190614c4a565b61243a9190614cbb565b82111561247c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124739061528e565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006125296129a0565b73ffffffffffffffffffffffffffffffffffffffff16612547611abc565b73ffffffffffffffffffffffffffffffffffffffff161461259d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259490614bfb565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6125cd6129a0565b73ffffffffffffffffffffffffffffffffffffffff166125eb611abc565b73ffffffffffffffffffffffffffffffffffffffff1614612641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263890614bfb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036126b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a790615320565b60405180910390fd5b6126b981613a65565b50565b601a5481565b600a5481565b60006126d26129a0565b73ffffffffffffffffffffffffffffffffffffffff166126f0611abc565b73ffffffffffffffffffffffffffffffffffffffff1614612746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273d90614bfb565b60405180910390fd5b600f546010546127569190614e10565b4211612797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278e9061538c565b60405180910390fd5b6103e88211156127dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d39061541e565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161283e919061497e565b602060405180830381865afa15801561285b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061287f9190615453565b905060006128aa61271061289c8685613bcc90919063ffffffff16565b613be290919063ffffffff16565b905060008111156128e3576128e27f000000000000000000000000000000000000000000000000000000000000000061dead83613bf8565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561295057600080fd5b505af1158015612964573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0e906154f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7d90615584565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612b6491906148d4565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd790615616565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c46906156a8565b60405180910390fd5b60008103612c6857612c6383836000613bf8565b613901565b601160009054906101000a900460ff161561332b57612c85611abc565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612cf35750612cc3611abc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d2c5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d66575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d7f5750600560149054906101000a900460ff16155b1561332a57601160019054906101000a900460ff16612e7957601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612e395750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6f90615714565b60405180910390fd5b5b601360009054906101000a900460ff161561304157612e96611abc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612f1d57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f7557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156130405743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff2906157cc565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130e45750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561318b5760085481111561312e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131259061585e565b60405180910390fd5b600a5461313a8361154f565b826131459190614e10565b1115613186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317d906158ca565b60405180910390fd5b613329565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561322e5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561327d57600854811115613278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326f9061595c565b60405180910390fd5b613328565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661332757600a546132da8361154f565b826132e59190614e10565b1115613326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161331d906158ca565b60405180910390fd5b5b5b5b5b5b60006133363061154f565b90506000600954821015905080801561335b5750601160029054906101000a900460ff165b80156133745750600560149054906101000a900460ff16155b80156133ca5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156134205750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156134765750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156134ba576001600560146101000a81548160ff02191690831515021790555061349e613e77565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156135205750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156135385750600c60009054906101000a900460ff165b80156135535750600d54600e5461354f9190614e10565b4210155b80156135a95750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156135b8576135b661415e565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061366e5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561367857600090505b600081156138f157602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156136db57506000601854115b156137a85761370860646136fa60185488613bcc90919063ffffffff16565b613be290919063ffffffff16565b9050601854601a548261371b9190614c4a565b6137259190614cbb565b601d60008282546137369190614e10565b92505081905550601854601b548261374e9190614c4a565b6137589190614cbb565b601e60008282546137699190614e10565b92505081905550601854601954826137819190614c4a565b61378b9190614cbb565b601c600082825461379c9190614e10565b925050819055506138cd565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561380357506000601454115b156138cc57613830606461382260145488613bcc90919063ffffffff16565b613be290919063ffffffff16565b9050601454601654826138439190614c4a565b61384d9190614cbb565b601d600082825461385e9190614e10565b92505081905550601454601754826138769190614c4a565b6138809190614cbb565b601e60008282546138919190614e10565b92505081905550601454601554826138a99190614c4a565b6138b39190614cbb565b601c60008282546138c49190614e10565b925050819055505b5b60008111156138e2576138e1873083613bf8565b5b80856138ee919061597c565b94505b6138fc878787613bf8565b505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161396c906159fc565b60405180910390fd5b61398160008383614324565b80600260008282546139939190614e10565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139e89190614e10565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051613a4d91906148d4565b60405180910390a3613a6160008383614329565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60008183613bda9190614c4a565b905092915050565b60008183613bf09190614cbb565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c5e90615616565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ccd906156a8565b60405180910390fd5b613ce1838383614324565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d5e90615a8e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613dfa9190614e10565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613e5e91906148d4565b60405180910390a3613e71848484614329565b50505050565b6000613e823061154f565b90506000601e54601c54601d54613e999190614e10565b613ea39190614e10565b9050600080831480613eb55750600082145b15613ec25750505061415c565b6014600954613ed19190614c4a565b831115613eea576014600954613ee79190614c4a565b92505b6000600283601d5486613efd9190614c4a565b613f079190614cbb565b613f119190614cbb565b90506000613f28828661432e90919063ffffffff16565b90506000479050613f3882614344565b6000613f4d824761432e90919063ffffffff16565b90506000613f7887613f6a601c5485613bcc90919063ffffffff16565b613be290919063ffffffff16565b90506000613fa388613f95601e5486613bcc90919063ffffffff16565b613be290919063ffffffff16565b90506000818385613fb4919061597c565b613fbe919061597c565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161401e90615adf565b60006040518083038185875af1925050503d806000811461405b576040519150601f19603f3d011682016040523d82523d6000602084013e614060565b606091505b5050809850506000871180156140765750600081115b156140c3576140858782614581565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d546040516140ba93929190615af4565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161410990615adf565b60006040518083038185875af1925050503d8060008114614146576040519150601f19603f3d011682016040523d82523d6000602084013e61414b565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016141c2919061497e565b602060405180830381865afa1580156141df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906142039190615453565b90506000614230612710614222600b5485613bcc90919063ffffffff16565b613be290919063ffffffff16565b90506000811115614269576142687f000000000000000000000000000000000000000000000000000000000000000061dead83613bf8565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156142d657600080fd5b505af11580156142ea573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361433c919061597c565b905092915050565b6000600267ffffffffffffffff81111561436157614360615b2b565b5b60405190808252806020026020018201604052801561438f5781602001602082028036833780820191505090505b50905030816000815181106143a7576143a6615b5a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561444c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906144709190615b9e565b8160018151811061448457614483615b5a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506144e9307f0000000000000000000000000000000000000000000000000000000000000000846129a8565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161454b959493929190615cc4565b600060405180830381600087803b15801561456557600080fd5b505af1158015614579573d6000803e3d6000fd5b505050505050565b6145ac307f0000000000000000000000000000000000000000000000000000000000000000846129a8565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161461396959493929190615d1e565b60606040518083038185885af1158015614631573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906146569190615d7f565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561469757808201518184015260208101905061467c565b60008484015250505050565b6000601f19601f8301169050919050565b60006146bf8261465d565b6146c98185614668565b93506146d9818560208601614679565b6146e2816146a3565b840191505092915050565b6000602082019050818103600083015261470781846146b4565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061473f82614714565b9050919050565b61474f81614734565b811461475a57600080fd5b50565b60008135905061476c81614746565b92915050565b6000819050919050565b61478581614772565b811461479057600080fd5b50565b6000813590506147a28161477c565b92915050565b600080604083850312156147bf576147be61470f565b5b60006147cd8582860161475d565b92505060206147de85828601614793565b9150509250929050565b60008115159050919050565b6147fd816147e8565b82525050565b600060208201905061481860008301846147f4565b92915050565b6000602082840312156148345761483361470f565b5b60006148428482850161475d565b91505092915050565b6000819050919050565b600061487061486b61486684614714565b61484b565b614714565b9050919050565b600061488282614855565b9050919050565b600061489482614877565b9050919050565b6148a481614889565b82525050565b60006020820190506148bf600083018461489b565b92915050565b6148ce81614772565b82525050565b60006020820190506148e960008301846148c5565b92915050565b6000602082840312156149055761490461470f565b5b600061491384828501614793565b91505092915050565b6000806000606084860312156149355761493461470f565b5b60006149438682870161475d565b93505060206149548682870161475d565b925050604061496586828701614793565b9150509250925092565b61497881614734565b82525050565b6000602082019050614993600083018461496f565b92915050565b600060ff82169050919050565b6149af81614999565b82525050565b60006020820190506149ca60008301846149a6565b92915050565b6149d9816147e8565b81146149e457600080fd5b50565b6000813590506149f6816149d0565b92915050565b600080600060608486031215614a1557614a1461470f565b5b6000614a2386828701614793565b9350506020614a3486828701614793565b9250506040614a45868287016149e7565b9150509250925092565b60008060408385031215614a6657614a6561470f565b5b6000614a748582860161475d565b9250506020614a85858286016149e7565b9150509250929050565b600080600060608486031215614aa857614aa761470f565b5b6000614ab686828701614793565b9350506020614ac786828701614793565b9250506040614ad886828701614793565b9150509250925092565b600060208284031215614af857614af761470f565b5b6000614b06848285016149e7565b91505092915050565b60008060408385031215614b2657614b2561470f565b5b6000614b348582860161475d565b9250506020614b458582860161475d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614b9657607f821691505b602082108103614ba957614ba8614b4f565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614be5602083614668565b9150614bf082614baf565b602082019050919050565b60006020820190508181036000830152614c1481614bd8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614c5582614772565b9150614c6083614772565b9250828202614c6e81614772565b91508282048414831517614c8557614c84614c1b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614cc682614772565b9150614cd183614772565b925082614ce157614ce0614c8c565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614d48602f83614668565b9150614d5382614cec565b604082019050919050565b60006020820190508181036000830152614d7781614d3b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614dda602883614668565b9150614de582614d7e565b604082019050919050565b60006020820190508181036000830152614e0981614dcd565b9050919050565b6000614e1b82614772565b9150614e2683614772565b9250828201905080821115614e3e57614e3d614c1b565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614ea0603383614668565b9150614eab82614e44565b604082019050919050565b60006020820190508181036000830152614ecf81614e93565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614f32603083614668565b9150614f3d82614ed6565b604082019050919050565b60006020820190508181036000830152614f6181614f25565b9050919050565b7f4d757374206b656570206665657320617420313125206f72206c657373000000600082015250565b6000614f9e601d83614668565b9150614fa982614f68565b602082019050919050565b60006020820190508181036000830152614fcd81614f91565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000615030603983614668565b915061503b82614fd4565b604082019050919050565b6000602082019050818103600083015261505f81615023565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006150c2602583614668565b91506150cd82615066565b604082019050919050565b600060208201905081810360008301526150f1816150b5565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000615154602483614668565b915061515f826150f8565b604082019050919050565b6000602082019050818103600083015261518381615147565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006151e6603583614668565b91506151f18261518a565b604082019050919050565b60006020820190508181036000830152615215816151d9565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000615278603483614668565b91506152838261521c565b604082019050919050565b600060208201905081810360008301526152a78161526b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061530a602683614668565b9150615315826152ae565b604082019050919050565b60006020820190508181036000830152615339816152fd565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000615376602083614668565b915061538182615340565b602082019050919050565b600060208201905081810360008301526153a581615369565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615408602a83614668565b9150615413826153ac565b604082019050919050565b60006020820190508181036000830152615437816153fb565b9050919050565b60008151905061544d8161477c565b92915050565b6000602082840312156154695761546861470f565b5b60006154778482850161543e565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006154dc602483614668565b91506154e782615480565b604082019050919050565b6000602082019050818103600083015261550b816154cf565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061556e602283614668565b915061557982615512565b604082019050919050565b6000602082019050818103600083015261559d81615561565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615600602583614668565b915061560b826155a4565b604082019050919050565b6000602082019050818103600083015261562f816155f3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000615692602383614668565b915061569d82615636565b604082019050919050565b600060208201905081810360008301526156c181615685565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006156fe601683614668565b9150615709826156c8565b602082019050919050565b6000602082019050818103600083015261572d816156f1565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006157b6604983614668565b91506157c182615734565b606082019050919050565b600060208201905081810360008301526157e5816157a9565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615848603583614668565b9150615853826157ec565b604082019050919050565b600060208201905081810360008301526158778161583b565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006158b4601383614668565b91506158bf8261587e565b602082019050919050565b600060208201905081810360008301526158e3816158a7565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615946603683614668565b9150615951826158ea565b604082019050919050565b6000602082019050818103600083015261597581615939565b9050919050565b600061598782614772565b915061599283614772565b92508282039050818111156159aa576159a9614c1b565b5b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006159e6601f83614668565b91506159f1826159b0565b602082019050919050565b60006020820190508181036000830152615a15816159d9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615a78602683614668565b9150615a8382615a1c565b604082019050919050565b60006020820190508181036000830152615aa781615a6b565b9050919050565b600081905092915050565b50565b6000615ac9600083615aae565b9150615ad482615ab9565b600082019050919050565b6000615aea82615abc565b9150819050919050565b6000606082019050615b0960008301866148c5565b615b1660208301856148c5565b615b2360408301846148c5565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615b9881614746565b92915050565b600060208284031215615bb457615bb361470f565b5b6000615bc284828501615b89565b91505092915050565b6000819050919050565b6000615bf0615beb615be684615bcb565b61484b565b614772565b9050919050565b615c0081615bd5565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615c3b81614734565b82525050565b6000615c4d8383615c32565b60208301905092915050565b6000602082019050919050565b6000615c7182615c06565b615c7b8185615c11565b9350615c8683615c22565b8060005b83811015615cb7578151615c9e8882615c41565b9750615ca983615c59565b925050600181019050615c8a565b5085935050505092915050565b600060a082019050615cd960008301886148c5565b615ce66020830187615bf7565b8181036040830152615cf88186615c66565b9050615d07606083018561496f565b615d1460808301846148c5565b9695505050505050565b600060c082019050615d33600083018961496f565b615d4060208301886148c5565b615d4d6040830187615bf7565b615d5a6060830186615bf7565b615d67608083018561496f565b615d7460a08301846148c5565b979650505050505050565b600080600060608486031215615d9857615d9761470f565b5b6000615da68682870161543e565b9350506020615db78682870161543e565b9250506040615dc88682870161543e565b915050925092509256fea264697066735822122065fd1ec18a6806d9b6fb4871d1cb4311daa69b5526be439e6f3f4fe4cb8cff6564736f6c63430008130033

Deployed Bytecode

0x6080604052600436106103bc5760003560e01c80638a8c523c116101f2578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e37578063f637434214610e60578063f8b45b0514610e8b578063fe72b27a14610eb6576103c3565b8063dd62ed3e14610d79578063e2f4560514610db6578063e884f26014610de1578063f11a24d314610e0c576103c3565b8063c876d0b9116100dc578063c876d0b914610cbb578063c8c8ebe414610ce6578063d257b34f14610d11578063d85ba06314610d4e576103c3565b8063bbc0c74214610c15578063c024666814610c40578063c17b5b8c14610c69578063c18bc19514610c92576103c3565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b47578063a9059cbb14610b72578063aacebbe314610baf578063b62496f514610bd8576103c3565b80639ec22c0e14610a895780639fccce3214610ab4578063a0d82dc514610adf578063a457c2d714610b0a576103c3565b8063924de9b7116101c1578063924de9b7146109e157806395d89b4114610a0a5780639a7a23d614610a355780639c3b4fdc14610a5e576103c3565b80638a8c523c146109495780638da5cb5b146109605780638ea5220f1461098b57806392136913146109b6576103c3565b8063313ce567116102e257806370a08231116102755780637571336a116102445780637571336a146108a157806375f0a874146108ca5780637bce5a04146108f55780638095d56414610920576103c3565b806370a08231146107f9578063715018a614610836578063730c18881461084d578063751039fc14610876576103c3565b80634a62bb65116102b15780634a62bb651461073b5780634fbee193146107665780636a486a8e146107a35780636ddd1713146107ce576103c3565b8063313ce5671461067f57806339509351146106aa57806340c10f19146106e757806349bd5a5e14610710576103c3565b8063199ffc721161035a57806323b872dd1161032957806323b872dd146105c157806327c8f835146105fe5780632c3e486c146106295780632e82f1a014610654576103c3565b8063199ffc72146105175780631a8145bb146105425780631f3fed8f1461056d578063203e727e14610598576103c3565b80631694505e116103965780631694505e1461046d57806318160ddd146104985780631816467f146104c3578063184c16c5146104ec576103c3565b806306fdde03146103c8578063095ea7b3146103f357806310d5de5314610430576103c3565b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610ef3565b6040516103ea91906146ed565b60405180910390f35b3480156103ff57600080fd5b5061041a600480360381019061041591906147a8565b610f85565b6040516104279190614803565b60405180910390f35b34801561043c57600080fd5b506104576004803603810190610452919061481e565b610fa3565b6040516104649190614803565b60405180910390f35b34801561047957600080fd5b50610482610fc2565b60405161048f91906148aa565b60405180910390f35b3480156104a457600080fd5b506104ad610fe6565b6040516104ba91906148d4565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e5919061481e565b610ff0565b005b3480156104f857600080fd5b5061050161112c565b60405161050e91906148d4565b60405180910390f35b34801561052357600080fd5b5061052c611132565b60405161053991906148d4565b60405180910390f35b34801561054e57600080fd5b50610557611138565b60405161056491906148d4565b60405180910390f35b34801561057957600080fd5b5061058261113e565b60405161058f91906148d4565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba91906148ef565b611144565b005b3480156105cd57600080fd5b506105e860048036038101906105e3919061491c565b611253565b6040516105f59190614803565b60405180910390f35b34801561060a57600080fd5b5061061361134b565b604051610620919061497e565b60405180910390f35b34801561063557600080fd5b5061063e611351565b60405161064b91906148d4565b60405180910390f35b34801561066057600080fd5b50610669611357565b6040516106769190614803565b60405180910390f35b34801561068b57600080fd5b5061069461136a565b6040516106a191906149b5565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc91906147a8565b611373565b6040516106de9190614803565b60405180910390f35b3480156106f357600080fd5b5061070e600480360381019061070991906147a8565b61141f565b005b34801561071c57600080fd5b506107256114a9565b604051610732919061497e565b60405180910390f35b34801561074757600080fd5b506107506114cd565b60405161075d9190614803565b60405180910390f35b34801561077257600080fd5b5061078d6004803603810190610788919061481e565b6114e0565b60405161079a9190614803565b60405180910390f35b3480156107af57600080fd5b506107b8611536565b6040516107c591906148d4565b60405180910390f35b3480156107da57600080fd5b506107e361153c565b6040516107f09190614803565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b919061481e565b61154f565b60405161082d91906148d4565b60405180910390f35b34801561084257600080fd5b5061084b611597565b005b34801561085957600080fd5b50610874600480360381019061086f91906149fc565b61161f565b005b34801561088257600080fd5b5061088b61175f565b6040516108989190614803565b60405180910390f35b3480156108ad57600080fd5b506108c860048036038101906108c39190614a4f565b6117ff565b005b3480156108d657600080fd5b506108df6118d6565b6040516108ec919061497e565b60405180910390f35b34801561090157600080fd5b5061090a6118fc565b60405161091791906148d4565b60405180910390f35b34801561092c57600080fd5b5061094760048036038101906109429190614a8f565b611902565b005b34801561095557600080fd5b5061095e611a01565b005b34801561096c57600080fd5b50610975611abc565b604051610982919061497e565b60405180910390f35b34801561099757600080fd5b506109a0611ae6565b6040516109ad919061497e565b60405180910390f35b3480156109c257600080fd5b506109cb611b0c565b6040516109d891906148d4565b60405180910390f35b3480156109ed57600080fd5b50610a086004803603810190610a039190614ae2565b611b12565b005b348015610a1657600080fd5b50610a1f611bab565b604051610a2c91906146ed565b60405180910390f35b348015610a4157600080fd5b50610a5c6004803603810190610a579190614a4f565b611c3d565b005b348015610a6a57600080fd5b50610a73611d55565b604051610a8091906148d4565b60405180910390f35b348015610a9557600080fd5b50610a9e611d5b565b604051610aab91906148d4565b60405180910390f35b348015610ac057600080fd5b50610ac9611d61565b604051610ad691906148d4565b60405180910390f35b348015610aeb57600080fd5b50610af4611d67565b604051610b0191906148d4565b60405180910390f35b348015610b1657600080fd5b50610b316004803603810190610b2c91906147a8565b611d6d565b604051610b3e9190614803565b60405180910390f35b348015610b5357600080fd5b50610b5c611e58565b604051610b6991906148d4565b60405180910390f35b348015610b7e57600080fd5b50610b996004803603810190610b9491906147a8565b611e5e565b604051610ba69190614803565b60405180910390f35b348015610bbb57600080fd5b50610bd66004803603810190610bd1919061481e565b611e7c565b005b348015610be457600080fd5b50610bff6004803603810190610bfa919061481e565b611fb8565b604051610c0c9190614803565b60405180910390f35b348015610c2157600080fd5b50610c2a611fd8565b604051610c379190614803565b60405180910390f35b348015610c4c57600080fd5b50610c676004803603810190610c629190614a4f565b611feb565b005b348015610c7557600080fd5b50610c906004803603810190610c8b9190614a8f565b612110565b005b348015610c9e57600080fd5b50610cb96004803603810190610cb491906148ef565b61220f565b005b348015610cc757600080fd5b50610cd061231e565b604051610cdd9190614803565b60405180910390f35b348015610cf257600080fd5b50610cfb612331565b604051610d0891906148d4565b60405180910390f35b348015610d1d57600080fd5b50610d386004803603810190610d3391906148ef565b612337565b604051610d459190614803565b60405180910390f35b348015610d5a57600080fd5b50610d6361248c565b604051610d7091906148d4565b60405180910390f35b348015610d8557600080fd5b50610da06004803603810190610d9b9190614b0f565b612492565b604051610dad91906148d4565b60405180910390f35b348015610dc257600080fd5b50610dcb612519565b604051610dd891906148d4565b60405180910390f35b348015610ded57600080fd5b50610df661251f565b604051610e039190614803565b60405180910390f35b348015610e1857600080fd5b50610e216125bf565b604051610e2e91906148d4565b60405180910390f35b348015610e4357600080fd5b50610e5e6004803603810190610e59919061481e565b6125c5565b005b348015610e6c57600080fd5b50610e756126bc565b604051610e8291906148d4565b60405180910390f35b348015610e9757600080fd5b50610ea06126c2565b604051610ead91906148d4565b60405180910390f35b348015610ec257600080fd5b50610edd6004803603810190610ed891906148ef565b6126c8565b604051610eea9190614803565b60405180910390f35b606060038054610f0290614b7e565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2e90614b7e565b8015610f7b5780601f10610f5057610100808354040283529160200191610f7b565b820191906000526020600020905b815481529060010190602001808311610f5e57829003601f168201915b5050505050905090565b6000610f99610f926129a0565b84846129a8565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610ff86129a0565b73ffffffffffffffffffffffffffffffffffffffff16611016611abc565b73ffffffffffffffffffffffffffffffffffffffff161461106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390614bfb565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b61114c6129a0565b73ffffffffffffffffffffffffffffffffffffffff1661116a611abc565b73ffffffffffffffffffffffffffffffffffffffff16146111c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b790614bfb565b60405180910390fd5b670de0b6b3a76400006103e860016111d6610fe6565b6111e09190614c4a565b6111ea9190614cbb565b6111f49190614cbb565b811015611236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122d90614d5e565b60405180910390fd5b670de0b6b3a76400008161124a9190614c4a565b60088190555050565b6000611260848484612b71565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112ab6129a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561132b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132290614df0565b60405180910390fd5b61133f856113376129a0565b8584036129a8565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006114156113806129a0565b84846001600061138e6129a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114109190614e10565b6129a8565b6001905092915050565b6114276129a0565b73ffffffffffffffffffffffffffffffffffffffff16611445611abc565b73ffffffffffffffffffffffffffffffffffffffff161461149b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149290614bfb565b60405180910390fd5b6114a58282613906565b5050565b7f000000000000000000000000c679e52a5ed1d6d8b8f2af564ac864d653f439ce81565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61159f6129a0565b73ffffffffffffffffffffffffffffffffffffffff166115bd611abc565b73ffffffffffffffffffffffffffffffffffffffff1614611613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160a90614bfb565b60405180910390fd5b61161d6000613a65565b565b6116276129a0565b73ffffffffffffffffffffffffffffffffffffffff16611645611abc565b73ffffffffffffffffffffffffffffffffffffffff161461169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290614bfb565b60405180910390fd5b6102588310156116e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d790614eb6565b60405180910390fd5b6103e882111580156116f3575060008210155b611732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172990614f48565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006117696129a0565b73ffffffffffffffffffffffffffffffffffffffff16611787611abc565b73ffffffffffffffffffffffffffffffffffffffff16146117dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d490614bfb565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6118076129a0565b73ffffffffffffffffffffffffffffffffffffffff16611825611abc565b73ffffffffffffffffffffffffffffffffffffffff161461187b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187290614bfb565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61190a6129a0565b73ffffffffffffffffffffffffffffffffffffffff16611928611abc565b73ffffffffffffffffffffffffffffffffffffffff161461197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197590614bfb565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546119a69190614e10565b6119b09190614e10565b601481905550606460145411156119fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f390614fb4565b60405180910390fd5b505050565b611a096129a0565b73ffffffffffffffffffffffffffffffffffffffff16611a27611abc565b73ffffffffffffffffffffffffffffffffffffffff1614611a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7490614bfb565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611b1a6129a0565b73ffffffffffffffffffffffffffffffffffffffff16611b38611abc565b73ffffffffffffffffffffffffffffffffffffffff1614611b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8590614bfb565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611bba90614b7e565b80601f0160208091040260200160405190810160405280929190818152602001828054611be690614b7e565b8015611c335780601f10611c0857610100808354040283529160200191611c33565b820191906000526020600020905b815481529060010190602001808311611c1657829003601f168201915b5050505050905090565b611c456129a0565b73ffffffffffffffffffffffffffffffffffffffff16611c63611abc565b73ffffffffffffffffffffffffffffffffffffffff1614611cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb090614bfb565b60405180910390fd5b7f000000000000000000000000c679e52a5ed1d6d8b8f2af564ac864d653f439ce73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3e90615046565b60405180910390fd5b611d518282613b2b565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611d7c6129a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e30906150d8565b60405180910390fd5b611e4d611e446129a0565b858584036129a8565b600191505092915050565b600e5481565b6000611e72611e6b6129a0565b8484612b71565b6001905092915050565b611e846129a0565b73ffffffffffffffffffffffffffffffffffffffff16611ea2611abc565b73ffffffffffffffffffffffffffffffffffffffff1614611ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eef90614bfb565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611ff36129a0565b73ffffffffffffffffffffffffffffffffffffffff16612011611abc565b73ffffffffffffffffffffffffffffffffffffffff1614612067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205e90614bfb565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516121049190614803565b60405180910390a25050565b6121186129a0565b73ffffffffffffffffffffffffffffffffffffffff16612136611abc565b73ffffffffffffffffffffffffffffffffffffffff161461218c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218390614bfb565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546121b49190614e10565b6121be9190614e10565b6018819055506064601854111561220a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220190614fb4565b60405180910390fd5b505050565b6122176129a0565b73ffffffffffffffffffffffffffffffffffffffff16612235611abc565b73ffffffffffffffffffffffffffffffffffffffff161461228b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228290614bfb565b60405180910390fd5b670de0b6b3a76400006103e860056122a1610fe6565b6122ab9190614c4a565b6122b59190614cbb565b6122bf9190614cbb565b811015612301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f89061516a565b60405180910390fd5b670de0b6b3a7640000816123159190614c4a565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006123416129a0565b73ffffffffffffffffffffffffffffffffffffffff1661235f611abc565b73ffffffffffffffffffffffffffffffffffffffff16146123b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ac90614bfb565b60405180910390fd5b620186a060016123c3610fe6565b6123cd9190614c4a565b6123d79190614cbb565b821015612419576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612410906151fc565b60405180910390fd5b6103e86005612426610fe6565b6124309190614c4a565b61243a9190614cbb565b82111561247c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124739061528e565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006125296129a0565b73ffffffffffffffffffffffffffffffffffffffff16612547611abc565b73ffffffffffffffffffffffffffffffffffffffff161461259d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259490614bfb565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6125cd6129a0565b73ffffffffffffffffffffffffffffffffffffffff166125eb611abc565b73ffffffffffffffffffffffffffffffffffffffff1614612641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263890614bfb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036126b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a790615320565b60405180910390fd5b6126b981613a65565b50565b601a5481565b600a5481565b60006126d26129a0565b73ffffffffffffffffffffffffffffffffffffffff166126f0611abc565b73ffffffffffffffffffffffffffffffffffffffff1614612746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273d90614bfb565b60405180910390fd5b600f546010546127569190614e10565b4211612797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278e9061538c565b60405180910390fd5b6103e88211156127dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d39061541e565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000c679e52a5ed1d6d8b8f2af564ac864d653f439ce6040518263ffffffff1660e01b815260040161283e919061497e565b602060405180830381865afa15801561285b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061287f9190615453565b905060006128aa61271061289c8685613bcc90919063ffffffff16565b613be290919063ffffffff16565b905060008111156128e3576128e27f000000000000000000000000c679e52a5ed1d6d8b8f2af564ac864d653f439ce61dead83613bf8565b5b60007f000000000000000000000000c679e52a5ed1d6d8b8f2af564ac864d653f439ce90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561295057600080fd5b505af1158015612964573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0e906154f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7d90615584565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612b6491906148d4565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd790615616565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c46906156a8565b60405180910390fd5b60008103612c6857612c6383836000613bf8565b613901565b601160009054906101000a900460ff161561332b57612c85611abc565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612cf35750612cc3611abc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d2c5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d66575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d7f5750600560149054906101000a900460ff16155b1561332a57601160019054906101000a900460ff16612e7957601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612e395750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6f90615714565b60405180910390fd5b5b601360009054906101000a900460ff161561304157612e96611abc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612f1d57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f7557507f000000000000000000000000c679e52a5ed1d6d8b8f2af564ac864d653f439ce73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156130405743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff2906157cc565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130e45750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561318b5760085481111561312e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131259061585e565b60405180910390fd5b600a5461313a8361154f565b826131459190614e10565b1115613186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317d906158ca565b60405180910390fd5b613329565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561322e5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561327d57600854811115613278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326f9061595c565b60405180910390fd5b613328565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661332757600a546132da8361154f565b826132e59190614e10565b1115613326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161331d906158ca565b60405180910390fd5b5b5b5b5b5b60006133363061154f565b90506000600954821015905080801561335b5750601160029054906101000a900460ff165b80156133745750600560149054906101000a900460ff16155b80156133ca5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156134205750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156134765750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156134ba576001600560146101000a81548160ff02191690831515021790555061349e613e77565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156135205750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156135385750600c60009054906101000a900460ff165b80156135535750600d54600e5461354f9190614e10565b4210155b80156135a95750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156135b8576135b661415e565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061366e5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561367857600090505b600081156138f157602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156136db57506000601854115b156137a85761370860646136fa60185488613bcc90919063ffffffff16565b613be290919063ffffffff16565b9050601854601a548261371b9190614c4a565b6137259190614cbb565b601d60008282546137369190614e10565b92505081905550601854601b548261374e9190614c4a565b6137589190614cbb565b601e60008282546137699190614e10565b92505081905550601854601954826137819190614c4a565b61378b9190614cbb565b601c600082825461379c9190614e10565b925050819055506138cd565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561380357506000601454115b156138cc57613830606461382260145488613bcc90919063ffffffff16565b613be290919063ffffffff16565b9050601454601654826138439190614c4a565b61384d9190614cbb565b601d600082825461385e9190614e10565b92505081905550601454601754826138769190614c4a565b6138809190614cbb565b601e60008282546138919190614e10565b92505081905550601454601554826138a99190614c4a565b6138b39190614cbb565b601c60008282546138c49190614e10565b925050819055505b5b60008111156138e2576138e1873083613bf8565b5b80856138ee919061597c565b94505b6138fc878787613bf8565b505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161396c906159fc565b60405180910390fd5b61398160008383614324565b80600260008282546139939190614e10565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139e89190614e10565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051613a4d91906148d4565b60405180910390a3613a6160008383614329565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60008183613bda9190614c4a565b905092915050565b60008183613bf09190614cbb565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c5e90615616565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ccd906156a8565b60405180910390fd5b613ce1838383614324565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d5e90615a8e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613dfa9190614e10565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613e5e91906148d4565b60405180910390a3613e71848484614329565b50505050565b6000613e823061154f565b90506000601e54601c54601d54613e999190614e10565b613ea39190614e10565b9050600080831480613eb55750600082145b15613ec25750505061415c565b6014600954613ed19190614c4a565b831115613eea576014600954613ee79190614c4a565b92505b6000600283601d5486613efd9190614c4a565b613f079190614cbb565b613f119190614cbb565b90506000613f28828661432e90919063ffffffff16565b90506000479050613f3882614344565b6000613f4d824761432e90919063ffffffff16565b90506000613f7887613f6a601c5485613bcc90919063ffffffff16565b613be290919063ffffffff16565b90506000613fa388613f95601e5486613bcc90919063ffffffff16565b613be290919063ffffffff16565b90506000818385613fb4919061597c565b613fbe919061597c565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161401e90615adf565b60006040518083038185875af1925050503d806000811461405b576040519150601f19603f3d011682016040523d82523d6000602084013e614060565b606091505b5050809850506000871180156140765750600081115b156140c3576140858782614581565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d546040516140ba93929190615af4565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161410990615adf565b60006040518083038185875af1925050503d8060008114614146576040519150601f19603f3d011682016040523d82523d6000602084013e61414b565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000c679e52a5ed1d6d8b8f2af564ac864d653f439ce6040518263ffffffff1660e01b81526004016141c2919061497e565b602060405180830381865afa1580156141df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906142039190615453565b90506000614230612710614222600b5485613bcc90919063ffffffff16565b613be290919063ffffffff16565b90506000811115614269576142687f000000000000000000000000c679e52a5ed1d6d8b8f2af564ac864d653f439ce61dead83613bf8565b5b60007f000000000000000000000000c679e52a5ed1d6d8b8f2af564ac864d653f439ce90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156142d657600080fd5b505af11580156142ea573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361433c919061597c565b905092915050565b6000600267ffffffffffffffff81111561436157614360615b2b565b5b60405190808252806020026020018201604052801561438f5781602001602082028036833780820191505090505b50905030816000815181106143a7576143a6615b5a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561444c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906144709190615b9e565b8160018151811061448457614483615b5a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506144e9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846129a8565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161454b959493929190615cc4565b600060405180830381600087803b15801561456557600080fd5b505af1158015614579573d6000803e3d6000fd5b505050505050565b6145ac307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846129a8565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161461396959493929190615d1e565b60606040518083038185885af1158015614631573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906146569190615d7f565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561469757808201518184015260208101905061467c565b60008484015250505050565b6000601f19601f8301169050919050565b60006146bf8261465d565b6146c98185614668565b93506146d9818560208601614679565b6146e2816146a3565b840191505092915050565b6000602082019050818103600083015261470781846146b4565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061473f82614714565b9050919050565b61474f81614734565b811461475a57600080fd5b50565b60008135905061476c81614746565b92915050565b6000819050919050565b61478581614772565b811461479057600080fd5b50565b6000813590506147a28161477c565b92915050565b600080604083850312156147bf576147be61470f565b5b60006147cd8582860161475d565b92505060206147de85828601614793565b9150509250929050565b60008115159050919050565b6147fd816147e8565b82525050565b600060208201905061481860008301846147f4565b92915050565b6000602082840312156148345761483361470f565b5b60006148428482850161475d565b91505092915050565b6000819050919050565b600061487061486b61486684614714565b61484b565b614714565b9050919050565b600061488282614855565b9050919050565b600061489482614877565b9050919050565b6148a481614889565b82525050565b60006020820190506148bf600083018461489b565b92915050565b6148ce81614772565b82525050565b60006020820190506148e960008301846148c5565b92915050565b6000602082840312156149055761490461470f565b5b600061491384828501614793565b91505092915050565b6000806000606084860312156149355761493461470f565b5b60006149438682870161475d565b93505060206149548682870161475d565b925050604061496586828701614793565b9150509250925092565b61497881614734565b82525050565b6000602082019050614993600083018461496f565b92915050565b600060ff82169050919050565b6149af81614999565b82525050565b60006020820190506149ca60008301846149a6565b92915050565b6149d9816147e8565b81146149e457600080fd5b50565b6000813590506149f6816149d0565b92915050565b600080600060608486031215614a1557614a1461470f565b5b6000614a2386828701614793565b9350506020614a3486828701614793565b9250506040614a45868287016149e7565b9150509250925092565b60008060408385031215614a6657614a6561470f565b5b6000614a748582860161475d565b9250506020614a85858286016149e7565b9150509250929050565b600080600060608486031215614aa857614aa761470f565b5b6000614ab686828701614793565b9350506020614ac786828701614793565b9250506040614ad886828701614793565b9150509250925092565b600060208284031215614af857614af761470f565b5b6000614b06848285016149e7565b91505092915050565b60008060408385031215614b2657614b2561470f565b5b6000614b348582860161475d565b9250506020614b458582860161475d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614b9657607f821691505b602082108103614ba957614ba8614b4f565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614be5602083614668565b9150614bf082614baf565b602082019050919050565b60006020820190508181036000830152614c1481614bd8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614c5582614772565b9150614c6083614772565b9250828202614c6e81614772565b91508282048414831517614c8557614c84614c1b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614cc682614772565b9150614cd183614772565b925082614ce157614ce0614c8c565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614d48602f83614668565b9150614d5382614cec565b604082019050919050565b60006020820190508181036000830152614d7781614d3b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614dda602883614668565b9150614de582614d7e565b604082019050919050565b60006020820190508181036000830152614e0981614dcd565b9050919050565b6000614e1b82614772565b9150614e2683614772565b9250828201905080821115614e3e57614e3d614c1b565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614ea0603383614668565b9150614eab82614e44565b604082019050919050565b60006020820190508181036000830152614ecf81614e93565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614f32603083614668565b9150614f3d82614ed6565b604082019050919050565b60006020820190508181036000830152614f6181614f25565b9050919050565b7f4d757374206b656570206665657320617420313125206f72206c657373000000600082015250565b6000614f9e601d83614668565b9150614fa982614f68565b602082019050919050565b60006020820190508181036000830152614fcd81614f91565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000615030603983614668565b915061503b82614fd4565b604082019050919050565b6000602082019050818103600083015261505f81615023565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006150c2602583614668565b91506150cd82615066565b604082019050919050565b600060208201905081810360008301526150f1816150b5565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000615154602483614668565b915061515f826150f8565b604082019050919050565b6000602082019050818103600083015261518381615147565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006151e6603583614668565b91506151f18261518a565b604082019050919050565b60006020820190508181036000830152615215816151d9565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000615278603483614668565b91506152838261521c565b604082019050919050565b600060208201905081810360008301526152a78161526b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061530a602683614668565b9150615315826152ae565b604082019050919050565b60006020820190508181036000830152615339816152fd565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000615376602083614668565b915061538182615340565b602082019050919050565b600060208201905081810360008301526153a581615369565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615408602a83614668565b9150615413826153ac565b604082019050919050565b60006020820190508181036000830152615437816153fb565b9050919050565b60008151905061544d8161477c565b92915050565b6000602082840312156154695761546861470f565b5b60006154778482850161543e565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006154dc602483614668565b91506154e782615480565b604082019050919050565b6000602082019050818103600083015261550b816154cf565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061556e602283614668565b915061557982615512565b604082019050919050565b6000602082019050818103600083015261559d81615561565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615600602583614668565b915061560b826155a4565b604082019050919050565b6000602082019050818103600083015261562f816155f3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000615692602383614668565b915061569d82615636565b604082019050919050565b600060208201905081810360008301526156c181615685565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006156fe601683614668565b9150615709826156c8565b602082019050919050565b6000602082019050818103600083015261572d816156f1565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006157b6604983614668565b91506157c182615734565b606082019050919050565b600060208201905081810360008301526157e5816157a9565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615848603583614668565b9150615853826157ec565b604082019050919050565b600060208201905081810360008301526158778161583b565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006158b4601383614668565b91506158bf8261587e565b602082019050919050565b600060208201905081810360008301526158e3816158a7565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615946603683614668565b9150615951826158ea565b604082019050919050565b6000602082019050818103600083015261597581615939565b9050919050565b600061598782614772565b915061599283614772565b92508282039050818111156159aa576159a9614c1b565b5b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006159e6601f83614668565b91506159f1826159b0565b602082019050919050565b60006020820190508181036000830152615a15816159d9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615a78602683614668565b9150615a8382615a1c565b604082019050919050565b60006020820190508181036000830152615aa781615a6b565b9050919050565b600081905092915050565b50565b6000615ac9600083615aae565b9150615ad482615ab9565b600082019050919050565b6000615aea82615abc565b9150819050919050565b6000606082019050615b0960008301866148c5565b615b1660208301856148c5565b615b2360408301846148c5565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615b9881614746565b92915050565b600060208284031215615bb457615bb361470f565b5b6000615bc284828501615b89565b91505092915050565b6000819050919050565b6000615bf0615beb615be684615bcb565b61484b565b614772565b9050919050565b615c0081615bd5565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615c3b81614734565b82525050565b6000615c4d8383615c32565b60208301905092915050565b6000602082019050919050565b6000615c7182615c06565b615c7b8185615c11565b9350615c8683615c22565b8060005b83811015615cb7578151615c9e8882615c41565b9750615ca983615c59565b925050600181019050615c8a565b5085935050505092915050565b600060a082019050615cd960008301886148c5565b615ce66020830187615bf7565b8181036040830152615cf88186615c66565b9050615d07606083018561496f565b615d1460808301846148c5565b9695505050505050565b600060c082019050615d33600083018961496f565b615d4060208301886148c5565b615d4d6040830187615bf7565b615d5a6060830186615bf7565b615d67608083018561496f565b615d7460a08301846148c5565b979650505050505050565b600080600060608486031215615d9857615d9761470f565b5b6000615da68682870161543e565b9350506020615db78682870161543e565b9250506040615dc88682870161543e565b915050925092509256fea264697066735822122065fd1ec18a6806d9b6fb4871d1cb4311daa69b5526be439e6f3f4fe4cb8cff6564736f6c63430008130033

Deployed Bytecode Sourcemap

30118:19518:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6946:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9113:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31744:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30193:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8066:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38867:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30758:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30573:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31528:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31488;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36179:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9764:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30296:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30668:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30629:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7908:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10665:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48478:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30251:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30856:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39032:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31343:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30936:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8237:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1966:103;;;;;;;;;;;;;:::i;:::-;;47121:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35287:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36726:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30388:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31236;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37097:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35080:155;;;;;;;;;;;;;:::i;:::-;;1315:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30425:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31378:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36989:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7165:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38120:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31310:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30812:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31568:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31454:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11383:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30720:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8577:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38628:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31965:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30896:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37930:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37509:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36462:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31154:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30458:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35674:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31202:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8815:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30500:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35469:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31273:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2224:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31416:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30540:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48577:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6946:100;7000:13;7033:5;7026:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6946:100;:::o;9113:169::-;9196:4;9213:39;9222:12;:10;:12::i;:::-;9236:7;9245:6;9213:8;:39::i;:::-;9270:4;9263:11;;9113:169;;;;:::o;31744:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;30193:51::-;;;:::o;8066:108::-;8127:7;8154:12;;8147:19;;8066:108;:::o;38867:157::-;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38974:9:::1;;;;;;;;;;;38946:38;;38963:9;38946:38;;;;;;;;;;;;39007:9;38995;;:21;;;;;;;;;;;;;;;;;;38867:157:::0;:::o;30758:47::-;;;;:::o;30573:36::-;;;;:::o;31528:33::-;;;;:::o;31488:::-;;;;:::o;36179:275::-;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36316:4:::1;36308;36303:1;36287:13;:11;:13::i;:::-;:17;;;;:::i;:::-;36286:26;;;;:::i;:::-;36285:35;;;;:::i;:::-;36275:6;:45;;36253:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;36439:6;36429;:17;;;;:::i;:::-;36406:20;:40;;;;36179:275:::0;:::o;9764:492::-;9904:4;9921:36;9931:6;9939:9;9950:6;9921:9;:36::i;:::-;9970:24;9997:11;:19;10009:6;9997:19;;;;;;;;;;;;;;;:33;10017:12;:10;:12::i;:::-;9997:33;;;;;;;;;;;;;;;;9970:60;;10069:6;10049:16;:26;;10041:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;10156:57;10165:6;10173:12;:10;:12::i;:::-;10206:6;10187:16;:25;10156:8;:57::i;:::-;10244:4;10237:11;;;9764:492;;;;;:::o;30296:53::-;30342:6;30296:53;:::o;30668:45::-;;;;:::o;30629:32::-;;;;;;;;;;;;;:::o;7908:93::-;7966:5;7991:2;7984:9;;7908:93;:::o;10665:215::-;10753:4;10770:80;10779:12;:10;:12::i;:::-;10793:7;10839:10;10802:11;:25;10814:12;:10;:12::i;:::-;10802:25;;;;;;;;;;;;;;;:34;10828:7;10802:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10770:8;:80::i;:::-;10868:4;10861:11;;10665:215;;;;:::o;48478:89::-;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48546:17:::1;48552:2;48556:6;48546:5;:17::i;:::-;48478:89:::0;;:::o;30251:38::-;;;:::o;30856:33::-;;;;;;;;;;;;;:::o;39032:126::-;39098:4;39122:19;:28;39142:7;39122:28;;;;;;;;;;;;;;;;;;;;;;;;;39115:35;;39032:126;;;:::o;31343:28::-;;;;:::o;30936:31::-;;;;;;;;;;;;;:::o;8237:127::-;8311:7;8338:9;:18;8348:7;8338:18;;;;;;;;;;;;;;;;8331:25;;8237:127;;;:::o;1966:103::-;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2031:30:::1;2058:1;2031:18;:30::i;:::-;1966:103::o:0;47121:555::-;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47323:3:::1;47300:19;:26;;47278:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;47450:4;47438:8;:16;;:33;;;;;47470:1;47458:8;:13;;47438:33;47416:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;47576:19;47558:15;:37;;;;47625:8;47606:16;:27;;;;47660:8;47644:13;;:24;;;;;;;;;;;;;;;;;;47121:555:::0;;;:::o;35287:121::-;35339:4;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35373:5:::1;35356:14;;:22;;;;;;;;;;;;;;;;;;35396:4;35389:11;;35287:121:::0;:::o;36726:167::-;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36881:4:::1;36839:31;:39;36871:6;36839:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36726:167:::0;;:::o;30388:30::-;;;;;;;;;;;;;:::o;31236:::-;;;;:::o;37097:404::-;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37265:13:::1;37247:15;:31;;;;37307:13;37289:15;:31;;;;37343:7;37331:9;:19;;;;37412:9;;37394:15;;37376;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;37361:12;:60;;;;37456:3;37440:12;;:19;;37432:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;37097:404:::0;;;:::o;35080:155::-;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35151:4:::1;35135:13;;:20;;;;;;;;;;;;;;;;;;35180:4;35166:11;;:18;;;;;;;;;;;;;;;;;;35212:15;35195:14;:32;;;;35080:155::o:0;1315:87::-;1361:7;1388:6;;;;;;;;;;;1381:13;;1315:87;:::o;30425:24::-;;;;;;;;;;;;;:::o;31378:31::-;;;;:::o;36989:100::-;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37074:7:::1;37060:11;;:21;;;;;;;;;;;;;;;;;;36989:100:::0;:::o;7165:104::-;7221:13;7254:7;7247:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7165:104;:::o;38120:304::-;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38264:13:::1;38256:21;;:4;:21;;::::0;38234:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;38375:41;38404:4;38410:5;38375:28;:41::i;:::-;38120:304:::0;;:::o;31310:24::-;;;;:::o;30812:35::-;;;;:::o;31568:27::-;;;;:::o;31454:25::-;;;;:::o;11383:413::-;11476:4;11493:24;11520:11;:25;11532:12;:10;:12::i;:::-;11520:25;;;;;;;;;;;;;;;:34;11546:7;11520:34;;;;;;;;;;;;;;;;11493:61;;11593:15;11573:16;:35;;11565:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11686:67;11695:12;:10;:12::i;:::-;11709:7;11737:15;11718:16;:34;11686:8;:67::i;:::-;11784:4;11777:11;;;11383:413;;;;:::o;30720:29::-;;;;:::o;8577:175::-;8663:4;8680:42;8690:12;:10;:12::i;:::-;8704:9;8715:6;8680:9;:42::i;:::-;8740:4;8733:11;;8577:175;;;;:::o;38628:231::-;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38788:15:::1;;;;;;;;;;;38745:59;;38768:18;38745:59;;;;;;;;;;;;38833:18;38815:15;;:36;;;;;;;;;;;;;;;;;;38628:231:::0;:::o;31965:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;30896:33::-;;;;;;;;;;;;;:::o;37930:182::-;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38046:8:::1;38015:19;:28;38035:7;38015:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38086:7;38070:34;;;38095:8;38070:34;;;;;;:::i;:::-;;;;;;;;37930:182:::0;;:::o;37509:413::-;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37679:13:::1;37660:16;:32;;;;37722:13;37703:16;:32;;;;37759:7;37746:10;:20;;;;37831:10;;37812:16;;37793;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;37777:13;:64;;;;37877:3;37860:13;;:20;;37852:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;37509:413:::0;;;:::o;36462:256::-;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36602:4:::1;36594;36589:1;36573:13;:11;:13::i;:::-;:17;;;;:::i;:::-;36572:26;;;;:::i;:::-;36571:35;;;;:::i;:::-;36561:6;:45;;36539:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;36703:6;36693;:17;;;;:::i;:::-;36681:9;:29;;;;36462:256:::0;:::o;31154:39::-;;;;;;;;;;;;;:::o;30458:35::-;;;;:::o;35674:497::-;35782:4;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35861:6:::1;35856:1;35840:13;:11;:13::i;:::-;:17;;;;:::i;:::-;35839:28;;;;:::i;:::-;35826:9;:41;;35804:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;36016:4;36011:1;35995:13;:11;:13::i;:::-;:17;;;;:::i;:::-;35994:26;;;;:::i;:::-;35981:9;:39;;35959:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;36132:9;36111:18;:30;;;;36159:4;36152:11;;35674:497:::0;;;:::o;31202:27::-;;;;:::o;8815:151::-;8904:7;8931:11;:18;8943:5;8931:18;;;;;;;;;;;;;;;:27;8950:7;8931:27;;;;;;;;;;;;;;;;8924:34;;8815:151;;;;:::o;30500:33::-;;;;:::o;35469:135::-;35529:4;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35569:5:::1;35546:20;;:28;;;;;;;;;;;;;;;;;;35592:4;35585:11;;35469:135:::0;:::o;31273:30::-;;;;:::o;2224:201::-;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2333:1:::1;2313:22;;:8;:22;;::::0;2305:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2389:28;2408:8;2389:18;:28::i;:::-;2224:201:::0;:::o;31416:31::-;;;;:::o;30540:24::-;;;;:::o;48577:1056::-;48688:4;1546:12;:10;:12::i;:::-;1535:23;;:7;:5;:7::i;:::-;:23;;;1527:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48773:19:::1;;48750:20;;:42;;;;:::i;:::-;48732:15;:60;48710:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;48882:4;48871:7;:15;;48863:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;48967:15;48944:20;:38;;;;49037:28;49068:4;:14;;;49083:13;49068:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49037:60;;49147:20;49170:44;49208:5;49170:33;49195:7;49170:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;49147:67;;49334:1;49319:12;:16;49315:110;;;49352:61;49368:13;49391:6;49400:12;49352:15;:61::i;:::-;49315:110;49500:19;49537:13;49500:51;;49562:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;49589:14;;;;;;;;;;49621:4;49614:11;;;;;48577:1056:::0;;;:::o;493:98::-;546:7;573:10;566:17;;493:98;:::o;15067:380::-;15220:1;15203:19;;:5;:19;;;15195:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15301:1;15282:21;;:7;:21;;;15274:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15385:6;15355:11;:18;15367:5;15355:18;;;;;;;;;;;;;;;:27;15374:7;15355:27;;;;;;;;;;;;;;;:36;;;;15423:7;15407:32;;15416:5;15407:32;;;15432:6;15407:32;;;;;;:::i;:::-;;;;;;;;15067:380;;;:::o;39216:5011::-;39364:1;39348:18;;:4;:18;;;39340:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39441:1;39427:16;;:2;:16;;;39419:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;39510:1;39500:6;:11;39496:93;;39528:28;39544:4;39550:2;39554:1;39528:15;:28::i;:::-;39571:7;;39496:93;39605:14;;;;;;;;;;;39601:2487;;;39666:7;:5;:7::i;:::-;39658:15;;:4;:15;;;;:49;;;;;39700:7;:5;:7::i;:::-;39694:13;;:2;:13;;;;39658:49;:86;;;;;39742:1;39728:16;;:2;:16;;;;39658:86;:128;;;;;39779:6;39765:21;;:2;:21;;;;39658:128;:158;;;;;39808:8;;;;;;;;;;;39807:9;39658:158;39636:2441;;;39856:13;;;;;;;;;;;39851:223;;39928:19;:25;39948:4;39928:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;39957:19;:23;39977:2;39957:23;;;;;;;;;;;;;;;;;;;;;;;;;39928:52;39894:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;39851:223;40230:20;;;;;;;;;;;40226:641;;;40311:7;:5;:7::i;:::-;40305:13;;:2;:13;;;;:72;;;;;40361:15;40347:30;;:2;:30;;;;40305:72;:129;;;;;40420:13;40406:28;;:2;:28;;;;40305:129;40275:573;;;40598:12;40523:28;:39;40552:9;40523:39;;;;;;;;;;;;;;;;:87;40485:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;40812:12;40770:28;:39;40799:9;40770:39;;;;;;;;;;;;;;;:54;;;;40275:573;40226:641;40941:25;:31;40967:4;40941:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;40998:31;:35;41030:2;40998:35;;;;;;;;;;;;;;;;;;;;;;;;;40997:36;40941:92;40915:1147;;;41120:20;;41110:6;:30;;41076:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;41328:9;;41311:13;41321:2;41311:9;:13::i;:::-;41302:6;:22;;;;:::i;:::-;:35;;41268:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;40915:1147;;;41506:25;:29;41532:2;41506:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;41561:31;:37;41593:4;41561:37;;;;;;;;;;;;;;;;;;;;;;;;;41560:38;41506:92;41480:582;;;41685:20;;41675:6;:30;;41641:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;41480:582;;;41842:31;:35;41874:2;41842:35;;;;;;;;;;;;;;;;;;;;;;;;;41837:225;;41962:9;;41945:13;41955:2;41945:9;:13::i;:::-;41936:6;:22;;;;:::i;:::-;:35;;41902:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;41837:225;41480:582;40915:1147;39636:2441;39601:2487;42100:28;42131:24;42149:4;42131:9;:24::i;:::-;42100:55;;42168:12;42207:18;;42183:20;:42;;42168:57;;42256:7;:35;;;;;42280:11;;;;;;;;;;;42256:35;:61;;;;;42309:8;;;;;;;;;;;42308:9;42256:61;:110;;;;;42335:25;:31;42361:4;42335:31;;;;;;;;;;;;;;;;;;;;;;;;;42334:32;42256:110;:153;;;;;42384:19;:25;42404:4;42384:25;;;;;;;;;;;;;;;;;;;;;;;;;42383:26;42256:153;:194;;;;;42427:19;:23;42447:2;42427:23;;;;;;;;;;;;;;;;;;;;;;;;;42426:24;42256:194;42238:326;;;42488:4;42477:8;;:15;;;;;;;;;;;;;;;;;;42509:10;:8;:10::i;:::-;42547:5;42536:8;;:16;;;;;;;;;;;;;;;;;;42238:326;42595:8;;;;;;;;;;;42594:9;:55;;;;;42620:25;:29;42646:2;42620:29;;;;;;;;;;;;;;;;;;;;;;;;;42594:55;:85;;;;;42666:13;;;;;;;;;;;42594:85;:153;;;;;42732:15;;42715:14;;:32;;;;:::i;:::-;42696:15;:51;;42594:153;:196;;;;;42765:19;:25;42785:4;42765:25;;;;;;;;;;;;;;;;;;;;;;;;;42764:26;42594:196;42576:282;;;42817:29;:27;:29::i;:::-;;42576:282;42870:12;42886:8;;;;;;;;;;;42885:9;42870:24;;42996:19;:25;43016:4;42996:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;43025:19;:23;43045:2;43025:23;;;;;;;;;;;;;;;;;;;;;;;;;42996:52;42992:100;;;43075:5;43065:15;;42992:100;43104:12;43209:7;43205:969;;;43261:25;:29;43287:2;43261:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;43310:1;43294:13;;:17;43261:50;43257:768;;;43339:34;43369:3;43339:25;43350:13;;43339:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;43332:41;;43442:13;;43422:16;;43415:4;:23;;;;:::i;:::-;43414:41;;;;:::i;:::-;43392:18;;:63;;;;;;;:::i;:::-;;;;;;;;43512:13;;43498:10;;43491:4;:17;;;;:::i;:::-;43490:35;;;;:::i;:::-;43474:12;;:51;;;;;;;:::i;:::-;;;;;;;;43594:13;;43574:16;;43567:4;:23;;;;:::i;:::-;43566:41;;;;:::i;:::-;43544:18;;:63;;;;;;;:::i;:::-;;;;;;;;43257:768;;;43669:25;:31;43695:4;43669:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;43719:1;43704:12;;:16;43669:51;43665:360;;;43748:33;43777:3;43748:24;43759:12;;43748:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;43741:40;;43849:12;;43830:15;;43823:4;:22;;;;:::i;:::-;43822:39;;;;:::i;:::-;43800:18;;:61;;;;;;;:::i;:::-;;;;;;;;43917:12;;43904:9;;43897:4;:16;;;;:::i;:::-;43896:33;;;;:::i;:::-;43880:12;;:49;;;;;;;:::i;:::-;;;;;;;;43997:12;;43978:15;;43971:4;:22;;;;:::i;:::-;43970:39;;;;:::i;:::-;43948:18;;:61;;;;;;;:::i;:::-;;;;;;;;43665:360;43257:768;44052:1;44045:4;:8;44041:91;;;44074:42;44090:4;44104;44111;44074:15;:42::i;:::-;44041:91;44158:4;44148:14;;;;;:::i;:::-;;;43205:969;44186:33;44202:4;44208:2;44212:6;44186:15;:33::i;:::-;39329:4898;;;;39216:5011;;;;:::o;13306:399::-;13409:1;13390:21;;:7;:21;;;13382:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;13460:49;13489:1;13493:7;13502:6;13460:20;:49::i;:::-;13538:6;13522:12;;:22;;;;;;;:::i;:::-;;;;;;;;13577:6;13555:9;:18;13565:7;13555:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;13620:7;13599:37;;13616:1;13599:37;;;13629:6;13599:37;;;;;;:::i;:::-;;;;;;;;13649:48;13677:1;13681:7;13690:6;13649:19;:48::i;:::-;13306:399;;:::o;2585:191::-;2659:16;2678:6;;;;;;;;;;;2659:25;;2704:8;2695:6;;:17;;;;;;;;;;;;;;;;;;2759:8;2728:40;;2749:8;2728:40;;;;;;;;;;;;2648:128;2585:191;:::o;38432:188::-;38549:5;38515:25;:31;38541:4;38515:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38606:5;38572:40;;38600:4;38572:40;;;;;;;;;;;;38432:188;;:::o;20520:98::-;20578:7;20609:1;20605;:5;;;;:::i;:::-;20598:12;;20520:98;;;;:::o;20919:::-;20977:7;21008:1;21004;:5;;;;:::i;:::-;20997:12;;20919:98;;;;:::o;12286:733::-;12444:1;12426:20;;:6;:20;;;12418:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12528:1;12507:23;;:9;:23;;;12499:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12583:47;12604:6;12612:9;12623:6;12583:20;:47::i;:::-;12643:21;12667:9;:17;12677:6;12667:17;;;;;;;;;;;;;;;;12643:41;;12720:6;12703:13;:23;;12695:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12841:6;12825:13;:22;12805:9;:17;12815:6;12805:17;;;;;;;;;;;;;;;:42;;;;12893:6;12869:9;:20;12879:9;12869:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12934:9;12917:35;;12926:6;12917:35;;;12945:6;12917:35;;;;;;:::i;:::-;;;;;;;;12965:46;12985:6;12993:9;13004:6;12965:19;:46::i;:::-;12407:612;12286:733;;;:::o;45357:1756::-;45396:23;45422:24;45440:4;45422:9;:24::i;:::-;45396:50;;45457:25;45553:12;;45519:18;;45485;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;45457:108;;45576:12;45624:1;45605:15;:20;:46;;;;45650:1;45629:17;:22;45605:46;45601:85;;;45668:7;;;;;45601:85;45741:2;45720:18;;:23;;;;:::i;:::-;45702:15;:41;45698:115;;;45799:2;45778:18;;:23;;;;:::i;:::-;45760:41;;45698:115;45874:23;45987:1;45954:17;45919:18;;45901:15;:36;;;;:::i;:::-;45900:71;;;;:::i;:::-;:88;;;;:::i;:::-;45874:114;;45999:26;46028:36;46048:15;46028;:19;;:36;;;;:::i;:::-;45999:65;;46077:25;46105:21;46077:49;;46139:36;46156:18;46139:16;:36::i;:::-;46188:18;46209:44;46235:17;46209:21;:25;;:44;;;;:::i;:::-;46188:65;;46266:23;46292:81;46345:17;46292:34;46307:18;;46292:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;46266:107;;46384:17;46404:51;46437:17;46404:28;46419:12;;46404:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;46384:71;;46468:23;46525:9;46507:15;46494:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;46468:66;;46568:1;46547:18;:22;;;;46601:1;46580:18;:22;;;;46628:1;46613:12;:16;;;;46664:9;;;;;;;;;;;46656:23;;46687:9;46656:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46642:59;;;;;46736:1;46718:15;:19;:42;;;;;46759:1;46741:15;:19;46718:42;46714:278;;;46777:46;46790:15;46807;46777:12;:46::i;:::-;46843:137;46876:18;46913:15;46947:18;;46843:137;;;;;;;;:::i;:::-;;;;;;;;46714:278;47026:15;;;;;;;;;;;47018:29;;47069:21;47018:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47004:101;;;;;45385:1728;;;;;;;;;;45357:1756;:::o;47684:788::-;47741:4;47775:15;47758:14;:32;;;;47845:28;47876:4;:14;;;47891:13;47876:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47845:60;;47955:20;47978:77;48039:5;47978:42;48003:16;;47978:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;47955:100;;48175:1;48160:12;:16;48156:110;;;48193:61;48209:13;48232:6;48241:12;48193:15;:61::i;:::-;48156:110;48341:19;48378:13;48341:51;;48403:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48430:12;;;;;;;;;;48460:4;48453:11;;;;;47684:788;:::o;16047:125::-;;;;:::o;16776:124::-;;;;:::o;20163:98::-;20221:7;20252:1;20248;:5;;;;:::i;:::-;20241:12;;20163:98;;;;:::o;44235:589::-;44361:21;44399:1;44385:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44361:40;;44430:4;44412;44417:1;44412:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;44456:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44446:4;44451:1;44446:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;44491:62;44508:4;44523:15;44541:11;44491:8;:62::i;:::-;44592:15;:66;;;44673:11;44699:1;44743:4;44770;44790:15;44592:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44290:534;44235:589;:::o;44832:517::-;44980:62;44997:4;45012:15;45030:11;44980:8;:62::i;:::-;45085:15;:31;;;45124:9;45157:4;45177:11;45203:1;45246;30342:6;45315:15;45085:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;44832:517;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:153::-;4204:9;4237:37;4268:5;4237:37;:::i;:::-;4224:50;;4127:153;;;:::o;4286:185::-;4400:64;4458:5;4400:64;:::i;:::-;4395:3;4388:77;4286:185;;:::o;4477:276::-;4597:4;4635:2;4624:9;4620:18;4612:26;;4648:98;4743:1;4732:9;4728:17;4719:6;4648:98;:::i;:::-;4477:276;;;;:::o;4759:118::-;4846:24;4864:5;4846:24;:::i;:::-;4841:3;4834:37;4759:118;;:::o;4883:222::-;4976:4;5014:2;5003:9;4999:18;4991:26;;5027:71;5095:1;5084:9;5080:17;5071:6;5027:71;:::i;:::-;4883:222;;;;:::o;5111:329::-;5170:6;5219:2;5207:9;5198:7;5194:23;5190:32;5187:119;;;5225:79;;:::i;:::-;5187:119;5345:1;5370:53;5415:7;5406:6;5395:9;5391:22;5370:53;:::i;:::-;5360:63;;5316:117;5111:329;;;;:::o;5446:619::-;5523:6;5531;5539;5588:2;5576:9;5567:7;5563:23;5559:32;5556:119;;;5594:79;;:::i;:::-;5556:119;5714:1;5739:53;5784:7;5775:6;5764:9;5760:22;5739:53;:::i;:::-;5729:63;;5685:117;5841:2;5867:53;5912:7;5903:6;5892:9;5888:22;5867:53;:::i;:::-;5857:63;;5812:118;5969:2;5995:53;6040:7;6031:6;6020:9;6016:22;5995:53;:::i;:::-;5985:63;;5940:118;5446:619;;;;;:::o;6071:118::-;6158:24;6176:5;6158:24;:::i;:::-;6153:3;6146:37;6071:118;;:::o;6195:222::-;6288:4;6326:2;6315:9;6311:18;6303:26;;6339:71;6407:1;6396:9;6392:17;6383:6;6339:71;:::i;:::-;6195:222;;;;:::o;6423:86::-;6458:7;6498:4;6491:5;6487:16;6476:27;;6423:86;;;:::o;6515:112::-;6598:22;6614:5;6598:22;:::i;:::-;6593:3;6586:35;6515:112;;:::o;6633:214::-;6722:4;6760:2;6749:9;6745:18;6737:26;;6773:67;6837:1;6826:9;6822:17;6813:6;6773:67;:::i;:::-;6633:214;;;;:::o;6853:116::-;6923:21;6938:5;6923:21;:::i;:::-;6916:5;6913:32;6903:60;;6959:1;6956;6949:12;6903:60;6853:116;:::o;6975:133::-;7018:5;7056:6;7043:20;7034:29;;7072:30;7096:5;7072:30;:::i;:::-;6975:133;;;;:::o;7114:613::-;7188:6;7196;7204;7253:2;7241:9;7232:7;7228:23;7224:32;7221:119;;;7259:79;;:::i;:::-;7221:119;7379:1;7404:53;7449:7;7440:6;7429:9;7425:22;7404:53;:::i;:::-;7394:63;;7350:117;7506:2;7532:53;7577:7;7568:6;7557:9;7553:22;7532:53;:::i;:::-;7522:63;;7477:118;7634:2;7660:50;7702:7;7693:6;7682:9;7678:22;7660:50;:::i;:::-;7650:60;;7605:115;7114:613;;;;;:::o;7733:468::-;7798:6;7806;7855:2;7843:9;7834:7;7830:23;7826:32;7823:119;;;7861:79;;:::i;:::-;7823:119;7981:1;8006:53;8051:7;8042:6;8031:9;8027:22;8006:53;:::i;:::-;7996:63;;7952:117;8108:2;8134:50;8176:7;8167:6;8156:9;8152:22;8134:50;:::i;:::-;8124:60;;8079:115;7733:468;;;;;:::o;8207:619::-;8284:6;8292;8300;8349:2;8337:9;8328:7;8324:23;8320:32;8317:119;;;8355:79;;:::i;:::-;8317:119;8475:1;8500:53;8545:7;8536:6;8525:9;8521:22;8500:53;:::i;:::-;8490:63;;8446:117;8602:2;8628:53;8673:7;8664:6;8653:9;8649:22;8628:53;:::i;:::-;8618:63;;8573:118;8730:2;8756:53;8801:7;8792:6;8781:9;8777:22;8756:53;:::i;:::-;8746:63;;8701:118;8207:619;;;;;:::o;8832:323::-;8888:6;8937:2;8925:9;8916:7;8912:23;8908:32;8905:119;;;8943:79;;:::i;:::-;8905:119;9063:1;9088:50;9130:7;9121:6;9110:9;9106:22;9088:50;:::i;:::-;9078:60;;9034:114;8832:323;;;;:::o;9161:474::-;9229:6;9237;9286:2;9274:9;9265:7;9261:23;9257:32;9254:119;;;9292:79;;:::i;:::-;9254:119;9412:1;9437:53;9482:7;9473:6;9462:9;9458:22;9437:53;:::i;:::-;9427:63;;9383:117;9539:2;9565:53;9610:7;9601:6;9590:9;9586:22;9565:53;:::i;:::-;9555:63;;9510:118;9161:474;;;;;:::o;9641:180::-;9689:77;9686:1;9679:88;9786:4;9783:1;9776:15;9810:4;9807:1;9800:15;9827:320;9871:6;9908:1;9902:4;9898:12;9888:22;;9955:1;9949:4;9945:12;9976:18;9966:81;;10032:4;10024:6;10020:17;10010:27;;9966:81;10094:2;10086:6;10083:14;10063:18;10060:38;10057:84;;10113:18;;:::i;:::-;10057:84;9878:269;9827:320;;;:::o;10153:182::-;10293:34;10289:1;10281:6;10277:14;10270:58;10153:182;:::o;10341:366::-;10483:3;10504:67;10568:2;10563:3;10504:67;:::i;:::-;10497:74;;10580:93;10669:3;10580:93;:::i;:::-;10698:2;10693:3;10689:12;10682:19;;10341:366;;;:::o;10713:419::-;10879:4;10917:2;10906:9;10902:18;10894:26;;10966:9;10960:4;10956:20;10952:1;10941:9;10937:17;10930:47;10994:131;11120:4;10994:131;:::i;:::-;10986:139;;10713:419;;;:::o;11138:180::-;11186:77;11183:1;11176:88;11283:4;11280:1;11273:15;11307:4;11304:1;11297:15;11324:410;11364:7;11387:20;11405:1;11387:20;:::i;:::-;11382:25;;11421:20;11439:1;11421:20;:::i;:::-;11416:25;;11476:1;11473;11469:9;11498:30;11516:11;11498:30;:::i;:::-;11487:41;;11677:1;11668:7;11664:15;11661:1;11658:22;11638:1;11631:9;11611:83;11588:139;;11707:18;;:::i;:::-;11588:139;11372:362;11324:410;;;;:::o;11740:180::-;11788:77;11785:1;11778:88;11885:4;11882:1;11875:15;11909:4;11906:1;11899:15;11926:185;11966:1;11983:20;12001:1;11983:20;:::i;:::-;11978:25;;12017:20;12035:1;12017:20;:::i;:::-;12012:25;;12056:1;12046:35;;12061:18;;:::i;:::-;12046:35;12103:1;12100;12096:9;12091:14;;11926:185;;;;:::o;12117:234::-;12257:34;12253:1;12245:6;12241:14;12234:58;12326:17;12321:2;12313:6;12309:15;12302:42;12117:234;:::o;12357:366::-;12499:3;12520:67;12584:2;12579:3;12520:67;:::i;:::-;12513:74;;12596:93;12685:3;12596:93;:::i;:::-;12714:2;12709:3;12705:12;12698:19;;12357:366;;;:::o;12729:419::-;12895:4;12933:2;12922:9;12918:18;12910:26;;12982:9;12976:4;12972:20;12968:1;12957:9;12953:17;12946:47;13010:131;13136:4;13010:131;:::i;:::-;13002:139;;12729:419;;;:::o;13154:227::-;13294:34;13290:1;13282:6;13278:14;13271:58;13363:10;13358:2;13350:6;13346:15;13339:35;13154:227;:::o;13387:366::-;13529:3;13550:67;13614:2;13609:3;13550:67;:::i;:::-;13543:74;;13626:93;13715:3;13626:93;:::i;:::-;13744:2;13739:3;13735:12;13728:19;;13387:366;;;:::o;13759:419::-;13925:4;13963:2;13952:9;13948:18;13940:26;;14012:9;14006:4;14002:20;13998:1;13987:9;13983:17;13976:47;14040:131;14166:4;14040:131;:::i;:::-;14032:139;;13759:419;;;:::o;14184:191::-;14224:3;14243:20;14261:1;14243:20;:::i;:::-;14238:25;;14277:20;14295:1;14277:20;:::i;:::-;14272:25;;14320:1;14317;14313:9;14306:16;;14341:3;14338:1;14335:10;14332:36;;;14348:18;;:::i;:::-;14332:36;14184:191;;;;:::o;14381:238::-;14521:34;14517:1;14509:6;14505:14;14498:58;14590:21;14585:2;14577:6;14573:15;14566:46;14381:238;:::o;14625:366::-;14767:3;14788:67;14852:2;14847:3;14788:67;:::i;:::-;14781:74;;14864:93;14953:3;14864:93;:::i;:::-;14982:2;14977:3;14973:12;14966:19;;14625:366;;;:::o;14997:419::-;15163:4;15201:2;15190:9;15186:18;15178:26;;15250:9;15244:4;15240:20;15236:1;15225:9;15221:17;15214:47;15278:131;15404:4;15278:131;:::i;:::-;15270:139;;14997:419;;;:::o;15422:235::-;15562:34;15558:1;15550:6;15546:14;15539:58;15631:18;15626:2;15618:6;15614:15;15607:43;15422:235;:::o;15663:366::-;15805:3;15826:67;15890:2;15885:3;15826:67;:::i;:::-;15819:74;;15902:93;15991:3;15902:93;:::i;:::-;16020:2;16015:3;16011:12;16004:19;;15663:366;;;:::o;16035:419::-;16201:4;16239:2;16228:9;16224:18;16216:26;;16288:9;16282:4;16278:20;16274:1;16263:9;16259:17;16252:47;16316:131;16442:4;16316:131;:::i;:::-;16308:139;;16035:419;;;:::o;16460:179::-;16600:31;16596:1;16588:6;16584:14;16577:55;16460:179;:::o;16645:366::-;16787:3;16808:67;16872:2;16867:3;16808:67;:::i;:::-;16801:74;;16884:93;16973:3;16884:93;:::i;:::-;17002:2;16997:3;16993:12;16986:19;;16645:366;;;:::o;17017:419::-;17183:4;17221:2;17210:9;17206:18;17198:26;;17270:9;17264:4;17260:20;17256:1;17245:9;17241:17;17234:47;17298:131;17424:4;17298:131;:::i;:::-;17290:139;;17017:419;;;:::o;17442:244::-;17582:34;17578:1;17570:6;17566:14;17559:58;17651:27;17646:2;17638:6;17634:15;17627:52;17442:244;:::o;17692:366::-;17834:3;17855:67;17919:2;17914:3;17855:67;:::i;:::-;17848:74;;17931:93;18020:3;17931:93;:::i;:::-;18049:2;18044:3;18040:12;18033:19;;17692:366;;;:::o;18064:419::-;18230:4;18268:2;18257:9;18253:18;18245:26;;18317:9;18311:4;18307:20;18303:1;18292:9;18288:17;18281:47;18345:131;18471:4;18345:131;:::i;:::-;18337:139;;18064:419;;;:::o;18489:224::-;18629:34;18625:1;18617:6;18613:14;18606:58;18698:7;18693:2;18685:6;18681:15;18674:32;18489:224;:::o;18719:366::-;18861:3;18882:67;18946:2;18941:3;18882:67;:::i;:::-;18875:74;;18958:93;19047:3;18958:93;:::i;:::-;19076:2;19071:3;19067:12;19060:19;;18719:366;;;:::o;19091:419::-;19257:4;19295:2;19284:9;19280:18;19272:26;;19344:9;19338:4;19334:20;19330:1;19319:9;19315:17;19308:47;19372:131;19498:4;19372:131;:::i;:::-;19364:139;;19091:419;;;:::o;19516:223::-;19656:34;19652:1;19644:6;19640:14;19633:58;19725:6;19720:2;19712:6;19708:15;19701:31;19516:223;:::o;19745:366::-;19887:3;19908:67;19972:2;19967:3;19908:67;:::i;:::-;19901:74;;19984:93;20073:3;19984:93;:::i;:::-;20102:2;20097:3;20093:12;20086:19;;19745:366;;;:::o;20117:419::-;20283:4;20321:2;20310:9;20306:18;20298:26;;20370:9;20364:4;20360:20;20356:1;20345:9;20341:17;20334:47;20398:131;20524:4;20398:131;:::i;:::-;20390:139;;20117:419;;;:::o;20542:240::-;20682:34;20678:1;20670:6;20666:14;20659:58;20751:23;20746:2;20738:6;20734:15;20727:48;20542:240;:::o;20788:366::-;20930:3;20951:67;21015:2;21010:3;20951:67;:::i;:::-;20944:74;;21027:93;21116:3;21027:93;:::i;:::-;21145:2;21140:3;21136:12;21129:19;;20788:366;;;:::o;21160:419::-;21326:4;21364:2;21353:9;21349:18;21341:26;;21413:9;21407:4;21403:20;21399:1;21388:9;21384:17;21377:47;21441:131;21567:4;21441:131;:::i;:::-;21433:139;;21160:419;;;:::o;21585:239::-;21725:34;21721:1;21713:6;21709:14;21702:58;21794:22;21789:2;21781:6;21777:15;21770:47;21585:239;:::o;21830:366::-;21972:3;21993:67;22057:2;22052:3;21993:67;:::i;:::-;21986:74;;22069:93;22158:3;22069:93;:::i;:::-;22187:2;22182:3;22178:12;22171:19;;21830:366;;;:::o;22202:419::-;22368:4;22406:2;22395:9;22391:18;22383:26;;22455:9;22449:4;22445:20;22441:1;22430:9;22426:17;22419:47;22483:131;22609:4;22483:131;:::i;:::-;22475:139;;22202:419;;;:::o;22627:225::-;22767:34;22763:1;22755:6;22751:14;22744:58;22836:8;22831:2;22823:6;22819:15;22812:33;22627:225;:::o;22858:366::-;23000:3;23021:67;23085:2;23080:3;23021:67;:::i;:::-;23014:74;;23097:93;23186:3;23097:93;:::i;:::-;23215:2;23210:3;23206:12;23199:19;;22858:366;;;:::o;23230:419::-;23396:4;23434:2;23423:9;23419:18;23411:26;;23483:9;23477:4;23473:20;23469:1;23458:9;23454:17;23447:47;23511:131;23637:4;23511:131;:::i;:::-;23503:139;;23230:419;;;:::o;23655:182::-;23795:34;23791:1;23783:6;23779:14;23772:58;23655:182;:::o;23843:366::-;23985:3;24006:67;24070:2;24065:3;24006:67;:::i;:::-;23999:74;;24082:93;24171:3;24082:93;:::i;:::-;24200:2;24195:3;24191:12;24184:19;;23843:366;;;:::o;24215:419::-;24381:4;24419:2;24408:9;24404:18;24396:26;;24468:9;24462:4;24458:20;24454:1;24443:9;24439:17;24432:47;24496:131;24622:4;24496:131;:::i;:::-;24488:139;;24215:419;;;:::o;24640:229::-;24780:34;24776:1;24768:6;24764:14;24757:58;24849:12;24844:2;24836:6;24832:15;24825:37;24640:229;:::o;24875:366::-;25017:3;25038:67;25102:2;25097:3;25038:67;:::i;:::-;25031:74;;25114:93;25203:3;25114:93;:::i;:::-;25232:2;25227:3;25223:12;25216:19;;24875:366;;;:::o;25247:419::-;25413:4;25451:2;25440:9;25436:18;25428:26;;25500:9;25494:4;25490:20;25486:1;25475:9;25471:17;25464:47;25528:131;25654:4;25528:131;:::i;:::-;25520:139;;25247:419;;;:::o;25672:143::-;25729:5;25760:6;25754:13;25745:22;;25776:33;25803:5;25776:33;:::i;:::-;25672:143;;;;:::o;25821:351::-;25891:6;25940:2;25928:9;25919:7;25915:23;25911:32;25908:119;;;25946:79;;:::i;:::-;25908:119;26066:1;26091:64;26147:7;26138:6;26127:9;26123:22;26091:64;:::i;:::-;26081:74;;26037:128;25821:351;;;;:::o;26178:223::-;26318:34;26314:1;26306:6;26302:14;26295:58;26387:6;26382:2;26374:6;26370:15;26363:31;26178:223;:::o;26407:366::-;26549:3;26570:67;26634:2;26629:3;26570:67;:::i;:::-;26563:74;;26646:93;26735:3;26646:93;:::i;:::-;26764:2;26759:3;26755:12;26748:19;;26407:366;;;:::o;26779:419::-;26945:4;26983:2;26972:9;26968:18;26960:26;;27032:9;27026:4;27022:20;27018:1;27007:9;27003:17;26996:47;27060:131;27186:4;27060:131;:::i;:::-;27052:139;;26779:419;;;:::o;27204:221::-;27344:34;27340:1;27332:6;27328:14;27321:58;27413:4;27408:2;27400:6;27396:15;27389:29;27204:221;:::o;27431:366::-;27573:3;27594:67;27658:2;27653:3;27594:67;:::i;:::-;27587:74;;27670:93;27759:3;27670:93;:::i;:::-;27788:2;27783:3;27779:12;27772:19;;27431:366;;;:::o;27803:419::-;27969:4;28007:2;27996:9;27992:18;27984:26;;28056:9;28050:4;28046:20;28042:1;28031:9;28027:17;28020:47;28084:131;28210:4;28084:131;:::i;:::-;28076:139;;27803:419;;;:::o;28228:224::-;28368:34;28364:1;28356:6;28352:14;28345:58;28437:7;28432:2;28424:6;28420:15;28413:32;28228:224;:::o;28458:366::-;28600:3;28621:67;28685:2;28680:3;28621:67;:::i;:::-;28614:74;;28697:93;28786:3;28697:93;:::i;:::-;28815:2;28810:3;28806:12;28799:19;;28458:366;;;:::o;28830:419::-;28996:4;29034:2;29023:9;29019:18;29011:26;;29083:9;29077:4;29073:20;29069:1;29058:9;29054:17;29047:47;29111:131;29237:4;29111:131;:::i;:::-;29103:139;;28830:419;;;:::o;29255:222::-;29395:34;29391:1;29383:6;29379:14;29372:58;29464:5;29459:2;29451:6;29447:15;29440:30;29255:222;:::o;29483:366::-;29625:3;29646:67;29710:2;29705:3;29646:67;:::i;:::-;29639:74;;29722:93;29811:3;29722:93;:::i;:::-;29840:2;29835:3;29831:12;29824:19;;29483:366;;;:::o;29855:419::-;30021:4;30059:2;30048:9;30044:18;30036:26;;30108:9;30102:4;30098:20;30094:1;30083:9;30079:17;30072:47;30136:131;30262:4;30136:131;:::i;:::-;30128:139;;29855:419;;;:::o;30280:172::-;30420:24;30416:1;30408:6;30404:14;30397:48;30280:172;:::o;30458:366::-;30600:3;30621:67;30685:2;30680:3;30621:67;:::i;:::-;30614:74;;30697:93;30786:3;30697:93;:::i;:::-;30815:2;30810:3;30806:12;30799:19;;30458:366;;;:::o;30830:419::-;30996:4;31034:2;31023:9;31019:18;31011:26;;31083:9;31077:4;31073:20;31069:1;31058:9;31054:17;31047:47;31111:131;31237:4;31111:131;:::i;:::-;31103:139;;30830:419;;;:::o;31255:297::-;31395:34;31391:1;31383:6;31379:14;31372:58;31464:34;31459:2;31451:6;31447:15;31440:59;31533:11;31528:2;31520:6;31516:15;31509:36;31255:297;:::o;31558:366::-;31700:3;31721:67;31785:2;31780:3;31721:67;:::i;:::-;31714:74;;31797:93;31886:3;31797:93;:::i;:::-;31915:2;31910:3;31906:12;31899:19;;31558:366;;;:::o;31930:419::-;32096:4;32134:2;32123:9;32119:18;32111:26;;32183:9;32177:4;32173:20;32169:1;32158:9;32154:17;32147:47;32211:131;32337:4;32211:131;:::i;:::-;32203:139;;31930:419;;;:::o;32355:240::-;32495:34;32491:1;32483:6;32479:14;32472:58;32564:23;32559:2;32551:6;32547:15;32540:48;32355:240;:::o;32601:366::-;32743:3;32764:67;32828:2;32823:3;32764:67;:::i;:::-;32757:74;;32840:93;32929:3;32840:93;:::i;:::-;32958:2;32953:3;32949:12;32942:19;;32601:366;;;:::o;32973:419::-;33139:4;33177:2;33166:9;33162:18;33154:26;;33226:9;33220:4;33216:20;33212:1;33201:9;33197:17;33190:47;33254:131;33380:4;33254:131;:::i;:::-;33246:139;;32973:419;;;:::o;33398:169::-;33538:21;33534:1;33526:6;33522:14;33515:45;33398:169;:::o;33573:366::-;33715:3;33736:67;33800:2;33795:3;33736:67;:::i;:::-;33729:74;;33812:93;33901:3;33812:93;:::i;:::-;33930:2;33925:3;33921:12;33914:19;;33573:366;;;:::o;33945:419::-;34111:4;34149:2;34138:9;34134:18;34126:26;;34198:9;34192:4;34188:20;34184:1;34173:9;34169:17;34162:47;34226:131;34352:4;34226:131;:::i;:::-;34218:139;;33945:419;;;:::o;34370:241::-;34510:34;34506:1;34498:6;34494:14;34487:58;34579:24;34574:2;34566:6;34562:15;34555:49;34370:241;:::o;34617:366::-;34759:3;34780:67;34844:2;34839:3;34780:67;:::i;:::-;34773:74;;34856:93;34945:3;34856:93;:::i;:::-;34974:2;34969:3;34965:12;34958:19;;34617:366;;;:::o;34989:419::-;35155:4;35193:2;35182:9;35178:18;35170:26;;35242:9;35236:4;35232:20;35228:1;35217:9;35213:17;35206:47;35270:131;35396:4;35270:131;:::i;:::-;35262:139;;34989:419;;;:::o;35414:194::-;35454:4;35474:20;35492:1;35474:20;:::i;:::-;35469:25;;35508:20;35526:1;35508:20;:::i;:::-;35503:25;;35552:1;35549;35545:9;35537:17;;35576:1;35570:4;35567:11;35564:37;;;35581:18;;:::i;:::-;35564:37;35414:194;;;;:::o;35614:181::-;35754:33;35750:1;35742:6;35738:14;35731:57;35614:181;:::o;35801:366::-;35943:3;35964:67;36028:2;36023:3;35964:67;:::i;:::-;35957:74;;36040:93;36129:3;36040:93;:::i;:::-;36158:2;36153:3;36149:12;36142:19;;35801:366;;;:::o;36173:419::-;36339:4;36377:2;36366:9;36362:18;36354:26;;36426:9;36420:4;36416:20;36412:1;36401:9;36397:17;36390:47;36454:131;36580:4;36454:131;:::i;:::-;36446:139;;36173:419;;;:::o;36598:225::-;36738:34;36734:1;36726:6;36722:14;36715:58;36807:8;36802:2;36794:6;36790:15;36783:33;36598:225;:::o;36829:366::-;36971:3;36992:67;37056:2;37051:3;36992:67;:::i;:::-;36985:74;;37068:93;37157:3;37068:93;:::i;:::-;37186:2;37181:3;37177:12;37170:19;;36829:366;;;:::o;37201:419::-;37367:4;37405:2;37394:9;37390:18;37382:26;;37454:9;37448:4;37444:20;37440:1;37429:9;37425:17;37418:47;37482:131;37608:4;37482:131;:::i;:::-;37474:139;;37201:419;;;:::o;37626:147::-;37727:11;37764:3;37749:18;;37626:147;;;;:::o;37779:114::-;;:::o;37899:398::-;38058:3;38079:83;38160:1;38155:3;38079:83;:::i;:::-;38072:90;;38171:93;38260:3;38171:93;:::i;:::-;38289:1;38284:3;38280:11;38273:18;;37899:398;;;:::o;38303:379::-;38487:3;38509:147;38652:3;38509:147;:::i;:::-;38502:154;;38673:3;38666:10;;38303:379;;;:::o;38688:442::-;38837:4;38875:2;38864:9;38860:18;38852:26;;38888:71;38956:1;38945:9;38941:17;38932:6;38888:71;:::i;:::-;38969:72;39037:2;39026:9;39022:18;39013:6;38969:72;:::i;:::-;39051;39119:2;39108:9;39104:18;39095:6;39051:72;:::i;:::-;38688:442;;;;;;:::o;39136:180::-;39184:77;39181:1;39174:88;39281:4;39278:1;39271:15;39305:4;39302:1;39295:15;39322:180;39370:77;39367:1;39360:88;39467:4;39464:1;39457:15;39491:4;39488:1;39481:15;39508:143;39565:5;39596:6;39590:13;39581:22;;39612:33;39639:5;39612:33;:::i;:::-;39508:143;;;;:::o;39657:351::-;39727:6;39776:2;39764:9;39755:7;39751:23;39747:32;39744:119;;;39782:79;;:::i;:::-;39744:119;39902:1;39927:64;39983:7;39974:6;39963:9;39959:22;39927:64;:::i;:::-;39917:74;;39873:128;39657:351;;;;:::o;40014:85::-;40059:7;40088:5;40077:16;;40014:85;;;:::o;40105:158::-;40163:9;40196:61;40214:42;40223:32;40249:5;40223:32;:::i;:::-;40214:42;:::i;:::-;40196:61;:::i;:::-;40183:74;;40105:158;;;:::o;40269:147::-;40364:45;40403:5;40364:45;:::i;:::-;40359:3;40352:58;40269:147;;:::o;40422:114::-;40489:6;40523:5;40517:12;40507:22;;40422:114;;;:::o;40542:184::-;40641:11;40675:6;40670:3;40663:19;40715:4;40710:3;40706:14;40691:29;;40542:184;;;;:::o;40732:132::-;40799:4;40822:3;40814:11;;40852:4;40847:3;40843:14;40835:22;;40732:132;;;:::o;40870:108::-;40947:24;40965:5;40947:24;:::i;:::-;40942:3;40935:37;40870:108;;:::o;40984:179::-;41053:10;41074:46;41116:3;41108:6;41074:46;:::i;:::-;41152:4;41147:3;41143:14;41129:28;;40984:179;;;;:::o;41169:113::-;41239:4;41271;41266:3;41262:14;41254:22;;41169:113;;;:::o;41318:732::-;41437:3;41466:54;41514:5;41466:54;:::i;:::-;41536:86;41615:6;41610:3;41536:86;:::i;:::-;41529:93;;41646:56;41696:5;41646:56;:::i;:::-;41725:7;41756:1;41741:284;41766:6;41763:1;41760:13;41741:284;;;41842:6;41836:13;41869:63;41928:3;41913:13;41869:63;:::i;:::-;41862:70;;41955:60;42008:6;41955:60;:::i;:::-;41945:70;;41801:224;41788:1;41785;41781:9;41776:14;;41741:284;;;41745:14;42041:3;42034:10;;41442:608;;;41318:732;;;;:::o;42056:831::-;42319:4;42357:3;42346:9;42342:19;42334:27;;42371:71;42439:1;42428:9;42424:17;42415:6;42371:71;:::i;:::-;42452:80;42528:2;42517:9;42513:18;42504:6;42452:80;:::i;:::-;42579:9;42573:4;42569:20;42564:2;42553:9;42549:18;42542:48;42607:108;42710:4;42701:6;42607:108;:::i;:::-;42599:116;;42725:72;42793:2;42782:9;42778:18;42769:6;42725:72;:::i;:::-;42807:73;42875:3;42864:9;42860:19;42851:6;42807:73;:::i;:::-;42056:831;;;;;;;;:::o;42893:807::-;43142:4;43180:3;43169:9;43165:19;43157:27;;43194:71;43262:1;43251:9;43247:17;43238:6;43194:71;:::i;:::-;43275:72;43343:2;43332:9;43328:18;43319:6;43275:72;:::i;:::-;43357:80;43433:2;43422:9;43418:18;43409:6;43357:80;:::i;:::-;43447;43523:2;43512:9;43508:18;43499:6;43447:80;:::i;:::-;43537:73;43605:3;43594:9;43590:19;43581:6;43537:73;:::i;:::-;43620;43688:3;43677:9;43673:19;43664:6;43620:73;:::i;:::-;42893:807;;;;;;;;;:::o;43706:663::-;43794:6;43802;43810;43859:2;43847:9;43838:7;43834:23;43830:32;43827:119;;;43865:79;;:::i;:::-;43827:119;43985:1;44010:64;44066:7;44057:6;44046:9;44042:22;44010:64;:::i;:::-;44000:74;;43956:128;44123:2;44149:64;44205:7;44196:6;44185:9;44181:22;44149:64;:::i;:::-;44139:74;;44094:129;44262:2;44288:64;44344:7;44335:6;44324:9;44320:22;44288:64;:::i;:::-;44278:74;;44233:129;43706:663;;;;;:::o

Swarm Source

ipfs://65fd1ec18a6806d9b6fb4871d1cb4311daa69b5526be439e6f3f4fe4cb8cff65
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.