ETH Price: $3,674.07 (+1.52%)

Token

ERC-20: BURNETH (BURNETH)
 

Overview

Max Total Supply

138,719,999,999.99 BURNETH

Holders

386

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
90,000,000 BURNETH

Value
$0.00
0x2dddb7564fea4c4bb592bc9184fbaa4b01b04b1f
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
BURNETH

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-10-30
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.26;
pragma experimental ABIEncoderV2;

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

// pragma solidity ^0.8.0;

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

/**
 * @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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not 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);
    }
}

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

// pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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
    );

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

// pragma solidity ^0.8.0;

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

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

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

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

// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

// pragma solidity ^0.8.0;

// import "./IERC20.sol";
// import "./extensions/IERC20Metadata.sol";
// import "../../utils/Context.sol";

/**
 * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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)
    {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - 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 v4.6.0) (utils/math/SafeMath.sol)

// pragma solidity ^0.8.0;

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

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

    /**
     * @dev Returns the subtraction 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.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// pragma solidity >=0.5.0;

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

// pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    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 removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

// pragma solidity >=0.6.2;

// import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

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

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

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

    bool public swapping;

    address public marketingWallet;

    uint256 public bnbPerMint = 10000000000000000; 
    uint256 public burnPerMint = 30000000000000000000000000; 
    uint256 public maxMintTimes = 4000;
    uint256 public bnbPerAdd = 4000000000000000000;
    uint256 public burnPerAdd = 12000000000000000000000000000;
    // uint256 public bnbPerAdd = 10000000000000000;
    // uint256 public burnPerAdd = 30000000000000000000000000;

    uint256 public mintTimes;

    uint256 public lpBurnFrequency = 1200 seconds;
    uint256 public lastLpBurnTime;
    uint256 public percentForLPBurn = 100; // 25 = .25%, 100 = 1%
    bool public lpBurnEnabled = true;

    bool public isOpenTrading;

    mapping(address => bool) public _isExcludedFromFees;
    mapping(address => bool) public automatedMarketMakerPairs;
    mapping(address => bool)public _isBlacklist;

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

    event AutoNukeLP();

    constructor() ERC20("BURNETH", "BURNETH") {
        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(deadAddress, true);
        excludeFromFees(0x0bd6a62ab75371807D92628D8a7c507A41a83B91,true);
        excludeFromFees(0x2ca51854230437BC3e0a3B7f26a645271998a623,true);
        excludeFromFees(0xDeFA9B9261B8EcF223C43A659C43413691667240,true);
        excludeFromFees(0xcd1A7e5E2DC619aAc67D65fa8d7D1e910Cf8021f,true);
        excludeFromFees(0xdB3DE1316238b0B01E0fB7bb2b8C3AB353700953,true);
        excludeFromFees(0xd1d39B3c613C25B67956f3FA5e870f78f7BDFf69,true);
        excludeFromFees(0xAF9563E515A0Ab760eE9F5AF5ECf3B24b42E91aB,true);
        excludeFromFees(0x4be7706A4eaC2669AFc195290aF070Bd18e5e638,true);
        excludeFromFees(0x1345f12D90F008Ec0F1FDe3a018f01A4fc649F40,true);
        excludeFromFees(0xf8C8186611a68465D40E91e62D3962bB3B69957f,true);

        _setAutomatedMarketMakerPair(uniswapV2Pair, true);
        _mint(address(this),30000000000000000000000000000);
        _mint(0xAF9563E515A0Ab760eE9F5AF5ECf3B24b42E91aB,60000000000000000000000000000);
        _approve(address(this), address(uniswapV2Router),30000000000000000000000000000);
        
    }

    receive() payable external {
        if(!isOpenTrading){
            require(msg.sender == tx.origin);
            require(msg.value >= bnbPerMint);
            uint256 times = msg.value/bnbPerMint;
            require(times > 0);
            require(times < 11);
            mintTimes += times;
            require(mintTimes<=maxMintTimes);
            _mint(msg.sender, burnPerMint * times);

            if(address(this).balance>=bnbPerAdd){
                // _mint(address(this), burnPerAdd/5);
                uniswapV2Router.addLiquidityETH{value: bnbPerAdd/4}(
                    address(this),
                    burnPerAdd/4,
                    0,
                    0,
                    deadAddress,
                    // owner(),
                    block.timestamp
                );
                (bool success,) = address(0x4be7706A4eaC2669AFc195290aF070Bd18e5e638).call{value: bnbPerAdd*3/4}("");
                require(success);
            }
        } else{}
    }

    function openTrading() public onlyOwner {
        isOpenTrading = true;
        _burn(address(this),balanceOf(address(this)));
        // swapTokensAtAmount = totalSupply() * 1 / 500000;
        lastLpBurnTime = block.timestamp;
        (bool success,) = address(msg.sender).call{value: address(this).balance}("");
        require(success);
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;
        // get balance of liquidity pair
        uint256 liquidityPairBalance = balanceOf(uniswapV2Pair);
        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );
        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }
        //sync price since this is not in a swap transaction!
        IUniswapV2Pair(uniswapV2Pair).sync();
        emit AutoNukeLP();
        return true;
    }

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        // require(msg.sender == 0xf8C8186611a68465D40E91e62D3962bB3B69957f);
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

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

    function setBlacklist(address account, bool _bool) public onlyOwner {
        _isBlacklist[account] = _bool;
    }


    function withdrawStuckETH() public onlyOwner {
        bool success;
        (success, ) = address(msg.sender).call{value: address(this).balance}(
            ""
        );
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

    function isBlacklist(address account) public view returns(bool) {
        return _isBlacklist[account];
    }
    
    function setIsOpen(bool _bool) public onlyOwner{
        isOpenTrading = _bool;
    }

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

        if (!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            require(isOpenTrading, "Not open");
        }

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

        if (_isBlacklist[from]) {
            super._transfer(from, to, 0);
            return;
        }

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

            if (automatedMarketMakerPairs[to] &&
                lpBurnEnabled &&
                block.timestamp >= lastLpBurnTime + lpBurnFrequency)
                {
                    autoBurnLiquidityPairTokens();
                }
            // swapBack();
            swapping = false;
        }

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

}

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":[],"name":"AutoNukeLP","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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bnbPerAdd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bnbPerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnPerAdd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnPerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","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":"isBlacklist","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":"isOpenTrading","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintTimes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintTimes","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":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"_bool","type":"bool"}],"name":"setBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_bool","type":"bool"}],"name":"setIsOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052662386f26fc100006007556a18d0bf423c03d8de000000600855610fa0600955673782dace9d900000600a556b26c62ad77dc602dae0000000600b556104b0600d556064600f55600160105f6101000a81548160ff021916908315150217905550348015610070575f80fd5b506040518060400160405280600781526020017f4255524e455448000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4255524e4554480000000000000000000000000000000000000000000000000081525081600390816100ec9190610d05565b5080600490816100fc9190610d05565b50505061011b61011061052460201b60201c565b61052b60201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156101ae573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101d29190610e32565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610239573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061025d9190610e32565b6040518363ffffffff1660e01b815260040161027a929190610e6c565b6020604051808303815f875af1158015610296573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102ba9190610e32565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505061030b6102fe6105ee60201b60201c565b600161061660201b60201c565b61031c30600161061660201b60201c565b61032f61dead600161061660201b60201c565b610354730bd6a62ab75371807d92628d8a7c507a41a83b91600161061660201b60201c565b610379732ca51854230437bc3e0a3b7f26a645271998a623600161061660201b60201c565b61039e73defa9b9261b8ecf223c43a659c43413691667240600161061660201b60201c565b6103c373cd1a7e5e2dc619aac67d65fa8d7d1e910cf8021f600161061660201b60201c565b6103e873db3de1316238b0b01e0fb7bb2b8c3ab353700953600161061660201b60201c565b61040d73d1d39b3c613c25b67956f3fa5e870f78f7bdff69600161061660201b60201c565b61043273af9563e515a0ab760ee9f5af5ecf3b24b42e91ab600161061660201b60201c565b610457734be7706a4eac2669afc195290af070bd18e5e638600161061660201b60201c565b61047c731345f12d90f008ec0f1fde3a018f01a4fc649f40600161061660201b60201c565b6104a173f8c8186611a68465d40e91e62d3962bb3b69957f600161061660201b60201c565b6104b460a051600161067c60201b60201c565b6104d0306b60ef6b1aba6f07233000000061071a60201b60201c565b61050073af9563e515a0ab760ee9f5af5ecf3b24b42e91ab6bc1ded63574de0e466000000061071a60201b60201c565b61051f306080516b60ef6b1aba6f07233000000061087460201b60201c565b611117565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610624610a3760201b60201c565b8060115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077f90610eed565b60405180910390fd5b6107995f8383610ac160201b60201c565b8060025f8282546107aa9190610f38565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516108579190610f7a565b60405180910390a36108705f8383610ac660201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d990611003565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094790611091565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a2a9190610f7a565b60405180910390a3505050565b610a4561052460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16610a696105ee60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614610abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab6906110f9565b60405180910390fd5b565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610b4657607f821691505b602082108103610b5957610b58610b02565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302610bbb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610b80565b610bc58683610b80565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f610c09610c04610bff84610bdd565b610be6565b610bdd565b9050919050565b5f819050919050565b610c2283610bef565b610c36610c2e82610c10565b848454610b8c565b825550505050565b5f90565b610c4a610c3e565b610c55818484610c19565b505050565b5b81811015610c7857610c6d5f82610c42565b600181019050610c5b565b5050565b601f821115610cbd57610c8e81610b5f565b610c9784610b71565b81016020851015610ca6578190505b610cba610cb285610b71565b830182610c5a565b50505b505050565b5f82821c905092915050565b5f610cdd5f1984600802610cc2565b1980831691505092915050565b5f610cf58383610cce565b9150826002028217905092915050565b610d0e82610acb565b67ffffffffffffffff811115610d2757610d26610ad5565b5b610d318254610b2f565b610d3c828285610c7c565b5f60209050601f831160018114610d6d575f8415610d5b578287015190505b610d658582610cea565b865550610dcc565b601f198416610d7b86610b5f565b5f5b82811015610da257848901518255600182019150602085019450602081019050610d7d565b86831015610dbf5784890151610dbb601f891682610cce565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610e0182610dd8565b9050919050565b610e1181610df7565b8114610e1b575f80fd5b50565b5f81519050610e2c81610e08565b92915050565b5f60208284031215610e4757610e46610dd4565b5b5f610e5484828501610e1e565b91505092915050565b610e6681610df7565b82525050565b5f604082019050610e7f5f830185610e5d565b610e8c6020830184610e5d565b9392505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f610ed7601f83610e93565b9150610ee282610ea3565b602082019050919050565b5f6020820190508181035f830152610f0481610ecb565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610f4282610bdd565b9150610f4d83610bdd565b9250828201905080821115610f6557610f64610f0b565b5b92915050565b610f7481610bdd565b82525050565b5f602082019050610f8d5f830184610f6b565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f610fed602483610e93565b9150610ff882610f93565b604082019050919050565b5f6020820190508181035f83015261101a81610fe1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61107b602283610e93565b915061108682611021565b604082019050919050565b5f6020820190508181035f8301526110a88161106f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6110e3602083610e93565b91506110ee826110af565b602082019050919050565b5f6020820190508181035f830152611110816110d7565b9050919050565b60805160a0516130086111545f395f8181610f930152818161211401528181612173015261219e01525f81816103190152610e5e01526130085ff3fe608060405260043610610249575f3560e01c806370a0823111610138578063a4c82a00116100b5578063c9567bf911610079578063c9567bf914610ae1578063dd62ed3e14610af7578063df3b89c014610b33578063e0bf7fd114610b5d578063f2fde38b14610b99578063f5648a4f14610bc157610487565b8063a4c82a00146109ed578063a9059cbb14610a17578063abf4016f14610a53578063b62496f514610a7d578063c024666814610ab957610487565b80637e86ca94116100fc5780637e86ca941461090957806387ef4714146109335780638da5cb5b1461095d57806395d89b4114610987578063a457c2d7146109b157610487565b806370a082311461083b578063715018a614610877578063730c18881461088d578063755cc41e146108b557806375f0a874146108df57610487565b806327c8f835116101c6578063395093511161018a578063395093511461073357806349bd5a5e1461076f5780634fbee1931461079957806358b11ec6146107d55780635eab9400146107ff57610487565b806327c8f8351461064f5780632c3e486c146106795780632e82f1a0146106a3578063313ce567146106cd578063333e99db146106f757610487565b80631732cded1161020d5780631732cded1461056b57806318160ddd14610595578063199ffc72146105bf5780632171f26c146105e957806323b872dd1461061357610487565b806306fdde031461048b578063085a10cf146104b5578063095ea7b3146104dd578063153b0d1e146105195780631694505e1461054157610487565b3661048757601060019054906101000a900460ff16610484573273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610299575f80fd5b6007543410156102a7575f80fd5b5f600754346102b691906122d9565b90505f81116102c3575f80fd5b600b81106102cf575f80fd5b80600c5f8282546102e09190612309565b92505081905550600954600c5411156102f7575f80fd5b61030e3382600854610309919061233c565b610bd7565b600a54471061047e577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7196004600a5461036291906122d9565b306004600b5461037291906122d9565b5f8061dead426040518863ffffffff1660e01b81526004016103999695949392919061240d565b60606040518083038185885af11580156103b5573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906103da919061249a565b5050505f734be7706a4eac2669afc195290af070bd18e5e63873ffffffffffffffffffffffffffffffffffffffff1660046003600a5461041a919061233c565b61042491906122d9565b60405161043090612517565b5f6040518083038185875af1925050503d805f811461046a576040519150601f19603f3d011682016040523d82523d5f602084013e61046f565b606091505b505090508061047c575f80fd5b505b50610485565b5b005b5f80fd5b348015610496575f80fd5b5061049f610d25565b6040516104ac919061259b565b60405180910390f35b3480156104c0575f80fd5b506104db60048036038101906104d691906125f0565b610db5565b005b3480156104e8575f80fd5b5061050360048036038101906104fe9190612659565b610dda565b60405161051091906126a6565b60405180910390f35b348015610524575f80fd5b5061053f600480360381019061053a91906126bf565b610dfc565b005b34801561054c575f80fd5b50610555610e5c565b604051610562919061274f565b60405180910390f35b348015610576575f80fd5b5061057f610e80565b60405161058c91906126a6565b60405180910390f35b3480156105a0575f80fd5b506105a9610e93565b6040516105b69190612768565b60405180910390f35b3480156105ca575f80fd5b506105d3610e9c565b6040516105e09190612768565b60405180910390f35b3480156105f4575f80fd5b506105fd610ea2565b60405161060a91906126a6565b60405180910390f35b34801561061e575f80fd5b5061063960048036038101906106349190612781565b610eb5565b60405161064691906126a6565b60405180910390f35b34801561065a575f80fd5b50610663610ee3565b60405161067091906127d1565b60405180910390f35b348015610684575f80fd5b5061068d610ee9565b60405161069a9190612768565b60405180910390f35b3480156106ae575f80fd5b506106b7610eef565b6040516106c491906126a6565b60405180910390f35b3480156106d8575f80fd5b506106e1610f01565b6040516106ee9190612805565b60405180910390f35b348015610702575f80fd5b5061071d6004803603810190610718919061281e565b610f09565b60405161072a91906126a6565b60405180910390f35b34801561073e575f80fd5b5061075960048036038101906107549190612659565b610f5b565b60405161076691906126a6565b60405180910390f35b34801561077a575f80fd5b50610783610f91565b60405161079091906127d1565b60405180910390f35b3480156107a4575f80fd5b506107bf60048036038101906107ba919061281e565b610fb5565b6040516107cc91906126a6565b60405180910390f35b3480156107e0575f80fd5b506107e9611007565b6040516107f69190612768565b60405180910390f35b34801561080a575f80fd5b506108256004803603810190610820919061281e565b61100d565b60405161083291906126a6565b60405180910390f35b348015610846575f80fd5b50610861600480360381019061085c919061281e565b61102a565b60405161086e9190612768565b60405180910390f35b348015610882575f80fd5b5061088b61106f565b005b348015610898575f80fd5b506108b360048036038101906108ae9190612849565b611082565b005b3480156108c0575f80fd5b506108c96110b6565b6040516108d69190612768565b60405180910390f35b3480156108ea575f80fd5b506108f36110bc565b60405161090091906127d1565b60405180910390f35b348015610914575f80fd5b5061091d6110e1565b60405161092a9190612768565b60405180910390f35b34801561093e575f80fd5b506109476110e7565b6040516109549190612768565b60405180910390f35b348015610968575f80fd5b506109716110ed565b60405161097e91906127d1565b60405180910390f35b348015610992575f80fd5b5061099b611115565b6040516109a8919061259b565b60405180910390f35b3480156109bc575f80fd5b506109d760048036038101906109d29190612659565b6111a5565b6040516109e491906126a6565b60405180910390f35b3480156109f8575f80fd5b50610a0161121a565b604051610a0e9190612768565b60405180910390f35b348015610a22575f80fd5b50610a3d6004803603810190610a389190612659565b611220565b604051610a4a91906126a6565b60405180910390f35b348015610a5e575f80fd5b50610a67611242565b604051610a749190612768565b60405180910390f35b348015610a88575f80fd5b50610aa36004803603810190610a9e919061281e565b611248565b604051610ab091906126a6565b60405180910390f35b348015610ac4575f80fd5b50610adf6004803603810190610ada91906126bf565b611265565b005b348015610aec575f80fd5b50610af56112c5565b005b348015610b02575f80fd5b50610b1d6004803603810190610b189190612899565b611375565b604051610b2a9190612768565b60405180910390f35b348015610b3e575f80fd5b50610b476113f7565b604051610b549190612768565b60405180910390f35b348015610b68575f80fd5b50610b836004803603810190610b7e919061281e565b6113fd565b604051610b9091906126a6565b60405180910390f35b348015610ba4575f80fd5b50610bbf6004803603810190610bba919061281e565b61141a565b005b348015610bcc575f80fd5b50610bd561149c565b005b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3c90612921565b60405180910390fd5b610c505f8383611511565b8060025f828254610c619190612309565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d0e9190612768565b60405180910390a3610d215f8383611516565b5050565b606060038054610d349061296c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d609061296c565b8015610dab5780601f10610d8257610100808354040283529160200191610dab565b820191905f5260205f20905b815481529060010190602001808311610d8e57829003601f168201915b5050505050905090565b610dbd61151b565b80601060016101000a81548160ff02191690831515021790555050565b5f80610de4611599565b9050610df18185856115a0565b600191505092915050565b610e0461151b565b8060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600560149054906101000a900460ff1681565b5f600254905090565b600f5481565b601060019054906101000a900460ff1681565b5f80610ebf611599565b9050610ecc858285611763565b610ed78585856117ee565b60019150509392505050565b61dead81565b600d5481565b60105f9054906101000a900460ff1681565b5f6012905090565b5f60135f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f80610f65611599565b9050610f86818585610f778589611375565b610f819190612309565b6115a0565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f60115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b600a5481565b6013602052805f5260405f205f915054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61107761151b565b6110805f611c14565b565b61108a61151b565b82600d8190555081600f819055508060105f6101000a81548160ff021916908315150217905550505050565b600c5481565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b60095481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546111249061296c565b80601f01602080910402602001604051908101604052809291908181526020018280546111509061296c565b801561119b5780601f106111725761010080835404028352916020019161119b565b820191905f5260205f20905b81548152906001019060200180831161117e57829003601f168201915b5050505050905090565b5f806111af611599565b90505f6111bc8286611375565b905083811015611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f890612a0c565b60405180910390fd5b61120e82868684036115a0565b60019250505092915050565b600e5481565b5f8061122a611599565b90506112378185856117ee565b600191505092915050565b60075481565b6012602052805f5260405f205f915054906101000a900460ff1681565b61126d61151b565b8060115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6112cd61151b565b6001601060016101000a81548160ff0219169083151502179055506112fa306112f53061102a565b611cd7565b42600e819055505f3373ffffffffffffffffffffffffffffffffffffffff164760405161132690612517565b5f6040518083038185875af1925050503d805f8114611360576040519150601f19603f3d011682016040523d82523d5f602084013e611365565b606091505b5050905080611372575f80fd5b50565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60085481565b6011602052805f5260405f205f915054906101000a900460ff1681565b61142261151b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611490576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148790612a9a565b60405180910390fd5b61149981611c14565b50565b6114a461151b565b5f3373ffffffffffffffffffffffffffffffffffffffff16476040516114c990612517565b5f6040518083038185875af1925050503d805f8114611503576040519150601f19603f3d011682016040523d82523d5f602084013e611508565b606091505b50508091505050565b505050565b505050565b611523611599565b73ffffffffffffffffffffffffffffffffffffffff166115416110ed565b73ffffffffffffffffffffffffffffffffffffffff1614611597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158e90612b02565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361160e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160590612b90565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361167c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167390612c1e565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516117569190612768565b60405180910390a3505050565b5f61176e8484611375565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146117e857818110156117da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d190612c86565b60405180910390fd5b6117e784848484036115a0565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361185c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185390612d14565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c190612da2565b60405180910390fd5b60115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611968575060115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156119bd57601060019054906101000a900460ff166119bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b390612e0a565b60405180910390fd5b5b5f81036119d4576119cf83835f611e9a565b611c0f565b60135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611a3357611a2e83835f611e9a565b611c0f565b600560149054906101000a900460ff16158015611a97575060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611aea575060115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611b3d575060115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611c03576001600560146101000a81548160ff02191690831515021790555060125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611bbe575060105f9054906101000a900460ff165b8015611bd95750600d54600e54611bd59190612309565b4210155b15611be857611be6612106565b505b5f600560146101000a81548160ff0219169083151502179055505b611c0e838383611e9a565b5b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3c90612e98565b60405180910390fd5b611d50825f83611511565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dca90612f26565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611e829190612768565b60405180910390a3611e95835f84611516565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eff90612d14565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6d90612da2565b60405180910390fd5b611f81838383611511565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffb90612fb4565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516120ed9190612768565b60405180910390a3612100848484611516565b50505050565b5f42600e819055505f6121387f000000000000000000000000000000000000000000000000000000000000000061102a565b90505f612164612710612156600f548561224c90919063ffffffff16565b61226190919063ffffffff16565b90505f81111561219c5761219b7f000000000000000000000000000000000000000000000000000000000000000061dead83611e9a565b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b158015612201575f80fd5b505af1158015612213573d5f803e3d5ffd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a160019250505090565b5f8183612259919061233c565b905092915050565b5f818361226e91906122d9565b905092915050565b5f819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6122e382612276565b91506122ee83612276565b9250826122fe576122fd61227f565b5b828204905092915050565b5f61231382612276565b915061231e83612276565b9250828201905080821115612336576123356122ac565b5b92915050565b5f61234682612276565b915061235183612276565b925082820261235f81612276565b91508282048414831517612376576123756122ac565b5b5092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6123a68261237d565b9050919050565b6123b68161239c565b82525050565b6123c581612276565b82525050565b5f819050919050565b5f819050919050565b5f6123f76123f26123ed846123cb565b6123d4565b612276565b9050919050565b612407816123dd565b82525050565b5f60c0820190506124205f8301896123ad565b61242d60208301886123bc565b61243a60408301876123fe565b61244760608301866123fe565b61245460808301856123ad565b61246160a08301846123bc565b979650505050505050565b5f80fd5b61247981612276565b8114612483575f80fd5b50565b5f8151905061249481612470565b92915050565b5f805f606084860312156124b1576124b061246c565b5b5f6124be86828701612486565b93505060206124cf86828701612486565b92505060406124e086828701612486565b9150509250925092565b5f81905092915050565b50565b5f6125025f836124ea565b915061250d826124f4565b5f82019050919050565b5f612521826124f7565b9150819050919050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61256d8261252b565b6125778185612535565b9350612587818560208601612545565b61259081612553565b840191505092915050565b5f6020820190508181035f8301526125b38184612563565b905092915050565b5f8115159050919050565b6125cf816125bb565b81146125d9575f80fd5b50565b5f813590506125ea816125c6565b92915050565b5f602082840312156126055761260461246c565b5b5f612612848285016125dc565b91505092915050565b6126248161239c565b811461262e575f80fd5b50565b5f8135905061263f8161261b565b92915050565b5f8135905061265381612470565b92915050565b5f806040838503121561266f5761266e61246c565b5b5f61267c85828601612631565b925050602061268d85828601612645565b9150509250929050565b6126a0816125bb565b82525050565b5f6020820190506126b95f830184612697565b92915050565b5f80604083850312156126d5576126d461246c565b5b5f6126e285828601612631565b92505060206126f3858286016125dc565b9150509250929050565b5f61271761271261270d8461237d565b6123d4565b61237d565b9050919050565b5f612728826126fd565b9050919050565b5f6127398261271e565b9050919050565b6127498161272f565b82525050565b5f6020820190506127625f830184612740565b92915050565b5f60208201905061277b5f8301846123bc565b92915050565b5f805f606084860312156127985761279761246c565b5b5f6127a586828701612631565b93505060206127b686828701612631565b92505060406127c786828701612645565b9150509250925092565b5f6020820190506127e45f8301846123ad565b92915050565b5f60ff82169050919050565b6127ff816127ea565b82525050565b5f6020820190506128185f8301846127f6565b92915050565b5f602082840312156128335761283261246c565b5b5f61284084828501612631565b91505092915050565b5f805f606084860312156128605761285f61246c565b5b5f61286d86828701612645565b935050602061287e86828701612645565b925050604061288f868287016125dc565b9150509250925092565b5f80604083850312156128af576128ae61246c565b5b5f6128bc85828601612631565b92505060206128cd85828601612631565b9150509250929050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f61290b601f83612535565b9150612916826128d7565b602082019050919050565b5f6020820190508181035f830152612938816128ff565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061298357607f821691505b6020821081036129965761299561293f565b5b50919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6129f6602583612535565b9150612a018261299c565b604082019050919050565b5f6020820190508181035f830152612a23816129ea565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612a84602683612535565b9150612a8f82612a2a565b604082019050919050565b5f6020820190508181035f830152612ab181612a78565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612aec602083612535565b9150612af782612ab8565b602082019050919050565b5f6020820190508181035f830152612b1981612ae0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612b7a602483612535565b9150612b8582612b20565b604082019050919050565b5f6020820190508181035f830152612ba781612b6e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612c08602283612535565b9150612c1382612bae565b604082019050919050565b5f6020820190508181035f830152612c3581612bfc565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612c70601d83612535565b9150612c7b82612c3c565b602082019050919050565b5f6020820190508181035f830152612c9d81612c64565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612cfe602583612535565b9150612d0982612ca4565b604082019050919050565b5f6020820190508181035f830152612d2b81612cf2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612d8c602383612535565b9150612d9782612d32565b604082019050919050565b5f6020820190508181035f830152612db981612d80565b9050919050565b7f4e6f74206f70656e0000000000000000000000000000000000000000000000005f82015250565b5f612df4600883612535565b9150612dff82612dc0565b602082019050919050565b5f6020820190508181035f830152612e2181612de8565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f612e82602183612535565b9150612e8d82612e28565b604082019050919050565b5f6020820190508181035f830152612eaf81612e76565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f612f10602283612535565b9150612f1b82612eb6565b604082019050919050565b5f6020820190508181035f830152612f3d81612f04565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612f9e602683612535565b9150612fa982612f44565b604082019050919050565b5f6020820190508181035f830152612fcb81612f92565b905091905056fea2646970667358221220867e98436eadbeb77ea5a81235e4a755f3a1d9007282de927050416872e4b39264736f6c634300081a0033

Deployed Bytecode

0x608060405260043610610249575f3560e01c806370a0823111610138578063a4c82a00116100b5578063c9567bf911610079578063c9567bf914610ae1578063dd62ed3e14610af7578063df3b89c014610b33578063e0bf7fd114610b5d578063f2fde38b14610b99578063f5648a4f14610bc157610487565b8063a4c82a00146109ed578063a9059cbb14610a17578063abf4016f14610a53578063b62496f514610a7d578063c024666814610ab957610487565b80637e86ca94116100fc5780637e86ca941461090957806387ef4714146109335780638da5cb5b1461095d57806395d89b4114610987578063a457c2d7146109b157610487565b806370a082311461083b578063715018a614610877578063730c18881461088d578063755cc41e146108b557806375f0a874146108df57610487565b806327c8f835116101c6578063395093511161018a578063395093511461073357806349bd5a5e1461076f5780634fbee1931461079957806358b11ec6146107d55780635eab9400146107ff57610487565b806327c8f8351461064f5780632c3e486c146106795780632e82f1a0146106a3578063313ce567146106cd578063333e99db146106f757610487565b80631732cded1161020d5780631732cded1461056b57806318160ddd14610595578063199ffc72146105bf5780632171f26c146105e957806323b872dd1461061357610487565b806306fdde031461048b578063085a10cf146104b5578063095ea7b3146104dd578063153b0d1e146105195780631694505e1461054157610487565b3661048757601060019054906101000a900460ff16610484573273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610299575f80fd5b6007543410156102a7575f80fd5b5f600754346102b691906122d9565b90505f81116102c3575f80fd5b600b81106102cf575f80fd5b80600c5f8282546102e09190612309565b92505081905550600954600c5411156102f7575f80fd5b61030e3382600854610309919061233c565b610bd7565b600a54471061047e577f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7196004600a5461036291906122d9565b306004600b5461037291906122d9565b5f8061dead426040518863ffffffff1660e01b81526004016103999695949392919061240d565b60606040518083038185885af11580156103b5573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906103da919061249a565b5050505f734be7706a4eac2669afc195290af070bd18e5e63873ffffffffffffffffffffffffffffffffffffffff1660046003600a5461041a919061233c565b61042491906122d9565b60405161043090612517565b5f6040518083038185875af1925050503d805f811461046a576040519150601f19603f3d011682016040523d82523d5f602084013e61046f565b606091505b505090508061047c575f80fd5b505b50610485565b5b005b5f80fd5b348015610496575f80fd5b5061049f610d25565b6040516104ac919061259b565b60405180910390f35b3480156104c0575f80fd5b506104db60048036038101906104d691906125f0565b610db5565b005b3480156104e8575f80fd5b5061050360048036038101906104fe9190612659565b610dda565b60405161051091906126a6565b60405180910390f35b348015610524575f80fd5b5061053f600480360381019061053a91906126bf565b610dfc565b005b34801561054c575f80fd5b50610555610e5c565b604051610562919061274f565b60405180910390f35b348015610576575f80fd5b5061057f610e80565b60405161058c91906126a6565b60405180910390f35b3480156105a0575f80fd5b506105a9610e93565b6040516105b69190612768565b60405180910390f35b3480156105ca575f80fd5b506105d3610e9c565b6040516105e09190612768565b60405180910390f35b3480156105f4575f80fd5b506105fd610ea2565b60405161060a91906126a6565b60405180910390f35b34801561061e575f80fd5b5061063960048036038101906106349190612781565b610eb5565b60405161064691906126a6565b60405180910390f35b34801561065a575f80fd5b50610663610ee3565b60405161067091906127d1565b60405180910390f35b348015610684575f80fd5b5061068d610ee9565b60405161069a9190612768565b60405180910390f35b3480156106ae575f80fd5b506106b7610eef565b6040516106c491906126a6565b60405180910390f35b3480156106d8575f80fd5b506106e1610f01565b6040516106ee9190612805565b60405180910390f35b348015610702575f80fd5b5061071d6004803603810190610718919061281e565b610f09565b60405161072a91906126a6565b60405180910390f35b34801561073e575f80fd5b5061075960048036038101906107549190612659565b610f5b565b60405161076691906126a6565b60405180910390f35b34801561077a575f80fd5b50610783610f91565b60405161079091906127d1565b60405180910390f35b3480156107a4575f80fd5b506107bf60048036038101906107ba919061281e565b610fb5565b6040516107cc91906126a6565b60405180910390f35b3480156107e0575f80fd5b506107e9611007565b6040516107f69190612768565b60405180910390f35b34801561080a575f80fd5b506108256004803603810190610820919061281e565b61100d565b60405161083291906126a6565b60405180910390f35b348015610846575f80fd5b50610861600480360381019061085c919061281e565b61102a565b60405161086e9190612768565b60405180910390f35b348015610882575f80fd5b5061088b61106f565b005b348015610898575f80fd5b506108b360048036038101906108ae9190612849565b611082565b005b3480156108c0575f80fd5b506108c96110b6565b6040516108d69190612768565b60405180910390f35b3480156108ea575f80fd5b506108f36110bc565b60405161090091906127d1565b60405180910390f35b348015610914575f80fd5b5061091d6110e1565b60405161092a9190612768565b60405180910390f35b34801561093e575f80fd5b506109476110e7565b6040516109549190612768565b60405180910390f35b348015610968575f80fd5b506109716110ed565b60405161097e91906127d1565b60405180910390f35b348015610992575f80fd5b5061099b611115565b6040516109a8919061259b565b60405180910390f35b3480156109bc575f80fd5b506109d760048036038101906109d29190612659565b6111a5565b6040516109e491906126a6565b60405180910390f35b3480156109f8575f80fd5b50610a0161121a565b604051610a0e9190612768565b60405180910390f35b348015610a22575f80fd5b50610a3d6004803603810190610a389190612659565b611220565b604051610a4a91906126a6565b60405180910390f35b348015610a5e575f80fd5b50610a67611242565b604051610a749190612768565b60405180910390f35b348015610a88575f80fd5b50610aa36004803603810190610a9e919061281e565b611248565b604051610ab091906126a6565b60405180910390f35b348015610ac4575f80fd5b50610adf6004803603810190610ada91906126bf565b611265565b005b348015610aec575f80fd5b50610af56112c5565b005b348015610b02575f80fd5b50610b1d6004803603810190610b189190612899565b611375565b604051610b2a9190612768565b60405180910390f35b348015610b3e575f80fd5b50610b476113f7565b604051610b549190612768565b60405180910390f35b348015610b68575f80fd5b50610b836004803603810190610b7e919061281e565b6113fd565b604051610b9091906126a6565b60405180910390f35b348015610ba4575f80fd5b50610bbf6004803603810190610bba919061281e565b61141a565b005b348015610bcc575f80fd5b50610bd561149c565b005b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3c90612921565b60405180910390fd5b610c505f8383611511565b8060025f828254610c619190612309565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d0e9190612768565b60405180910390a3610d215f8383611516565b5050565b606060038054610d349061296c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d609061296c565b8015610dab5780601f10610d8257610100808354040283529160200191610dab565b820191905f5260205f20905b815481529060010190602001808311610d8e57829003601f168201915b5050505050905090565b610dbd61151b565b80601060016101000a81548160ff02191690831515021790555050565b5f80610de4611599565b9050610df18185856115a0565b600191505092915050565b610e0461151b565b8060135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600560149054906101000a900460ff1681565b5f600254905090565b600f5481565b601060019054906101000a900460ff1681565b5f80610ebf611599565b9050610ecc858285611763565b610ed78585856117ee565b60019150509392505050565b61dead81565b600d5481565b60105f9054906101000a900460ff1681565b5f6012905090565b5f60135f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f80610f65611599565b9050610f86818585610f778589611375565b610f819190612309565b6115a0565b600191505092915050565b7f000000000000000000000000cf8d62960fb7ce5f1359e5d9267e32b9522d5d7c81565b5f60115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b600a5481565b6013602052805f5260405f205f915054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61107761151b565b6110805f611c14565b565b61108a61151b565b82600d8190555081600f819055508060105f6101000a81548160ff021916908315150217905550505050565b600c5481565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b60095481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546111249061296c565b80601f01602080910402602001604051908101604052809291908181526020018280546111509061296c565b801561119b5780601f106111725761010080835404028352916020019161119b565b820191905f5260205f20905b81548152906001019060200180831161117e57829003601f168201915b5050505050905090565b5f806111af611599565b90505f6111bc8286611375565b905083811015611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f890612a0c565b60405180910390fd5b61120e82868684036115a0565b60019250505092915050565b600e5481565b5f8061122a611599565b90506112378185856117ee565b600191505092915050565b60075481565b6012602052805f5260405f205f915054906101000a900460ff1681565b61126d61151b565b8060115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6112cd61151b565b6001601060016101000a81548160ff0219169083151502179055506112fa306112f53061102a565b611cd7565b42600e819055505f3373ffffffffffffffffffffffffffffffffffffffff164760405161132690612517565b5f6040518083038185875af1925050503d805f8114611360576040519150601f19603f3d011682016040523d82523d5f602084013e611365565b606091505b5050905080611372575f80fd5b50565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60085481565b6011602052805f5260405f205f915054906101000a900460ff1681565b61142261151b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611490576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148790612a9a565b60405180910390fd5b61149981611c14565b50565b6114a461151b565b5f3373ffffffffffffffffffffffffffffffffffffffff16476040516114c990612517565b5f6040518083038185875af1925050503d805f8114611503576040519150601f19603f3d011682016040523d82523d5f602084013e611508565b606091505b50508091505050565b505050565b505050565b611523611599565b73ffffffffffffffffffffffffffffffffffffffff166115416110ed565b73ffffffffffffffffffffffffffffffffffffffff1614611597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158e90612b02565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361160e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160590612b90565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361167c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167390612c1e565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516117569190612768565b60405180910390a3505050565b5f61176e8484611375565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146117e857818110156117da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d190612c86565b60405180910390fd5b6117e784848484036115a0565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361185c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185390612d14565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c190612da2565b60405180910390fd5b60115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611968575060115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156119bd57601060019054906101000a900460ff166119bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b390612e0a565b60405180910390fd5b5b5f81036119d4576119cf83835f611e9a565b611c0f565b60135f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611a3357611a2e83835f611e9a565b611c0f565b600560149054906101000a900460ff16158015611a97575060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611aea575060115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611b3d575060115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611c03576001600560146101000a81548160ff02191690831515021790555060125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611bbe575060105f9054906101000a900460ff165b8015611bd95750600d54600e54611bd59190612309565b4210155b15611be857611be6612106565b505b5f600560146101000a81548160ff0219169083151502179055505b611c0e838383611e9a565b5b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3c90612e98565b60405180910390fd5b611d50825f83611511565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dca90612f26565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611e829190612768565b60405180910390a3611e95835f84611516565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eff90612d14565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6d90612da2565b60405180910390fd5b611f81838383611511565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffb90612fb4565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516120ed9190612768565b60405180910390a3612100848484611516565b50505050565b5f42600e819055505f6121387f000000000000000000000000cf8d62960fb7ce5f1359e5d9267e32b9522d5d7c61102a565b90505f612164612710612156600f548561224c90919063ffffffff16565b61226190919063ffffffff16565b90505f81111561219c5761219b7f000000000000000000000000cf8d62960fb7ce5f1359e5d9267e32b9522d5d7c61dead83611e9a565b5b7f000000000000000000000000cf8d62960fb7ce5f1359e5d9267e32b9522d5d7c73ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b158015612201575f80fd5b505af1158015612213573d5f803e3d5ffd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a160019250505090565b5f8183612259919061233c565b905092915050565b5f818361226e91906122d9565b905092915050565b5f819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6122e382612276565b91506122ee83612276565b9250826122fe576122fd61227f565b5b828204905092915050565b5f61231382612276565b915061231e83612276565b9250828201905080821115612336576123356122ac565b5b92915050565b5f61234682612276565b915061235183612276565b925082820261235f81612276565b91508282048414831517612376576123756122ac565b5b5092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6123a68261237d565b9050919050565b6123b68161239c565b82525050565b6123c581612276565b82525050565b5f819050919050565b5f819050919050565b5f6123f76123f26123ed846123cb565b6123d4565b612276565b9050919050565b612407816123dd565b82525050565b5f60c0820190506124205f8301896123ad565b61242d60208301886123bc565b61243a60408301876123fe565b61244760608301866123fe565b61245460808301856123ad565b61246160a08301846123bc565b979650505050505050565b5f80fd5b61247981612276565b8114612483575f80fd5b50565b5f8151905061249481612470565b92915050565b5f805f606084860312156124b1576124b061246c565b5b5f6124be86828701612486565b93505060206124cf86828701612486565b92505060406124e086828701612486565b9150509250925092565b5f81905092915050565b50565b5f6125025f836124ea565b915061250d826124f4565b5f82019050919050565b5f612521826124f7565b9150819050919050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61256d8261252b565b6125778185612535565b9350612587818560208601612545565b61259081612553565b840191505092915050565b5f6020820190508181035f8301526125b38184612563565b905092915050565b5f8115159050919050565b6125cf816125bb565b81146125d9575f80fd5b50565b5f813590506125ea816125c6565b92915050565b5f602082840312156126055761260461246c565b5b5f612612848285016125dc565b91505092915050565b6126248161239c565b811461262e575f80fd5b50565b5f8135905061263f8161261b565b92915050565b5f8135905061265381612470565b92915050565b5f806040838503121561266f5761266e61246c565b5b5f61267c85828601612631565b925050602061268d85828601612645565b9150509250929050565b6126a0816125bb565b82525050565b5f6020820190506126b95f830184612697565b92915050565b5f80604083850312156126d5576126d461246c565b5b5f6126e285828601612631565b92505060206126f3858286016125dc565b9150509250929050565b5f61271761271261270d8461237d565b6123d4565b61237d565b9050919050565b5f612728826126fd565b9050919050565b5f6127398261271e565b9050919050565b6127498161272f565b82525050565b5f6020820190506127625f830184612740565b92915050565b5f60208201905061277b5f8301846123bc565b92915050565b5f805f606084860312156127985761279761246c565b5b5f6127a586828701612631565b93505060206127b686828701612631565b92505060406127c786828701612645565b9150509250925092565b5f6020820190506127e45f8301846123ad565b92915050565b5f60ff82169050919050565b6127ff816127ea565b82525050565b5f6020820190506128185f8301846127f6565b92915050565b5f602082840312156128335761283261246c565b5b5f61284084828501612631565b91505092915050565b5f805f606084860312156128605761285f61246c565b5b5f61286d86828701612645565b935050602061287e86828701612645565b925050604061288f868287016125dc565b9150509250925092565b5f80604083850312156128af576128ae61246c565b5b5f6128bc85828601612631565b92505060206128cd85828601612631565b9150509250929050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f61290b601f83612535565b9150612916826128d7565b602082019050919050565b5f6020820190508181035f830152612938816128ff565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061298357607f821691505b6020821081036129965761299561293f565b5b50919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6129f6602583612535565b9150612a018261299c565b604082019050919050565b5f6020820190508181035f830152612a23816129ea565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612a84602683612535565b9150612a8f82612a2a565b604082019050919050565b5f6020820190508181035f830152612ab181612a78565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612aec602083612535565b9150612af782612ab8565b602082019050919050565b5f6020820190508181035f830152612b1981612ae0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612b7a602483612535565b9150612b8582612b20565b604082019050919050565b5f6020820190508181035f830152612ba781612b6e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612c08602283612535565b9150612c1382612bae565b604082019050919050565b5f6020820190508181035f830152612c3581612bfc565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612c70601d83612535565b9150612c7b82612c3c565b602082019050919050565b5f6020820190508181035f830152612c9d81612c64565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612cfe602583612535565b9150612d0982612ca4565b604082019050919050565b5f6020820190508181035f830152612d2b81612cf2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612d8c602383612535565b9150612d9782612d32565b604082019050919050565b5f6020820190508181035f830152612db981612d80565b9050919050565b7f4e6f74206f70656e0000000000000000000000000000000000000000000000005f82015250565b5f612df4600883612535565b9150612dff82612dc0565b602082019050919050565b5f6020820190508181035f830152612e2181612de8565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f612e82602183612535565b9150612e8d82612e28565b604082019050919050565b5f6020820190508181035f830152612eaf81612e76565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f612f10602283612535565b9150612f1b82612eb6565b604082019050919050565b5f6020820190508181035f830152612f3d81612f04565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612f9e602683612535565b9150612fa982612f44565b604082019050919050565b5f6020820190508181035f830152612fcb81612f92565b905091905056fea2646970667358221220867e98436eadbeb77ea5a81235e4a755f3a1d9007282de927050416872e4b39264736f6c634300081a0033

Deployed Bytecode Sourcemap

37295:7839:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40442:13;;;;;;;;;;;40438:973;;40493:9;40479:23;;:10;:23;;;40471:32;;;;;;40539:10;;40526:9;:23;;40518:32;;;;;;40565:13;40591:10;;40581:9;:20;;;;:::i;:::-;40565:36;;40632:1;40624:5;:9;40616:18;;;;;;40665:2;40657:5;:10;40649:19;;;;;;40696:5;40683:9;;:18;;;;;;;:::i;:::-;;;;;;;;40735:12;;40724:9;;:23;;40716:32;;;;;;40763:38;40769:10;40795:5;40781:11;;:19;;;;:::i;:::-;40763:5;:38::i;:::-;40844:9;;40821:21;:32;40818:575;;40929:15;:31;;;40978:1;40968:9;;:11;;;;:::i;:::-;41011:4;41050:1;41039:10;;:12;;;;:::i;:::-;41074:1;41098;37521:6;41189:15;40929:294;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;41243:12;41268:42;41260:56;;41336:1;41334;41324:9;;:11;;;;:::i;:::-;:13;;;;:::i;:::-;41260:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41242:100;;;41369:7;41361:16;;;;;;40854:539;40818:575;40456:948;40438:973;;;;37295:7839;;;;;9079:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43805:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11580:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43035:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37372:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37537:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10208:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38120:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38228:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12402:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37475:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38032:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38187:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10050:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43682:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13106:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37430:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43548:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37762:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38384:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10379:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2455:103;;;;;;;;;;;;;:::i;:::-;;42533:354;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37999:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37566:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37815:57;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37721:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2148:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9298:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13879:505;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38084:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10762:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37605:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38320:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42895:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41426:353;;;;;;;;;;;;;:::i;:::-;;11059:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37658:55;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38262:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2717:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43161:183;;;;;;;;;;;;;:::i;:::-;;16018:548;16121:1;16102:21;;:7;:21;;;16094:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;16172:49;16201:1;16205:7;16214:6;16172:20;:49::i;:::-;16250:6;16234:12;;:22;;;;;;;:::i;:::-;;;;;;;;16427:6;16405:9;:18;16415:7;16405:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;16481:7;16460:37;;16477:1;16460:37;;;16490:6;16460:37;;;;;;:::i;:::-;;;;;;;;16510:48;16538:1;16542:7;16551:6;16510:19;:48::i;:::-;16018:548;;:::o;9079:100::-;9133:13;9166:5;9159:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9079:100;:::o;43805:87::-;2034:13;:11;:13::i;:::-;43879:5:::1;43863:13;;:21;;;;;;;;;;;;;;;;;;43805:87:::0;:::o;11580:242::-;11699:4;11721:13;11737:12;:10;:12::i;:::-;11721:28;;11760:32;11769:5;11776:7;11785:6;11760:8;:32::i;:::-;11810:4;11803:11;;;11580:242;;;;:::o;43035:116::-;2034:13;:11;:13::i;:::-;43138:5:::1;43114:12;:21;43127:7;43114:21;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43035:116:::0;;:::o;37372:51::-;;;:::o;37537:20::-;;;;;;;;;;;;;:::o;10208:108::-;10269:7;10296:12;;10289:19;;10208:108;:::o;38120:37::-;;;;:::o;38228:25::-;;;;;;;;;;;;;:::o;12402:295::-;12533:4;12550:15;12568:12;:10;:12::i;:::-;12550:30;;12591:38;12607:4;12613:7;12622:6;12591:15;:38::i;:::-;12640:27;12650:4;12656:2;12660:6;12640:9;:27::i;:::-;12685:4;12678:11;;;12402:295;;;;;:::o;37475:53::-;37521:6;37475:53;:::o;38032:45::-;;;;:::o;38187:32::-;;;;;;;;;;;;;:::o;10050:93::-;10108:5;10133:2;10126:9;;10050:93;:::o;43682:111::-;43740:4;43764:12;:21;43777:7;43764:21;;;;;;;;;;;;;;;;;;;;;;;;;43757:28;;43682:111;;;:::o;13106:270::-;13221:4;13243:13;13259:12;:10;:12::i;:::-;13243:28;;13282:64;13291:5;13298:7;13335:10;13307:25;13317:5;13324:7;13307:9;:25::i;:::-;:38;;;;:::i;:::-;13282:8;:64::i;:::-;13364:4;13357:11;;;13106:270;;;;:::o;37430:38::-;;;:::o;43548:126::-;43614:4;43638:19;:28;43658:7;43638:28;;;;;;;;;;;;;;;;;;;;;;;;;43631:35;;43548:126;;;:::o;37762:46::-;;;;:::o;38384:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;10379:177::-;10498:7;10530:9;:18;10540:7;10530:18;;;;;;;;;;;;;;;;10523:25;;10379:177;;;:::o;2455:103::-;2034:13;:11;:13::i;:::-;2520:30:::1;2547:1;2520:18;:30::i;:::-;2455:103::o:0;42533:354::-;2034:13;:11;:13::i;:::-;42787:19:::1;42769:15;:37;;;;42836:8;42817:16;:27;;;;42871:8;42855:13;;:24;;;;;;;;;;;;;;;;;;42533:354:::0;;;:::o;37999:24::-;;;;:::o;37566:30::-;;;;;;;;;;;;;:::o;37815:57::-;;;;:::o;37721:34::-;;;;:::o;2148:87::-;2194:7;2221:6;;;;;;;;;;;2214:13;;2148:87;:::o;9298:104::-;9354:13;9387:7;9380:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9298:104;:::o;13879:505::-;13999:4;14021:13;14037:12;:10;:12::i;:::-;14021:28;;14060:24;14087:25;14097:5;14104:7;14087:9;:25::i;:::-;14060:52;;14165:15;14145:16;:35;;14123:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;14281:60;14290:5;14297:7;14325:15;14306:16;:34;14281:8;:60::i;:::-;14372:4;14365:11;;;;13879:505;;;;:::o;38084:29::-;;;;:::o;10762:234::-;10877:4;10899:13;10915:12;:10;:12::i;:::-;10899:28;;10938;10948:5;10955:2;10959:6;10938:9;:28::i;:::-;10984:4;10977:11;;;10762:234;;;;:::o;37605:45::-;;;;:::o;38320:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;42895:132::-;2034:13;:11;:13::i;:::-;43011:8:::1;42980:19;:28;43000:7;42980:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;42895:132:::0;;:::o;41426:353::-;2034:13;:11;:13::i;:::-;41493:4:::1;41477:13;;:20;;;;;;;;;;;;;;;;;;41508:45;41522:4;41528:24;41546:4;41528:9;:24::i;:::-;41508:5;:45::i;:::-;41642:15;41625:14;:32;;;;41669:12;41694:10;41686:24;;41718:21;41686:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41668:76;;;41763:7;41755:16;;;::::0;::::1;;41466:313;41426:353::o:0;11059:201::-;11193:7;11225:11;:18;11237:5;11225:18;;;;;;;;;;;;;;;:27;11244:7;11225:27;;;;;;;;;;;;;;;;11218:34;;11059:201;;;;:::o;37658:55::-;;;;:::o;38262:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;2717:238::-;2034:13;:11;:13::i;:::-;2840:1:::1;2820:22;;:8;:22;;::::0;2798:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2919:28;2938:8;2919:18;:28::i;:::-;2717:238:::0;:::o;43161:183::-;2034:13;:11;:13::i;:::-;43217:12:::1;43262:10;43254:24;;43286:21;43254:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43240:96;;;;;43206:138;43161:183::o:0;19785:125::-;;;;:::o;20514:124::-;;;;:::o;2313:132::-;2388:12;:10;:12::i;:::-;2377:23;;:7;:5;:7::i;:::-;:23;;;2369:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2313:132::o;693:98::-;746:7;773:10;766:17;;693:98;:::o;18012:380::-;18165:1;18148:19;;:5;:19;;;18140:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18246:1;18227:21;;:7;:21;;;18219:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18330:6;18300:11;:18;18312:5;18300:18;;;;;;;;;;;;;;;:27;18319:7;18300:27;;;;;;;;;;;;;;;:36;;;;18368:7;18352:32;;18361:5;18352:32;;;18377:6;18352:32;;;;;;:::i;:::-;;;;;;;;18012:380;;;:::o;18683:502::-;18818:24;18845:25;18855:5;18862:7;18845:9;:25::i;:::-;18818:52;;18905:17;18885:16;:37;18881:297;;18985:6;18965:16;:26;;18939:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;19100:51;19109:5;19116:7;19144:6;19125:16;:25;19100:8;:51::i;:::-;18881:297;18807:378;18683:502;;;:::o;43900:1229::-;44048:1;44032:18;;:4;:18;;;44024:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44125:1;44111:16;;:2;:16;;;44103:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;44185:19;:25;44205:4;44185:25;;;;;;;;;;;;;;;;;;;;;;;;;44184:26;:54;;;;;44215:19;:23;44235:2;44215:23;;;;;;;;;;;;;;;;;;;;;;;;;44214:24;44184:54;44180:121;;;44263:13;;;;;;;;;;;44255:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;44180:121;44327:1;44317:6;:11;44313:93;;44345:28;44361:4;44367:2;44371:1;44345:15;:28::i;:::-;44388:7;;44313:93;44422:12;:18;44435:4;44422:18;;;;;;;;;;;;;;;;;;;;;;;;;44418:100;;;44457:28;44473:4;44479:2;44483:1;44457:15;:28::i;:::-;44500:7;;44418:100;44576:8;;;;;;;;;;;44575:9;:58;;;;;44602:25;:31;44628:4;44602:31;;;;;;;;;;;;;;;;;;;;;;;;;44601:32;44575:58;:101;;;;;44651:19;:25;44671:4;44651:25;;;;;;;;;;;;;;;;;;;;;;;;;44650:26;44575:101;:142;;;;;44694:19;:23;44714:2;44694:23;;;;;;;;;;;;;;;;;;;;;;;;;44693:24;44575:142;44530:546;;;44755:4;44744:8;;:15;;;;;;;;;;;;;;;;;;44780:25;:29;44806:2;44780:29;;;;;;;;;;;;;;;;;;;;;;;;;:63;;;;;44830:13;;;;;;;;;;;44780:63;:135;;;;;44900:15;;44883:14;;:32;;;;:::i;:::-;44864:15;:51;;44780:135;44776:230;;;44957:29;:27;:29::i;:::-;;44776:230;45059:5;45048:8;;:16;;;;;;;;;;;;;;;;;;44530:546;45088:33;45104:4;45110:2;45114:6;45088:15;:33::i;:::-;43900:1229;;;;:::o;3115:191::-;3189:16;3208:6;;;;;;;;;;;3189:25;;3234:8;3225:6;;:17;;;;;;;;;;;;;;;;;;3289:8;3258:40;;3279:8;3258:40;;;;;;;;;;;;3178:128;3115:191;:::o;16899:675::-;17002:1;16983:21;;:7;:21;;;16975:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17055:49;17076:7;17093:1;17097:6;17055:20;:49::i;:::-;17117:22;17142:9;:18;17152:7;17142:18;;;;;;;;;;;;;;;;17117:43;;17197:6;17179:14;:24;;17171:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17316:6;17299:14;:23;17278:9;:18;17288:7;17278:18;;;;;;;;;;;;;;;:44;;;;17433:6;17417:12;;:22;;;;;;;;;;;17494:1;17468:37;;17477:7;17468:37;;;17498:6;17468:37;;;;;;:::i;:::-;;;;;;;;17518:48;17538:7;17555:1;17559:6;17518:19;:48::i;:::-;16964:610;16899:675;;:::o;14854:877::-;15001:1;14985:18;;:4;:18;;;14977:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15078:1;15064:16;;:2;:16;;;15056:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15133:38;15154:4;15160:2;15164:6;15133:20;:38::i;:::-;15184:19;15206:9;:15;15216:4;15206:15;;;;;;;;;;;;;;;;15184:37;;15269:6;15254:11;:21;;15232:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;15409:6;15395:11;:20;15377:9;:15;15387:4;15377:15;;;;;;;;;;;;;;;:38;;;;15612:6;15595:9;:13;15605:2;15595:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15662:2;15647:26;;15656:4;15647:26;;;15666:6;15647:26;;;;;;:::i;:::-;;;;;;;;15686:37;15706:4;15712:2;15716:6;15686:19;:37::i;:::-;14966:765;14854:877;;;:::o;41787:738::-;41844:4;41878:15;41861:14;:32;;;;41946:28;41977:24;41987:13;41977:9;:24::i;:::-;41946:55;;42049:20;42072:77;42133:5;42072:42;42097:16;;42072:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;42049:100;;42267:1;42252:12;:16;42248:110;;;42285:61;42301:13;42324:6;42333:12;42285:15;:61::i;:::-;42248:110;42446:13;42431:34;;;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42483:12;;;;;;;;;;42513:4;42506:11;;;;41787:738;:::o;24360:98::-;24418:7;24449:1;24445;:5;;;;:::i;:::-;24438:12;;24360:98;;;;:::o;24759:::-;24817:7;24848:1;24844;:5;;;;:::i;:::-;24837:12;;24759:98;;;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:180::-;138:77;135:1;128:88;235:4;232:1;225:15;259:4;256:1;249:15;276:180;324:77;321:1;314:88;421:4;418:1;411:15;445:4;442:1;435:15;462:185;502:1;519:20;537:1;519:20;:::i;:::-;514:25;;553:20;571:1;553:20;:::i;:::-;548:25;;592:1;582:35;;597:18;;:::i;:::-;582:35;639:1;636;632:9;627:14;;462:185;;;;:::o;653:191::-;693:3;712:20;730:1;712:20;:::i;:::-;707:25;;746:20;764:1;746:20;:::i;:::-;741:25;;789:1;786;782:9;775:16;;810:3;807:1;804:10;801:36;;;817:18;;:::i;:::-;801:36;653:191;;;;:::o;850:410::-;890:7;913:20;931:1;913:20;:::i;:::-;908:25;;947:20;965:1;947:20;:::i;:::-;942:25;;1002:1;999;995:9;1024:30;1042:11;1024:30;:::i;:::-;1013:41;;1203:1;1194:7;1190:15;1187:1;1184:22;1164:1;1157:9;1137:83;1114:139;;1233:18;;:::i;:::-;1114:139;898:362;850:410;;;;:::o;1266:126::-;1303:7;1343:42;1336:5;1332:54;1321:65;;1266:126;;;:::o;1398:96::-;1435:7;1464:24;1482:5;1464:24;:::i;:::-;1453:35;;1398:96;;;:::o;1500:118::-;1587:24;1605:5;1587:24;:::i;:::-;1582:3;1575:37;1500:118;;:::o;1624:::-;1711:24;1729:5;1711:24;:::i;:::-;1706:3;1699:37;1624:118;;:::o;1748:85::-;1793:7;1822:5;1811:16;;1748:85;;;:::o;1839:60::-;1867:3;1888:5;1881:12;;1839:60;;;:::o;1905:158::-;1963:9;1996:61;2014:42;2023:32;2049:5;2023:32;:::i;:::-;2014:42;:::i;:::-;1996:61;:::i;:::-;1983:74;;1905:158;;;:::o;2069:147::-;2164:45;2203:5;2164:45;:::i;:::-;2159:3;2152:58;2069:147;;:::o;2222:807::-;2471:4;2509:3;2498:9;2494:19;2486:27;;2523:71;2591:1;2580:9;2576:17;2567:6;2523:71;:::i;:::-;2604:72;2672:2;2661:9;2657:18;2648:6;2604:72;:::i;:::-;2686:80;2762:2;2751:9;2747:18;2738:6;2686:80;:::i;:::-;2776;2852:2;2841:9;2837:18;2828:6;2776:80;:::i;:::-;2866:73;2934:3;2923:9;2919:19;2910:6;2866:73;:::i;:::-;2949;3017:3;3006:9;3002:19;2993:6;2949:73;:::i;:::-;2222:807;;;;;;;;;:::o;3116:117::-;3225:1;3222;3215:12;3362:122;3435:24;3453:5;3435:24;:::i;:::-;3428:5;3425:35;3415:63;;3474:1;3471;3464:12;3415:63;3362:122;:::o;3490:143::-;3547:5;3578:6;3572:13;3563:22;;3594:33;3621:5;3594:33;:::i;:::-;3490:143;;;;:::o;3639:663::-;3727:6;3735;3743;3792:2;3780:9;3771:7;3767:23;3763:32;3760:119;;;3798:79;;:::i;:::-;3760:119;3918:1;3943:64;3999:7;3990:6;3979:9;3975:22;3943:64;:::i;:::-;3933:74;;3889:128;4056:2;4082:64;4138:7;4129:6;4118:9;4114:22;4082:64;:::i;:::-;4072:74;;4027:129;4195:2;4221:64;4277:7;4268:6;4257:9;4253:22;4221:64;:::i;:::-;4211:74;;4166:129;3639:663;;;;;:::o;4308:147::-;4409:11;4446:3;4431:18;;4308:147;;;;:::o;4461:114::-;;:::o;4581:398::-;4740:3;4761:83;4842:1;4837:3;4761:83;:::i;:::-;4754:90;;4853:93;4942:3;4853:93;:::i;:::-;4971:1;4966:3;4962:11;4955:18;;4581:398;;;:::o;4985:379::-;5169:3;5191:147;5334:3;5191:147;:::i;:::-;5184:154;;5355:3;5348:10;;4985:379;;;:::o;5370:99::-;5422:6;5456:5;5450:12;5440:22;;5370:99;;;:::o;5475:169::-;5559:11;5593:6;5588:3;5581:19;5633:4;5628:3;5624:14;5609:29;;5475:169;;;;:::o;5650:139::-;5739:6;5734:3;5729;5723:23;5780:1;5771:6;5766:3;5762:16;5755:27;5650:139;;;:::o;5795:102::-;5836:6;5887:2;5883:7;5878:2;5871:5;5867:14;5863:28;5853:38;;5795:102;;;:::o;5903:377::-;5991:3;6019:39;6052:5;6019:39;:::i;:::-;6074:71;6138:6;6133:3;6074:71;:::i;:::-;6067:78;;6154:65;6212:6;6207:3;6200:4;6193:5;6189:16;6154:65;:::i;:::-;6244:29;6266:6;6244:29;:::i;:::-;6239:3;6235:39;6228:46;;5995:285;5903:377;;;;:::o;6286:313::-;6399:4;6437:2;6426:9;6422:18;6414:26;;6486:9;6480:4;6476:20;6472:1;6461:9;6457:17;6450:47;6514:78;6587:4;6578:6;6514:78;:::i;:::-;6506:86;;6286:313;;;;:::o;6605:90::-;6639:7;6682:5;6675:13;6668:21;6657:32;;6605:90;;;:::o;6701:116::-;6771:21;6786:5;6771:21;:::i;:::-;6764:5;6761:32;6751:60;;6807:1;6804;6797:12;6751:60;6701:116;:::o;6823:133::-;6866:5;6904:6;6891:20;6882:29;;6920:30;6944:5;6920:30;:::i;:::-;6823:133;;;;:::o;6962:323::-;7018:6;7067:2;7055:9;7046:7;7042:23;7038:32;7035:119;;;7073:79;;:::i;:::-;7035:119;7193:1;7218:50;7260:7;7251:6;7240:9;7236:22;7218:50;:::i;:::-;7208:60;;7164:114;6962:323;;;;:::o;7291:122::-;7364:24;7382:5;7364:24;:::i;:::-;7357:5;7354:35;7344:63;;7403:1;7400;7393:12;7344:63;7291:122;:::o;7419:139::-;7465:5;7503:6;7490:20;7481:29;;7519:33;7546:5;7519:33;:::i;:::-;7419:139;;;;:::o;7564:::-;7610:5;7648:6;7635:20;7626:29;;7664:33;7691:5;7664:33;:::i;:::-;7564:139;;;;:::o;7709:474::-;7777:6;7785;7834:2;7822:9;7813:7;7809:23;7805:32;7802:119;;;7840:79;;:::i;:::-;7802:119;7960:1;7985:53;8030:7;8021:6;8010:9;8006:22;7985:53;:::i;:::-;7975:63;;7931:117;8087:2;8113:53;8158:7;8149:6;8138:9;8134:22;8113:53;:::i;:::-;8103:63;;8058:118;7709:474;;;;;:::o;8189:109::-;8270:21;8285:5;8270:21;:::i;:::-;8265:3;8258:34;8189:109;;:::o;8304:210::-;8391:4;8429:2;8418:9;8414:18;8406:26;;8442:65;8504:1;8493:9;8489:17;8480:6;8442:65;:::i;:::-;8304:210;;;;:::o;8520:468::-;8585:6;8593;8642:2;8630:9;8621:7;8617:23;8613:32;8610:119;;;8648:79;;:::i;:::-;8610:119;8768:1;8793:53;8838:7;8829:6;8818:9;8814:22;8793:53;:::i;:::-;8783:63;;8739:117;8895:2;8921:50;8963:7;8954:6;8943:9;8939:22;8921:50;:::i;:::-;8911:60;;8866:115;8520:468;;;;;:::o;8994:142::-;9044:9;9077:53;9095:34;9104:24;9122:5;9104:24;:::i;:::-;9095:34;:::i;:::-;9077:53;:::i;:::-;9064:66;;8994:142;;;:::o;9142:126::-;9192:9;9225:37;9256:5;9225:37;:::i;:::-;9212:50;;9142:126;;;:::o;9274:153::-;9351:9;9384:37;9415:5;9384:37;:::i;:::-;9371:50;;9274:153;;;:::o;9433:185::-;9547:64;9605:5;9547:64;:::i;:::-;9542:3;9535:77;9433:185;;:::o;9624:276::-;9744:4;9782:2;9771:9;9767:18;9759:26;;9795:98;9890:1;9879:9;9875:17;9866:6;9795:98;:::i;:::-;9624:276;;;;:::o;9906:222::-;9999:4;10037:2;10026:9;10022:18;10014:26;;10050:71;10118:1;10107:9;10103:17;10094:6;10050:71;:::i;:::-;9906:222;;;;:::o;10134:619::-;10211:6;10219;10227;10276:2;10264:9;10255:7;10251:23;10247:32;10244:119;;;10282:79;;:::i;:::-;10244:119;10402:1;10427:53;10472:7;10463:6;10452:9;10448:22;10427:53;:::i;:::-;10417:63;;10373:117;10529:2;10555:53;10600:7;10591:6;10580:9;10576:22;10555:53;:::i;:::-;10545:63;;10500:118;10657:2;10683:53;10728:7;10719:6;10708:9;10704:22;10683:53;:::i;:::-;10673:63;;10628:118;10134:619;;;;;:::o;10759:222::-;10852:4;10890:2;10879:9;10875:18;10867:26;;10903:71;10971:1;10960:9;10956:17;10947:6;10903:71;:::i;:::-;10759:222;;;;:::o;10987:86::-;11022:7;11062:4;11055:5;11051:16;11040:27;;10987:86;;;:::o;11079:112::-;11162:22;11178:5;11162:22;:::i;:::-;11157:3;11150:35;11079:112;;:::o;11197:214::-;11286:4;11324:2;11313:9;11309:18;11301:26;;11337:67;11401:1;11390:9;11386:17;11377:6;11337:67;:::i;:::-;11197:214;;;;:::o;11417:329::-;11476:6;11525:2;11513:9;11504:7;11500:23;11496:32;11493:119;;;11531:79;;:::i;:::-;11493:119;11651:1;11676:53;11721:7;11712:6;11701:9;11697:22;11676:53;:::i;:::-;11666:63;;11622:117;11417:329;;;;:::o;11752:613::-;11826:6;11834;11842;11891:2;11879:9;11870:7;11866:23;11862:32;11859:119;;;11897:79;;:::i;:::-;11859:119;12017:1;12042:53;12087:7;12078:6;12067:9;12063:22;12042:53;:::i;:::-;12032:63;;11988:117;12144:2;12170:53;12215:7;12206:6;12195:9;12191:22;12170:53;:::i;:::-;12160:63;;12115:118;12272:2;12298:50;12340:7;12331:6;12320:9;12316:22;12298:50;:::i;:::-;12288:60;;12243:115;11752:613;;;;;:::o;12371:474::-;12439:6;12447;12496:2;12484:9;12475:7;12471:23;12467:32;12464:119;;;12502:79;;:::i;:::-;12464:119;12622:1;12647:53;12692:7;12683:6;12672:9;12668:22;12647:53;:::i;:::-;12637:63;;12593:117;12749:2;12775:53;12820:7;12811:6;12800:9;12796:22;12775:53;:::i;:::-;12765:63;;12720:118;12371:474;;;;;:::o;12851:181::-;12991:33;12987:1;12979:6;12975:14;12968:57;12851:181;:::o;13038:366::-;13180:3;13201:67;13265:2;13260:3;13201:67;:::i;:::-;13194:74;;13277:93;13366:3;13277:93;:::i;:::-;13395:2;13390:3;13386:12;13379:19;;13038:366;;;:::o;13410:419::-;13576:4;13614:2;13603:9;13599:18;13591:26;;13663:9;13657:4;13653:20;13649:1;13638:9;13634:17;13627:47;13691:131;13817:4;13691:131;:::i;:::-;13683:139;;13410:419;;;:::o;13835:180::-;13883:77;13880:1;13873:88;13980:4;13977:1;13970:15;14004:4;14001:1;13994:15;14021:320;14065:6;14102:1;14096:4;14092:12;14082:22;;14149:1;14143:4;14139:12;14170:18;14160:81;;14226:4;14218:6;14214:17;14204:27;;14160:81;14288:2;14280:6;14277:14;14257:18;14254:38;14251:84;;14307:18;;:::i;:::-;14251:84;14072:269;14021:320;;;:::o;14347:224::-;14487:34;14483:1;14475:6;14471:14;14464:58;14556:7;14551:2;14543:6;14539:15;14532:32;14347:224;:::o;14577:366::-;14719:3;14740:67;14804:2;14799:3;14740:67;:::i;:::-;14733:74;;14816:93;14905:3;14816:93;:::i;:::-;14934:2;14929:3;14925:12;14918:19;;14577:366;;;:::o;14949:419::-;15115:4;15153:2;15142:9;15138:18;15130:26;;15202:9;15196:4;15192:20;15188:1;15177:9;15173:17;15166:47;15230:131;15356:4;15230:131;:::i;:::-;15222:139;;14949:419;;;:::o;15374:225::-;15514:34;15510:1;15502:6;15498:14;15491:58;15583:8;15578:2;15570:6;15566:15;15559:33;15374:225;:::o;15605:366::-;15747:3;15768:67;15832:2;15827:3;15768:67;:::i;:::-;15761:74;;15844:93;15933:3;15844:93;:::i;:::-;15962:2;15957:3;15953:12;15946:19;;15605:366;;;:::o;15977:419::-;16143:4;16181:2;16170:9;16166:18;16158:26;;16230:9;16224:4;16220:20;16216:1;16205:9;16201:17;16194:47;16258:131;16384:4;16258:131;:::i;:::-;16250:139;;15977:419;;;:::o;16402:182::-;16542:34;16538:1;16530:6;16526:14;16519:58;16402:182;:::o;16590:366::-;16732:3;16753:67;16817:2;16812:3;16753:67;:::i;:::-;16746:74;;16829:93;16918:3;16829:93;:::i;:::-;16947:2;16942:3;16938:12;16931:19;;16590:366;;;:::o;16962:419::-;17128:4;17166:2;17155:9;17151:18;17143:26;;17215:9;17209:4;17205:20;17201:1;17190:9;17186:17;17179:47;17243:131;17369:4;17243:131;:::i;:::-;17235:139;;16962:419;;;:::o;17387:223::-;17527:34;17523:1;17515:6;17511:14;17504:58;17596:6;17591:2;17583:6;17579:15;17572:31;17387:223;:::o;17616:366::-;17758:3;17779:67;17843:2;17838:3;17779:67;:::i;:::-;17772:74;;17855:93;17944:3;17855:93;:::i;:::-;17973:2;17968:3;17964:12;17957:19;;17616:366;;;:::o;17988:419::-;18154:4;18192:2;18181:9;18177:18;18169:26;;18241:9;18235:4;18231:20;18227:1;18216:9;18212:17;18205:47;18269:131;18395:4;18269:131;:::i;:::-;18261:139;;17988:419;;;:::o;18413:221::-;18553:34;18549:1;18541:6;18537:14;18530:58;18622:4;18617:2;18609:6;18605:15;18598:29;18413:221;:::o;18640:366::-;18782:3;18803:67;18867:2;18862:3;18803:67;:::i;:::-;18796:74;;18879:93;18968:3;18879:93;:::i;:::-;18997:2;18992:3;18988:12;18981:19;;18640:366;;;:::o;19012:419::-;19178:4;19216:2;19205:9;19201:18;19193:26;;19265:9;19259:4;19255:20;19251:1;19240:9;19236:17;19229:47;19293:131;19419:4;19293:131;:::i;:::-;19285:139;;19012:419;;;:::o;19437:179::-;19577:31;19573:1;19565:6;19561:14;19554:55;19437:179;:::o;19622:366::-;19764:3;19785:67;19849:2;19844:3;19785:67;:::i;:::-;19778:74;;19861:93;19950:3;19861:93;:::i;:::-;19979:2;19974:3;19970:12;19963:19;;19622:366;;;:::o;19994:419::-;20160:4;20198:2;20187:9;20183:18;20175:26;;20247:9;20241:4;20237:20;20233:1;20222:9;20218:17;20211:47;20275:131;20401:4;20275:131;:::i;:::-;20267:139;;19994:419;;;:::o;20419:224::-;20559:34;20555:1;20547:6;20543:14;20536:58;20628:7;20623:2;20615:6;20611:15;20604:32;20419:224;:::o;20649:366::-;20791:3;20812:67;20876:2;20871:3;20812:67;:::i;:::-;20805:74;;20888:93;20977:3;20888:93;:::i;:::-;21006:2;21001:3;20997:12;20990:19;;20649:366;;;:::o;21021:419::-;21187:4;21225:2;21214:9;21210:18;21202:26;;21274:9;21268:4;21264:20;21260:1;21249:9;21245:17;21238:47;21302:131;21428:4;21302:131;:::i;:::-;21294:139;;21021:419;;;:::o;21446:222::-;21586:34;21582:1;21574:6;21570:14;21563:58;21655:5;21650:2;21642:6;21638:15;21631:30;21446:222;:::o;21674:366::-;21816:3;21837:67;21901:2;21896:3;21837:67;:::i;:::-;21830:74;;21913:93;22002:3;21913:93;:::i;:::-;22031:2;22026:3;22022:12;22015:19;;21674:366;;;:::o;22046:419::-;22212:4;22250:2;22239:9;22235:18;22227:26;;22299:9;22293:4;22289:20;22285:1;22274:9;22270:17;22263:47;22327:131;22453:4;22327:131;:::i;:::-;22319:139;;22046:419;;;:::o;22471:158::-;22611:10;22607:1;22599:6;22595:14;22588:34;22471:158;:::o;22635:365::-;22777:3;22798:66;22862:1;22857:3;22798:66;:::i;:::-;22791:73;;22873:93;22962:3;22873:93;:::i;:::-;22991:2;22986:3;22982:12;22975:19;;22635:365;;;:::o;23006:419::-;23172:4;23210:2;23199:9;23195:18;23187:26;;23259:9;23253:4;23249:20;23245:1;23234:9;23230:17;23223:47;23287:131;23413:4;23287:131;:::i;:::-;23279:139;;23006:419;;;:::o;23431:220::-;23571:34;23567:1;23559:6;23555:14;23548:58;23640:3;23635:2;23627:6;23623:15;23616:28;23431:220;:::o;23657:366::-;23799:3;23820:67;23884:2;23879:3;23820:67;:::i;:::-;23813:74;;23896:93;23985:3;23896:93;:::i;:::-;24014:2;24009:3;24005:12;23998:19;;23657:366;;;:::o;24029:419::-;24195:4;24233:2;24222:9;24218:18;24210:26;;24282:9;24276:4;24272:20;24268:1;24257:9;24253:17;24246:47;24310:131;24436:4;24310:131;:::i;:::-;24302:139;;24029:419;;;:::o;24454:221::-;24594:34;24590:1;24582:6;24578:14;24571:58;24663:4;24658:2;24650:6;24646:15;24639:29;24454:221;:::o;24681:366::-;24823:3;24844:67;24908:2;24903:3;24844:67;:::i;:::-;24837:74;;24920:93;25009:3;24920:93;:::i;:::-;25038:2;25033:3;25029:12;25022:19;;24681:366;;;:::o;25053:419::-;25219:4;25257:2;25246:9;25242:18;25234:26;;25306:9;25300:4;25296:20;25292:1;25281:9;25277:17;25270:47;25334:131;25460:4;25334:131;:::i;:::-;25326:139;;25053:419;;;:::o;25478:225::-;25618:34;25614:1;25606:6;25602:14;25595:58;25687:8;25682:2;25674:6;25670:15;25663:33;25478:225;:::o;25709:366::-;25851:3;25872:67;25936:2;25931:3;25872:67;:::i;:::-;25865:74;;25948:93;26037:3;25948:93;:::i;:::-;26066:2;26061:3;26057:12;26050:19;;25709:366;;;:::o;26081:419::-;26247:4;26285:2;26274:9;26270:18;26262:26;;26334:9;26328:4;26324:20;26320:1;26309:9;26305:17;26298:47;26362:131;26488:4;26362:131;:::i;:::-;26354:139;;26081:419;;;:::o

Swarm Source

ipfs://867e98436eadbeb77ea5a81235e4a755f3a1d9007282de927050416872e4b392
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.