ETH Price: $3,455.27 (+2.50%)
Gas: 4 Gwei

Token

Tao Paint System (TPS)
 

Overview

Max Total Supply

10,000,000 TPS

Holders

228

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
eddiegot.eth
Balance
69,825.830966368153710497 TPS

Value
$0.00
0xc7be50384e23370b10d0008ef1acec832fb91f51
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xfD2e9816...2CC205dbA
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
TPS

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-03-04
*/

// Twitter: https://twitter.com/taotpssubnet
// Telegram: https://t.me/tpsprotocolportal
// Website: https://tps.pics/

// TRC721 Hash: 0x0a7cf505f22875014f50e4f1dd148d36f53bdcbecac7ac0ba2ab6d2a85c83a02
// TRC721 Bridge Hash: 0x43c4366a621868bacdb1be9ae40b21a39e93a827769809e73ccbca51112e915f
// TRC721 Owner Hash: 0x803e3fd979693fbada70b1ad2e4f8331be4367186a3e7c7cfb84679d841ed883
// TPS Bytecode Hash: 0x2a1844ef6a5c93b2502a3413de21324c0eac60fcc42ff2425c2e828a14c976b3

/*
___       __      __              ___     __       __  ___  ___       
 |   /\  /  \    |__)  /\  | |\ |  |     /__` \ / /__`  |  |__   |\/| 
 |  /~~\ \__/    |    /~~\ | | \|  |     .__/  |  .__/  |  |___  |  | 
                                                                      
 */

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2;

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.5.0;

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

    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(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

pragma solidity ^0.8.19;

/**
 * @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;
        }
    }
}

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);
}


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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);
}



// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)

pragma solidity ^0.8.19;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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


pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
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;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    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 {}
}


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.19;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
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);
    }
}



pragma solidity ^0.8.12;
contract TPS is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapRouter;
    address public uniswapV2Pair;

    bool private swapping;

    address public treasuryWallet;

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

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

    bool public blacklistRenounced = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => bool) blacklisted;

    uint256 public buyTotalFees;
    uint256 public buyTreasuryFee;

    uint256 public sellTotalFees;
    uint256 public sellTreasuryFee;

    uint256 public tokensForTreasury;


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

    mapping(address => bool) public automatedMarketMakerPairs;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

    constructor() ERC20("Tao Paint System", "TPS") {
        IUniswapV2Router02 _uniswapRouter = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D 
        );

        excludeFromMaxTransaction(address(_uniswapRouter), true);
        uniswapRouter = _uniswapRouter;

        uint256 _buyTreasuryFee = 5;
        uint256 _sellTreasuryFee = 5;

        uint256 totalSupply = 10_000_000 * 1e18;

        maxTransactionAmount = 100_000 * 1e18; 
        maxWallet = 100_000 * 1e18; 
        swapTokensAtAmount = (totalSupply * 5) / 10000; 

        buyTreasuryFee = _buyTreasuryFee;
        buyTotalFees = buyTreasuryFee;

        sellTreasuryFee = _sellTreasuryFee;
        sellTotalFees = sellTreasuryFee;

        treasuryWallet = address(0x3b93FdDc02F5369818455958B093F073880e9Dc5);

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);

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

        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    function createPair() external onlyOwner {
        uniswapV2Pair = IUniswapV2Factory(uniswapRouter.factory())
            .createPair(address(this), uniswapRouter.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
    }

    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

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

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        swapTokensAtAmount = newAmount;
        return true;
    }

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

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 10) / 1000) / 1e18,
            "Cannot set maxWallet lower than 1.0%"
        );
        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 _treasuryFee
    ) external onlyOwner {
        buyTreasuryFee = _treasuryFee;
        buyTotalFees = buyTreasuryFee;
    }

    function updateSellFees(
        uint256 _treasuryFee
    ) external onlyOwner {
        sellTreasuryFee = _treasuryFee;
        sellTotalFees = sellTreasuryFee;
    }

    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 updateTreasuryWallet(address newWallet) external onlyOwner {
        emit treasuryWalletUpdated(newWallet, treasuryWallet);
        treasuryWallet = newWallet;
    }

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

    function isBlacklisted(address account) public view returns (bool) {
        return blacklisted[account];
    }

    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");
        require(!blacklisted[from],"Sender blacklisted");
        require(!blacklisted[to],"Receiver blacklisted");

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

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

                //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;
        }

        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);
                tokensForTreasury += (fees * sellTreasuryFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForTreasury += (fees * buyTreasuryFee) / 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] = uniswapRouter.WETH();

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

        // make the swap
        uniswapRouter.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(uniswapRouter), tokenAmount);

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForTreasury;
        bool success;

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

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


        uint256 amountToSwapForETH = contractBalance;

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        tokensForTreasury = 0;

        (success, ) = address(treasuryWallet).call{value: ethBalance}("");
    }

    function withdrawTPS() external onlyOwner {
        uint256 balance = IERC20(address(this)).balanceOf(address(this));
        IERC20(address(this)).transfer(msg.sender, balance);
        payable(msg.sender).transfer(address(this).balance);
    }

    function withdrawToken(address _token, address _to) external onlyOwner {
        require(_token != address(0), "_token address cannot be 0");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

    function withdrawETH(address toAddr) external onlyOwner {
        (bool success, ) = toAddr.call{
            value: address(this).balance
        } ("");
        require(success);
    }

    // @dev team renounce blacklist commands
    function renounceBlacklist() public onlyOwner {
        blacklistRenounced = true;
    }

    function blacklist(address _addr) public onlyOwner {
        require(!blacklistRenounced, "Team has revoked blacklist rights");
        require(
            _addr != address(uniswapV2Pair) && _addr != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D),
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[_addr] = true;
    }

    // @dev blacklist v3 pools; can unblacklist() down the road to suit project and community
    function blacklistLiquidityPool(address lpAddress) public onlyOwner {
        require(!blacklistRenounced, "Team has revoked blacklist rights");
        require(
            lpAddress != address(uniswapV2Pair) && lpAddress != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), 
            "Cannot blacklist token's v2 router or v2 pool."
        );
        blacklisted[lpAddress] = true;
    }

    // @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road
    function unblacklist(address _addr) public onlyOwner {
        blacklisted[_addr] = false;
    }
}

Contract Security Audit

Contract ABI

[{"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":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":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":"UpdateUniswapRouter","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"treasuryWalletUpdated","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":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createPair","outputs":[],"stateMutability":"nonpayable","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":"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":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"tokensForTreasury","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":[{"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":"treasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"}],"name":"updateBuyFees","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":"_treasuryFee","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"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawTPS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526001600b5f6101000a81548160ff0219169083151502179055505f600b60016101000a81548160ff0219169083151502179055505f600b60026101000a81548160ff0219169083151502179055505f600b60036101000a81548160ff02191690831515021790555034801562000078575f80fd5b506040518060400160405280601081526020017f54616f205061696e742053797374656d000000000000000000000000000000008152506040518060400160405280600381526020017f54505300000000000000000000000000000000000000000000000000000000008152508160039081620000f69190620009d1565b508060049081620001089190620009d1565b5050506200012b6200011f620002e360201b60201c565b620002ea60201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d905062000156816001620003ad60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250505f600590505f600590505f6a084595161401484a000000905069152d02c7e14af680000060088190555069152d02c7e14af6800000600a81905550612710600582620001d7919062000ae2565b620001e3919062000b59565b60098190555082600e81905550600e54600d8190555081601081905550601054600f81905550733b93fddc02f5369818455958b093f073880e9dc560075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200027f620002716200049460201b60201c565b6001620004bc60201b60201c565b62000292306001620004bc60201b60201c565b620002b4620002a66200049460201b60201c565b6001620003ad60201b60201c565b620002c7306001620003ad60201b60201c565b620002d93382620005f360201b60201c565b5050505062000d19565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003bd620002e360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003e36200049460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200043c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004339062000bee565b60405180910390fd5b8060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620004cc620002e360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004f26200049460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200054b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005429062000bee565b60405180910390fd5b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620005e7919062000c2a565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000664576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200065b9062000c93565b60405180910390fd5b620006775f83836200076360201b60201c565b8060025f8282546200068a919062000cb3565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254620006de919062000cb3565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000744919062000cfe565b60405180910390a36200075f5f83836200076860201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620007e957607f821691505b602082108103620007ff57620007fe620007a4565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620008637fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000826565b6200086f868362000826565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620008b9620008b3620008ad8462000887565b62000890565b62000887565b9050919050565b5f819050919050565b620008d48362000899565b620008ec620008e382620008c0565b84845462000832565b825550505050565b5f90565b62000902620008f4565b6200090f818484620008c9565b505050565b5b8181101562000936576200092a5f82620008f8565b60018101905062000915565b5050565b601f82111562000985576200094f8162000805565b6200095a8462000817565b810160208510156200096a578190505b62000982620009798562000817565b83018262000914565b50505b505050565b5f82821c905092915050565b5f620009a75f19846008026200098a565b1980831691505092915050565b5f620009c1838362000996565b9150826002028217905092915050565b620009dc826200076d565b67ffffffffffffffff811115620009f857620009f762000777565b5b62000a048254620007d1565b62000a118282856200093a565b5f60209050601f83116001811462000a47575f841562000a32578287015190505b62000a3e8582620009b4565b86555062000aad565b601f19841662000a578662000805565b5f5b8281101562000a805784890151825560018201915060208501945060208101905062000a59565b8683101562000aa0578489015162000a9c601f89168262000996565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000aee8262000887565b915062000afb8362000887565b925082820262000b0b8162000887565b9150828204841483151762000b255762000b2462000ab5565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000b658262000887565b915062000b728362000887565b92508262000b855762000b8462000b2c565b5b828204905092915050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f62000bd660208362000b90565b915062000be38262000ba0565b602082019050919050565b5f6020820190508181035f83015262000c078162000bc8565b9050919050565b5f8115159050919050565b62000c248162000c0e565b82525050565b5f60208201905062000c3f5f83018462000c19565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000c7b601f8362000b90565b915062000c888262000c45565b602082019050919050565b5f6020820190508181035f83015262000cac8162000c6d565b9050919050565b5f62000cbf8262000887565b915062000ccc8362000887565b925082820190508082111562000ce75762000ce662000ab5565b5b92915050565b62000cf88162000887565b82525050565b5f60208201905062000d135f83018462000ced565b92915050565b60805161525162000d555f395f818161172001528181611e5c01528181611f0501528181613d1701528181613df60152613e1d01526152515ff3fe60806040526004361061031d575f3560e01c80637571336a116101aa578063c0246668116100f6578063e19b282311610094578063f2fde38b1161006e578063f2fde38b14610b7a578063f8b45b0514610ba2578063f9f92be414610bcc578063fe575a8714610bf457610324565b8063e19b282314610b00578063e2f4560514610b28578063eba4c33314610b5257610324565b8063cc2ffe7c116100d0578063cc2ffe7c14610a34578063d257b34f14610a5e578063d85ba06314610a9a578063dd62ed3e14610ac457610324565b8063c0246668146109ba578063c18bc195146109e2578063c8c8ebe414610a0a57610324565b806395d89b4111610163578063a457c2d71161013d578063a457c2d7146108dc578063a9059cbb14610918578063b62496f514610954578063bbc0c7421461099057610324565b806395d89b41146108745780639a7a23d61461089e5780639e78fb4f146108c657610324565b80637571336a1461079457806375e3661e146107bc578063809d458d146107e45780638a8c523c1461080c5780638da5cb5b14610822578063924de9b71461084c57610324565b80634a62bb65116102695780636b2fb12411610222578063715018a6116101fc578063715018a61461070257806371fc468814610718578063735de9f714610740578063751039fc1461076a57610324565b80636b2fb124146106725780636ddd17131461069c57806370a08231146106c657610324565b80634a62bb651461057a5780634fbee193146105a45780635c068a8c146105e05780635f1893611461060a578063690d8320146106205780636a486a8e1461064857610324565b806323b872dd116102d65780633aeac4e1116102b05780633aeac4e1146104d45780633dc599ff146104fc5780634626402b1461052657806349bd5a5e1461055057610324565b806323b872dd14610432578063313ce5671461046e578063395093511461049857610324565b806306fdde0314610328578063095ea7b31461035257806310d5de531461038e57806313d5d4e9146103ca57806318160ddd146103e0578063203e727e1461040a57610324565b3661032457005b5f80fd5b348015610333575f80fd5b5061033c610c30565b6040516103499190613f4c565b60405180910390f35b34801561035d575f80fd5b5061037860048036038101906103739190613ffd565b610cc0565b6040516103859190614055565b60405180910390f35b348015610399575f80fd5b506103b460048036038101906103af919061406e565b610cdd565b6040516103c19190614055565b60405180910390f35b3480156103d5575f80fd5b506103de610cfa565b005b3480156103eb575f80fd5b506103f4610eb4565b60405161040191906140a8565b60405180910390f35b348015610415575f80fd5b50610430600480360381019061042b91906140c1565b610ebd565b005b34801561043d575f80fd5b50610458600480360381019061045391906140ec565b610fcc565b6040516104659190614055565b60405180910390f35b348015610479575f80fd5b506104826110be565b60405161048f9190614157565b60405180910390f35b3480156104a3575f80fd5b506104be60048036038101906104b99190613ffd565b6110c6565b6040516104cb9190614055565b60405180910390f35b3480156104df575f80fd5b506104fa60048036038101906104f59190614170565b61116d565b005b348015610507575f80fd5b50610510611353565b60405161051d9190614055565b60405180910390f35b348015610531575f80fd5b5061053a611366565b60405161054791906141bd565b60405180910390f35b34801561055b575f80fd5b5061056461138b565b60405161057191906141bd565b60405180910390f35b348015610585575f80fd5b5061058e6113b0565b60405161059b9190614055565b60405180910390f35b3480156105af575f80fd5b506105ca60048036038101906105c5919061406e565b6113c2565b6040516105d79190614055565b60405180910390f35b3480156105eb575f80fd5b506105f4611414565b60405161060191906140a8565b60405180910390f35b348015610615575f80fd5b5061061e61141a565b005b34801561062b575f80fd5b506106466004803603810190610641919061406e565b6114b3565b005b348015610653575f80fd5b5061065c6115a4565b60405161066991906140a8565b60405180910390f35b34801561067d575f80fd5b506106866115aa565b60405161069391906140a8565b60405180910390f35b3480156106a7575f80fd5b506106b06115b0565b6040516106bd9190614055565b60405180910390f35b3480156106d1575f80fd5b506106ec60048036038101906106e7919061406e565b6115c3565b6040516106f991906140a8565b60405180910390f35b34801561070d575f80fd5b50610716611608565b005b348015610723575f80fd5b5061073e600480360381019061073991906140c1565b61168f565b005b34801561074b575f80fd5b5061075461171e565b6040516107619190614231565b60405180910390f35b348015610775575f80fd5b5061077e611742565b60405161078b9190614055565b60405180910390f35b34801561079f575f80fd5b506107ba60048036038101906107b59190614274565b6117df565b005b3480156107c7575f80fd5b506107e260048036038101906107dd919061406e565b6118b3565b005b3480156107ef575f80fd5b5061080a6004803603810190610805919061406e565b611986565b005b348015610817575f80fd5b50610820611ac0565b005b34801561082d575f80fd5b50610836611b74565b60405161084391906141bd565b60405180910390f35b348015610857575f80fd5b50610872600480360381019061086d91906142b2565b611b9c565b005b34801561087f575f80fd5b50610888611c35565b6040516108959190613f4c565b60405180910390f35b3480156108a9575f80fd5b506108c460048036038101906108bf9190614274565b611cc5565b005b3480156108d1575f80fd5b506108da611dde565b005b3480156108e7575f80fd5b5061090260048036038101906108fd9190613ffd565b612086565b60405161090f9190614055565b60405180910390f35b348015610923575f80fd5b5061093e60048036038101906109399190613ffd565b61216c565b60405161094b9190614055565b60405180910390f35b34801561095f575f80fd5b5061097a6004803603810190610975919061406e565b612189565b6040516109879190614055565b60405180910390f35b34801561099b575f80fd5b506109a46121a6565b6040516109b19190614055565b60405180910390f35b3480156109c5575f80fd5b506109e060048036038101906109db9190614274565b6121b9565b005b3480156109ed575f80fd5b50610a086004803603810190610a0391906140c1565b6122db565b005b348015610a15575f80fd5b50610a1e6123ea565b604051610a2b91906140a8565b60405180910390f35b348015610a3f575f80fd5b50610a486123f0565b604051610a5591906140a8565b60405180910390f35b348015610a69575f80fd5b50610a846004803603810190610a7f91906140c1565b6123f6565b604051610a919190614055565b60405180910390f35b348015610aa5575f80fd5b50610aae612483565b604051610abb91906140a8565b60405180910390f35b348015610acf575f80fd5b50610aea6004803603810190610ae59190614170565b612489565b604051610af791906140a8565b60405180910390f35b348015610b0b575f80fd5b50610b266004803603810190610b21919061406e565b61250b565b005b348015610b33575f80fd5b50610b3c61270b565b604051610b4991906140a8565b60405180910390f35b348015610b5d575f80fd5b50610b786004803603810190610b7391906140c1565b612711565b005b348015610b85575f80fd5b50610ba06004803603810190610b9b919061406e565b6127a0565b005b348015610bad575f80fd5b50610bb6612896565b604051610bc391906140a8565b60405180910390f35b348015610bd7575f80fd5b50610bf26004803603810190610bed919061406e565b61289c565b005b348015610bff575f80fd5b50610c1a6004803603810190610c15919061406e565b612a9c565b604051610c279190614055565b60405180910390f35b606060038054610c3f9061430a565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6b9061430a565b8015610cb65780601f10610c8d57610100808354040283529160200191610cb6565b820191905f5260205f20905b815481529060010190602001808311610c9957829003601f168201915b5050505050905090565b5f610cd3610ccc612aee565b8484612af5565b6001905092915050565b6013602052805f5260405f205f915054906101000a900460ff1681565b610d02612aee565b73ffffffffffffffffffffffffffffffffffffffff16610d20611b74565b73ffffffffffffffffffffffffffffffffffffffff1614610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90614384565b60405180910390fd5b5f3073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610db091906141bd565b602060405180830381865afa158015610dcb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610def91906143b6565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610e2c9291906143e1565b6020604051808303815f875af1158015610e48573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e6c919061441c565b503373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610eb0573d5f803e3d5ffd5b5050565b5f600254905090565b610ec5612aee565b73ffffffffffffffffffffffffffffffffffffffff16610ee3611b74565b73ffffffffffffffffffffffffffffffffffffffff1614610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3090614384565b60405180910390fd5b670de0b6b3a76400006103e86005610f4f610eb4565b610f599190614474565b610f6391906144e2565b610f6d91906144e2565b811015610faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa690614582565b60405180910390fd5b670de0b6b3a764000081610fc39190614474565b60088190555050565b5f610fd8848484612cb8565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61101f612aee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508281101561109e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109590614610565b60405180910390fd5b6110b2856110aa612aee565b858403612af5565b60019150509392505050565b5f6012905090565b5f6111636110d2612aee565b848460015f6110df612aee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461115e919061462e565b612af5565b6001905092915050565b611175612aee565b73ffffffffffffffffffffffffffffffffffffffff16611193611b74565b73ffffffffffffffffffffffffffffffffffffffff16146111e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e090614384565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124e906146ab565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161129191906141bd565b602060405180830381865afa1580156112ac573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112d091906143b6565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b815260040161130d9291906143e1565b6020604051808303815f875af1158015611329573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061134d919061441c565b50505050565b600b60039054906101000a900460ff1681565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5f9054906101000a900460ff1681565b5f60125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b600e5481565b611422612aee565b73ffffffffffffffffffffffffffffffffffffffff16611440611b74565b73ffffffffffffffffffffffffffffffffffffffff1614611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d90614384565b60405180910390fd5b6001600b60036101000a81548160ff021916908315150217905550565b6114bb612aee565b73ffffffffffffffffffffffffffffffffffffffff166114d9611b74565b73ffffffffffffffffffffffffffffffffffffffff161461152f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152690614384565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff1647604051611554906146f6565b5f6040518083038185875af1925050503d805f811461158e576040519150601f19603f3d011682016040523d82523d5f602084013e611593565b606091505b50509050806115a0575f80fd5b5050565b600f5481565b60105481565b600b60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b611610612aee565b73ffffffffffffffffffffffffffffffffffffffff1661162e611b74565b73ffffffffffffffffffffffffffffffffffffffff1614611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b90614384565b60405180910390fd5b61168d5f61375a565b565b611697612aee565b73ffffffffffffffffffffffffffffffffffffffff166116b5611b74565b73ffffffffffffffffffffffffffffffffffffffff161461170b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170290614384565b60405180910390fd5b80600e81905550600e54600d8190555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f61174b612aee565b73ffffffffffffffffffffffffffffffffffffffff16611769611b74565b73ffffffffffffffffffffffffffffffffffffffff16146117bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b690614384565b60405180910390fd5b5f600b5f6101000a81548160ff0219169083151502179055506001905090565b6117e7612aee565b73ffffffffffffffffffffffffffffffffffffffff16611805611b74565b73ffffffffffffffffffffffffffffffffffffffff161461185b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185290614384565b60405180910390fd5b8060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6118bb612aee565b73ffffffffffffffffffffffffffffffffffffffff166118d9611b74565b73ffffffffffffffffffffffffffffffffffffffff161461192f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192690614384565b60405180910390fd5b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b61198e612aee565b73ffffffffffffffffffffffffffffffffffffffff166119ac611b74565b73ffffffffffffffffffffffffffffffffffffffff1614611a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f990614384565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f02f8a1483978974a6412ba3a67040b4daa4fc0dfe9439a7295f9a9538394f63560405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611ac8612aee565b73ffffffffffffffffffffffffffffffffffffffff16611ae6611b74565b73ffffffffffffffffffffffffffffffffffffffff1614611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3390614384565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611ba4612aee565b73ffffffffffffffffffffffffffffffffffffffff16611bc2611b74565b73ffffffffffffffffffffffffffffffffffffffff1614611c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0f90614384565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611c449061430a565b80601f0160208091040260200160405190810160405280929190818152602001828054611c709061430a565b8015611cbb5780601f10611c9257610100808354040283529160200191611cbb565b820191905f5260205f20905b815481529060010190602001808311611c9e57829003601f168201915b5050505050905090565b611ccd612aee565b73ffffffffffffffffffffffffffffffffffffffff16611ceb611b74565b73ffffffffffffffffffffffffffffffffffffffff1614611d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3890614384565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc79061477a565b60405180910390fd5b611dda828261381d565b5050565b611de6612aee565b73ffffffffffffffffffffffffffffffffffffffff16611e04611b74565b73ffffffffffffffffffffffffffffffffffffffff1614611e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5190614384565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ec3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ee791906147ac565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f6c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f9091906147ac565b6040518363ffffffff1660e01b8152600401611fad9291906147d7565b6020604051808303815f875af1158015611fc9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fed91906147ac565b60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061205860065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016117df565b61208460065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600161381d565b565b5f8060015f612093612aee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508281101561214d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121449061486e565b60405180910390fd5b612161612158612aee565b85858403612af5565b600191505092915050565b5f61217f612178612aee565b8484612cb8565b6001905092915050565b6014602052805f5260405f205f915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b6121c1612aee565b73ffffffffffffffffffffffffffffffffffffffff166121df611b74565b73ffffffffffffffffffffffffffffffffffffffff1614612235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222c90614384565b60405180910390fd5b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516122cf9190614055565b60405180910390a25050565b6122e3612aee565b73ffffffffffffffffffffffffffffffffffffffff16612301611b74565b73ffffffffffffffffffffffffffffffffffffffff1614612357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234e90614384565b60405180910390fd5b670de0b6b3a76400006103e8600a61236d610eb4565b6123779190614474565b61238191906144e2565b61238b91906144e2565b8110156123cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c4906148fc565b60405180910390fd5b670de0b6b3a7640000816123e19190614474565b600a8190555050565b60085481565b60115481565b5f6123ff612aee565b73ffffffffffffffffffffffffffffffffffffffff1661241d611b74565b73ffffffffffffffffffffffffffffffffffffffff1614612473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246a90614384565b60405180910390fd5b8160098190555060019050919050565b600d5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b612513612aee565b73ffffffffffffffffffffffffffffffffffffffff16612531611b74565b73ffffffffffffffffffffffffffffffffffffffff1614612587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257e90614384565b60405180910390fd5b600b60039054906101000a900460ff16156125d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ce9061498a565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156126745750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b6126b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126aa90614a18565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60095481565b612719612aee565b73ffffffffffffffffffffffffffffffffffffffff16612737611b74565b73ffffffffffffffffffffffffffffffffffffffff161461278d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278490614384565b60405180910390fd5b80601081905550601054600f8190555050565b6127a8612aee565b73ffffffffffffffffffffffffffffffffffffffff166127c6611b74565b73ffffffffffffffffffffffffffffffffffffffff161461281c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281390614384565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361288a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288190614aa6565b60405180910390fd5b6128938161375a565b50565b600a5481565b6128a4612aee565b73ffffffffffffffffffffffffffffffffffffffff166128c2611b74565b73ffffffffffffffffffffffffffffffffffffffff1614612918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290f90614384565b60405180910390fd5b600b60039054906101000a900460ff1615612968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295f9061498a565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612a055750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3b90614a18565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5a90614b34565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc890614bc2565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612cab91906140a8565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1d90614c50565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8b90614cde565b60405180910390fd5b600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1590614d46565b60405180910390fd5b600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9f90614dae565b60405180910390fd5b5f8103612ebf57612eba83835f6138bb565b613755565b600b5f9054906101000a900460ff161561336957612edb611b74565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612f495750612f19611b74565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f8157505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f9a5750600660149054906101000a900460ff16155b1561336857600b60019054906101000a900460ff1661308e5760125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061304e575060125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b61308d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308490614e16565b60405180910390fd5b5b60145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561312b575060135f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156131d257600854811115613175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316c90614ea4565b60405180910390fd5b600a54613181836115c3565b8261318c919061462e565b11156131cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c490614f0c565b60405180910390fd5b613367565b60145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561326f575060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156132be576008548111156132b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b090614f9a565b60405180910390fd5b613366565b60135f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661336557600a54613318836115c3565b82613323919061462e565b1115613364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335b90614f0c565b60405180910390fd5b5b5b5b5b5b5f613373306115c3565b90505f60095482101590508080156133975750600b60029054906101000a900460ff165b80156133b05750600660149054906101000a900460ff16155b8015613403575060145f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015613456575060125f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156134a9575060125f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156134ec576001600660146101000a81548160ff0219169083151502179055506134d1613b30565b5f600660146101000a81548160ff0219169083151502179055505b5f600660149054906101000a900460ff1615905060125f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061359b575060125f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156135a4575f90505b5f81156137455760145f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561360257505f600f54115b156136685761362f6064613621600f5488613c4690919063ffffffff16565b613c5b90919063ffffffff16565b9050600f54601054826136429190614474565b61364c91906144e2565b60115f82825461365c919061462e565b92505081905550613722565b60145f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156136bf57505f600d54115b15613721576136ec60646136de600d5488613c4690919063ffffffff16565b613c5b90919063ffffffff16565b9050600d54600e54826136ff9190614474565b61370991906144e2565b60115f828254613719919061462e565b925050819055505b5b5f811115613736576137358730836138bb565b5b80856137429190614fb8565b94505b6137508787876138bb565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161392090614c50565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161398e90614cde565b60405180910390fd5b6139a2838383613c70565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015613a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a1c9061505b565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254613ab3919061462e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613b1791906140a8565b60405180910390a3613b2a848484613c75565b50505050565b5f613b3a306115c3565b90505f60115490505f80831480613b5057505f82145b15613b5d57505050613c44565b6014600954613b6c9190614474565b831115613b85576014600954613b829190614474565b92505b5f8390505f479050613b9682613c7a565b5f613baa8247613ead90919063ffffffff16565b90505f60118190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051613bf8906146f6565b5f6040518083038185875af1925050503d805f8114613c32576040519150601f19603f3d011682016040523d82523d5f602084013e613c37565b606091505b5050809450505050505050505b565b5f8183613c539190614474565b905092915050565b5f8183613c6891906144e2565b905092915050565b505050565b505050565b5f600267ffffffffffffffff811115613c9657613c95615079565b5b604051908082528060200260200182016040528015613cc45781602001602082028036833780820191505090505b50905030815f81518110613cdb57613cda6150a6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613d7e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613da291906147ac565b81600181518110613db657613db56150a6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613e1b307f000000000000000000000000000000000000000000000000000000000000000084612af5565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401613e7c9594939291906151c3565b5f604051808303815f87803b158015613e93575f80fd5b505af1158015613ea5573d5f803e3d5ffd5b505050505050565b5f8183613eba9190614fb8565b905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015613ef9578082015181840152602081019050613ede565b5f8484015250505050565b5f601f19601f8301169050919050565b5f613f1e82613ec2565b613f288185613ecc565b9350613f38818560208601613edc565b613f4181613f04565b840191505092915050565b5f6020820190508181035f830152613f648184613f14565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613f9982613f70565b9050919050565b613fa981613f8f565b8114613fb3575f80fd5b50565b5f81359050613fc481613fa0565b92915050565b5f819050919050565b613fdc81613fca565b8114613fe6575f80fd5b50565b5f81359050613ff781613fd3565b92915050565b5f806040838503121561401357614012613f6c565b5b5f61402085828601613fb6565b925050602061403185828601613fe9565b9150509250929050565b5f8115159050919050565b61404f8161403b565b82525050565b5f6020820190506140685f830184614046565b92915050565b5f6020828403121561408357614082613f6c565b5b5f61409084828501613fb6565b91505092915050565b6140a281613fca565b82525050565b5f6020820190506140bb5f830184614099565b92915050565b5f602082840312156140d6576140d5613f6c565b5b5f6140e384828501613fe9565b91505092915050565b5f805f6060848603121561410357614102613f6c565b5b5f61411086828701613fb6565b935050602061412186828701613fb6565b925050604061413286828701613fe9565b9150509250925092565b5f60ff82169050919050565b6141518161413c565b82525050565b5f60208201905061416a5f830184614148565b92915050565b5f806040838503121561418657614185613f6c565b5b5f61419385828601613fb6565b92505060206141a485828601613fb6565b9150509250929050565b6141b781613f8f565b82525050565b5f6020820190506141d05f8301846141ae565b92915050565b5f819050919050565b5f6141f96141f46141ef84613f70565b6141d6565b613f70565b9050919050565b5f61420a826141df565b9050919050565b5f61421b82614200565b9050919050565b61422b81614211565b82525050565b5f6020820190506142445f830184614222565b92915050565b6142538161403b565b811461425d575f80fd5b50565b5f8135905061426e8161424a565b92915050565b5f806040838503121561428a57614289613f6c565b5b5f61429785828601613fb6565b92505060206142a885828601614260565b9150509250929050565b5f602082840312156142c7576142c6613f6c565b5b5f6142d484828501614260565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061432157607f821691505b602082108103614334576143336142dd565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61436e602083613ecc565b91506143798261433a565b602082019050919050565b5f6020820190508181035f83015261439b81614362565b9050919050565b5f815190506143b081613fd3565b92915050565b5f602082840312156143cb576143ca613f6c565b5b5f6143d8848285016143a2565b91505092915050565b5f6040820190506143f45f8301856141ae565b6144016020830184614099565b9392505050565b5f815190506144168161424a565b92915050565b5f6020828403121561443157614430613f6c565b5b5f61443e84828501614408565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61447e82613fca565b915061448983613fca565b925082820261449781613fca565b915082820484148315176144ae576144ad614447565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6144ec82613fca565b91506144f783613fca565b925082614507576145066144b5565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b5f61456c602f83613ecc565b915061457782614512565b604082019050919050565b5f6020820190508181035f83015261459981614560565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6145fa602883613ecc565b9150614605826145a0565b604082019050919050565b5f6020820190508181035f830152614627816145ee565b9050919050565b5f61463882613fca565b915061464383613fca565b925082820190508082111561465b5761465a614447565b5b92915050565b7f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000005f82015250565b5f614695601a83613ecc565b91506146a082614661565b602082019050919050565b5f6020820190508181035f8301526146c281614689565b9050919050565b5f81905092915050565b50565b5f6146e15f836146c9565b91506146ec826146d3565b5f82019050919050565b5f614700826146d6565b9150819050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f614764603983613ecc565b915061476f8261470a565b604082019050919050565b5f6020820190508181035f83015261479181614758565b9050919050565b5f815190506147a681613fa0565b92915050565b5f602082840312156147c1576147c0613f6c565b5b5f6147ce84828501614798565b91505092915050565b5f6040820190506147ea5f8301856141ae565b6147f760208301846141ae565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f614858602583613ecc565b9150614863826147fe565b604082019050919050565b5f6020820190508181035f8301526148858161484c565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f312e302500000000000000000000000000000000000000000000000000000000602082015250565b5f6148e6602483613ecc565b91506148f18261488c565b604082019050919050565b5f6020820190508181035f830152614913816148da565b9050919050565b7f5465616d20686173207265766f6b656420626c61636b6c6973742072696768745f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f614974602183613ecc565b915061497f8261491a565b604082019050919050565b5f6020820190508181035f8301526149a181614968565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f75745f8201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b5f614a02602e83613ecc565b9150614a0d826149a8565b604082019050919050565b5f6020820190508181035f830152614a2f816149f6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f614a90602683613ecc565b9150614a9b82614a36565b604082019050919050565b5f6020820190508181035f830152614abd81614a84565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f614b1e602483613ecc565b9150614b2982614ac4565b604082019050919050565b5f6020820190508181035f830152614b4b81614b12565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f614bac602283613ecc565b9150614bb782614b52565b604082019050919050565b5f6020820190508181035f830152614bd981614ba0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f614c3a602583613ecc565b9150614c4582614be0565b604082019050919050565b5f6020820190508181035f830152614c6781614c2e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f614cc8602383613ecc565b9150614cd382614c6e565b604082019050919050565b5f6020820190508181035f830152614cf581614cbc565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f614d30601283613ecc565b9150614d3b82614cfc565b602082019050919050565b5f6020820190508181035f830152614d5d81614d24565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f614d98601483613ecc565b9150614da382614d64565b602082019050919050565b5f6020820190508181035f830152614dc581614d8c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f614e00601683613ecc565b9150614e0b82614dcc565b602082019050919050565b5f6020820190508181035f830152614e2d81614df4565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f614e8e603583613ecc565b9150614e9982614e34565b604082019050919050565b5f6020820190508181035f830152614ebb81614e82565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f614ef6601383613ecc565b9150614f0182614ec2565b602082019050919050565b5f6020820190508181035f830152614f2381614eea565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f614f84603683613ecc565b9150614f8f82614f2a565b604082019050919050565b5f6020820190508181035f830152614fb181614f78565b9050919050565b5f614fc282613fca565b9150614fcd83613fca565b9250828203905081811115614fe557614fe4614447565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f615045602683613ecc565b915061505082614feb565b604082019050919050565b5f6020820190508181035f83015261507281615039565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050919050565b5f6150f66150f16150ec846150d3565b6141d6565b613fca565b9050919050565b615106816150dc565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61513e81613f8f565b82525050565b5f61514f8383615135565b60208301905092915050565b5f602082019050919050565b5f6151718261510c565b61517b8185615116565b935061518683615126565b805f5b838110156151b657815161519d8882615144565b97506151a88361515b565b925050600181019050615189565b5085935050505092915050565b5f60a0820190506151d65f830188614099565b6151e360208301876150fd565b81810360408301526151f58186615167565b905061520460608301856141ae565b6152116080830184614099565b969550505050505056fea2646970667358221220425f993b5e2a14c4b010a611613db1ad001a803b3d41e860e33d79d0f91e588264736f6c63430008180033

Deployed Bytecode

0x60806040526004361061031d575f3560e01c80637571336a116101aa578063c0246668116100f6578063e19b282311610094578063f2fde38b1161006e578063f2fde38b14610b7a578063f8b45b0514610ba2578063f9f92be414610bcc578063fe575a8714610bf457610324565b8063e19b282314610b00578063e2f4560514610b28578063eba4c33314610b5257610324565b8063cc2ffe7c116100d0578063cc2ffe7c14610a34578063d257b34f14610a5e578063d85ba06314610a9a578063dd62ed3e14610ac457610324565b8063c0246668146109ba578063c18bc195146109e2578063c8c8ebe414610a0a57610324565b806395d89b4111610163578063a457c2d71161013d578063a457c2d7146108dc578063a9059cbb14610918578063b62496f514610954578063bbc0c7421461099057610324565b806395d89b41146108745780639a7a23d61461089e5780639e78fb4f146108c657610324565b80637571336a1461079457806375e3661e146107bc578063809d458d146107e45780638a8c523c1461080c5780638da5cb5b14610822578063924de9b71461084c57610324565b80634a62bb65116102695780636b2fb12411610222578063715018a6116101fc578063715018a61461070257806371fc468814610718578063735de9f714610740578063751039fc1461076a57610324565b80636b2fb124146106725780636ddd17131461069c57806370a08231146106c657610324565b80634a62bb651461057a5780634fbee193146105a45780635c068a8c146105e05780635f1893611461060a578063690d8320146106205780636a486a8e1461064857610324565b806323b872dd116102d65780633aeac4e1116102b05780633aeac4e1146104d45780633dc599ff146104fc5780634626402b1461052657806349bd5a5e1461055057610324565b806323b872dd14610432578063313ce5671461046e578063395093511461049857610324565b806306fdde0314610328578063095ea7b31461035257806310d5de531461038e57806313d5d4e9146103ca57806318160ddd146103e0578063203e727e1461040a57610324565b3661032457005b5f80fd5b348015610333575f80fd5b5061033c610c30565b6040516103499190613f4c565b60405180910390f35b34801561035d575f80fd5b5061037860048036038101906103739190613ffd565b610cc0565b6040516103859190614055565b60405180910390f35b348015610399575f80fd5b506103b460048036038101906103af919061406e565b610cdd565b6040516103c19190614055565b60405180910390f35b3480156103d5575f80fd5b506103de610cfa565b005b3480156103eb575f80fd5b506103f4610eb4565b60405161040191906140a8565b60405180910390f35b348015610415575f80fd5b50610430600480360381019061042b91906140c1565b610ebd565b005b34801561043d575f80fd5b50610458600480360381019061045391906140ec565b610fcc565b6040516104659190614055565b60405180910390f35b348015610479575f80fd5b506104826110be565b60405161048f9190614157565b60405180910390f35b3480156104a3575f80fd5b506104be60048036038101906104b99190613ffd565b6110c6565b6040516104cb9190614055565b60405180910390f35b3480156104df575f80fd5b506104fa60048036038101906104f59190614170565b61116d565b005b348015610507575f80fd5b50610510611353565b60405161051d9190614055565b60405180910390f35b348015610531575f80fd5b5061053a611366565b60405161054791906141bd565b60405180910390f35b34801561055b575f80fd5b5061056461138b565b60405161057191906141bd565b60405180910390f35b348015610585575f80fd5b5061058e6113b0565b60405161059b9190614055565b60405180910390f35b3480156105af575f80fd5b506105ca60048036038101906105c5919061406e565b6113c2565b6040516105d79190614055565b60405180910390f35b3480156105eb575f80fd5b506105f4611414565b60405161060191906140a8565b60405180910390f35b348015610615575f80fd5b5061061e61141a565b005b34801561062b575f80fd5b506106466004803603810190610641919061406e565b6114b3565b005b348015610653575f80fd5b5061065c6115a4565b60405161066991906140a8565b60405180910390f35b34801561067d575f80fd5b506106866115aa565b60405161069391906140a8565b60405180910390f35b3480156106a7575f80fd5b506106b06115b0565b6040516106bd9190614055565b60405180910390f35b3480156106d1575f80fd5b506106ec60048036038101906106e7919061406e565b6115c3565b6040516106f991906140a8565b60405180910390f35b34801561070d575f80fd5b50610716611608565b005b348015610723575f80fd5b5061073e600480360381019061073991906140c1565b61168f565b005b34801561074b575f80fd5b5061075461171e565b6040516107619190614231565b60405180910390f35b348015610775575f80fd5b5061077e611742565b60405161078b9190614055565b60405180910390f35b34801561079f575f80fd5b506107ba60048036038101906107b59190614274565b6117df565b005b3480156107c7575f80fd5b506107e260048036038101906107dd919061406e565b6118b3565b005b3480156107ef575f80fd5b5061080a6004803603810190610805919061406e565b611986565b005b348015610817575f80fd5b50610820611ac0565b005b34801561082d575f80fd5b50610836611b74565b60405161084391906141bd565b60405180910390f35b348015610857575f80fd5b50610872600480360381019061086d91906142b2565b611b9c565b005b34801561087f575f80fd5b50610888611c35565b6040516108959190613f4c565b60405180910390f35b3480156108a9575f80fd5b506108c460048036038101906108bf9190614274565b611cc5565b005b3480156108d1575f80fd5b506108da611dde565b005b3480156108e7575f80fd5b5061090260048036038101906108fd9190613ffd565b612086565b60405161090f9190614055565b60405180910390f35b348015610923575f80fd5b5061093e60048036038101906109399190613ffd565b61216c565b60405161094b9190614055565b60405180910390f35b34801561095f575f80fd5b5061097a6004803603810190610975919061406e565b612189565b6040516109879190614055565b60405180910390f35b34801561099b575f80fd5b506109a46121a6565b6040516109b19190614055565b60405180910390f35b3480156109c5575f80fd5b506109e060048036038101906109db9190614274565b6121b9565b005b3480156109ed575f80fd5b50610a086004803603810190610a0391906140c1565b6122db565b005b348015610a15575f80fd5b50610a1e6123ea565b604051610a2b91906140a8565b60405180910390f35b348015610a3f575f80fd5b50610a486123f0565b604051610a5591906140a8565b60405180910390f35b348015610a69575f80fd5b50610a846004803603810190610a7f91906140c1565b6123f6565b604051610a919190614055565b60405180910390f35b348015610aa5575f80fd5b50610aae612483565b604051610abb91906140a8565b60405180910390f35b348015610acf575f80fd5b50610aea6004803603810190610ae59190614170565b612489565b604051610af791906140a8565b60405180910390f35b348015610b0b575f80fd5b50610b266004803603810190610b21919061406e565b61250b565b005b348015610b33575f80fd5b50610b3c61270b565b604051610b4991906140a8565b60405180910390f35b348015610b5d575f80fd5b50610b786004803603810190610b7391906140c1565b612711565b005b348015610b85575f80fd5b50610ba06004803603810190610b9b919061406e565b6127a0565b005b348015610bad575f80fd5b50610bb6612896565b604051610bc391906140a8565b60405180910390f35b348015610bd7575f80fd5b50610bf26004803603810190610bed919061406e565b61289c565b005b348015610bff575f80fd5b50610c1a6004803603810190610c15919061406e565b612a9c565b604051610c279190614055565b60405180910390f35b606060038054610c3f9061430a565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6b9061430a565b8015610cb65780601f10610c8d57610100808354040283529160200191610cb6565b820191905f5260205f20905b815481529060010190602001808311610c9957829003601f168201915b5050505050905090565b5f610cd3610ccc612aee565b8484612af5565b6001905092915050565b6013602052805f5260405f205f915054906101000a900460ff1681565b610d02612aee565b73ffffffffffffffffffffffffffffffffffffffff16610d20611b74565b73ffffffffffffffffffffffffffffffffffffffff1614610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90614384565b60405180910390fd5b5f3073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610db091906141bd565b602060405180830381865afa158015610dcb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610def91906143b6565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610e2c9291906143e1565b6020604051808303815f875af1158015610e48573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e6c919061441c565b503373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610eb0573d5f803e3d5ffd5b5050565b5f600254905090565b610ec5612aee565b73ffffffffffffffffffffffffffffffffffffffff16610ee3611b74565b73ffffffffffffffffffffffffffffffffffffffff1614610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3090614384565b60405180910390fd5b670de0b6b3a76400006103e86005610f4f610eb4565b610f599190614474565b610f6391906144e2565b610f6d91906144e2565b811015610faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa690614582565b60405180910390fd5b670de0b6b3a764000081610fc39190614474565b60088190555050565b5f610fd8848484612cb8565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61101f612aee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508281101561109e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109590614610565b60405180910390fd5b6110b2856110aa612aee565b858403612af5565b60019150509392505050565b5f6012905090565b5f6111636110d2612aee565b848460015f6110df612aee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461115e919061462e565b612af5565b6001905092915050565b611175612aee565b73ffffffffffffffffffffffffffffffffffffffff16611193611b74565b73ffffffffffffffffffffffffffffffffffffffff16146111e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e090614384565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124e906146ab565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161129191906141bd565b602060405180830381865afa1580156112ac573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112d091906143b6565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b815260040161130d9291906143e1565b6020604051808303815f875af1158015611329573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061134d919061441c565b50505050565b600b60039054906101000a900460ff1681565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5f9054906101000a900460ff1681565b5f60125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b600e5481565b611422612aee565b73ffffffffffffffffffffffffffffffffffffffff16611440611b74565b73ffffffffffffffffffffffffffffffffffffffff1614611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d90614384565b60405180910390fd5b6001600b60036101000a81548160ff021916908315150217905550565b6114bb612aee565b73ffffffffffffffffffffffffffffffffffffffff166114d9611b74565b73ffffffffffffffffffffffffffffffffffffffff161461152f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152690614384565b60405180910390fd5b5f8173ffffffffffffffffffffffffffffffffffffffff1647604051611554906146f6565b5f6040518083038185875af1925050503d805f811461158e576040519150601f19603f3d011682016040523d82523d5f602084013e611593565b606091505b50509050806115a0575f80fd5b5050565b600f5481565b60105481565b600b60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b611610612aee565b73ffffffffffffffffffffffffffffffffffffffff1661162e611b74565b73ffffffffffffffffffffffffffffffffffffffff1614611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b90614384565b60405180910390fd5b61168d5f61375a565b565b611697612aee565b73ffffffffffffffffffffffffffffffffffffffff166116b5611b74565b73ffffffffffffffffffffffffffffffffffffffff161461170b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170290614384565b60405180910390fd5b80600e81905550600e54600d8190555050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f61174b612aee565b73ffffffffffffffffffffffffffffffffffffffff16611769611b74565b73ffffffffffffffffffffffffffffffffffffffff16146117bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b690614384565b60405180910390fd5b5f600b5f6101000a81548160ff0219169083151502179055506001905090565b6117e7612aee565b73ffffffffffffffffffffffffffffffffffffffff16611805611b74565b73ffffffffffffffffffffffffffffffffffffffff161461185b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185290614384565b60405180910390fd5b8060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6118bb612aee565b73ffffffffffffffffffffffffffffffffffffffff166118d9611b74565b73ffffffffffffffffffffffffffffffffffffffff161461192f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192690614384565b60405180910390fd5b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b61198e612aee565b73ffffffffffffffffffffffffffffffffffffffff166119ac611b74565b73ffffffffffffffffffffffffffffffffffffffff1614611a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f990614384565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f02f8a1483978974a6412ba3a67040b4daa4fc0dfe9439a7295f9a9538394f63560405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611ac8612aee565b73ffffffffffffffffffffffffffffffffffffffff16611ae6611b74565b73ffffffffffffffffffffffffffffffffffffffff1614611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3390614384565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611ba4612aee565b73ffffffffffffffffffffffffffffffffffffffff16611bc2611b74565b73ffffffffffffffffffffffffffffffffffffffff1614611c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0f90614384565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611c449061430a565b80601f0160208091040260200160405190810160405280929190818152602001828054611c709061430a565b8015611cbb5780601f10611c9257610100808354040283529160200191611cbb565b820191905f5260205f20905b815481529060010190602001808311611c9e57829003601f168201915b5050505050905090565b611ccd612aee565b73ffffffffffffffffffffffffffffffffffffffff16611ceb611b74565b73ffffffffffffffffffffffffffffffffffffffff1614611d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3890614384565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc79061477a565b60405180910390fd5b611dda828261381d565b5050565b611de6612aee565b73ffffffffffffffffffffffffffffffffffffffff16611e04611b74565b73ffffffffffffffffffffffffffffffffffffffff1614611e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5190614384565b60405180910390fd5b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ec3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ee791906147ac565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f6c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f9091906147ac565b6040518363ffffffff1660e01b8152600401611fad9291906147d7565b6020604051808303815f875af1158015611fc9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fed91906147ac565b60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061205860065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016117df565b61208460065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600161381d565b565b5f8060015f612093612aee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508281101561214d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121449061486e565b60405180910390fd5b612161612158612aee565b85858403612af5565b600191505092915050565b5f61217f612178612aee565b8484612cb8565b6001905092915050565b6014602052805f5260405f205f915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b6121c1612aee565b73ffffffffffffffffffffffffffffffffffffffff166121df611b74565b73ffffffffffffffffffffffffffffffffffffffff1614612235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222c90614384565b60405180910390fd5b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516122cf9190614055565b60405180910390a25050565b6122e3612aee565b73ffffffffffffffffffffffffffffffffffffffff16612301611b74565b73ffffffffffffffffffffffffffffffffffffffff1614612357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234e90614384565b60405180910390fd5b670de0b6b3a76400006103e8600a61236d610eb4565b6123779190614474565b61238191906144e2565b61238b91906144e2565b8110156123cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c4906148fc565b60405180910390fd5b670de0b6b3a7640000816123e19190614474565b600a8190555050565b60085481565b60115481565b5f6123ff612aee565b73ffffffffffffffffffffffffffffffffffffffff1661241d611b74565b73ffffffffffffffffffffffffffffffffffffffff1614612473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246a90614384565b60405180910390fd5b8160098190555060019050919050565b600d5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b612513612aee565b73ffffffffffffffffffffffffffffffffffffffff16612531611b74565b73ffffffffffffffffffffffffffffffffffffffff1614612587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257e90614384565b60405180910390fd5b600b60039054906101000a900460ff16156125d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ce9061498a565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156126745750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b6126b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126aa90614a18565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60095481565b612719612aee565b73ffffffffffffffffffffffffffffffffffffffff16612737611b74565b73ffffffffffffffffffffffffffffffffffffffff161461278d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278490614384565b60405180910390fd5b80601081905550601054600f8190555050565b6127a8612aee565b73ffffffffffffffffffffffffffffffffffffffff166127c6611b74565b73ffffffffffffffffffffffffffffffffffffffff161461281c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281390614384565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361288a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288190614aa6565b60405180910390fd5b6128938161375a565b50565b600a5481565b6128a4612aee565b73ffffffffffffffffffffffffffffffffffffffff166128c2611b74565b73ffffffffffffffffffffffffffffffffffffffff1614612918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290f90614384565b60405180910390fd5b600b60039054906101000a900460ff1615612968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295f9061498a565b60405180910390fd5b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015612a055750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b612a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3b90614a18565b60405180910390fd5b6001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5a90614b34565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc890614bc2565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612cab91906140a8565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1d90614c50565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8b90614cde565b60405180910390fd5b600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1590614d46565b60405180910390fd5b600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615612ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9f90614dae565b60405180910390fd5b5f8103612ebf57612eba83835f6138bb565b613755565b600b5f9054906101000a900460ff161561336957612edb611b74565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612f495750612f19611b74565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f8157505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f9a5750600660149054906101000a900460ff16155b1561336857600b60019054906101000a900460ff1661308e5760125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061304e575060125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b61308d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308490614e16565b60405180910390fd5b5b60145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561312b575060135f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156131d257600854811115613175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316c90614ea4565b60405180910390fd5b600a54613181836115c3565b8261318c919061462e565b11156131cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c490614f0c565b60405180910390fd5b613367565b60145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561326f575060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156132be576008548111156132b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b090614f9a565b60405180910390fd5b613366565b60135f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661336557600a54613318836115c3565b82613323919061462e565b1115613364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335b90614f0c565b60405180910390fd5b5b5b5b5b5b5f613373306115c3565b90505f60095482101590508080156133975750600b60029054906101000a900460ff165b80156133b05750600660149054906101000a900460ff16155b8015613403575060145f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015613456575060125f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156134a9575060125f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156134ec576001600660146101000a81548160ff0219169083151502179055506134d1613b30565b5f600660146101000a81548160ff0219169083151502179055505b5f600660149054906101000a900460ff1615905060125f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061359b575060125f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156135a4575f90505b5f81156137455760145f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561360257505f600f54115b156136685761362f6064613621600f5488613c4690919063ffffffff16565b613c5b90919063ffffffff16565b9050600f54601054826136429190614474565b61364c91906144e2565b60115f82825461365c919061462e565b92505081905550613722565b60145f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156136bf57505f600d54115b15613721576136ec60646136de600d5488613c4690919063ffffffff16565b613c5b90919063ffffffff16565b9050600d54600e54826136ff9190614474565b61370991906144e2565b60115f828254613719919061462e565b925050819055505b5b5f811115613736576137358730836138bb565b5b80856137429190614fb8565b94505b6137508787876138bb565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161392090614c50565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161398e90614cde565b60405180910390fd5b6139a2838383613c70565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015613a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a1c9061505b565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254613ab3919061462e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613b1791906140a8565b60405180910390a3613b2a848484613c75565b50505050565b5f613b3a306115c3565b90505f60115490505f80831480613b5057505f82145b15613b5d57505050613c44565b6014600954613b6c9190614474565b831115613b85576014600954613b829190614474565b92505b5f8390505f479050613b9682613c7a565b5f613baa8247613ead90919063ffffffff16565b90505f60118190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051613bf8906146f6565b5f6040518083038185875af1925050503d805f8114613c32576040519150601f19603f3d011682016040523d82523d5f602084013e613c37565b606091505b5050809450505050505050505b565b5f8183613c539190614474565b905092915050565b5f8183613c6891906144e2565b905092915050565b505050565b505050565b5f600267ffffffffffffffff811115613c9657613c95615079565b5b604051908082528060200260200182016040528015613cc45781602001602082028036833780820191505090505b50905030815f81518110613cdb57613cda6150a6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613d7e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613da291906147ac565b81600181518110613db657613db56150a6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613e1b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612af5565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401613e7c9594939291906151c3565b5f604051808303815f87803b158015613e93575f80fd5b505af1158015613ea5573d5f803e3d5ffd5b505050505050565b5f8183613eba9190614fb8565b905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015613ef9578082015181840152602081019050613ede565b5f8484015250505050565b5f601f19601f8301169050919050565b5f613f1e82613ec2565b613f288185613ecc565b9350613f38818560208601613edc565b613f4181613f04565b840191505092915050565b5f6020820190508181035f830152613f648184613f14565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613f9982613f70565b9050919050565b613fa981613f8f565b8114613fb3575f80fd5b50565b5f81359050613fc481613fa0565b92915050565b5f819050919050565b613fdc81613fca565b8114613fe6575f80fd5b50565b5f81359050613ff781613fd3565b92915050565b5f806040838503121561401357614012613f6c565b5b5f61402085828601613fb6565b925050602061403185828601613fe9565b9150509250929050565b5f8115159050919050565b61404f8161403b565b82525050565b5f6020820190506140685f830184614046565b92915050565b5f6020828403121561408357614082613f6c565b5b5f61409084828501613fb6565b91505092915050565b6140a281613fca565b82525050565b5f6020820190506140bb5f830184614099565b92915050565b5f602082840312156140d6576140d5613f6c565b5b5f6140e384828501613fe9565b91505092915050565b5f805f6060848603121561410357614102613f6c565b5b5f61411086828701613fb6565b935050602061412186828701613fb6565b925050604061413286828701613fe9565b9150509250925092565b5f60ff82169050919050565b6141518161413c565b82525050565b5f60208201905061416a5f830184614148565b92915050565b5f806040838503121561418657614185613f6c565b5b5f61419385828601613fb6565b92505060206141a485828601613fb6565b9150509250929050565b6141b781613f8f565b82525050565b5f6020820190506141d05f8301846141ae565b92915050565b5f819050919050565b5f6141f96141f46141ef84613f70565b6141d6565b613f70565b9050919050565b5f61420a826141df565b9050919050565b5f61421b82614200565b9050919050565b61422b81614211565b82525050565b5f6020820190506142445f830184614222565b92915050565b6142538161403b565b811461425d575f80fd5b50565b5f8135905061426e8161424a565b92915050565b5f806040838503121561428a57614289613f6c565b5b5f61429785828601613fb6565b92505060206142a885828601614260565b9150509250929050565b5f602082840312156142c7576142c6613f6c565b5b5f6142d484828501614260565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061432157607f821691505b602082108103614334576143336142dd565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61436e602083613ecc565b91506143798261433a565b602082019050919050565b5f6020820190508181035f83015261439b81614362565b9050919050565b5f815190506143b081613fd3565b92915050565b5f602082840312156143cb576143ca613f6c565b5b5f6143d8848285016143a2565b91505092915050565b5f6040820190506143f45f8301856141ae565b6144016020830184614099565b9392505050565b5f815190506144168161424a565b92915050565b5f6020828403121561443157614430613f6c565b5b5f61443e84828501614408565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61447e82613fca565b915061448983613fca565b925082820261449781613fca565b915082820484148315176144ae576144ad614447565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6144ec82613fca565b91506144f783613fca565b925082614507576145066144b5565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b5f61456c602f83613ecc565b915061457782614512565b604082019050919050565b5f6020820190508181035f83015261459981614560565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6145fa602883613ecc565b9150614605826145a0565b604082019050919050565b5f6020820190508181035f830152614627816145ee565b9050919050565b5f61463882613fca565b915061464383613fca565b925082820190508082111561465b5761465a614447565b5b92915050565b7f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000005f82015250565b5f614695601a83613ecc565b91506146a082614661565b602082019050919050565b5f6020820190508181035f8301526146c281614689565b9050919050565b5f81905092915050565b50565b5f6146e15f836146c9565b91506146ec826146d3565b5f82019050919050565b5f614700826146d6565b9150819050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f614764603983613ecc565b915061476f8261470a565b604082019050919050565b5f6020820190508181035f83015261479181614758565b9050919050565b5f815190506147a681613fa0565b92915050565b5f602082840312156147c1576147c0613f6c565b5b5f6147ce84828501614798565b91505092915050565b5f6040820190506147ea5f8301856141ae565b6147f760208301846141ae565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f614858602583613ecc565b9150614863826147fe565b604082019050919050565b5f6020820190508181035f8301526148858161484c565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f312e302500000000000000000000000000000000000000000000000000000000602082015250565b5f6148e6602483613ecc565b91506148f18261488c565b604082019050919050565b5f6020820190508181035f830152614913816148da565b9050919050565b7f5465616d20686173207265766f6b656420626c61636b6c6973742072696768745f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f614974602183613ecc565b915061497f8261491a565b604082019050919050565b5f6020820190508181035f8301526149a181614968565b9050919050565b7f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f75745f8201527f6572206f7220763220706f6f6c2e000000000000000000000000000000000000602082015250565b5f614a02602e83613ecc565b9150614a0d826149a8565b604082019050919050565b5f6020820190508181035f830152614a2f816149f6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f614a90602683613ecc565b9150614a9b82614a36565b604082019050919050565b5f6020820190508181035f830152614abd81614a84565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f614b1e602483613ecc565b9150614b2982614ac4565b604082019050919050565b5f6020820190508181035f830152614b4b81614b12565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f614bac602283613ecc565b9150614bb782614b52565b604082019050919050565b5f6020820190508181035f830152614bd981614ba0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f614c3a602583613ecc565b9150614c4582614be0565b604082019050919050565b5f6020820190508181035f830152614c6781614c2e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f614cc8602383613ecc565b9150614cd382614c6e565b604082019050919050565b5f6020820190508181035f830152614cf581614cbc565b9050919050565b7f53656e64657220626c61636b6c697374656400000000000000000000000000005f82015250565b5f614d30601283613ecc565b9150614d3b82614cfc565b602082019050919050565b5f6020820190508181035f830152614d5d81614d24565b9050919050565b7f526563656976657220626c61636b6c69737465640000000000000000000000005f82015250565b5f614d98601483613ecc565b9150614da382614d64565b602082019050919050565b5f6020820190508181035f830152614dc581614d8c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f614e00601683613ecc565b9150614e0b82614dcc565b602082019050919050565b5f6020820190508181035f830152614e2d81614df4565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f614e8e603583613ecc565b9150614e9982614e34565b604082019050919050565b5f6020820190508181035f830152614ebb81614e82565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f614ef6601383613ecc565b9150614f0182614ec2565b602082019050919050565b5f6020820190508181035f830152614f2381614eea565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f614f84603683613ecc565b9150614f8f82614f2a565b604082019050919050565b5f6020820190508181035f830152614fb181614f78565b9050919050565b5f614fc282613fca565b9150614fcd83613fca565b9250828203905081811115614fe557614fe4614447565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f615045602683613ecc565b915061505082614feb565b604082019050919050565b5f6020820190508181035f83015261507281615039565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050919050565b5f6150f66150f16150ec846150d3565b6141d6565b613fca565b9050919050565b615106816150dc565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61513e81613f8f565b82525050565b5f61514f8383615135565b60208301905092915050565b5f602082019050919050565b5f6151718261510c565b61517b8185615116565b935061518683615126565b805f5b838110156151b657815161519d8882615144565b97506151a88361515b565b925050600181019050615189565b5085935050505092915050565b5f60a0820190506151d65f830188614099565b6151e360208301876150fd565b81810360408301526151f58186615167565b905061520460608301856141ae565b6152116080830184614099565b969550505050505056fea2646970667358221220425f993b5e2a14c4b010a611613db1ad001a803b3d41e860e33d79d0f91e588264736f6c63430008180033

Deployed Bytecode Sourcemap

28616:13438:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16134:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18301:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29533:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40050:249;;;;;;;;;;;;;:::i;:::-;;17254:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32053:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18952:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17096:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19853:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40307:283;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29085:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28812:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28745:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28965:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34211:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29266:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40843:90;;;;;;;;;;;;;:::i;:::-;;40598:191;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29304:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29339:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29045:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17425:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27769:103;;;;;;;;;;;;;:::i;:::-;;32972:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28689:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31664:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32601:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41953:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34026:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31500:112;;;;;;;;;;;;;:::i;:::-;;27118:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32864:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16353:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33518:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31177:315;;;;;;;;;;;;;:::i;:::-;;20571:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17765:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29605:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29005:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33328:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32336:257;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28850:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29378:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31855:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29232:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18003:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41417:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28892:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33148:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28027:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28932:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40941:373;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34345:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16134:100;16188:13;16221:5;16214:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16134:100;:::o;18301:169::-;18384:4;18401:39;18410:12;:10;:12::i;:::-;18424:7;18433:6;18401:8;:39::i;:::-;18458:4;18451:11;;18301:169;;;;:::o;29533:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;40050:249::-;27349:12;:10;:12::i;:::-;27338:23;;:7;:5;:7::i;:::-;:23;;;27330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40103:15:::1;40136:4;40121:31;;;40161:4;40121:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40103:64;;40193:4;40178:30;;;40209:10;40221:7;40178:51;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40248:10;40240:28;;:51;40269:21;40240:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;40092:207;40050:249::o:0;17254:108::-;17315:7;17342:12;;17335:19;;17254:108;:::o;32053:275::-;27349:12;:10;:12::i;:::-;27338:23;;:7;:5;:7::i;:::-;:23;;;27330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32190:4:::1;32182;32177:1;32161:13;:11;:13::i;:::-;:17;;;;:::i;:::-;32160:26;;;;:::i;:::-;32159:35;;;;:::i;:::-;32149:6;:45;;32127:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;32313:6;32303;:17;;;;:::i;:::-;32280:20;:40;;;;32053:275:::0;:::o;18952:492::-;19092:4;19109:36;19119:6;19127:9;19138:6;19109:9;:36::i;:::-;19158:24;19185:11;:19;19197:6;19185:19;;;;;;;;;;;;;;;:33;19205:12;:10;:12::i;:::-;19185:33;;;;;;;;;;;;;;;;19158:60;;19257:6;19237:16;:26;;19229:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;19344:57;19353:6;19361:12;:10;:12::i;:::-;19394:6;19375:16;:25;19344:8;:57::i;:::-;19432:4;19425:11;;;18952:492;;;;;:::o;17096:93::-;17154:5;17179:2;17172:9;;17096:93;:::o;19853:215::-;19941:4;19958:80;19967:12;:10;:12::i;:::-;19981:7;20027:10;19990:11;:25;20002:12;:10;:12::i;:::-;19990:25;;;;;;;;;;;;;;;:34;20016:7;19990:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;19958:8;:80::i;:::-;20056:4;20049:11;;19853:215;;;;:::o;40307:283::-;27349:12;:10;:12::i;:::-;27338:23;;:7;:5;:7::i;:::-;:23;;;27330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40415:1:::1;40397:20;;:6;:20;;::::0;40389:59:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;40459:24;40493:6;40486:24;;;40519:4;40486:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40459:66;;40543:6;40536:23;;;40560:3;40565:16;40536:46;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40378:212;40307:283:::0;;:::o;29085:38::-;;;;;;;;;;;;;:::o;28812:29::-;;;;;;;;;;;;;:::o;28745:28::-;;;;;;;;;;;;;:::o;28965:33::-;;;;;;;;;;;;;:::o;34211:126::-;34277:4;34301:19;:28;34321:7;34301:28;;;;;;;;;;;;;;;;;;;;;;;;;34294:35;;34211:126;;;:::o;29266:29::-;;;;:::o;40843:90::-;27349:12;:10;:12::i;:::-;27338:23;;:7;:5;:7::i;:::-;:23;;;27330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40921:4:::1;40900:18;;:25;;;;;;;;;;;;;;;;;;40843:90::o:0;40598:191::-;27349:12;:10;:12::i;:::-;27338:23;;:7;:5;:7::i;:::-;:23;;;27330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40666:12:::1;40684:6;:11;;40717:21;40684:70;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40665:89;;;40773:7;40765:16;;;::::0;::::1;;40654:135;40598:191:::0;:::o;29304:28::-;;;;:::o;29339:30::-;;;;:::o;29045:31::-;;;;;;;;;;;;;:::o;17425:127::-;17499:7;17526:9;:18;17536:7;17526:18;;;;;;;;;;;;;;;;17519:25;;17425:127;;;:::o;27769:103::-;27349:12;:10;:12::i;:::-;27338:23;;:7;:5;:7::i;:::-;:23;;;27330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27834:30:::1;27861:1;27834:18;:30::i;:::-;27769:103::o:0;32972:168::-;27349:12;:10;:12::i;:::-;27338:23;;:7;:5;:7::i;:::-;:23;;;27330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33080:12:::1;33063:14;:29;;;;33118:14;;33103:12;:29;;;;32972:168:::0;:::o;28689:49::-;;;:::o;31664:121::-;31716:4;27349:12;:10;:12::i;:::-;27338:23;;:7;:5;:7::i;:::-;:23;;;27330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31750:5:::1;31733:14;;:22;;;;;;;;;;;;;;;;;;31773:4;31766:11;;31664:121:::0;:::o;32601:167::-;27349:12;:10;:12::i;:::-;27338:23;;:7;:5;:7::i;:::-;:23;;;27330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32756:4:::1;32714:31;:39;32746:6;32714:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32601:167:::0;;:::o;41953:98::-;27349:12;:10;:12::i;:::-;27338:23;;:7;:5;:7::i;:::-;:23;;;27330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42038:5:::1;42017:11;:18;42029:5;42017:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;41953:98:::0;:::o;34026:177::-;27349:12;:10;:12::i;:::-;27338:23;;:7;:5;:7::i;:::-;:23;;;27330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34143:14:::1;;;;;;;;;;;34110:48;;34132:9;34110:48;;;;;;;;;;;;34186:9;34169:14;;:26;;;;;;;;;;;;;;;;;;34026:177:::0;:::o;31500:112::-;27349:12;:10;:12::i;:::-;27338:23;;:7;:5;:7::i;:::-;:23;;;27330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31571:4:::1;31555:13;;:20;;;;;;;;;;;;;;;;;;31600:4;31586:11;;:18;;;;;;;;;;;;;;;;;;31500:112::o:0;27118:87::-;27164:7;27191:6;;;;;;;;;;;27184:13;;27118:87;:::o;32864:100::-;27349:12;:10;:12::i;:::-;27338:23;;:7;:5;:7::i;:::-;:23;;;27330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32949:7:::1;32935:11;;:21;;;;;;;;;;;;;;;;;;32864:100:::0;:::o;16353:104::-;16409:13;16442:7;16435:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16353:104;:::o;33518:304::-;27349:12;:10;:12::i;:::-;27338:23;;:7;:5;:7::i;:::-;:23;;;27330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33662:13:::1;;;;;;;;;;;33654:21;;:4;:21;;::::0;33632:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;33773:41;33802:4;33808:5;33773:28;:41::i;:::-;33518:304:::0;;:::o;31177:315::-;27349:12;:10;:12::i;:::-;27338:23;;:7;:5;:7::i;:::-;:23;;;27330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31263:13:::1;:21;;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31245:67;;;31321:4;31328:13;:18;;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31245:104;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31229:13;;:120;;;;;;;;;;;;;;;;;;31360:55;31394:13;;;;;;;;;;;31410:4;31360:25;:55::i;:::-;31426:58;31463:13;;;;;;;;;;;31479:4;31426:28;:58::i;:::-;31177:315::o:0;20571:413::-;20664:4;20681:24;20708:11;:25;20720:12;:10;:12::i;:::-;20708:25;;;;;;;;;;;;;;;:34;20734:7;20708:34;;;;;;;;;;;;;;;;20681:61;;20781:15;20761:16;:35;;20753:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;20874:67;20883:12;:10;:12::i;:::-;20897:7;20925:15;20906:16;:34;20874:8;:67::i;:::-;20972:4;20965:11;;;20571:413;;;;:::o;17765:175::-;17851:4;17868:42;17878:12;:10;:12::i;:::-;17892:9;17903:6;17868:9;:42::i;:::-;17928:4;17921:11;;17765:175;;;;:::o;29605:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;29005:33::-;;;;;;;;;;;;;:::o;33328:182::-;27349:12;:10;:12::i;:::-;27338:23;;:7;:5;:7::i;:::-;:23;;;27330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33444:8:::1;33413:19;:28;33433:7;33413:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;33484:7;33468:34;;;33493:8;33468:34;;;;;;:::i;:::-;;;;;;;;33328:182:::0;;:::o;32336:257::-;27349:12;:10;:12::i;:::-;27338:23;;:7;:5;:7::i;:::-;:23;;;27330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32477:4:::1;32469;32463:2;32447:13;:11;:13::i;:::-;:18;;;;:::i;:::-;32446:27;;;;:::i;:::-;32445:36;;;;:::i;:::-;32435:6;:46;;32413:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;32578:6;32568;:17;;;;:::i;:::-;32556:9;:29;;;;32336:257:::0;:::o;28850:35::-;;;;:::o;29378:32::-;;;;:::o;31855:190::-;31963:4;27349:12;:10;:12::i;:::-;27338:23;;:7;:5;:7::i;:::-;:23;;;27330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32006:9:::1;31985:18;:30;;;;32033:4;32026:11;;31855:190:::0;;;:::o;29232:27::-;;;;:::o;18003:151::-;18092:7;18119:11;:18;18131:5;18119:18;;;;;;;;;;;;;;;:27;18138:7;18119:27;;;;;;;;;;;;;;;;18112:34;;18003:151;;;;:::o;41417:403::-;27349:12;:10;:12::i;:::-;27338:23;;:7;:5;:7::i;:::-;:23;;;27330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41505:18:::1;;;;;;;;;;;41504:19;41496:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;41615:13;;;;;;;;;;;41594:35;;:9;:35;;;;:103;;;;;41654:42;41633:64;;:9;:64;;;;41594:103;41572:200;;;;;;;;;;;;:::i;:::-;;;;;;;;;41808:4;41783:11;:22;41795:9;41783:22;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;41417:403:::0;:::o;28892:33::-;;;;:::o;33148:172::-;27349:12;:10;:12::i;:::-;27338:23;;:7;:5;:7::i;:::-;:23;;;27330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33258:12:::1;33240:15;:30;;;;33297:15;;33281:13;:31;;;;33148:172:::0;:::o;28027:201::-;27349:12;:10;:12::i;:::-;27338:23;;:7;:5;:7::i;:::-;:23;;;27330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28136:1:::1;28116:22;;:8;:22;;::::0;28108:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;28192:28;28211:8;28192:18;:28::i;:::-;28027:201:::0;:::o;28932:24::-;;;;:::o;40941:373::-;27349:12;:10;:12::i;:::-;27338:23;;:7;:5;:7::i;:::-;:23;;;27330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41012:18:::1;;;;;;;;;;;41011:19;41003:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;41118:13;;;;;;;;;;;41101:31;;:5;:31;;;;:95;;;;;41153:42;41136:60;;:5;:60;;;;41101:95;41079:191;;;;;;;;;;;;:::i;:::-;;;;;;;;;41302:4;41281:11;:18;41293:5;41281:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;40941:373:::0;:::o;34345:113::-;34406:4;34430:11;:20;34442:7;34430:20;;;;;;;;;;;;;;;;;;;;;;;;;34423:27;;34345:113;;;:::o;13907:98::-;13960:7;13987:10;13980:17;;13907:98;:::o;24255:380::-;24408:1;24391:19;;:5;:19;;;24383:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24489:1;24470:21;;:7;:21;;;24462:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24573:6;24543:11;:18;24555:5;24543:18;;;;;;;;;;;;;;;:27;24562:7;24543:27;;;;;;;;;;;;;;;:36;;;;24611:7;24595:32;;24604:5;24595:32;;;24620:6;24595:32;;;;;;:::i;:::-;;;;;;;;24255:380;;;:::o;34466:3696::-;34614:1;34598:18;;:4;:18;;;34590:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34691:1;34677:16;;:2;:16;;;34669:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;34753:11;:17;34765:4;34753:17;;;;;;;;;;;;;;;;;;;;;;;;;34752:18;34744:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;34812:11;:15;34824:2;34812:15;;;;;;;;;;;;;;;;;;;;;;;;;34811:16;34803:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;34878:1;34868:6;:11;34864:93;;34896:28;34912:4;34918:2;34922:1;34896:15;:28::i;:::-;34939:7;;34864:93;34973:14;;;;;;;;;;;34969:1652;;;35034:7;:5;:7::i;:::-;35026:15;;:4;:15;;;;:49;;;;;35068:7;:5;:7::i;:::-;35062:13;;:2;:13;;;;35026:49;:86;;;;;35110:1;35096:16;;:2;:16;;;;35026:86;:116;;;;;35134:8;;;;;;;;;;;35133:9;35026:116;35004:1606;;;35182:13;;;;;;;;;;;35177:223;;35254:19;:25;35274:4;35254:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;35283:19;:23;35303:2;35283:23;;;;;;;;;;;;;;;;;;;;;;;;;35254:52;35220:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;35177:223;35474:25;:31;35500:4;35474:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;35531:31;:35;35563:2;35531:35;;;;;;;;;;;;;;;;;;;;;;;;;35530:36;35474:92;35448:1147;;;35653:20;;35643:6;:30;;35609:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;35861:9;;35844:13;35854:2;35844:9;:13::i;:::-;35835:6;:22;;;;:::i;:::-;:35;;35801:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;35448:1147;;;36039:25;:29;36065:2;36039:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;36094:31;:37;36126:4;36094:37;;;;;;;;;;;;;;;;;;;;;;;;;36093:38;36039:92;36013:582;;;36218:20;;36208:6;:30;;36174:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;36013:582;;;36375:31;:35;36407:2;36375:35;;;;;;;;;;;;;;;;;;;;;;;;;36370:225;;36495:9;;36478:13;36488:2;36478:9;:13::i;:::-;36469:6;:22;;;;:::i;:::-;:35;;36435:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;36370:225;36013:582;35448:1147;35004:1606;34969:1652;36633:28;36664:24;36682:4;36664:9;:24::i;:::-;36633:55;;36701:12;36740:18;;36716:20;:42;;36701:57;;36789:7;:35;;;;;36813:11;;;;;;;;;;;36789:35;:61;;;;;36842:8;;;;;;;;;;;36841:9;36789:61;:110;;;;;36868:25;:31;36894:4;36868:31;;;;;;;;;;;;;;;;;;;;;;;;;36867:32;36789:110;:153;;;;;36917:19;:25;36937:4;36917:25;;;;;;;;;;;;;;;;;;;;;;;;;36916:26;36789:153;:194;;;;;36960:19;:23;36980:2;36960:23;;;;;;;;;;;;;;;;;;;;;;;;;36959:24;36789:194;36771:326;;;37021:4;37010:8;;:15;;;;;;;;;;;;;;;;;;37042:10;:8;:10::i;:::-;37080:5;37069:8;;:16;;;;;;;;;;;;;;;;;;36771:326;37109:12;37125:8;;;;;;;;;;;37124:9;37109:24;;37235:19;:25;37255:4;37235:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;37264:19;:23;37284:2;37264:23;;;;;;;;;;;;;;;;;;;;;;;;;37235:52;37231:100;;;37314:5;37304:15;;37231:100;37343:12;37448:7;37444:665;;;37500:25;:29;37526:2;37500:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;37549:1;37533:13;;:17;37500:50;37496:464;;;37578:34;37608:3;37578:25;37589:13;;37578:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;37571:41;;37679:13;;37660:15;;37653:4;:22;;;;:::i;:::-;37652:40;;;;:::i;:::-;37631:17;;:61;;;;;;;:::i;:::-;;;;;;;;37496:464;;;37754:25;:31;37780:4;37754:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;37804:1;37789:12;;:16;37754:51;37750:210;;;37833:33;37862:3;37833:24;37844:12;;37833:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;37826:40;;37932:12;;37914:14;;37907:4;:21;;;;:::i;:::-;37906:38;;;;:::i;:::-;37885:17;;:59;;;;;;;:::i;:::-;;;;;;;;37750:210;37496:464;37987:1;37980:4;:8;37976:91;;;38009:42;38025:4;38039;38046;38009:15;:42::i;:::-;37976:91;38093:4;38083:14;;;;;:::i;:::-;;;37444:665;38121:33;38137:4;38143:2;38147:6;38121:15;:33::i;:::-;34579:3583;;;;34466:3696;;;;:::o;28388:191::-;28462:16;28481:6;;;;;;;;;;;28462:25;;28507:8;28498:6;;:17;;;;;;;;;;;;;;;;;;28562:8;28531:40;;28552:8;28531:40;;;;;;;;;;;;28451:128;28388:191;:::o;33830:188::-;33947:5;33913:25;:31;33939:4;33913:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;34004:5;33970:40;;33998:4;33970:40;;;;;;;;;;;;33830:188;;:::o;21474:733::-;21632:1;21614:20;;:6;:20;;;21606:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;21716:1;21695:23;;:9;:23;;;21687:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;21771:47;21792:6;21800:9;21811:6;21771:20;:47::i;:::-;21831:21;21855:9;:17;21865:6;21855:17;;;;;;;;;;;;;;;;21831:41;;21908:6;21891:13;:23;;21883:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22029:6;22013:13;:22;21993:9;:17;22003:6;21993:17;;;;;;;;;;;;;;;:42;;;;22081:6;22057:9;:20;22067:9;22057:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;22122:9;22105:35;;22114:6;22105:35;;;22133:6;22105:35;;;;;;:::i;:::-;;;;;;;;22153:46;22173:6;22181:9;22192:6;22153:19;:46::i;:::-;21595:612;21474:733;;;:::o;39282:760::-;39321:23;39347:24;39365:4;39347:9;:24::i;:::-;39321:50;;39382:25;39410:17;;39382:45;;39438:12;39486:1;39467:15;:20;:46;;;;39512:1;39491:17;:22;39467:46;39463:85;;;39530:7;;;;;39463:85;39603:2;39582:18;;:23;;;;:::i;:::-;39564:15;:41;39560:115;;;39661:2;39640:18;;:23;;;;:::i;:::-;39622:41;;39560:115;39689:26;39718:15;39689:44;;39746:25;39774:21;39746:49;;39808:36;39825:18;39808:16;:36::i;:::-;39857:18;39878:44;39904:17;39878:21;:25;;:44;;;;:::i;:::-;39857:65;;39955:1;39935:17;:21;;;;39991:14;;;;;;;;;;;39983:28;;40019:10;39983:51;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39969:65;;;;;39310:732;;;;;;39282:760;:::o;6422:98::-;6480:7;6511:1;6507;:5;;;;:::i;:::-;6500:12;;6422:98;;;;:::o;6821:::-;6879:7;6910:1;6906;:5;;;;:::i;:::-;6899:12;;6821:98;;;;:::o;25235:125::-;;;;:::o;25964:124::-;;;;:::o;38170:583::-;38296:21;38334:1;38320:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38296:40;;38365:4;38347;38352:1;38347:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;38391:13;:18;;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38381:4;38386:1;38381:7;;;;;;;;:::i;:::-;;;;;;;:30;;;;;;;;;;;38424:60;38441:4;38456:13;38472:11;38424:8;:60::i;:::-;38523:13;:64;;;38602:11;38628:1;38672:4;38699;38719:15;38523:222;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38225:528;38170:583;:::o;6065:98::-;6123:7;6154:1;6150;:5;;;;:::i;:::-;6143:12;;6065:98;;;;:::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:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:329::-;4192:6;4241:2;4229:9;4220:7;4216:23;4212:32;4209:119;;;4247:79;;:::i;:::-;4209:119;4367:1;4392:53;4437:7;4428:6;4417:9;4413:22;4392:53;:::i;:::-;4382:63;;4338:117;4133:329;;;;:::o;4468:619::-;4545:6;4553;4561;4610:2;4598:9;4589:7;4585:23;4581:32;4578:119;;;4616:79;;:::i;:::-;4578:119;4736:1;4761:53;4806:7;4797:6;4786:9;4782:22;4761:53;:::i;:::-;4751:63;;4707:117;4863:2;4889:53;4934:7;4925:6;4914:9;4910:22;4889:53;:::i;:::-;4879:63;;4834:118;4991:2;5017:53;5062:7;5053:6;5042:9;5038:22;5017:53;:::i;:::-;5007:63;;4962:118;4468:619;;;;;:::o;5093:86::-;5128:7;5168:4;5161:5;5157:16;5146:27;;5093:86;;;:::o;5185:112::-;5268:22;5284:5;5268:22;:::i;:::-;5263:3;5256:35;5185:112;;:::o;5303:214::-;5392:4;5430:2;5419:9;5415:18;5407:26;;5443:67;5507:1;5496:9;5492:17;5483:6;5443:67;:::i;:::-;5303:214;;;;:::o;5523:474::-;5591:6;5599;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5901:2;5927:53;5972:7;5963:6;5952:9;5948:22;5927:53;:::i;:::-;5917:63;;5872:118;5523:474;;;;;:::o;6003:118::-;6090:24;6108:5;6090:24;:::i;:::-;6085:3;6078:37;6003:118;;:::o;6127:222::-;6220:4;6258:2;6247:9;6243:18;6235:26;;6271:71;6339:1;6328:9;6324:17;6315:6;6271:71;:::i;:::-;6127:222;;;;:::o;6355:60::-;6383:3;6404:5;6397:12;;6355:60;;;:::o;6421:142::-;6471:9;6504:53;6522:34;6531:24;6549:5;6531:24;:::i;:::-;6522:34;:::i;:::-;6504:53;:::i;:::-;6491:66;;6421:142;;;:::o;6569:126::-;6619:9;6652:37;6683:5;6652:37;:::i;:::-;6639:50;;6569:126;;;:::o;6701:151::-;6776:9;6809:37;6840:5;6809:37;:::i;:::-;6796:50;;6701:151;;;:::o;6858:181::-;6970:62;7026:5;6970:62;:::i;:::-;6965:3;6958:75;6858:181;;:::o;7045:272::-;7163:4;7201:2;7190:9;7186:18;7178:26;;7214:96;7307:1;7296:9;7292:17;7283:6;7214:96;:::i;:::-;7045:272;;;;:::o;7323:116::-;7393:21;7408:5;7393:21;:::i;:::-;7386:5;7383:32;7373:60;;7429:1;7426;7419:12;7373:60;7323:116;:::o;7445:133::-;7488:5;7526:6;7513:20;7504:29;;7542:30;7566:5;7542:30;:::i;:::-;7445:133;;;;:::o;7584:468::-;7649:6;7657;7706:2;7694:9;7685:7;7681:23;7677:32;7674:119;;;7712:79;;:::i;:::-;7674:119;7832:1;7857:53;7902:7;7893:6;7882:9;7878:22;7857:53;:::i;:::-;7847:63;;7803:117;7959:2;7985:50;8027:7;8018:6;8007:9;8003:22;7985:50;:::i;:::-;7975:60;;7930:115;7584:468;;;;;:::o;8058:323::-;8114:6;8163:2;8151:9;8142:7;8138:23;8134:32;8131:119;;;8169:79;;:::i;:::-;8131:119;8289:1;8314:50;8356:7;8347:6;8336:9;8332:22;8314:50;:::i;:::-;8304:60;;8260:114;8058:323;;;;:::o;8387:180::-;8435:77;8432:1;8425:88;8532:4;8529:1;8522:15;8556:4;8553:1;8546:15;8573:320;8617:6;8654:1;8648:4;8644:12;8634:22;;8701:1;8695:4;8691:12;8722:18;8712:81;;8778:4;8770:6;8766:17;8756:27;;8712:81;8840:2;8832:6;8829:14;8809:18;8806:38;8803:84;;8859:18;;:::i;:::-;8803:84;8624:269;8573:320;;;:::o;8899:182::-;9039:34;9035:1;9027:6;9023:14;9016:58;8899:182;:::o;9087:366::-;9229:3;9250:67;9314:2;9309:3;9250:67;:::i;:::-;9243:74;;9326:93;9415:3;9326:93;:::i;:::-;9444:2;9439:3;9435:12;9428:19;;9087:366;;;:::o;9459:419::-;9625:4;9663:2;9652:9;9648:18;9640:26;;9712:9;9706:4;9702:20;9698:1;9687:9;9683:17;9676:47;9740:131;9866:4;9740:131;:::i;:::-;9732:139;;9459:419;;;:::o;9884:143::-;9941:5;9972:6;9966:13;9957:22;;9988:33;10015:5;9988:33;:::i;:::-;9884:143;;;;:::o;10033:351::-;10103:6;10152:2;10140:9;10131:7;10127:23;10123:32;10120:119;;;10158:79;;:::i;:::-;10120:119;10278:1;10303:64;10359:7;10350:6;10339:9;10335:22;10303:64;:::i;:::-;10293:74;;10249:128;10033:351;;;;:::o;10390:332::-;10511:4;10549:2;10538:9;10534:18;10526:26;;10562:71;10630:1;10619:9;10615:17;10606:6;10562:71;:::i;:::-;10643:72;10711:2;10700:9;10696:18;10687:6;10643:72;:::i;:::-;10390:332;;;;;:::o;10728:137::-;10782:5;10813:6;10807:13;10798:22;;10829:30;10853:5;10829:30;:::i;:::-;10728:137;;;;:::o;10871:345::-;10938:6;10987:2;10975:9;10966:7;10962:23;10958:32;10955:119;;;10993:79;;:::i;:::-;10955:119;11113:1;11138:61;11191:7;11182:6;11171:9;11167:22;11138:61;:::i;:::-;11128:71;;11084:125;10871:345;;;;:::o;11222:180::-;11270:77;11267:1;11260:88;11367:4;11364:1;11357:15;11391:4;11388:1;11381:15;11408:410;11448:7;11471:20;11489:1;11471:20;:::i;:::-;11466:25;;11505:20;11523:1;11505:20;:::i;:::-;11500:25;;11560:1;11557;11553:9;11582:30;11600:11;11582:30;:::i;:::-;11571:41;;11761:1;11752:7;11748:15;11745:1;11742:22;11722:1;11715:9;11695:83;11672:139;;11791:18;;:::i;:::-;11672:139;11456:362;11408:410;;;;:::o;11824:180::-;11872:77;11869:1;11862:88;11969:4;11966:1;11959:15;11993:4;11990:1;11983:15;12010:185;12050:1;12067:20;12085:1;12067:20;:::i;:::-;12062:25;;12101:20;12119:1;12101:20;:::i;:::-;12096:25;;12140:1;12130:35;;12145:18;;:::i;:::-;12130:35;12187:1;12184;12180:9;12175:14;;12010:185;;;;:::o;12201:234::-;12341:34;12337:1;12329:6;12325:14;12318:58;12410:17;12405:2;12397:6;12393:15;12386:42;12201:234;:::o;12441:366::-;12583:3;12604:67;12668:2;12663:3;12604:67;:::i;:::-;12597:74;;12680:93;12769:3;12680:93;:::i;:::-;12798:2;12793:3;12789:12;12782:19;;12441:366;;;:::o;12813:419::-;12979:4;13017:2;13006:9;13002:18;12994:26;;13066:9;13060:4;13056:20;13052:1;13041:9;13037:17;13030:47;13094:131;13220:4;13094:131;:::i;:::-;13086:139;;12813:419;;;:::o;13238:227::-;13378:34;13374:1;13366:6;13362:14;13355:58;13447:10;13442:2;13434:6;13430:15;13423:35;13238:227;:::o;13471:366::-;13613:3;13634:67;13698:2;13693:3;13634:67;:::i;:::-;13627:74;;13710:93;13799:3;13710:93;:::i;:::-;13828:2;13823:3;13819:12;13812:19;;13471:366;;;:::o;13843:419::-;14009:4;14047:2;14036:9;14032:18;14024:26;;14096:9;14090:4;14086:20;14082:1;14071:9;14067:17;14060:47;14124:131;14250:4;14124:131;:::i;:::-;14116:139;;13843:419;;;:::o;14268:191::-;14308:3;14327:20;14345:1;14327:20;:::i;:::-;14322:25;;14361:20;14379:1;14361:20;:::i;:::-;14356:25;;14404:1;14401;14397:9;14390:16;;14425:3;14422:1;14419:10;14416:36;;;14432:18;;:::i;:::-;14416:36;14268:191;;;;:::o;14465:176::-;14605:28;14601:1;14593:6;14589:14;14582:52;14465:176;:::o;14647:366::-;14789:3;14810:67;14874:2;14869:3;14810:67;:::i;:::-;14803:74;;14886:93;14975:3;14886:93;:::i;:::-;15004:2;14999:3;14995:12;14988:19;;14647:366;;;:::o;15019:419::-;15185:4;15223:2;15212:9;15208:18;15200:26;;15272:9;15266:4;15262:20;15258:1;15247:9;15243:17;15236:47;15300:131;15426:4;15300:131;:::i;:::-;15292:139;;15019:419;;;:::o;15444:147::-;15545:11;15582:3;15567:18;;15444:147;;;;:::o;15597:114::-;;:::o;15717:398::-;15876:3;15897:83;15978:1;15973:3;15897:83;:::i;:::-;15890:90;;15989:93;16078:3;15989:93;:::i;:::-;16107:1;16102:3;16098:11;16091:18;;15717:398;;;:::o;16121:379::-;16305:3;16327:147;16470:3;16327:147;:::i;:::-;16320:154;;16491:3;16484:10;;16121:379;;;:::o;16506:244::-;16646:34;16642:1;16634:6;16630:14;16623:58;16715:27;16710:2;16702:6;16698:15;16691:52;16506:244;:::o;16756:366::-;16898:3;16919:67;16983:2;16978:3;16919:67;:::i;:::-;16912:74;;16995:93;17084:3;16995:93;:::i;:::-;17113:2;17108:3;17104:12;17097:19;;16756:366;;;:::o;17128:419::-;17294:4;17332:2;17321:9;17317:18;17309:26;;17381:9;17375:4;17371:20;17367:1;17356:9;17352:17;17345:47;17409:131;17535:4;17409:131;:::i;:::-;17401:139;;17128:419;;;:::o;17553:143::-;17610:5;17641:6;17635:13;17626:22;;17657:33;17684:5;17657:33;:::i;:::-;17553:143;;;;:::o;17702:351::-;17772:6;17821:2;17809:9;17800:7;17796:23;17792:32;17789:119;;;17827:79;;:::i;:::-;17789:119;17947:1;17972:64;18028:7;18019:6;18008:9;18004:22;17972:64;:::i;:::-;17962:74;;17918:128;17702:351;;;;:::o;18059:332::-;18180:4;18218:2;18207:9;18203:18;18195:26;;18231:71;18299:1;18288:9;18284:17;18275:6;18231:71;:::i;:::-;18312:72;18380:2;18369:9;18365:18;18356:6;18312:72;:::i;:::-;18059:332;;;;;:::o;18397:224::-;18537:34;18533:1;18525:6;18521:14;18514:58;18606:7;18601:2;18593:6;18589:15;18582:32;18397:224;:::o;18627:366::-;18769:3;18790:67;18854:2;18849:3;18790:67;:::i;:::-;18783:74;;18866:93;18955:3;18866:93;:::i;:::-;18984:2;18979:3;18975:12;18968:19;;18627:366;;;:::o;18999:419::-;19165:4;19203:2;19192:9;19188:18;19180:26;;19252:9;19246:4;19242:20;19238:1;19227:9;19223:17;19216:47;19280:131;19406:4;19280:131;:::i;:::-;19272:139;;18999:419;;;:::o;19424:223::-;19564:34;19560:1;19552:6;19548:14;19541:58;19633:6;19628:2;19620:6;19616:15;19609:31;19424:223;:::o;19653:366::-;19795:3;19816:67;19880:2;19875:3;19816:67;:::i;:::-;19809:74;;19892:93;19981:3;19892:93;:::i;:::-;20010:2;20005:3;20001:12;19994:19;;19653:366;;;:::o;20025:419::-;20191:4;20229:2;20218:9;20214:18;20206:26;;20278:9;20272:4;20268:20;20264:1;20253:9;20249:17;20242:47;20306:131;20432:4;20306:131;:::i;:::-;20298:139;;20025:419;;;:::o;20450:220::-;20590:34;20586:1;20578:6;20574:14;20567:58;20659:3;20654:2;20646:6;20642:15;20635:28;20450:220;:::o;20676:366::-;20818:3;20839:67;20903:2;20898:3;20839:67;:::i;:::-;20832:74;;20915:93;21004:3;20915:93;:::i;:::-;21033:2;21028:3;21024:12;21017:19;;20676:366;;;:::o;21048:419::-;21214:4;21252:2;21241:9;21237:18;21229:26;;21301:9;21295:4;21291:20;21287:1;21276:9;21272:17;21265:47;21329:131;21455:4;21329:131;:::i;:::-;21321:139;;21048:419;;;:::o;21473:233::-;21613:34;21609:1;21601:6;21597:14;21590:58;21682:16;21677:2;21669:6;21665:15;21658:41;21473:233;:::o;21712:366::-;21854:3;21875:67;21939:2;21934:3;21875:67;:::i;:::-;21868:74;;21951:93;22040:3;21951:93;:::i;:::-;22069:2;22064:3;22060:12;22053:19;;21712:366;;;:::o;22084:419::-;22250:4;22288:2;22277:9;22273:18;22265:26;;22337:9;22331:4;22327:20;22323:1;22312:9;22308:17;22301:47;22365:131;22491:4;22365:131;:::i;:::-;22357:139;;22084:419;;;:::o;22509:225::-;22649:34;22645:1;22637:6;22633:14;22626:58;22718:8;22713:2;22705:6;22701:15;22694:33;22509:225;:::o;22740:366::-;22882:3;22903:67;22967:2;22962:3;22903:67;:::i;:::-;22896:74;;22979:93;23068:3;22979:93;:::i;:::-;23097:2;23092:3;23088:12;23081:19;;22740:366;;;:::o;23112:419::-;23278:4;23316:2;23305:9;23301:18;23293:26;;23365:9;23359:4;23355:20;23351:1;23340:9;23336:17;23329:47;23393:131;23519:4;23393:131;:::i;:::-;23385:139;;23112:419;;;:::o;23537:223::-;23677:34;23673:1;23665:6;23661:14;23654:58;23746:6;23741:2;23733:6;23729:15;23722:31;23537:223;:::o;23766:366::-;23908:3;23929:67;23993:2;23988:3;23929:67;:::i;:::-;23922:74;;24005:93;24094:3;24005:93;:::i;:::-;24123:2;24118:3;24114:12;24107:19;;23766:366;;;:::o;24138:419::-;24304:4;24342:2;24331:9;24327:18;24319:26;;24391:9;24385:4;24381:20;24377:1;24366:9;24362:17;24355:47;24419:131;24545:4;24419:131;:::i;:::-;24411:139;;24138:419;;;:::o;24563:221::-;24703:34;24699:1;24691:6;24687:14;24680:58;24772:4;24767:2;24759:6;24755:15;24748:29;24563:221;:::o;24790:366::-;24932:3;24953:67;25017:2;25012:3;24953:67;:::i;:::-;24946:74;;25029:93;25118:3;25029:93;:::i;:::-;25147:2;25142:3;25138:12;25131:19;;24790:366;;;:::o;25162:419::-;25328:4;25366:2;25355:9;25351:18;25343:26;;25415:9;25409:4;25405:20;25401:1;25390:9;25386:17;25379:47;25443:131;25569:4;25443:131;:::i;:::-;25435:139;;25162:419;;;:::o;25587:224::-;25727:34;25723:1;25715:6;25711:14;25704:58;25796:7;25791:2;25783:6;25779:15;25772:32;25587:224;:::o;25817:366::-;25959:3;25980:67;26044:2;26039:3;25980:67;:::i;:::-;25973:74;;26056:93;26145:3;26056:93;:::i;:::-;26174:2;26169:3;26165:12;26158:19;;25817:366;;;:::o;26189:419::-;26355:4;26393:2;26382:9;26378:18;26370:26;;26442:9;26436:4;26432:20;26428:1;26417:9;26413:17;26406:47;26470:131;26596:4;26470:131;:::i;:::-;26462:139;;26189:419;;;:::o;26614:222::-;26754:34;26750:1;26742:6;26738:14;26731:58;26823:5;26818:2;26810:6;26806:15;26799:30;26614:222;:::o;26842:366::-;26984:3;27005:67;27069:2;27064:3;27005:67;:::i;:::-;26998:74;;27081:93;27170:3;27081:93;:::i;:::-;27199:2;27194:3;27190:12;27183:19;;26842:366;;;:::o;27214:419::-;27380:4;27418:2;27407:9;27403:18;27395:26;;27467:9;27461:4;27457:20;27453:1;27442:9;27438:17;27431:47;27495:131;27621:4;27495:131;:::i;:::-;27487:139;;27214:419;;;:::o;27639:168::-;27779:20;27775:1;27767:6;27763:14;27756:44;27639:168;:::o;27813:366::-;27955:3;27976:67;28040:2;28035:3;27976:67;:::i;:::-;27969:74;;28052:93;28141:3;28052:93;:::i;:::-;28170:2;28165:3;28161:12;28154:19;;27813:366;;;:::o;28185:419::-;28351:4;28389:2;28378:9;28374:18;28366:26;;28438:9;28432:4;28428:20;28424:1;28413:9;28409:17;28402:47;28466:131;28592:4;28466:131;:::i;:::-;28458:139;;28185:419;;;:::o;28610:170::-;28750:22;28746:1;28738:6;28734:14;28727:46;28610:170;:::o;28786:366::-;28928:3;28949:67;29013:2;29008:3;28949:67;:::i;:::-;28942:74;;29025:93;29114:3;29025:93;:::i;:::-;29143:2;29138:3;29134:12;29127:19;;28786:366;;;:::o;29158:419::-;29324:4;29362:2;29351:9;29347:18;29339:26;;29411:9;29405:4;29401:20;29397:1;29386:9;29382:17;29375:47;29439:131;29565:4;29439:131;:::i;:::-;29431:139;;29158:419;;;:::o;29583:172::-;29723:24;29719:1;29711:6;29707:14;29700:48;29583:172;:::o;29761:366::-;29903:3;29924:67;29988:2;29983:3;29924:67;:::i;:::-;29917:74;;30000:93;30089:3;30000:93;:::i;:::-;30118:2;30113:3;30109:12;30102:19;;29761:366;;;:::o;30133:419::-;30299:4;30337:2;30326:9;30322:18;30314:26;;30386:9;30380:4;30376:20;30372:1;30361:9;30357:17;30350:47;30414:131;30540:4;30414:131;:::i;:::-;30406:139;;30133:419;;;:::o;30558:240::-;30698:34;30694:1;30686:6;30682:14;30675:58;30767:23;30762:2;30754:6;30750:15;30743:48;30558:240;:::o;30804:366::-;30946:3;30967:67;31031:2;31026:3;30967:67;:::i;:::-;30960:74;;31043:93;31132:3;31043:93;:::i;:::-;31161:2;31156:3;31152:12;31145:19;;30804:366;;;:::o;31176:419::-;31342:4;31380:2;31369:9;31365:18;31357:26;;31429:9;31423:4;31419:20;31415:1;31404:9;31400:17;31393:47;31457:131;31583:4;31457:131;:::i;:::-;31449:139;;31176:419;;;:::o;31601:169::-;31741:21;31737:1;31729:6;31725:14;31718:45;31601:169;:::o;31776:366::-;31918:3;31939:67;32003:2;31998:3;31939:67;:::i;:::-;31932:74;;32015:93;32104:3;32015:93;:::i;:::-;32133:2;32128:3;32124:12;32117:19;;31776:366;;;:::o;32148:419::-;32314:4;32352:2;32341:9;32337:18;32329:26;;32401:9;32395:4;32391:20;32387:1;32376:9;32372:17;32365:47;32429:131;32555:4;32429:131;:::i;:::-;32421:139;;32148:419;;;:::o;32573:241::-;32713:34;32709:1;32701:6;32697:14;32690:58;32782:24;32777:2;32769:6;32765:15;32758:49;32573:241;:::o;32820:366::-;32962:3;32983:67;33047:2;33042:3;32983:67;:::i;:::-;32976:74;;33059:93;33148:3;33059:93;:::i;:::-;33177:2;33172:3;33168:12;33161:19;;32820:366;;;:::o;33192:419::-;33358:4;33396:2;33385:9;33381:18;33373:26;;33445:9;33439:4;33435:20;33431:1;33420:9;33416:17;33409:47;33473:131;33599:4;33473:131;:::i;:::-;33465:139;;33192:419;;;:::o;33617:194::-;33657:4;33677:20;33695:1;33677:20;:::i;:::-;33672:25;;33711:20;33729:1;33711:20;:::i;:::-;33706:25;;33755:1;33752;33748:9;33740:17;;33779:1;33773:4;33770:11;33767:37;;;33784:18;;:::i;:::-;33767:37;33617:194;;;;:::o;33817:225::-;33957:34;33953:1;33945:6;33941:14;33934:58;34026:8;34021:2;34013:6;34009:15;34002:33;33817:225;:::o;34048:366::-;34190:3;34211:67;34275:2;34270:3;34211:67;:::i;:::-;34204:74;;34287:93;34376:3;34287:93;:::i;:::-;34405:2;34400:3;34396:12;34389:19;;34048:366;;;:::o;34420:419::-;34586:4;34624:2;34613:9;34609:18;34601:26;;34673:9;34667:4;34663:20;34659:1;34648:9;34644:17;34637:47;34701:131;34827:4;34701:131;:::i;:::-;34693:139;;34420:419;;;:::o;34845:180::-;34893:77;34890:1;34883:88;34990:4;34987:1;34980:15;35014:4;35011:1;35004:15;35031:180;35079:77;35076:1;35069:88;35176:4;35173:1;35166:15;35200:4;35197:1;35190:15;35217:85;35262:7;35291:5;35280:16;;35217:85;;;:::o;35308:158::-;35366:9;35399:61;35417:42;35426:32;35452:5;35426:32;:::i;:::-;35417:42;:::i;:::-;35399:61;:::i;:::-;35386:74;;35308:158;;;:::o;35472:147::-;35567:45;35606:5;35567:45;:::i;:::-;35562:3;35555:58;35472:147;;:::o;35625:114::-;35692:6;35726:5;35720:12;35710:22;;35625:114;;;:::o;35745:184::-;35844:11;35878:6;35873:3;35866:19;35918:4;35913:3;35909:14;35894:29;;35745:184;;;;:::o;35935:132::-;36002:4;36025:3;36017:11;;36055:4;36050:3;36046:14;36038:22;;35935:132;;;:::o;36073:108::-;36150:24;36168:5;36150:24;:::i;:::-;36145:3;36138:37;36073:108;;:::o;36187:179::-;36256:10;36277:46;36319:3;36311:6;36277:46;:::i;:::-;36355:4;36350:3;36346:14;36332:28;;36187:179;;;;:::o;36372:113::-;36442:4;36474;36469:3;36465:14;36457:22;;36372:113;;;:::o;36521:732::-;36640:3;36669:54;36717:5;36669:54;:::i;:::-;36739:86;36818:6;36813:3;36739:86;:::i;:::-;36732:93;;36849:56;36899:5;36849:56;:::i;:::-;36928:7;36959:1;36944:284;36969:6;36966:1;36963:13;36944:284;;;37045:6;37039:13;37072:63;37131:3;37116:13;37072:63;:::i;:::-;37065:70;;37158:60;37211:6;37158:60;:::i;:::-;37148:70;;37004:224;36991:1;36988;36984:9;36979:14;;36944:284;;;36948:14;37244:3;37237:10;;36645:608;;;36521:732;;;;:::o;37259:831::-;37522:4;37560:3;37549:9;37545:19;37537:27;;37574:71;37642:1;37631:9;37627:17;37618:6;37574:71;:::i;:::-;37655:80;37731:2;37720:9;37716:18;37707:6;37655:80;:::i;:::-;37782:9;37776:4;37772:20;37767:2;37756:9;37752:18;37745:48;37810:108;37913:4;37904:6;37810:108;:::i;:::-;37802:116;;37928:72;37996:2;37985:9;37981:18;37972:6;37928:72;:::i;:::-;38010:73;38078:3;38067:9;38063:19;38054:6;38010:73;:::i;:::-;37259:831;;;;;;;;:::o

Swarm Source

ipfs://425f993b5e2a14c4b010a611613db1ad001a803b3d41e860e33d79d0f91e5882
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.