ETH Price: $2,625.39 (+1.81%)

Token

Zyzz Coin (ZYZZ)
 

Overview

Max Total Supply

100,000,000,000 ZYZZ

Holders

128

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
15,338,983.835370194856762376 ZYZZ

Value
$0.00
0xb57cfec5d273181fb835306bde21ded39d6e386a
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:
Zyzz

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-01
*/

// SPDX-License-Identifier: UNLICENSED

// File: @openzeppelin/contracts/utils/Context.sol

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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/access/Ownable.sol

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.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");
    }

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

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.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);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol

// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.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].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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)

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

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

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

interface IUniswapV2Factory {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);
}

contract Zyzz is IERC20, Ownable {
    using SafeMath for uint256;

    uint256 private _totalSupply;

    string private _name = "Zyzz Coin";
    string private _symbol = "ZYZZ";
    uint8 private _decimals = 18;

    uint256 public maxFeeSwap;

    mapping(address => uint256) private _balances;

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

    mapping(address => bool) public _feeExcluded;

    uint256 public _feeRewardPct;

    address public _feeRewardAddress;

    address public _router;

    mapping(address => bool) public isBlackListed;

    uint256 public startBlock;
    address public firstPair;

    
    bool inProcessFees;
    bool swapFeesEnabled = true;

    constructor(uint256 feeRewardPct, address feeRewardAddress, address uniRouter, address uniPairFactory) {
        require(uniRouter != address(0), "uniRouter can't be the 0 address");
        require(uniPairFactory != address(0), "uniPairFactory can't be the 0 address");

        uint256 mintAmount = 100000000000 * 10**decimals();
        _mint(msg.sender, mintAmount);
        maxFeeSwap = mintAmount.div(200);

        setFeeExcluded(_msgSender(), true);
        setFeeExcluded(address(this), true);

        setFees(feeRewardPct, feeRewardAddress);

        _router = uniRouter;

        address weth = IUniswapV2Router02(uniRouter).WETH();
        firstPair = IUniswapV2Factory(uniPairFactory).createPair(weth, address(this));
    }

    function setRouter(address r) public onlyOwner {
        _router = r;
    }

    function setFees(uint256 feeRewardPct, address feeRewardAddress)
        public
        onlyOwner
    {
        require(feeRewardPct <= 500, "Fees cannot be more than 5%");
        require(
            feeRewardAddress != address(0),
            "Fee reward address must not be zero address"
        );

        _feeRewardPct = feeRewardPct;
        _feeRewardAddress = feeRewardAddress;
    }

    function setFeeExcluded(address a, bool excluded) public onlyOwner {
        _feeExcluded[a] = excluded;
    }

    function setSwapFeesEnabled(bool newState) external onlyOwner {
        swapFeesEnabled = newState;
    }

    function setMaxFeeSwap(uint256 newMaxFeeSwap) external onlyOwner {
        uint256 maxLimit = _totalSupply.div(100); //shouldn't be more than 1%
        require(newMaxFeeSwap <= maxLimit, "Max swap can't go over limit");
        maxFeeSwap = newMaxFeeSwap;
    }

    modifier lockTheSwap() {
        inProcessFees = true;
        _;
        inProcessFees = false;
    }

    function processFees() internal lockTheSwap {
        uint256 feeRewardAmount = _balances[address(this)];
        if(feeRewardAmount > 0) {
            if(feeRewardAmount > maxFeeSwap) {
                feeRewardAmount = maxFeeSwap;
            }
            IUniswapV2Router02 r = IUniswapV2Router02(_router);

            address[] memory path = new address[](2);
            path[0] = address(this);
            path[1] = r.WETH();

            _approve(address(this), _router, feeRewardAmount);

            r.swapExactTokensForETHSupportingFeeOnTransferTokens(
                feeRewardAmount,
                0,
                path,
                _feeRewardAddress,
                block.timestamp
            );
        }
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(!isBlackListed[sender], "Sender is blacklisted");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );

        if (
            startBlock > 0 &&
            block.number < startBlock + 5 &&
            sender == firstPair
        ) {
            isBlackListed[recipient] = true;
        } else if (
            startBlock == 0 &&
            sender != firstPair &&
            recipient == firstPair &&
            amount > 0
        ) {
            startBlock = block.number;
        }

        if (!_feeExcluded[sender]) {
            uint256 feeRewardAmount = 0;

            if (_feeRewardPct > 0 && _feeRewardAddress != address(0)) {
                feeRewardAmount = amount.mul(_feeRewardPct).div(10000);

                if (_router != address(0)) {
                    _balances[address(this)] = _balances[address(this)].add(feeRewardAmount);
                    emit Transfer(sender, address(this), feeRewardAmount);

                    if (msg.sender != firstPair && !inProcessFees && swapFeesEnabled) {
                        processFees();
                    }

                } else {
                    _balances[_feeRewardAddress] = _balances[_feeRewardAddress]
                        .add(feeRewardAmount);
                    emit Transfer(sender, _feeRewardAddress, feeRewardAmount);
                }
            }

            amount = amount.sub(feeRewardAmount);
        }

        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(addedValue)
        );
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

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

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    function addBlackList(address _evilUser) public onlyOwner {
        isBlackListed[_evilUser] = true;
    }

    function removeBlackList(address _clearedUser) public onlyOwner {
        isBlackListed[_clearedUser] = false;
    }

    function withdrawEther(address payable to, uint256 amount) public onlyOwner {
        (bool sent,) = to.call{value: amount}("");
        require(sent, "Failed to send Ether");
    }

    function rescueTokens(address token, address to, uint256 amount) public onlyOwner {
        IERC20 wToken = IERC20(token);
        wToken.transfer(to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"feeRewardPct","type":"uint256"},{"internalType":"address","name":"feeRewardAddress","type":"address"},{"internalType":"address","name":"uniRouter","type":"address"},{"internalType":"address","name":"uniPairFactory","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_feeExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feeRewardAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feeRewardPct","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_evilUser","type":"address"}],"name":"addBlackList","outputs":[],"stateMutability":"nonpayable","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"firstPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"","type":"address"}],"name":"isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFeeSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_clearedUser","type":"address"}],"name":"removeBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setFeeExcluded","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"feeRewardPct","type":"uint256"},{"internalType":"address","name":"feeRewardAddress","type":"address"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxFeeSwap","type":"uint256"}],"name":"setMaxFeeSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"r","type":"address"}],"name":"setRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setSwapFeesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600981526020017f5a797a7a20436f696e0000000000000000000000000000000000000000000000815250600290816200004a919062000bb1565b506040518060400160405280600481526020017f5a595a5a000000000000000000000000000000000000000000000000000000008152506003908162000091919062000bb1565b506012600460006101000a81548160ff021916908360ff1602179055506001600e60156101000a81548160ff021916908315150217905550348015620000d657600080fd5b5060405162004378380380620043788339818101604052810190620000fc919062000d33565b6200011c620001106200043460201b60201c565b6200043c60201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200018e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001859062000e06565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000200576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001f79062000e9e565b60405180910390fd5b6000620002126200050060201b60201c565b600a62000220919062001050565b64174876e800620002329190620010a1565b90506200024633826200051760201b60201c565b6200026160c882620006c760201b620010911790919060201c565b600581905550620002896200027b6200043460201b60201c565b6001620006df60201b60201c565b6200029c306001620006df60201b60201c565b620002ae85856200074a60201b60201c565b82600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200033d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003639190620010ec565b90508273ffffffffffffffffffffffffffffffffffffffff1663c9c6539682306040518363ffffffff1660e01b8152600401620003a29291906200112f565b6020604051808303816000875af1158015620003c2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003e89190620010ec565b600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050506200141a565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600460009054906101000a900460ff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000589576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200058090620011ac565b60405180910390fd5b6200059d600083836200086060201b60201c565b620005b9816001546200086560201b620010a71790919060201c565b6001819055506200061881600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200086560201b620010a71790919060201c565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620006bb9190620011df565b60405180910390a35050565b60008183620006d791906200122b565b905092915050565b620006ef6200087d60201b60201c565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6200075a6200087d60201b60201c565b6101f4821115620007a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200079990620012b3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000814576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200080b906200134b565b60405180910390fd5b8160098190555080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b505050565b600081836200087591906200136d565b905092915050565b6200088d6200043460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008b36200090e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200090c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200090390620013f8565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009b957607f821691505b602082108103620009cf57620009ce62000971565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a397fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620009fa565b62000a458683620009fa565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000a9262000a8c62000a868462000a5d565b62000a67565b62000a5d565b9050919050565b6000819050919050565b62000aae8362000a71565b62000ac662000abd8262000a99565b84845462000a07565b825550505050565b600090565b62000add62000ace565b62000aea81848462000aa3565b505050565b5b8181101562000b125762000b0660008262000ad3565b60018101905062000af0565b5050565b601f82111562000b615762000b2b81620009d5565b62000b3684620009ea565b8101602085101562000b46578190505b62000b5e62000b5585620009ea565b83018262000aef565b50505b505050565b600082821c905092915050565b600062000b866000198460080262000b66565b1980831691505092915050565b600062000ba1838362000b73565b9150826002028217905092915050565b62000bbc8262000937565b67ffffffffffffffff81111562000bd85762000bd762000942565b5b62000be48254620009a0565b62000bf182828562000b16565b600060209050601f83116001811462000c29576000841562000c14578287015190505b62000c20858262000b93565b86555062000c90565b601f19841662000c3986620009d5565b60005b8281101562000c635784890151825560018201915060208501945060208101905062000c3c565b8683101562000c83578489015162000c7f601f89168262000b73565b8355505b6001600288020188555050505b505050505050565b600080fd5b62000ca88162000a5d565b811462000cb457600080fd5b50565b60008151905062000cc88162000c9d565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000cfb8262000cce565b9050919050565b62000d0d8162000cee565b811462000d1957600080fd5b50565b60008151905062000d2d8162000d02565b92915050565b6000806000806080858703121562000d505762000d4f62000c98565b5b600062000d608782880162000cb7565b945050602062000d738782880162000d1c565b935050604062000d868782880162000d1c565b925050606062000d998782880162000d1c565b91505092959194509250565b600082825260208201905092915050565b7f756e69526f757465722063616e27742062652074686520302061646472657373600082015250565b600062000dee60208362000da5565b915062000dfb8262000db6565b602082019050919050565b6000602082019050818103600083015262000e218162000ddf565b9050919050565b7f756e6950616972466163746f72792063616e277420626520746865203020616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600062000e8660258362000da5565b915062000e938262000e28565b604082019050919050565b6000602082019050818103600083015262000eb98162000e77565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000f4e5780860481111562000f265762000f2562000ec0565b5b600185161562000f365780820291505b808102905062000f468562000eef565b945062000f06565b94509492505050565b60008262000f6957600190506200103c565b8162000f7957600090506200103c565b816001811462000f92576002811462000f9d5762000fd3565b60019150506200103c565b60ff84111562000fb25762000fb162000ec0565b5b8360020a91508482111562000fcc5762000fcb62000ec0565b5b506200103c565b5060208310610133831016604e8410600b84101617156200100d5782820a90508381111562001007576200100662000ec0565b5b6200103c565b6200101c848484600162000efc565b9250905081840481111562001036576200103562000ec0565b5b81810290505b9392505050565b600060ff82169050919050565b60006200105d8262000a5d565b91506200106a8362001043565b9250620010997fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000f57565b905092915050565b6000620010ae8262000a5d565b9150620010bb8362000a5d565b9250828202620010cb8162000a5d565b91508282048414831517620010e557620010e462000ec0565b5b5092915050565b60006020828403121562001105576200110462000c98565b5b6000620011158482850162000d1c565b91505092915050565b620011298162000cee565b82525050565b60006040820190506200114660008301856200111e565b6200115560208301846200111e565b9392505050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001194601f8362000da5565b9150620011a1826200115c565b602082019050919050565b60006020820190508181036000830152620011c78162001185565b9050919050565b620011d98162000a5d565b82525050565b6000602082019050620011f66000830184620011ce565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620012388262000a5d565b9150620012458362000a5d565b925082620012585762001257620011fc565b5b828204905092915050565b7f466565732063616e6e6f74206265206d6f7265207468616e2035250000000000600082015250565b60006200129b601b8362000da5565b9150620012a88262001263565b602082019050919050565b60006020820190508181036000830152620012ce816200128c565b9050919050565b7f466565207265776172642061646472657373206d757374206e6f74206265207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600062001333602b8362000da5565b91506200134082620012d5565b604082019050919050565b60006020820190508181036000830152620013668162001324565b9050919050565b60006200137a8262000a5d565b9150620013878362000a5d565b9250828201905080821115620013a257620013a162000ec0565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620013e060208362000da5565b9150620013ed82620013a8565b602082019050919050565b600060208201905081810360008301526200141381620013d1565b9050919050565b612f4e806200142a6000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c806371088c6d1161010f578063cea9d26f116100a2578063e4997dc511610071578063e4997dc514610592578063edae876f146105ae578063f2fde38b146105cc578063ffc877d8146105e8576101e5565b8063cea9d26f146104fa578063dd62ed3e14610516578063df1e755314610546578063e47d606014610562576101e5565b8063a457c2d7116100de578063a457c2d714610462578063a9059cbb14610492578063c0d78655146104c2578063c9f1f47f146104de576101e5565b806371088c6d146103ec578063715018a61461041c5780638da5cb5b1461042657806395d89b4114610444576101e5565b80632ecfeb2c1161018757806348cd4cb11161015657806348cd4cb114610364578063522f681514610382578063688a09421461039e57806370a08231146103bc576101e5565b80632ecfeb2c146102de578063313ce567146102fa57806339509351146103185780633d162cdc14610348576101e5565b806318160ddd116101c357806318160ddd14610254578063199848cd1461027257806323b872dd146102905780632e3f418c146102c0576101e5565b806306fdde03146101ea578063095ea7b3146102085780630ecb93c014610238575b600080fd5b6101f2610606565b6040516101ff91906120d6565b60405180910390f35b610222600480360381019061021d9190612191565b610698565b60405161022f91906121ec565b60405180910390f35b610252600480360381019061024d9190612207565b6106b6565b005b61025c610719565b6040516102699190612243565b60405180910390f35b61027a610723565b604051610287919061226d565b60405180910390f35b6102aa60048036038101906102a59190612288565b610749565b6040516102b791906121ec565b60405180910390f35b6102c8610822565b6040516102d59190612243565b60405180910390f35b6102f860048036038101906102f39190612307565b610828565b005b61030261084d565b60405161030f9190612350565b60405180910390f35b610332600480360381019061032d9190612191565b610864565b60405161033f91906121ec565b60405180910390f35b610362600480360381019061035d919061236b565b610917565b005b61036c610a1f565b6040516103799190612243565b60405180910390f35b61039c600480360381019061039791906123e9565b610a25565b005b6103a6610ade565b6040516103b39190612243565b60405180910390f35b6103d660048036038101906103d19190612207565b610ae4565b6040516103e39190612243565b60405180910390f35b61040660048036038101906104019190612207565b610b2d565b60405161041391906121ec565b60405180910390f35b610424610b4d565b005b61042e610b61565b60405161043b919061226d565b60405180910390f35b61044c610b8a565b60405161045991906120d6565b60405180910390f35b61047c60048036038101906104779190612191565b610c1c565b60405161048991906121ec565b60405180910390f35b6104ac60048036038101906104a79190612191565b610ce9565b6040516104b991906121ec565b60405180910390f35b6104dc60048036038101906104d79190612207565b610d07565b005b6104f860048036038101906104f39190612429565b610d53565b005b610514600480360381019061050f9190612288565b610db6565b005b610530600480360381019061052b9190612469565b610e48565b60405161053d9190612243565b60405180910390f35b610560600480360381019061055b91906124a9565b610ecf565b005b61057c60048036038101906105779190612207565b610f3f565b60405161058991906121ec565b60405180910390f35b6105ac60048036038101906105a79190612207565b610f5f565b005b6105b6610fc2565b6040516105c3919061226d565b60405180910390f35b6105e660048036038101906105e19190612207565b610fe8565b005b6105f061106b565b6040516105fd919061226d565b60405180910390f35b60606002805461061590612505565b80601f016020809104026020016040519081016040528092919081815260200182805461064190612505565b801561068e5780601f106106635761010080835404028352916020019161068e565b820191906000526020600020905b81548152906001019060200180831161067157829003601f168201915b5050505050905090565b60006106ac6106a56110bd565b84846110c5565b6001905092915050565b6106be61128e565b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600154905090565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061075684848461130c565b610817846107626110bd565b61081285604051806060016040528060288152602001612ecc60289139600760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107c86110bd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c1f9092919063ffffffff16565b6110c5565b600190509392505050565b60055481565b61083061128e565b80600e60156101000a81548160ff02191690831515021790555050565b6000600460009054906101000a900460ff16905090565b600061090d6108716110bd565b8461090885600760006108826110bd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110a790919063ffffffff16565b6110c5565b6001905092915050565b61091f61128e565b6101f4821115610964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095b90612582565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ca90612614565b60405180910390fd5b8160098190555080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600d5481565b610a2d61128e565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051610a5390612665565b60006040518083038185875af1925050503d8060008114610a90576040519150601f19603f3d011682016040523d82523d6000602084013e610a95565b606091505b5050905080610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad0906126c6565b60405180910390fd5b505050565b60095481565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60086020528060005260406000206000915054906101000a900460ff1681565b610b5561128e565b610b5f6000611c74565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610b9990612505565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc590612505565b8015610c125780601f10610be757610100808354040283529160200191610c12565b820191906000526020600020905b815481529060010190602001808311610bf557829003601f168201915b5050505050905090565b6000610cdf610c296110bd565b84610cda85604051806060016040528060258152602001612ef46025913960076000610c536110bd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c1f9092919063ffffffff16565b6110c5565b6001905092915050565b6000610cfd610cf66110bd565b848461130c565b6001905092915050565b610d0f61128e565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d5b61128e565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610dbe61128e565b60008390508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401610dfe9291906126e6565b6020604051808303816000875af1158015610e1d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e419190612724565b5050505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ed761128e565b6000610eef606460015461109190919063ffffffff16565b905080821115610f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2b9061279d565b60405180910390fd5b816005819055505050565b600c6020528060005260406000206000915054906101000a900460ff1681565b610f6761128e565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610ff061128e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361105f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110569061282f565b60405180910390fd5b61106881611c74565b50565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000818361109f91906128ad565b905092915050565b600081836110b591906128de565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b90612984565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119a90612a16565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112819190612243565b60405180910390a3505050565b6112966110bd565b73ffffffffffffffffffffffffffffffffffffffff166112b4610b61565b73ffffffffffffffffffffffffffffffffffffffff161461130a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130190612a82565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361137b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137290612b14565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e190612ba6565b60405180910390fd5b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146e90612c12565b60405180910390fd5b611482838383611d38565b6114ee81604051806060016040528060268152602001612ea660269139600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c1f9092919063ffffffff16565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600d5411801561155057506005600d5461154d91906128de565b43105b80156115a95750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561160b576001600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506116de565b6000600d5414801561166b5750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156116c45750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156116d05750600081115b156116dd5743600d819055505b5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611b20576000806009541180156117915750600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15611b09576117bf6127106117b160095485611d3d90919063ffffffff16565b61109190919063ffffffff16565b9050600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119a75761186981600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110a790919063ffffffff16565b600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516119099190612243565b60405180910390a3600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415801561197c5750600e60149054906101000a900460ff16155b80156119945750600e60159054906101000a900460ff165b156119a2576119a1611d53565b5b611b08565b611a1b8160066000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110a790919063ffffffff16565b60066000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611aff9190612243565b60405180910390a35b5b611b1c818361203090919063ffffffff16565b9150505b611b7281600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110a790919063ffffffff16565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c129190612243565b60405180910390a3505050565b6000838311158290611c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5e91906120d6565b60405180910390fd5b5082840390509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b60008183611d4b9190612c32565b905092915050565b6001600e60146101000a81548160ff0219169083151502179055506000600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600081111561201257600554811115611dcb5760055490505b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600267ffffffffffffffff811115611e0f57611e0e612c74565b5b604051908082528060200260200182016040528015611e3d5781602001602082028036833780820191505090505b5090503081600081518110611e5557611e54612ca3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611eda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611efe9190612ce7565b81600181518110611f1257611f11612ca3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611f7930600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856110c5565b8173ffffffffffffffffffffffffffffffffffffffff1663791ac94784600084600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401611fdd959493929190612e17565b600060405180830381600087803b158015611ff757600080fd5b505af115801561200b573d6000803e3d6000fd5b5050505050505b506000600e60146101000a81548160ff021916908315150217905550565b6000818361203e9190612e71565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612080578082015181840152602081019050612065565b60008484015250505050565b6000601f19601f8301169050919050565b60006120a882612046565b6120b28185612051565b93506120c2818560208601612062565b6120cb8161208c565b840191505092915050565b600060208201905081810360008301526120f0818461209d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612128826120fd565b9050919050565b6121388161211d565b811461214357600080fd5b50565b6000813590506121558161212f565b92915050565b6000819050919050565b61216e8161215b565b811461217957600080fd5b50565b60008135905061218b81612165565b92915050565b600080604083850312156121a8576121a76120f8565b5b60006121b685828601612146565b92505060206121c78582860161217c565b9150509250929050565b60008115159050919050565b6121e6816121d1565b82525050565b600060208201905061220160008301846121dd565b92915050565b60006020828403121561221d5761221c6120f8565b5b600061222b84828501612146565b91505092915050565b61223d8161215b565b82525050565b60006020820190506122586000830184612234565b92915050565b6122678161211d565b82525050565b6000602082019050612282600083018461225e565b92915050565b6000806000606084860312156122a1576122a06120f8565b5b60006122af86828701612146565b93505060206122c086828701612146565b92505060406122d18682870161217c565b9150509250925092565b6122e4816121d1565b81146122ef57600080fd5b50565b600081359050612301816122db565b92915050565b60006020828403121561231d5761231c6120f8565b5b600061232b848285016122f2565b91505092915050565b600060ff82169050919050565b61234a81612334565b82525050565b60006020820190506123656000830184612341565b92915050565b60008060408385031215612382576123816120f8565b5b60006123908582860161217c565b92505060206123a185828601612146565b9150509250929050565b60006123b6826120fd565b9050919050565b6123c6816123ab565b81146123d157600080fd5b50565b6000813590506123e3816123bd565b92915050565b60008060408385031215612400576123ff6120f8565b5b600061240e858286016123d4565b925050602061241f8582860161217c565b9150509250929050565b600080604083850312156124405761243f6120f8565b5b600061244e85828601612146565b925050602061245f858286016122f2565b9150509250929050565b600080604083850312156124805761247f6120f8565b5b600061248e85828601612146565b925050602061249f85828601612146565b9150509250929050565b6000602082840312156124bf576124be6120f8565b5b60006124cd8482850161217c565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061251d57607f821691505b6020821081036125305761252f6124d6565b5b50919050565b7f466565732063616e6e6f74206265206d6f7265207468616e2035250000000000600082015250565b600061256c601b83612051565b915061257782612536565b602082019050919050565b6000602082019050818103600083015261259b8161255f565b9050919050565b7f466565207265776172642061646472657373206d757374206e6f74206265207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006125fe602b83612051565b9150612609826125a2565b604082019050919050565b6000602082019050818103600083015261262d816125f1565b9050919050565b600081905092915050565b50565b600061264f600083612634565b915061265a8261263f565b600082019050919050565b600061267082612642565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b60006126b0601483612051565b91506126bb8261267a565b602082019050919050565b600060208201905081810360008301526126df816126a3565b9050919050565b60006040820190506126fb600083018561225e565b6127086020830184612234565b9392505050565b60008151905061271e816122db565b92915050565b60006020828403121561273a576127396120f8565b5b60006127488482850161270f565b91505092915050565b7f4d617820737761702063616e277420676f206f766572206c696d697400000000600082015250565b6000612787601c83612051565b915061279282612751565b602082019050919050565b600060208201905081810360008301526127b68161277a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612819602683612051565b9150612824826127bd565b604082019050919050565b600060208201905081810360008301526128488161280c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006128b88261215b565b91506128c38361215b565b9250826128d3576128d261284f565b5b828204905092915050565b60006128e98261215b565b91506128f48361215b565b925082820190508082111561290c5761290b61287e565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061296e602483612051565b915061297982612912565b604082019050919050565b6000602082019050818103600083015261299d81612961565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a00602283612051565b9150612a0b826129a4565b604082019050919050565b60006020820190508181036000830152612a2f816129f3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612a6c602083612051565b9150612a7782612a36565b602082019050919050565b60006020820190508181036000830152612a9b81612a5f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612afe602583612051565b9150612b0982612aa2565b604082019050919050565b60006020820190508181036000830152612b2d81612af1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612b90602383612051565b9150612b9b82612b34565b604082019050919050565b60006020820190508181036000830152612bbf81612b83565b9050919050565b7f53656e64657220697320626c61636b6c69737465640000000000000000000000600082015250565b6000612bfc601583612051565b9150612c0782612bc6565b602082019050919050565b60006020820190508181036000830152612c2b81612bef565b9050919050565b6000612c3d8261215b565b9150612c488361215b565b9250828202612c568161215b565b91508282048414831517612c6d57612c6c61287e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612ce18161212f565b92915050565b600060208284031215612cfd57612cfc6120f8565b5b6000612d0b84828501612cd2565b91505092915050565b6000819050919050565b6000819050919050565b6000612d43612d3e612d3984612d14565b612d1e565b61215b565b9050919050565b612d5381612d28565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612d8e8161211d565b82525050565b6000612da08383612d85565b60208301905092915050565b6000602082019050919050565b6000612dc482612d59565b612dce8185612d64565b9350612dd983612d75565b8060005b83811015612e0a578151612df18882612d94565b9750612dfc83612dac565b925050600181019050612ddd565b5085935050505092915050565b600060a082019050612e2c6000830188612234565b612e396020830187612d4a565b8181036040830152612e4b8186612db9565b9050612e5a606083018561225e565b612e676080830184612234565b9695505050505050565b6000612e7c8261215b565b9150612e878361215b565b9250828203905081811115612e9f57612e9e61287e565b5b9291505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220703a3f9f6cf8689a745d6488d2fd77f2a85244cd74b6283305741e40357438eb64736f6c6343000812003300000000000000000000000000000000000000000000000000000000000001f400000000000000000000000009150e98c96c0b3f59b796b722cc26f784a7c7640000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c806371088c6d1161010f578063cea9d26f116100a2578063e4997dc511610071578063e4997dc514610592578063edae876f146105ae578063f2fde38b146105cc578063ffc877d8146105e8576101e5565b8063cea9d26f146104fa578063dd62ed3e14610516578063df1e755314610546578063e47d606014610562576101e5565b8063a457c2d7116100de578063a457c2d714610462578063a9059cbb14610492578063c0d78655146104c2578063c9f1f47f146104de576101e5565b806371088c6d146103ec578063715018a61461041c5780638da5cb5b1461042657806395d89b4114610444576101e5565b80632ecfeb2c1161018757806348cd4cb11161015657806348cd4cb114610364578063522f681514610382578063688a09421461039e57806370a08231146103bc576101e5565b80632ecfeb2c146102de578063313ce567146102fa57806339509351146103185780633d162cdc14610348576101e5565b806318160ddd116101c357806318160ddd14610254578063199848cd1461027257806323b872dd146102905780632e3f418c146102c0576101e5565b806306fdde03146101ea578063095ea7b3146102085780630ecb93c014610238575b600080fd5b6101f2610606565b6040516101ff91906120d6565b60405180910390f35b610222600480360381019061021d9190612191565b610698565b60405161022f91906121ec565b60405180910390f35b610252600480360381019061024d9190612207565b6106b6565b005b61025c610719565b6040516102699190612243565b60405180910390f35b61027a610723565b604051610287919061226d565b60405180910390f35b6102aa60048036038101906102a59190612288565b610749565b6040516102b791906121ec565b60405180910390f35b6102c8610822565b6040516102d59190612243565b60405180910390f35b6102f860048036038101906102f39190612307565b610828565b005b61030261084d565b60405161030f9190612350565b60405180910390f35b610332600480360381019061032d9190612191565b610864565b60405161033f91906121ec565b60405180910390f35b610362600480360381019061035d919061236b565b610917565b005b61036c610a1f565b6040516103799190612243565b60405180910390f35b61039c600480360381019061039791906123e9565b610a25565b005b6103a6610ade565b6040516103b39190612243565b60405180910390f35b6103d660048036038101906103d19190612207565b610ae4565b6040516103e39190612243565b60405180910390f35b61040660048036038101906104019190612207565b610b2d565b60405161041391906121ec565b60405180910390f35b610424610b4d565b005b61042e610b61565b60405161043b919061226d565b60405180910390f35b61044c610b8a565b60405161045991906120d6565b60405180910390f35b61047c60048036038101906104779190612191565b610c1c565b60405161048991906121ec565b60405180910390f35b6104ac60048036038101906104a79190612191565b610ce9565b6040516104b991906121ec565b60405180910390f35b6104dc60048036038101906104d79190612207565b610d07565b005b6104f860048036038101906104f39190612429565b610d53565b005b610514600480360381019061050f9190612288565b610db6565b005b610530600480360381019061052b9190612469565b610e48565b60405161053d9190612243565b60405180910390f35b610560600480360381019061055b91906124a9565b610ecf565b005b61057c60048036038101906105779190612207565b610f3f565b60405161058991906121ec565b60405180910390f35b6105ac60048036038101906105a79190612207565b610f5f565b005b6105b6610fc2565b6040516105c3919061226d565b60405180910390f35b6105e660048036038101906105e19190612207565b610fe8565b005b6105f061106b565b6040516105fd919061226d565b60405180910390f35b60606002805461061590612505565b80601f016020809104026020016040519081016040528092919081815260200182805461064190612505565b801561068e5780601f106106635761010080835404028352916020019161068e565b820191906000526020600020905b81548152906001019060200180831161067157829003601f168201915b5050505050905090565b60006106ac6106a56110bd565b84846110c5565b6001905092915050565b6106be61128e565b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600154905090565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061075684848461130c565b610817846107626110bd565b61081285604051806060016040528060288152602001612ecc60289139600760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107c86110bd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c1f9092919063ffffffff16565b6110c5565b600190509392505050565b60055481565b61083061128e565b80600e60156101000a81548160ff02191690831515021790555050565b6000600460009054906101000a900460ff16905090565b600061090d6108716110bd565b8461090885600760006108826110bd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110a790919063ffffffff16565b6110c5565b6001905092915050565b61091f61128e565b6101f4821115610964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095b90612582565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ca90612614565b60405180910390fd5b8160098190555080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600d5481565b610a2d61128e565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051610a5390612665565b60006040518083038185875af1925050503d8060008114610a90576040519150601f19603f3d011682016040523d82523d6000602084013e610a95565b606091505b5050905080610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad0906126c6565b60405180910390fd5b505050565b60095481565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60086020528060005260406000206000915054906101000a900460ff1681565b610b5561128e565b610b5f6000611c74565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610b9990612505565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc590612505565b8015610c125780601f10610be757610100808354040283529160200191610c12565b820191906000526020600020905b815481529060010190602001808311610bf557829003601f168201915b5050505050905090565b6000610cdf610c296110bd565b84610cda85604051806060016040528060258152602001612ef46025913960076000610c536110bd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c1f9092919063ffffffff16565b6110c5565b6001905092915050565b6000610cfd610cf66110bd565b848461130c565b6001905092915050565b610d0f61128e565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d5b61128e565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610dbe61128e565b60008390508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401610dfe9291906126e6565b6020604051808303816000875af1158015610e1d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e419190612724565b5050505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ed761128e565b6000610eef606460015461109190919063ffffffff16565b905080821115610f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2b9061279d565b60405180910390fd5b816005819055505050565b600c6020528060005260406000206000915054906101000a900460ff1681565b610f6761128e565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610ff061128e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361105f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110569061282f565b60405180910390fd5b61106881611c74565b50565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000818361109f91906128ad565b905092915050565b600081836110b591906128de565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b90612984565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119a90612a16565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112819190612243565b60405180910390a3505050565b6112966110bd565b73ffffffffffffffffffffffffffffffffffffffff166112b4610b61565b73ffffffffffffffffffffffffffffffffffffffff161461130a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130190612a82565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361137b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137290612b14565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e190612ba6565b60405180910390fd5b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146e90612c12565b60405180910390fd5b611482838383611d38565b6114ee81604051806060016040528060268152602001612ea660269139600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c1f9092919063ffffffff16565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600d5411801561155057506005600d5461154d91906128de565b43105b80156115a95750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561160b576001600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506116de565b6000600d5414801561166b5750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156116c45750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156116d05750600081115b156116dd5743600d819055505b5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611b20576000806009541180156117915750600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15611b09576117bf6127106117b160095485611d3d90919063ffffffff16565b61109190919063ffffffff16565b9050600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119a75761186981600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110a790919063ffffffff16565b600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516119099190612243565b60405180910390a3600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415801561197c5750600e60149054906101000a900460ff16155b80156119945750600e60159054906101000a900460ff165b156119a2576119a1611d53565b5b611b08565b611a1b8160066000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110a790919063ffffffff16565b60066000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611aff9190612243565b60405180910390a35b5b611b1c818361203090919063ffffffff16565b9150505b611b7281600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110a790919063ffffffff16565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c129190612243565b60405180910390a3505050565b6000838311158290611c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5e91906120d6565b60405180910390fd5b5082840390509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b60008183611d4b9190612c32565b905092915050565b6001600e60146101000a81548160ff0219169083151502179055506000600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600081111561201257600554811115611dcb5760055490505b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600267ffffffffffffffff811115611e0f57611e0e612c74565b5b604051908082528060200260200182016040528015611e3d5781602001602082028036833780820191505090505b5090503081600081518110611e5557611e54612ca3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611eda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611efe9190612ce7565b81600181518110611f1257611f11612ca3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611f7930600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856110c5565b8173ffffffffffffffffffffffffffffffffffffffff1663791ac94784600084600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401611fdd959493929190612e17565b600060405180830381600087803b158015611ff757600080fd5b505af115801561200b573d6000803e3d6000fd5b5050505050505b506000600e60146101000a81548160ff021916908315150217905550565b6000818361203e9190612e71565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612080578082015181840152602081019050612065565b60008484015250505050565b6000601f19601f8301169050919050565b60006120a882612046565b6120b28185612051565b93506120c2818560208601612062565b6120cb8161208c565b840191505092915050565b600060208201905081810360008301526120f0818461209d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612128826120fd565b9050919050565b6121388161211d565b811461214357600080fd5b50565b6000813590506121558161212f565b92915050565b6000819050919050565b61216e8161215b565b811461217957600080fd5b50565b60008135905061218b81612165565b92915050565b600080604083850312156121a8576121a76120f8565b5b60006121b685828601612146565b92505060206121c78582860161217c565b9150509250929050565b60008115159050919050565b6121e6816121d1565b82525050565b600060208201905061220160008301846121dd565b92915050565b60006020828403121561221d5761221c6120f8565b5b600061222b84828501612146565b91505092915050565b61223d8161215b565b82525050565b60006020820190506122586000830184612234565b92915050565b6122678161211d565b82525050565b6000602082019050612282600083018461225e565b92915050565b6000806000606084860312156122a1576122a06120f8565b5b60006122af86828701612146565b93505060206122c086828701612146565b92505060406122d18682870161217c565b9150509250925092565b6122e4816121d1565b81146122ef57600080fd5b50565b600081359050612301816122db565b92915050565b60006020828403121561231d5761231c6120f8565b5b600061232b848285016122f2565b91505092915050565b600060ff82169050919050565b61234a81612334565b82525050565b60006020820190506123656000830184612341565b92915050565b60008060408385031215612382576123816120f8565b5b60006123908582860161217c565b92505060206123a185828601612146565b9150509250929050565b60006123b6826120fd565b9050919050565b6123c6816123ab565b81146123d157600080fd5b50565b6000813590506123e3816123bd565b92915050565b60008060408385031215612400576123ff6120f8565b5b600061240e858286016123d4565b925050602061241f8582860161217c565b9150509250929050565b600080604083850312156124405761243f6120f8565b5b600061244e85828601612146565b925050602061245f858286016122f2565b9150509250929050565b600080604083850312156124805761247f6120f8565b5b600061248e85828601612146565b925050602061249f85828601612146565b9150509250929050565b6000602082840312156124bf576124be6120f8565b5b60006124cd8482850161217c565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061251d57607f821691505b6020821081036125305761252f6124d6565b5b50919050565b7f466565732063616e6e6f74206265206d6f7265207468616e2035250000000000600082015250565b600061256c601b83612051565b915061257782612536565b602082019050919050565b6000602082019050818103600083015261259b8161255f565b9050919050565b7f466565207265776172642061646472657373206d757374206e6f74206265207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006125fe602b83612051565b9150612609826125a2565b604082019050919050565b6000602082019050818103600083015261262d816125f1565b9050919050565b600081905092915050565b50565b600061264f600083612634565b915061265a8261263f565b600082019050919050565b600061267082612642565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b60006126b0601483612051565b91506126bb8261267a565b602082019050919050565b600060208201905081810360008301526126df816126a3565b9050919050565b60006040820190506126fb600083018561225e565b6127086020830184612234565b9392505050565b60008151905061271e816122db565b92915050565b60006020828403121561273a576127396120f8565b5b60006127488482850161270f565b91505092915050565b7f4d617820737761702063616e277420676f206f766572206c696d697400000000600082015250565b6000612787601c83612051565b915061279282612751565b602082019050919050565b600060208201905081810360008301526127b68161277a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612819602683612051565b9150612824826127bd565b604082019050919050565b600060208201905081810360008301526128488161280c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006128b88261215b565b91506128c38361215b565b9250826128d3576128d261284f565b5b828204905092915050565b60006128e98261215b565b91506128f48361215b565b925082820190508082111561290c5761290b61287e565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061296e602483612051565b915061297982612912565b604082019050919050565b6000602082019050818103600083015261299d81612961565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a00602283612051565b9150612a0b826129a4565b604082019050919050565b60006020820190508181036000830152612a2f816129f3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612a6c602083612051565b9150612a7782612a36565b602082019050919050565b60006020820190508181036000830152612a9b81612a5f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612afe602583612051565b9150612b0982612aa2565b604082019050919050565b60006020820190508181036000830152612b2d81612af1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612b90602383612051565b9150612b9b82612b34565b604082019050919050565b60006020820190508181036000830152612bbf81612b83565b9050919050565b7f53656e64657220697320626c61636b6c69737465640000000000000000000000600082015250565b6000612bfc601583612051565b9150612c0782612bc6565b602082019050919050565b60006020820190508181036000830152612c2b81612bef565b9050919050565b6000612c3d8261215b565b9150612c488361215b565b9250828202612c568161215b565b91508282048414831517612c6d57612c6c61287e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612ce18161212f565b92915050565b600060208284031215612cfd57612cfc6120f8565b5b6000612d0b84828501612cd2565b91505092915050565b6000819050919050565b6000819050919050565b6000612d43612d3e612d3984612d14565b612d1e565b61215b565b9050919050565b612d5381612d28565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612d8e8161211d565b82525050565b6000612da08383612d85565b60208301905092915050565b6000602082019050919050565b6000612dc482612d59565b612dce8185612d64565b9350612dd983612d75565b8060005b83811015612e0a578151612df18882612d94565b9750612dfc83612dac565b925050600181019050612ddd565b5085935050505092915050565b600060a082019050612e2c6000830188612234565b612e396020830187612d4a565b8181036040830152612e4b8186612db9565b9050612e5a606083018561225e565b612e676080830184612234565b9695505050505050565b6000612e7c8261215b565b9150612e878361215b565b9250828203905081811115612e9f57612e9e61287e565b5b9291505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220703a3f9f6cf8689a745d6488d2fd77f2a85244cd74b6283305741e40357438eb64736f6c63430008120033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000001f400000000000000000000000009150e98c96c0b3f59b796b722cc26f784a7c7640000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f

-----Decoded View---------------
Arg [0] : feeRewardPct (uint256): 500
Arg [1] : feeRewardAddress (address): 0x09150e98c96C0B3f59B796b722Cc26f784a7c764
Arg [2] : uniRouter (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [3] : uniPairFactory (address): 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [1] : 00000000000000000000000009150e98c96c0b3f59b796b722cc26f784a7c764
Arg [2] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [3] : 0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f


Deployed Bytecode Sourcemap

33874:9261:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39282:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40227:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42530:108;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39559:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34514:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40445:454;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34102:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35994:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39468:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40907:300;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35461:405;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34482:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42772:184;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34319:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39667:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34266:44;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2810:103;;;:::i;:::-;;2162:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39373;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41215:400;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39794:216;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35376:77;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35874:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42964:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40018:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36109:266;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34428:45;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42646:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34397:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3068:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34356:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39282:83;39319:13;39352:5;39345:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39282:83;:::o;40227:210::-;40346:4;40368:39;40377:12;:10;:12::i;:::-;40391:7;40400:6;40368:8;:39::i;:::-;40425:4;40418:11;;40227:210;;;;:::o;42530:108::-;2048:13;:11;:13::i;:::-;42626:4:::1;42599:13;:24;42613:9;42599:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;42530:108:::0;:::o;39559:100::-;39612:7;39639:12;;39632:19;;39559:100;:::o;34514:24::-;;;;;;;;;;;;;:::o;40445:454::-;40585:4;40602:36;40612:6;40620:9;40631:6;40602:9;:36::i;:::-;40649:220;40672:6;40693:12;:10;:12::i;:::-;40720:138;40776:6;40720:138;;;;;;;;;;;;;;;;;:11;:19;40732:6;40720:19;;;;;;;;;;;;;;;:33;40740:12;:10;:12::i;:::-;40720:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;40649:8;:220::i;:::-;40887:4;40880:11;;40445:454;;;;;:::o;34102:25::-;;;;:::o;35994:107::-;2048:13;:11;:13::i;:::-;36085:8:::1;36067:15;;:26;;;;;;;;;;;;;;;;;;35994:107:::0;:::o;39468:83::-;39509:5;39534:9;;;;;;;;;;;39527:16;;39468:83;:::o;40907:300::-;41022:4;41044:133;41067:12;:10;:12::i;:::-;41094:7;41116:50;41155:10;41116:11;:25;41128:12;:10;:12::i;:::-;41116:25;;;;;;;;;;;;;;;:34;41142:7;41116:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;41044:8;:133::i;:::-;41195:4;41188:11;;40907:300;;;;:::o;35461:405::-;2048:13;:11;:13::i;:::-;35601:3:::1;35585:12;:19;;35577:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;35697:1;35669:30;;:16;:30;;::::0;35647:123:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;35799:12;35783:13;:28;;;;35842:16;35822:17;;:36;;;;;;;;;;;;;;;;;;35461:405:::0;;:::o;34482:25::-;;;;:::o;42772:184::-;2048:13;:11;:13::i;:::-;42860:9:::1;42874:2;:7;;42889:6;42874:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42859:41;;;42919:4;42911:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;42848:108;42772:184:::0;;:::o;34319:28::-;;;;:::o;39667:119::-;39733:7;39760:9;:18;39770:7;39760:18;;;;;;;;;;;;;;;;39753:25;;39667:119;;;:::o;34266:44::-;;;;;;;;;;;;;;;;;;;;;;:::o;2810:103::-;2048:13;:11;:13::i;:::-;2875:30:::1;2902:1;2875:18;:30::i;:::-;2810:103::o:0;2162:87::-;2208:7;2235:6;;;;;;;;;;;2228:13;;2162:87;:::o;39373:::-;39412:13;39445:7;39438:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39373:87;:::o;41215:400::-;41335:4;41357:228;41380:12;:10;:12::i;:::-;41407:7;41429:145;41486:15;41429:145;;;;;;;;;;;;;;;;;:11;:25;41441:12;:10;:12::i;:::-;41429:25;;;;;;;;;;;;;;;:34;41455:7;41429:34;;;;;;;;;;;;;;;;:38;;:145;;;;;:::i;:::-;41357:8;:228::i;:::-;41603:4;41596:11;;41215:400;;;;:::o;39794:216::-;39916:4;39938:42;39948:12;:10;:12::i;:::-;39962:9;39973:6;39938:9;:42::i;:::-;39998:4;39991:11;;39794:216;;;;:::o;35376:77::-;2048:13;:11;:13::i;:::-;35444:1:::1;35434:7;;:11;;;;;;;;;;;;;;;;;;35376:77:::0;:::o;35874:112::-;2048:13;:11;:13::i;:::-;35970:8:::1;35952:12;:15;35965:1;35952:15;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;35874:112:::0;;:::o;42964:168::-;2048:13;:11;:13::i;:::-;43057::::1;43080:5;43057:29;;43097:6;:15;;;43113:2;43117:6;43097:27;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43046:86;42964:168:::0;;;:::o;40018:201::-;40152:7;40184:11;:18;40196:5;40184:18;;;;;;;;;;;;;;;:27;40203:7;40184:27;;;;;;;;;;;;;;;;40177:34;;40018:201;;;;:::o;36109:266::-;2048:13;:11;:13::i;:::-;36185:16:::1;36204:21;36221:3;36204:12;;:16;;:21;;;;:::i;:::-;36185:40;;36289:8;36272:13;:25;;36264:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;36354:13;36341:10;:26;;;;36174:201;36109:266:::0;:::o;34428:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;42646:118::-;2048:13;:11;:13::i;:::-;42751:5:::1;42721:13;:27;42735:12;42721:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;42646:118:::0;:::o;34397:22::-;;;;;;;;;;;;;:::o;3068:238::-;2048:13;:11;:13::i;:::-;3191:1:::1;3171:22;;:8;:22;;::::0;3149:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3270:28;3289:8;3270:18;:28::i;:::-;3068:238:::0;:::o;34356:32::-;;;;;;;;;;;;;:::o;25029:98::-;25087:7;25118:1;25114;:5;;;;:::i;:::-;25107:12;;25029:98;;;;:::o;23892:::-;23950:7;23981:1;23977;:5;;;;:::i;:::-;23970:12;;23892:98;;;;:::o;719:::-;772:7;799:10;792:17;;719:98;:::o;42009:380::-;42162:1;42145:19;;:5;:19;;;42137:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42243:1;42224:21;;:7;:21;;;42216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42327:6;42297:11;:18;42309:5;42297:18;;;;;;;;;;;;;;;:27;42316:7;42297:27;;;;;;;;;;;;;;;:36;;;;42365:7;42349:32;;42358:5;42349:32;;;42374:6;42349:32;;;;;;:::i;:::-;;;;;;;;42009:380;;;:::o;2327:132::-;2402:12;:10;:12::i;:::-;2391:23;;:7;:5;:7::i;:::-;:23;;;2383:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2327:132::o;37264:2010::-;37414:1;37396:20;;:6;:20;;;37388:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;37498:1;37477:23;;:9;:23;;;37469:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;37560:13;:21;37574:6;37560:21;;;;;;;;;;;;;;;;;;;;;;;;;37559:22;37551:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;37620:47;37641:6;37649:9;37660:6;37620:20;:47::i;:::-;37700:108;37736:6;37700:108;;;;;;;;;;;;;;;;;:9;:17;37710:6;37700:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;37680:9;:17;37690:6;37680:17;;;;;;;;;;;;;;;:128;;;;37852:1;37839:10;;:14;:60;;;;;37898:1;37885:10;;:14;;;;:::i;:::-;37870:12;:29;37839:60;:96;;;;;37926:9;;;;;;;;;;;37916:19;;:6;:19;;;37839:96;37821:389;;;37989:4;37962:13;:24;37976:9;37962:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;37821:389;;;38043:1;38029:10;;:15;:51;;;;;38071:9;;;;;;;;;;;38061:19;;:6;:19;;;;38029:51;:90;;;;;38110:9;;;;;;;;;;;38097:22;;:9;:22;;;38029:90;:117;;;;;38145:1;38136:6;:10;38029:117;38011:199;;;38186:12;38173:10;:25;;;;38011:199;37821:389;38227:12;:20;38240:6;38227:20;;;;;;;;;;;;;;;;;;;;;;;;;38222:926;;38264:23;38328:1;38312:13;;:17;:52;;;;;38362:1;38333:31;;:17;;;;;;;;;;;:31;;;;38312:52;38308:776;;;38403:36;38433:5;38403:25;38414:13;;38403:6;:10;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;38385:54;;38483:1;38464:21;;:7;;;;;;;;;;;:21;;;38460:609;;38537:45;38566:15;38537:9;:24;38555:4;38537:24;;;;;;;;;;;;;;;;:28;;:45;;;;:::i;:::-;38510:9;:24;38528:4;38510:24;;;;;;;;;;;;;;;:72;;;;38635:4;38610:48;;38619:6;38610:48;;;38642:15;38610:48;;;;;;:::i;:::-;;;;;;;;38701:9;;;;;;;;;;;38687:23;;:10;:23;;;;:41;;;;;38715:13;;;;;;;;;;;38714:14;38687:41;:60;;;;;38732:15;;;;;;;;;;;38687:60;38683:130;;;38776:13;:11;:13::i;:::-;38683:130;38460:609;;;38894:75;38953:15;38894:9;:28;38904:17;;;;;;;;;;;38894:28;;;;;;;;;;;;;;;;:58;;:75;;;;:::i;:::-;38863:9;:28;38873:17;;;;;;;;;;;38863:28;;;;;;;;;;;;;;;:106;;;;39014:17;;;;;;;;;;;38997:52;;39006:6;38997:52;;;39033:15;38997:52;;;;;;:::i;:::-;;;;;;;;38460:609;38308:776;39109:27;39120:15;39109:6;:10;;:27;;;;:::i;:::-;39100:36;;38249:899;38222:926;39183:32;39208:6;39183:9;:20;39193:9;39183:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;39160:9;:20;39170:9;39160:20;;;;;;;;;;;;;;;:55;;;;39248:9;39231:35;;39240:6;39231:35;;;39259:6;39231:35;;;;;;:::i;:::-;;;;;;;;37264:2010;;;:::o;26171:240::-;26291:7;26349:1;26344;:6;;26352:12;26336:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;26391:1;26387;:5;26380:12;;26171:240;;;;;:::o;3466:191::-;3540:16;3559:6;;;;;;;;;;;3540:25;;3585:8;3576:6;;:17;;;;;;;;;;;;;;;;;;3640:8;3609:40;;3630:8;3609:40;;;;;;;;;;;;3529:128;3466:191;:::o;42397:125::-;;;;:::o;24630:98::-;24688:7;24719:1;24715;:5;;;;:::i;:::-;24708:12;;24630:98;;;;:::o;36497:759::-;36433:4;36417:13;;:20;;;;;;;;;;;;;;;;;;36552:23:::1;36578:9;:24;36596:4;36578:24;;;;;;;;;;;;;;;;36552:50;;36634:1;36616:15;:19;36613:636;;;36673:10;;36655:15;:28;36652:96;;;36722:10;;36704:28;;36652:96;36762:20;36804:7;;;;;;;;;;;36762:50;;36829:21;36867:1;36853:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36829:40;;36902:4;36884;36889:1;36884:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;36932:1;:6;;;:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36922:4;36927:1;36922:7;;;;;;;;:::i;:::-;;;;;;;:18;;;;;;;;;::::0;::::1;36957:49;36974:4;36981:7;;;;;;;;;;;36990:15;36957:8;:49::i;:::-;37023:1;:52;;;37094:15;37128:1;37148:4;37171:17;;;;;;;;;;;37207:15;37023:214;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;36637:612;;36613:636;36541:715;36476:5:::0;36460:13;;:21;;;;;;;;;;;;;;;;;;36497:759::o;24273:98::-;24331:7;24362:1;24358;:5;;;;:::i;:::-;24351:12;;24273:98;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:118::-;4220:24;4238:5;4220:24;:::i;:::-;4215:3;4208:37;4133:118;;:::o;4257:222::-;4350:4;4388:2;4377:9;4373:18;4365:26;;4401:71;4469:1;4458:9;4454:17;4445:6;4401:71;:::i;:::-;4257:222;;;;:::o;4485:619::-;4562:6;4570;4578;4627:2;4615:9;4606:7;4602:23;4598:32;4595:119;;;4633:79;;:::i;:::-;4595:119;4753:1;4778:53;4823:7;4814:6;4803:9;4799:22;4778:53;:::i;:::-;4768:63;;4724:117;4880:2;4906:53;4951:7;4942:6;4931:9;4927:22;4906:53;:::i;:::-;4896:63;;4851:118;5008:2;5034:53;5079:7;5070:6;5059:9;5055:22;5034:53;:::i;:::-;5024:63;;4979:118;4485:619;;;;;:::o;5110:116::-;5180:21;5195:5;5180:21;:::i;:::-;5173:5;5170:32;5160:60;;5216:1;5213;5206:12;5160:60;5110:116;:::o;5232:133::-;5275:5;5313:6;5300:20;5291:29;;5329:30;5353:5;5329:30;:::i;:::-;5232:133;;;;:::o;5371:323::-;5427:6;5476:2;5464:9;5455:7;5451:23;5447:32;5444:119;;;5482:79;;:::i;:::-;5444:119;5602:1;5627:50;5669:7;5660:6;5649:9;5645:22;5627:50;:::i;:::-;5617:60;;5573:114;5371:323;;;;:::o;5700:86::-;5735:7;5775:4;5768:5;5764:16;5753:27;;5700:86;;;:::o;5792:112::-;5875:22;5891:5;5875:22;:::i;:::-;5870:3;5863:35;5792:112;;:::o;5910:214::-;5999:4;6037:2;6026:9;6022:18;6014:26;;6050:67;6114:1;6103:9;6099:17;6090:6;6050:67;:::i;:::-;5910:214;;;;:::o;6130:474::-;6198:6;6206;6255:2;6243:9;6234:7;6230:23;6226:32;6223:119;;;6261:79;;:::i;:::-;6223:119;6381:1;6406:53;6451:7;6442:6;6431:9;6427:22;6406:53;:::i;:::-;6396:63;;6352:117;6508:2;6534:53;6579:7;6570:6;6559:9;6555:22;6534:53;:::i;:::-;6524:63;;6479:118;6130:474;;;;;:::o;6610:104::-;6655:7;6684:24;6702:5;6684:24;:::i;:::-;6673:35;;6610:104;;;:::o;6720:138::-;6801:32;6827:5;6801:32;:::i;:::-;6794:5;6791:43;6781:71;;6848:1;6845;6838:12;6781:71;6720:138;:::o;6864:155::-;6918:5;6956:6;6943:20;6934:29;;6972:41;7007:5;6972:41;:::i;:::-;6864:155;;;;:::o;7025:490::-;7101:6;7109;7158:2;7146:9;7137:7;7133:23;7129:32;7126:119;;;7164:79;;:::i;:::-;7126:119;7284:1;7309:61;7362:7;7353:6;7342:9;7338:22;7309:61;:::i;:::-;7299:71;;7255:125;7419:2;7445:53;7490:7;7481:6;7470:9;7466:22;7445:53;:::i;:::-;7435:63;;7390:118;7025:490;;;;;:::o;7521:468::-;7586:6;7594;7643:2;7631:9;7622:7;7618:23;7614:32;7611:119;;;7649:79;;:::i;:::-;7611:119;7769:1;7794:53;7839:7;7830:6;7819:9;7815:22;7794:53;:::i;:::-;7784:63;;7740:117;7896:2;7922:50;7964:7;7955:6;7944:9;7940:22;7922:50;:::i;:::-;7912:60;;7867:115;7521:468;;;;;:::o;7995:474::-;8063:6;8071;8120:2;8108:9;8099:7;8095:23;8091:32;8088:119;;;8126:79;;:::i;:::-;8088:119;8246:1;8271:53;8316:7;8307:6;8296:9;8292:22;8271:53;:::i;:::-;8261:63;;8217:117;8373:2;8399:53;8444:7;8435:6;8424:9;8420:22;8399:53;:::i;:::-;8389:63;;8344:118;7995:474;;;;;:::o;8475:329::-;8534:6;8583:2;8571:9;8562:7;8558:23;8554:32;8551:119;;;8589:79;;:::i;:::-;8551:119;8709:1;8734:53;8779:7;8770:6;8759:9;8755:22;8734:53;:::i;:::-;8724:63;;8680:117;8475:329;;;;:::o;8810:180::-;8858:77;8855:1;8848:88;8955:4;8952:1;8945:15;8979:4;8976:1;8969:15;8996:320;9040:6;9077:1;9071:4;9067:12;9057:22;;9124:1;9118:4;9114:12;9145:18;9135:81;;9201:4;9193:6;9189:17;9179:27;;9135:81;9263:2;9255:6;9252:14;9232:18;9229:38;9226:84;;9282:18;;:::i;:::-;9226:84;9047:269;8996:320;;;:::o;9322:177::-;9462:29;9458:1;9450:6;9446:14;9439:53;9322:177;:::o;9505:366::-;9647:3;9668:67;9732:2;9727:3;9668:67;:::i;:::-;9661:74;;9744:93;9833:3;9744:93;:::i;:::-;9862:2;9857:3;9853:12;9846:19;;9505:366;;;:::o;9877:419::-;10043:4;10081:2;10070:9;10066:18;10058:26;;10130:9;10124:4;10120:20;10116:1;10105:9;10101:17;10094:47;10158:131;10284:4;10158:131;:::i;:::-;10150:139;;9877:419;;;:::o;10302:230::-;10442:34;10438:1;10430:6;10426:14;10419:58;10511:13;10506:2;10498:6;10494:15;10487:38;10302:230;:::o;10538:366::-;10680:3;10701:67;10765:2;10760:3;10701:67;:::i;:::-;10694:74;;10777:93;10866:3;10777:93;:::i;:::-;10895:2;10890:3;10886:12;10879:19;;10538:366;;;:::o;10910:419::-;11076:4;11114:2;11103:9;11099:18;11091:26;;11163:9;11157:4;11153:20;11149:1;11138:9;11134:17;11127:47;11191:131;11317:4;11191:131;:::i;:::-;11183:139;;10910:419;;;:::o;11335:147::-;11436:11;11473:3;11458:18;;11335:147;;;;:::o;11488:114::-;;:::o;11608:398::-;11767:3;11788:83;11869:1;11864:3;11788:83;:::i;:::-;11781:90;;11880:93;11969:3;11880:93;:::i;:::-;11998:1;11993:3;11989:11;11982:18;;11608:398;;;:::o;12012:379::-;12196:3;12218:147;12361:3;12218:147;:::i;:::-;12211:154;;12382:3;12375:10;;12012:379;;;:::o;12397:170::-;12537:22;12533:1;12525:6;12521:14;12514:46;12397:170;:::o;12573:366::-;12715:3;12736:67;12800:2;12795:3;12736:67;:::i;:::-;12729:74;;12812:93;12901:3;12812:93;:::i;:::-;12930:2;12925:3;12921:12;12914:19;;12573:366;;;:::o;12945:419::-;13111:4;13149:2;13138:9;13134:18;13126:26;;13198:9;13192:4;13188:20;13184:1;13173:9;13169:17;13162:47;13226:131;13352:4;13226:131;:::i;:::-;13218:139;;12945:419;;;:::o;13370:332::-;13491:4;13529:2;13518:9;13514:18;13506:26;;13542:71;13610:1;13599:9;13595:17;13586:6;13542:71;:::i;:::-;13623:72;13691:2;13680:9;13676:18;13667:6;13623:72;:::i;:::-;13370:332;;;;;:::o;13708:137::-;13762:5;13793:6;13787:13;13778:22;;13809:30;13833:5;13809:30;:::i;:::-;13708:137;;;;:::o;13851:345::-;13918:6;13967:2;13955:9;13946:7;13942:23;13938:32;13935:119;;;13973:79;;:::i;:::-;13935:119;14093:1;14118:61;14171:7;14162:6;14151:9;14147:22;14118:61;:::i;:::-;14108:71;;14064:125;13851:345;;;;:::o;14202:178::-;14342:30;14338:1;14330:6;14326:14;14319:54;14202:178;:::o;14386:366::-;14528:3;14549:67;14613:2;14608:3;14549:67;:::i;:::-;14542:74;;14625:93;14714:3;14625:93;:::i;:::-;14743:2;14738:3;14734:12;14727:19;;14386:366;;;:::o;14758:419::-;14924:4;14962:2;14951:9;14947:18;14939:26;;15011:9;15005:4;15001:20;14997:1;14986:9;14982:17;14975:47;15039:131;15165:4;15039:131;:::i;:::-;15031:139;;14758:419;;;:::o;15183:225::-;15323:34;15319:1;15311:6;15307:14;15300:58;15392:8;15387:2;15379:6;15375:15;15368:33;15183:225;:::o;15414:366::-;15556:3;15577:67;15641:2;15636:3;15577:67;:::i;:::-;15570:74;;15653:93;15742:3;15653:93;:::i;:::-;15771:2;15766:3;15762:12;15755:19;;15414:366;;;:::o;15786:419::-;15952:4;15990:2;15979:9;15975:18;15967:26;;16039:9;16033:4;16029:20;16025:1;16014:9;16010:17;16003:47;16067:131;16193:4;16067:131;:::i;:::-;16059:139;;15786:419;;;:::o;16211:180::-;16259:77;16256:1;16249:88;16356:4;16353:1;16346:15;16380:4;16377:1;16370:15;16397:180;16445:77;16442:1;16435:88;16542:4;16539:1;16532:15;16566:4;16563:1;16556:15;16583:185;16623:1;16640:20;16658:1;16640:20;:::i;:::-;16635:25;;16674:20;16692:1;16674:20;:::i;:::-;16669:25;;16713:1;16703:35;;16718:18;;:::i;:::-;16703:35;16760:1;16757;16753:9;16748:14;;16583:185;;;;:::o;16774:191::-;16814:3;16833:20;16851:1;16833:20;:::i;:::-;16828:25;;16867:20;16885:1;16867:20;:::i;:::-;16862:25;;16910:1;16907;16903:9;16896:16;;16931:3;16928:1;16925:10;16922:36;;;16938:18;;:::i;:::-;16922:36;16774:191;;;;:::o;16971:223::-;17111:34;17107:1;17099:6;17095:14;17088:58;17180:6;17175:2;17167:6;17163:15;17156:31;16971:223;:::o;17200:366::-;17342:3;17363:67;17427:2;17422:3;17363:67;:::i;:::-;17356:74;;17439:93;17528:3;17439:93;:::i;:::-;17557:2;17552:3;17548:12;17541:19;;17200:366;;;:::o;17572:419::-;17738:4;17776:2;17765:9;17761:18;17753:26;;17825:9;17819:4;17815:20;17811:1;17800:9;17796:17;17789:47;17853:131;17979:4;17853:131;:::i;:::-;17845:139;;17572:419;;;:::o;17997:221::-;18137:34;18133:1;18125:6;18121:14;18114:58;18206:4;18201:2;18193:6;18189:15;18182:29;17997:221;:::o;18224:366::-;18366:3;18387:67;18451:2;18446:3;18387:67;:::i;:::-;18380:74;;18463:93;18552:3;18463:93;:::i;:::-;18581:2;18576:3;18572:12;18565:19;;18224:366;;;:::o;18596:419::-;18762:4;18800:2;18789:9;18785:18;18777:26;;18849:9;18843:4;18839:20;18835:1;18824:9;18820:17;18813:47;18877:131;19003:4;18877:131;:::i;:::-;18869:139;;18596:419;;;:::o;19021:182::-;19161:34;19157:1;19149:6;19145:14;19138:58;19021:182;:::o;19209:366::-;19351:3;19372:67;19436:2;19431:3;19372:67;:::i;:::-;19365:74;;19448:93;19537:3;19448:93;:::i;:::-;19566:2;19561:3;19557:12;19550:19;;19209:366;;;:::o;19581:419::-;19747:4;19785:2;19774:9;19770:18;19762:26;;19834:9;19828:4;19824:20;19820:1;19809:9;19805:17;19798:47;19862:131;19988:4;19862:131;:::i;:::-;19854:139;;19581:419;;;:::o;20006:224::-;20146:34;20142:1;20134:6;20130:14;20123:58;20215:7;20210:2;20202:6;20198:15;20191:32;20006:224;:::o;20236:366::-;20378:3;20399:67;20463:2;20458:3;20399:67;:::i;:::-;20392:74;;20475:93;20564:3;20475:93;:::i;:::-;20593:2;20588:3;20584:12;20577:19;;20236:366;;;:::o;20608:419::-;20774:4;20812:2;20801:9;20797:18;20789:26;;20861:9;20855:4;20851:20;20847:1;20836:9;20832:17;20825:47;20889:131;21015:4;20889:131;:::i;:::-;20881:139;;20608:419;;;:::o;21033:222::-;21173:34;21169:1;21161:6;21157:14;21150:58;21242:5;21237:2;21229:6;21225:15;21218:30;21033:222;:::o;21261:366::-;21403:3;21424:67;21488:2;21483:3;21424:67;:::i;:::-;21417:74;;21500:93;21589:3;21500:93;:::i;:::-;21618:2;21613:3;21609:12;21602:19;;21261:366;;;:::o;21633:419::-;21799:4;21837:2;21826:9;21822:18;21814:26;;21886:9;21880:4;21876:20;21872:1;21861:9;21857:17;21850:47;21914:131;22040:4;21914:131;:::i;:::-;21906:139;;21633:419;;;:::o;22058:171::-;22198:23;22194:1;22186:6;22182:14;22175:47;22058:171;:::o;22235:366::-;22377:3;22398:67;22462:2;22457:3;22398:67;:::i;:::-;22391:74;;22474:93;22563:3;22474:93;:::i;:::-;22592:2;22587:3;22583:12;22576:19;;22235:366;;;:::o;22607:419::-;22773:4;22811:2;22800:9;22796:18;22788:26;;22860:9;22854:4;22850:20;22846:1;22835:9;22831:17;22824:47;22888:131;23014:4;22888:131;:::i;:::-;22880:139;;22607:419;;;:::o;23032:410::-;23072:7;23095:20;23113:1;23095:20;:::i;:::-;23090:25;;23129:20;23147:1;23129:20;:::i;:::-;23124:25;;23184:1;23181;23177:9;23206:30;23224:11;23206:30;:::i;:::-;23195:41;;23385:1;23376:7;23372:15;23369:1;23366:22;23346:1;23339:9;23319:83;23296:139;;23415:18;;:::i;:::-;23296:139;23080:362;23032:410;;;;:::o;23448:180::-;23496:77;23493:1;23486:88;23593:4;23590:1;23583:15;23617:4;23614:1;23607:15;23634:180;23682:77;23679:1;23672:88;23779:4;23776:1;23769:15;23803:4;23800:1;23793:15;23820:143;23877:5;23908:6;23902:13;23893:22;;23924:33;23951:5;23924:33;:::i;:::-;23820:143;;;;:::o;23969:351::-;24039:6;24088:2;24076:9;24067:7;24063:23;24059:32;24056:119;;;24094:79;;:::i;:::-;24056:119;24214:1;24239:64;24295:7;24286:6;24275:9;24271:22;24239:64;:::i;:::-;24229:74;;24185:128;23969:351;;;;:::o;24326:85::-;24371:7;24400:5;24389:16;;24326:85;;;:::o;24417:60::-;24445:3;24466:5;24459:12;;24417:60;;;:::o;24483:158::-;24541:9;24574:61;24592:42;24601:32;24627:5;24601:32;:::i;:::-;24592:42;:::i;:::-;24574:61;:::i;:::-;24561:74;;24483:158;;;:::o;24647:147::-;24742:45;24781:5;24742:45;:::i;:::-;24737:3;24730:58;24647:147;;:::o;24800:114::-;24867:6;24901:5;24895:12;24885:22;;24800:114;;;:::o;24920:184::-;25019:11;25053:6;25048:3;25041:19;25093:4;25088:3;25084:14;25069:29;;24920:184;;;;:::o;25110:132::-;25177:4;25200:3;25192:11;;25230:4;25225:3;25221:14;25213:22;;25110:132;;;:::o;25248:108::-;25325:24;25343:5;25325:24;:::i;:::-;25320:3;25313:37;25248:108;;:::o;25362:179::-;25431:10;25452:46;25494:3;25486:6;25452:46;:::i;:::-;25530:4;25525:3;25521:14;25507:28;;25362:179;;;;:::o;25547:113::-;25617:4;25649;25644:3;25640:14;25632:22;;25547:113;;;:::o;25696:732::-;25815:3;25844:54;25892:5;25844:54;:::i;:::-;25914:86;25993:6;25988:3;25914:86;:::i;:::-;25907:93;;26024:56;26074:5;26024:56;:::i;:::-;26103:7;26134:1;26119:284;26144:6;26141:1;26138:13;26119:284;;;26220:6;26214:13;26247:63;26306:3;26291:13;26247:63;:::i;:::-;26240:70;;26333:60;26386:6;26333:60;:::i;:::-;26323:70;;26179:224;26166:1;26163;26159:9;26154:14;;26119:284;;;26123:14;26419:3;26412:10;;25820:608;;;25696:732;;;;:::o;26434:831::-;26697:4;26735:3;26724:9;26720:19;26712:27;;26749:71;26817:1;26806:9;26802:17;26793:6;26749:71;:::i;:::-;26830:80;26906:2;26895:9;26891:18;26882:6;26830:80;:::i;:::-;26957:9;26951:4;26947:20;26942:2;26931:9;26927:18;26920:48;26985:108;27088:4;27079:6;26985:108;:::i;:::-;26977:116;;27103:72;27171:2;27160:9;27156:18;27147:6;27103:72;:::i;:::-;27185:73;27253:3;27242:9;27238:19;27229:6;27185:73;:::i;:::-;26434:831;;;;;;;;:::o;27271:194::-;27311:4;27331:20;27349:1;27331:20;:::i;:::-;27326:25;;27365:20;27383:1;27365:20;:::i;:::-;27360:25;;27409:1;27406;27402:9;27394:17;;27433:1;27427:4;27424:11;27421:37;;;27438:18;;:::i;:::-;27421:37;27271:194;;;;:::o

Swarm Source

ipfs://703a3f9f6cf8689a745d6488d2fd77f2a85244cd74b6283305741e40357438eb
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.