ETH Price: $3,089.66 (+0.94%)
Gas: 4 Gwei

Token

Pepe Of Memeland (POM)
 

Overview

Max Total Supply

15,000 POM

Holders

22

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
POM

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-03
*/

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// 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.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @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.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

// File: pom.sol

//SPDX-License-Identifier: MIT




pragma solidity 0.8.19;

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

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

    function WETH() external pure returns (address);

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

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

contract POM is ERC20, Ownable {
    struct Tax {
        uint256 marketingTax;
    }

    uint256 private constant _totalSupply = 15_000 * 1e18;

    //Router
    DexRouter public immutable uniswapRouter;
    address public immutable pairAddress;

    //Taxes
    Tax public buyTaxes = Tax(2);
    Tax public sellTaxes = Tax(2);
    Tax public transferTaxes = Tax(2);



    //Whitelisting from taxes/maxwallet/txlimit/etc
    mapping(address => bool) private whitelisted;
    mapping(address => uint256) private _holderLastTransferTimestamp;

    //Swapping
    uint256 public swapTokensAtAmount = _totalSupply / 1_000_000; //after 0.01% of total supply, swap them
    bool public swapAndLiquifyEnabled = true;
    bool public isSwapping = false;
    bool public tradingEnabled = false;
    uint256 public startTradingBlock;
    bool public transferDelayEnabled = true;


    //Wallets
    address public marketingWallet = 0x12e686579C63b9654f7eb5A18923bd3D866F153C ;
    address public developmentWallet = 0x1e8954D70F0E5EFaF2E15124F52e12D8Ed2D7bD5 ;

    uint256 public maxWalletPercentage = 2;


    //Events
    event BuyFeesUpdated(uint256 indexed _trFee);
    event SellFeesUpdated(uint256 indexed _trFee);
    event marketingWalletChanged(address indexed _trWallet);
    event developmentWalletChanged(address indexed _trWallet);
    event SwapThresholdUpdated(uint256 indexed _newThreshold);
    event InternalSwapStatusUpdated(bool indexed _status);
    event Whitelist(address indexed _target, bool indexed _status);
    event MaxWalletChanged(uint256 percentage);

    constructor() ERC20("Pepe Of Memeland", "POM") {

        uniswapRouter = DexRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // mainet
        pairAddress = DexFactory(uniswapRouter.factory()).createPair(
            address(this),
            uniswapRouter.WETH()
        );
        whitelisted[msg.sender] = true;
        whitelisted[address(uniswapRouter)] = true;
        whitelisted[address(this)] = true;       
        _mint(msg.sender, _totalSupply);

    }

    function setmarketingWallet(address _newmarketing) external onlyOwner {
        require(
            _newmarketing != address(0),
            "can not set marketing to dead wallet"
        );
        marketingWallet = _newmarketing;
        emit marketingWalletChanged(_newmarketing);
    }

    function setdevelopmentWallet(address _newdevelopment) external onlyOwner {
        require(
            _newdevelopment != address(0),
            "can not set development to dead wallet"
        );
        marketingWallet = _newdevelopment;
        emit developmentWalletChanged(_newdevelopment);
    }
    function enableTrading() external onlyOwner {
        require(!tradingEnabled, "Trading is already enabled");
        tradingEnabled = true;
        startTradingBlock = block.number;
    }

    function setBuyTaxes(uint256 _marketingTax) external onlyOwner {
        buyTaxes.marketingTax = _marketingTax;
        require(_marketingTax <= 30, "Can not set buy fees higher than 30%");
        emit BuyFeesUpdated(_marketingTax);
    }

    function setSellTaxes(uint256 _marketingTax) external onlyOwner {
        sellTaxes.marketingTax = _marketingTax;
        require(_marketingTax <= 30, "Can not set buy fees higher than 30%");
        emit SellFeesUpdated(_marketingTax);
    }

    function setSwapTokensAtAmount(uint256 _newAmount) external onlyOwner {
        require(
            _newAmount > 0 && _newAmount <= (_totalSupply * 5) / 1000,
            "Minimum swap amount must be greater than 0 and less than 0.5% of total supply!"
        );
        swapTokensAtAmount = _newAmount;
        emit SwapThresholdUpdated(swapTokensAtAmount);
    }

    function toggleSwapping() external onlyOwner {
        swapAndLiquifyEnabled = (swapAndLiquifyEnabled) ? false : true;
    }

    function setWhitelistStatus(
        address _wallet,
        bool _status
    ) external onlyOwner {
        whitelisted[_wallet] = _status;
        emit Whitelist(_wallet, _status);
    }
    function removeLimits() external onlyOwner{
        maxWalletPercentage =100;
        transferDelayEnabled=false;
        transferTaxes.marketingTax = 0;
    }
    function checkWhitelist(address _wallet) external view returns (bool) {
        return whitelisted[_wallet];
    }
    function setMaxWalletPercentage(uint256 _percentage) external onlyOwner {
    require(_percentage > 1, "Percentage must be greater than 1%");
    require(_percentage <= 100, "Percentage must be less than or equal to 100");
    maxWalletPercentage = _percentage;
    emit MaxWalletChanged(_percentage);
}


    // this function is reponsible for managing tax, if _from or _to is whitelisted, we simply return _amount and skip all the limitations
function _takeTax(
        address _from,
        address _to,
        uint256 _amount
    ) internal returns (uint256) {
        if (whitelisted[_from] || whitelisted[_to]) {
            return _amount;
        }

        uint256 totalTax = transferTaxes.marketingTax;

        if (_to == pairAddress) {
            totalTax = sellTaxes.marketingTax;
        } else if (_from == pairAddress) {
            totalTax = buyTaxes.marketingTax;
        }

        // Check if within the first 5 blocks
if (block.number <= startTradingBlock + 5) {
    if (block.number == startTradingBlock + 4) {
        totalTax = 5;
    } else if (block.number == startTradingBlock + 3) {
        totalTax = 10;
    } else if (block.number == startTradingBlock + 2) {
        totalTax = 15;
    } else if (block.number == startTradingBlock + 1) {
        totalTax = 20;
    } else if (block.number == startTradingBlock ) {
        totalTax = 20;
    } else {
        totalTax = 3;
    }
}
        if (_to != pairAddress &&_from != pairAddress) {

        totalTax = transferTaxes.marketingTax;

        }

        uint256 tax = 0;
        if (totalTax > 0) {
            tax = (_amount * totalTax) / 100;
            super._transfer(_from, address(this), tax);
        }
        return (_amount - tax);
    }

function _transfer(
    address _from,
    address _to,
    uint256 _amount
) internal virtual override {

     if (transferDelayEnabled) {
        if (_to != address(pairAddress) && _to != address(pairAddress)) {
            require(_holderLastTransferTimestamp[tx.origin] < block.number, "Only one transfer per block allowed.");
            _holderLastTransferTimestamp[tx.origin] = block.number;
        }
    }   

    require(_from != address(0), "transfer from address zero");
    require(_to != address(0), "transfer to address zero");
    require(_amount > 0, "Transfer amount must be greater than zero");

    // Calculate the maximum wallet amount based on the total supply and the maximum wallet percentage
    uint256 maxWalletAmount = _totalSupply * maxWalletPercentage / 100;

    // Check if the transaction is within the maximum wallet limit
    if (!whitelisted[_from] && !whitelisted[_to] && _to != address(0) && _to != address(this) && _to != pairAddress) {
        require(balanceOf(_to) + _amount <= maxWalletAmount, "Exceeds maximum wallet amount");
    }

    uint256 toTransfer = _takeTax(_from, _to, _amount);

    bool canSwap = balanceOf(address(this)) >= swapTokensAtAmount;
    if (!whitelisted[_from] && !whitelisted[_to]) {
        require(tradingEnabled, "Trading not active");
        if (pairAddress == _to && swapAndLiquifyEnabled && canSwap && !isSwapping) {
            internalSwap();
        }
    }
    super._transfer(_from, _to, toTransfer);
}

    function internalSwap() internal {
        isSwapping = true;
        uint256 taxAmount = balanceOf(address(this)); 
        if (taxAmount == 0) {
            return;
        }
        swapToETH(balanceOf(address(this)));
       (bool success, ) = marketingWallet.call{value: address(this).balance/2}("");
        (bool success2, ) = developmentWallet.call{value: address(this).balance}("");

        require(success , "Transfer failed.");
        require(success2 , "Transfer failed.");

        isSwapping = false;
    }

    function swapToETH(uint256 _amount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapRouter.WETH();
        _approve(address(this), address(uniswapRouter), _amount);
        uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            _amount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_trFee","type":"uint256"}],"name":"BuyFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"InternalSwapStatusUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"MaxWalletChanged","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":"uint256","name":"_trFee","type":"uint256"}],"name":"SellFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_newThreshold","type":"uint256"}],"name":"SwapThresholdUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_target","type":"address"},{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"Whitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_trWallet","type":"address"}],"name":"developmentWalletChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_trWallet","type":"address"}],"name":"marketingWalletChanged","type":"event"},{"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":"buyTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isSwapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setBuyTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percentage","type":"uint256"}],"name":"setMaxWalletPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newdevelopment","type":"address"}],"name":"setdevelopmentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newmarketing","type":"address"}],"name":"setmarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTradingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSwapping","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract DexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

600260c0819052600681905560e081905260078190556101206040526101008190526008556200003d620f424069032d26d12e980b60000062000424565b600b55600c805462ffffff19166001179055600e80547412e686579c63b9654f7eb5a18923bd3d866f153c016001600160a81b0319909116179055600f80546001600160a01b031916731e8954d70f0e5efaf2e15124f52e12d8ed2d7bd51790556002601055348015620000b057600080fd5b506040518060400160405280601081526020016f14195c194813d98813595b595b185b9960821b81525060405180604001604052806003815260200162504f4d60e81b8152508160039081620001079190620004eb565b506004620001168282620004eb565b505050620001336200012d6200030360201b60201c565b62000307565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000189573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001af9190620005b7565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002259190620005b7565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000273573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002999190620005b7565b6001600160a01b0390811660a052336000818152600960205260408082208054600160ff199182168117909255608051909516835281832080548616821790553083529120805490931617909155620002fd9069032d26d12e980b60000062000359565b62000611565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003b45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620003c89190620005e9565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b6000826200044257634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200047257607f821691505b6020821081036200049357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200041f57600081815260208120601f850160051c81016020861015620004c25750805b601f850160051c820191505b81811015620004e357828155600101620004ce565b505050505050565b81516001600160401b0381111562000507576200050762000447565b6200051f816200051884546200045d565b8462000499565b602080601f8311600181146200055757600084156200053e5750858301515b600019600386901b1c1916600185901b178555620004e3565b600085815260208120601f198616915b82811015620005885788860151825594840194600190910190840162000567565b5085821015620005a75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620005ca57600080fd5b81516001600160a01b0381168114620005e257600080fd5b9392505050565b808201808211156200060b57634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a051611ffd62000684600039600081816105f0015281816110d70152818161111401528181611376015281816114ec0152818161160a0152818161163e01528181611715015261175201526000818161049501528181611b5d01528181611c160152611c520152611ffd6000f3fe6080604052600436106102345760003560e01c806375f0a8741161012e578063a9059cbb116100ab578063dd62ed3e1161006f578063dd62ed3e146106ab578063e2f45605146106cb578063ef586f71146106e1578063f2fde38b146106f6578063f66895a31461071657600080fd5b8063a9059cbb14610612578063afa4f3b214610632578063b886311514610652578063c04a541414610671578063c876d0b91461069157600080fd5b80638da5cb5b116100f25780638da5cb5b1461056b57806395d89b4114610589578063a3ca847d1461059e578063a457c2d7146105be578063a8b08982146105de57600080fd5b806375f0a874146104e457806376be96f3146105095780637a845ece1461051f578063864701a51461053f5780638a8c523c1461055657600080fd5b806339509351116101bc578063599ca39711610180578063599ca3971461042257806370a0823114610438578063715018a61461046e578063735de9f714610483578063751039fc146104cf57600080fd5b806339509351146103915780634830aa17146103b15780634a74bb02146103d15780634ada218b146103eb5780635331803c1461040b57600080fd5b806318160ddd1161020357806318160ddd146102dd5780631950c218146102fc578063224611731461033557806323b872dd14610355578063313ce5671461037557600080fd5b806306fdde03146102405780630940bbc71461026b578063095ea7b31461028d5780630c424284146102bd57600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b5061025561072d565b6040516102629190611cbe565b60405180910390f35b34801561027757600080fd5b5061028b610286366004611d0c565b6107bf565b005b34801561029957600080fd5b506102ad6102a8366004611d3a565b610824565b6040519015158152602001610262565b3480156102c957600080fd5b5061028b6102d8366004611d66565b61083e565b3480156102e957600080fd5b506002545b604051908152602001610262565b34801561030857600080fd5b506102ad610317366004611da4565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561034157600080fd5b5061028b610350366004611da4565b61089a565b34801561036157600080fd5b506102ad610370366004611dc1565b610956565b34801561038157600080fd5b5060405160128152602001610262565b34801561039d57600080fd5b506102ad6103ac366004611d3a565b61097c565b3480156103bd57600080fd5b5061028b6103cc366004611da4565b61099e565b3480156103dd57600080fd5b50600c546102ad9060ff1681565b3480156103f757600080fd5b50600c546102ad9062010000900460ff1681565b34801561041757600080fd5b506008546102ee9081565b34801561042e57600080fd5b506102ee60105481565b34801561044457600080fd5b506102ee610453366004611da4565b6001600160a01b031660009081526020819052604090205490565b34801561047a57600080fd5b5061028b610a5d565b34801561048f57600080fd5b506104b77f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610262565b3480156104db57600080fd5b5061028b610a71565b3480156104f057600080fd5b50600e546104b79061010090046001600160a01b031681565b34801561051557600080fd5b506102ee600d5481565b34801561052b57600080fd5b5061028b61053a366004611d0c565b610a8f565b34801561054b57600080fd5b506006546102ee9081565b34801561056257600080fd5b5061028b610b93565b34801561057757600080fd5b506005546001600160a01b03166104b7565b34801561059557600080fd5b50610255610c0b565b3480156105aa57600080fd5b5061028b6105b9366004611d0c565b610c1a565b3480156105ca57600080fd5b506102ad6105d9366004611d3a565b610c76565b3480156105ea57600080fd5b506104b77f000000000000000000000000000000000000000000000000000000000000000081565b34801561061e57600080fd5b506102ad61062d366004611d3a565b610cfc565b34801561063e57600080fd5b5061028b61064d366004611d0c565b610d0a565b34801561065e57600080fd5b50600c546102ad90610100900460ff1681565b34801561067d57600080fd5b50600f546104b7906001600160a01b031681565b34801561069d57600080fd5b50600e546102ad9060ff1681565b3480156106b757600080fd5b506102ee6106c6366004611e02565b610dff565b3480156106d757600080fd5b506102ee600b5481565b3480156106ed57600080fd5b5061028b610e2a565b34801561070257600080fd5b5061028b610711366004611da4565b610e59565b34801561072257600080fd5b506007546102ee9081565b60606003805461073c90611e30565b80601f016020809104026020016040519081016040528092919081815260200182805461076890611e30565b80156107b55780601f1061078a576101008083540402835291602001916107b5565b820191906000526020600020905b81548152906001019060200180831161079857829003601f168201915b5050505050905090565b6107c7610ed2565b6007819055601e8111156107f65760405162461bcd60e51b81526004016107ed90611e6a565b60405180910390fd5b60405181907f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5590600090a250565b600033610832818585610f2c565b60019150505b92915050565b610846610ed2565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b6108a2610ed2565b6001600160a01b0381166109045760405162461bcd60e51b8152602060048201526024808201527f63616e206e6f7420736574206d61726b6574696e6720746f20646561642077616044820152631b1b195d60e21b60648201526084016107ed565b600e8054610100600160a81b0319166101006001600160a01b038416908102919091179091556040517fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761990600090a250565b600033610964858285611050565b61096f8585856110ca565b60019150505b9392505050565b60003361083281858561098f8383610dff565b6109999190611ec4565b610f2c565b6109a6610ed2565b6001600160a01b038116610a0b5760405162461bcd60e51b815260206004820152602660248201527f63616e206e6f742073657420646576656c6f706d656e7420746f2064656164206044820152651dd85b1b195d60d21b60648201526084016107ed565b600e8054610100600160a81b0319166101006001600160a01b038416908102919091179091556040517fbeaabd0126ed018f14bda12cf4f7e23b1919648d9c80283d4f9c9743736b197190600090a250565b610a65610ed2565b610a6f6000611560565b565b610a79610ed2565b6064601055600e805460ff191690556000600855565b610a97610ed2565b60018111610af25760405162461bcd60e51b815260206004820152602260248201527f50657263656e74616765206d7573742062652067726561746572207468616e20604482015261312560f01b60648201526084016107ed565b6064811115610b585760405162461bcd60e51b815260206004820152602c60248201527f50657263656e74616765206d757374206265206c657373207468616e206f722060448201526b0657175616c20746f203130360a41b60648201526084016107ed565b60108190556040518181527fd79b8c9aaacc4db9fee532137a1ade40c7238016bff71cb2abc1a3cf8b6cdff69060200160405180910390a150565b610b9b610ed2565b600c5462010000900460ff1615610bf45760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c656400000000000060448201526064016107ed565b600c805462ff000019166201000017905543600d55565b60606004805461073c90611e30565b610c22610ed2565b6006819055601e811115610c485760405162461bcd60e51b81526004016107ed90611e6a565b60405181907f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb90600090a250565b60003381610c848286610dff565b905083811015610ce45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107ed565b610cf18286868403610f2c565b506001949350505050565b6000336108328185856110ca565b610d12610ed2565b600081118015610d4357506103e8610d3569032d26d12e980b6000006005611ed7565b610d3f9190611eee565b8111155b610dcc5760405162461bcd60e51b815260206004820152604e60248201527f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160448201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660648201526d20746f74616c20737570706c792160901b608482015260a4016107ed565b600b81905560405181907f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690600090a250565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e32610ed2565b600c5460ff16610e43576001610e46565b60005b600c805460ff1916911515919091179055565b610e61610ed2565b6001600160a01b038116610ec65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ed565b610ecf81611560565b50565b6005546001600160a01b03163314610a6f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ed565b6001600160a01b038316610f8e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107ed565b6001600160a01b038216610fef5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107ed565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061105c8484610dff565b905060001981146110c457818110156110b75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107ed565b6110c48484848403610f2c565b50505050565b600e5460ff16156111cb577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415801561114957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b156111cb57326000908152600a602052604090205443116111b85760405162461bcd60e51b8152602060048201526024808201527f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f6044820152633bb2b21760e11b60648201526084016107ed565b326000908152600a602052604090204390555b6001600160a01b0383166112215760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f00000000000060448201526064016107ed565b6001600160a01b0382166112775760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f000000000000000060448201526064016107ed565b600081116112d95760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016107ed565b6000606460105469032d26d12e980b6000006112f59190611ed7565b6112ff9190611eee565b6001600160a01b03851660009081526009602052604090205490915060ff1615801561134457506001600160a01b03831660009081526009602052604090205460ff16155b801561135857506001600160a01b03831615155b801561136d57506001600160a01b0383163014155b80156113ab57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614155b156114295780826113d1856001600160a01b031660009081526020819052604090205490565b6113db9190611ec4565b11156114295760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e7400000060448201526064016107ed565b60006114368585856115b2565b600b5430600090815260208181526040808320546001600160a01b038b16845260099092529091205492935010159060ff1615801561148e57506001600160a01b03851660009081526009602052604090205460ff16155b1561154d57600c5462010000900460ff166114e05760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b60448201526064016107ed565b846001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161480156115235750600c5460ff165b801561152c5750805b80156115405750600c54610100900460ff16155b1561154d5761154d6117d0565b611558868684611962565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526009602052604081205460ff16806115f157506001600160a01b03831660009081526009602052604090205460ff165b156115fd575080610975565b6008546001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169085160361163c575060075461167a565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b03160361167a57506006545b600d54611688906005611ec4565b431161171357600d5461169c906004611ec4565b43036116aa57506005611713565b600d546116b8906003611ec4565b43036116c65750600a611713565b600d546116d4906002611ec4565b43036116e25750600f611713565b600d546116f0906001611ec4565b43036116fe57506014611713565b600d54430361170f57506014611713565b5060035b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b03161415801561178757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b1561179157506008545b600081156117bc5760646117a58386611ed7565b6117af9190611eee565b90506117bc863083611962565b6117c68185611f10565b9695505050505050565b600c805461ff001916610100179055306000908152602081905260408120549050806000036117fc5750565b3060009081526020819052604090205461181590611b06565b600e5460009061010090046001600160a01b0316611834600247611eee565b604051600081818185875af1925050503d8060008114611870576040519150601f19603f3d011682016040523d82523d6000602084013e611875565b606091505b5050600f546040519192506000916001600160a01b039091169047908381818185875af1925050503d80600081146118c9576040519150601f19603f3d011682016040523d82523d6000602084013e6118ce565b606091505b50509050816119125760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016107ed565b806119525760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016107ed565b5050600c805461ff001916905550565b6001600160a01b0383166119c65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107ed565b6001600160a01b038216611a285760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107ed565b6001600160a01b03831660009081526020819052604090205481811015611aa05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107ed565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36110c4565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b3b57611b3b611f23565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bb9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bdd9190611f39565b81600181518110611bf057611bf0611f23565b60200260200101906001600160a01b031690816001600160a01b031681525050611c3b307f000000000000000000000000000000000000000000000000000000000000000084610f2c565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611c90908590600090869030904290600401611f56565b600060405180830381600087803b158015611caa57600080fd5b505af1158015611558573d6000803e3d6000fd5b600060208083528351808285015260005b81811015611ceb57858101830151858201604001528201611ccf565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611d1e57600080fd5b5035919050565b6001600160a01b0381168114610ecf57600080fd5b60008060408385031215611d4d57600080fd5b8235611d5881611d25565b946020939093013593505050565b60008060408385031215611d7957600080fd5b8235611d8481611d25565b915060208301358015158114611d9957600080fd5b809150509250929050565b600060208284031215611db657600080fd5b813561097581611d25565b600080600060608486031215611dd657600080fd5b8335611de181611d25565b92506020840135611df181611d25565b929592945050506040919091013590565b60008060408385031215611e1557600080fd5b8235611e2081611d25565b91506020830135611d9981611d25565b600181811c90821680611e4457607f821691505b602082108103611e6457634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526024908201527f43616e206e6f742073657420627579206665657320686967686572207468616e6040820152632033302560e01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561083857610838611eae565b808202811582820484141761083857610838611eae565b600082611f0b57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561083857610838611eae565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611f4b57600080fd5b815161097581611d25565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611fa65784516001600160a01b031683529383019391830191600101611f81565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122007881ef06a6b246756952bdfb9bacff61c070e5bf8534752c655e66a092bee4764736f6c63430008130033

Deployed Bytecode

0x6080604052600436106102345760003560e01c806375f0a8741161012e578063a9059cbb116100ab578063dd62ed3e1161006f578063dd62ed3e146106ab578063e2f45605146106cb578063ef586f71146106e1578063f2fde38b146106f6578063f66895a31461071657600080fd5b8063a9059cbb14610612578063afa4f3b214610632578063b886311514610652578063c04a541414610671578063c876d0b91461069157600080fd5b80638da5cb5b116100f25780638da5cb5b1461056b57806395d89b4114610589578063a3ca847d1461059e578063a457c2d7146105be578063a8b08982146105de57600080fd5b806375f0a874146104e457806376be96f3146105095780637a845ece1461051f578063864701a51461053f5780638a8c523c1461055657600080fd5b806339509351116101bc578063599ca39711610180578063599ca3971461042257806370a0823114610438578063715018a61461046e578063735de9f714610483578063751039fc146104cf57600080fd5b806339509351146103915780634830aa17146103b15780634a74bb02146103d15780634ada218b146103eb5780635331803c1461040b57600080fd5b806318160ddd1161020357806318160ddd146102dd5780631950c218146102fc578063224611731461033557806323b872dd14610355578063313ce5671461037557600080fd5b806306fdde03146102405780630940bbc71461026b578063095ea7b31461028d5780630c424284146102bd57600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b5061025561072d565b6040516102629190611cbe565b60405180910390f35b34801561027757600080fd5b5061028b610286366004611d0c565b6107bf565b005b34801561029957600080fd5b506102ad6102a8366004611d3a565b610824565b6040519015158152602001610262565b3480156102c957600080fd5b5061028b6102d8366004611d66565b61083e565b3480156102e957600080fd5b506002545b604051908152602001610262565b34801561030857600080fd5b506102ad610317366004611da4565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561034157600080fd5b5061028b610350366004611da4565b61089a565b34801561036157600080fd5b506102ad610370366004611dc1565b610956565b34801561038157600080fd5b5060405160128152602001610262565b34801561039d57600080fd5b506102ad6103ac366004611d3a565b61097c565b3480156103bd57600080fd5b5061028b6103cc366004611da4565b61099e565b3480156103dd57600080fd5b50600c546102ad9060ff1681565b3480156103f757600080fd5b50600c546102ad9062010000900460ff1681565b34801561041757600080fd5b506008546102ee9081565b34801561042e57600080fd5b506102ee60105481565b34801561044457600080fd5b506102ee610453366004611da4565b6001600160a01b031660009081526020819052604090205490565b34801561047a57600080fd5b5061028b610a5d565b34801561048f57600080fd5b506104b77f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610262565b3480156104db57600080fd5b5061028b610a71565b3480156104f057600080fd5b50600e546104b79061010090046001600160a01b031681565b34801561051557600080fd5b506102ee600d5481565b34801561052b57600080fd5b5061028b61053a366004611d0c565b610a8f565b34801561054b57600080fd5b506006546102ee9081565b34801561056257600080fd5b5061028b610b93565b34801561057757600080fd5b506005546001600160a01b03166104b7565b34801561059557600080fd5b50610255610c0b565b3480156105aa57600080fd5b5061028b6105b9366004611d0c565b610c1a565b3480156105ca57600080fd5b506102ad6105d9366004611d3a565b610c76565b3480156105ea57600080fd5b506104b77f0000000000000000000000006b50e569b41864dadc963d7ac3ae03fcbea4e77a81565b34801561061e57600080fd5b506102ad61062d366004611d3a565b610cfc565b34801561063e57600080fd5b5061028b61064d366004611d0c565b610d0a565b34801561065e57600080fd5b50600c546102ad90610100900460ff1681565b34801561067d57600080fd5b50600f546104b7906001600160a01b031681565b34801561069d57600080fd5b50600e546102ad9060ff1681565b3480156106b757600080fd5b506102ee6106c6366004611e02565b610dff565b3480156106d757600080fd5b506102ee600b5481565b3480156106ed57600080fd5b5061028b610e2a565b34801561070257600080fd5b5061028b610711366004611da4565b610e59565b34801561072257600080fd5b506007546102ee9081565b60606003805461073c90611e30565b80601f016020809104026020016040519081016040528092919081815260200182805461076890611e30565b80156107b55780601f1061078a576101008083540402835291602001916107b5565b820191906000526020600020905b81548152906001019060200180831161079857829003601f168201915b5050505050905090565b6107c7610ed2565b6007819055601e8111156107f65760405162461bcd60e51b81526004016107ed90611e6a565b60405180910390fd5b60405181907f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5590600090a250565b600033610832818585610f2c565b60019150505b92915050565b610846610ed2565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b6108a2610ed2565b6001600160a01b0381166109045760405162461bcd60e51b8152602060048201526024808201527f63616e206e6f7420736574206d61726b6574696e6720746f20646561642077616044820152631b1b195d60e21b60648201526084016107ed565b600e8054610100600160a81b0319166101006001600160a01b038416908102919091179091556040517fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761990600090a250565b600033610964858285611050565b61096f8585856110ca565b60019150505b9392505050565b60003361083281858561098f8383610dff565b6109999190611ec4565b610f2c565b6109a6610ed2565b6001600160a01b038116610a0b5760405162461bcd60e51b815260206004820152602660248201527f63616e206e6f742073657420646576656c6f706d656e7420746f2064656164206044820152651dd85b1b195d60d21b60648201526084016107ed565b600e8054610100600160a81b0319166101006001600160a01b038416908102919091179091556040517fbeaabd0126ed018f14bda12cf4f7e23b1919648d9c80283d4f9c9743736b197190600090a250565b610a65610ed2565b610a6f6000611560565b565b610a79610ed2565b6064601055600e805460ff191690556000600855565b610a97610ed2565b60018111610af25760405162461bcd60e51b815260206004820152602260248201527f50657263656e74616765206d7573742062652067726561746572207468616e20604482015261312560f01b60648201526084016107ed565b6064811115610b585760405162461bcd60e51b815260206004820152602c60248201527f50657263656e74616765206d757374206265206c657373207468616e206f722060448201526b0657175616c20746f203130360a41b60648201526084016107ed565b60108190556040518181527fd79b8c9aaacc4db9fee532137a1ade40c7238016bff71cb2abc1a3cf8b6cdff69060200160405180910390a150565b610b9b610ed2565b600c5462010000900460ff1615610bf45760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c656400000000000060448201526064016107ed565b600c805462ff000019166201000017905543600d55565b60606004805461073c90611e30565b610c22610ed2565b6006819055601e811115610c485760405162461bcd60e51b81526004016107ed90611e6a565b60405181907f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb90600090a250565b60003381610c848286610dff565b905083811015610ce45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107ed565b610cf18286868403610f2c565b506001949350505050565b6000336108328185856110ca565b610d12610ed2565b600081118015610d4357506103e8610d3569032d26d12e980b6000006005611ed7565b610d3f9190611eee565b8111155b610dcc5760405162461bcd60e51b815260206004820152604e60248201527f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160448201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660648201526d20746f74616c20737570706c792160901b608482015260a4016107ed565b600b81905560405181907f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690600090a250565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e32610ed2565b600c5460ff16610e43576001610e46565b60005b600c805460ff1916911515919091179055565b610e61610ed2565b6001600160a01b038116610ec65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ed565b610ecf81611560565b50565b6005546001600160a01b03163314610a6f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ed565b6001600160a01b038316610f8e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107ed565b6001600160a01b038216610fef5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107ed565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061105c8484610dff565b905060001981146110c457818110156110b75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107ed565b6110c48484848403610f2c565b50505050565b600e5460ff16156111cb577f0000000000000000000000006b50e569b41864dadc963d7ac3ae03fcbea4e77a6001600160a01b0316826001600160a01b03161415801561114957507f0000000000000000000000006b50e569b41864dadc963d7ac3ae03fcbea4e77a6001600160a01b0316826001600160a01b031614155b156111cb57326000908152600a602052604090205443116111b85760405162461bcd60e51b8152602060048201526024808201527f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f6044820152633bb2b21760e11b60648201526084016107ed565b326000908152600a602052604090204390555b6001600160a01b0383166112215760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f00000000000060448201526064016107ed565b6001600160a01b0382166112775760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f000000000000000060448201526064016107ed565b600081116112d95760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016107ed565b6000606460105469032d26d12e980b6000006112f59190611ed7565b6112ff9190611eee565b6001600160a01b03851660009081526009602052604090205490915060ff1615801561134457506001600160a01b03831660009081526009602052604090205460ff16155b801561135857506001600160a01b03831615155b801561136d57506001600160a01b0383163014155b80156113ab57507f0000000000000000000000006b50e569b41864dadc963d7ac3ae03fcbea4e77a6001600160a01b0316836001600160a01b031614155b156114295780826113d1856001600160a01b031660009081526020819052604090205490565b6113db9190611ec4565b11156114295760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e7400000060448201526064016107ed565b60006114368585856115b2565b600b5430600090815260208181526040808320546001600160a01b038b16845260099092529091205492935010159060ff1615801561148e57506001600160a01b03851660009081526009602052604090205460ff16155b1561154d57600c5462010000900460ff166114e05760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b60448201526064016107ed565b846001600160a01b03167f0000000000000000000000006b50e569b41864dadc963d7ac3ae03fcbea4e77a6001600160a01b03161480156115235750600c5460ff165b801561152c5750805b80156115405750600c54610100900460ff16155b1561154d5761154d6117d0565b611558868684611962565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526009602052604081205460ff16806115f157506001600160a01b03831660009081526009602052604090205460ff165b156115fd575080610975565b6008546001600160a01b037f0000000000000000000000006b50e569b41864dadc963d7ac3ae03fcbea4e77a81169085160361163c575060075461167a565b7f0000000000000000000000006b50e569b41864dadc963d7ac3ae03fcbea4e77a6001600160a01b0316856001600160a01b03160361167a57506006545b600d54611688906005611ec4565b431161171357600d5461169c906004611ec4565b43036116aa57506005611713565b600d546116b8906003611ec4565b43036116c65750600a611713565b600d546116d4906002611ec4565b43036116e25750600f611713565b600d546116f0906001611ec4565b43036116fe57506014611713565b600d54430361170f57506014611713565b5060035b7f0000000000000000000000006b50e569b41864dadc963d7ac3ae03fcbea4e77a6001600160a01b0316846001600160a01b03161415801561178757507f0000000000000000000000006b50e569b41864dadc963d7ac3ae03fcbea4e77a6001600160a01b0316856001600160a01b031614155b1561179157506008545b600081156117bc5760646117a58386611ed7565b6117af9190611eee565b90506117bc863083611962565b6117c68185611f10565b9695505050505050565b600c805461ff001916610100179055306000908152602081905260408120549050806000036117fc5750565b3060009081526020819052604090205461181590611b06565b600e5460009061010090046001600160a01b0316611834600247611eee565b604051600081818185875af1925050503d8060008114611870576040519150601f19603f3d011682016040523d82523d6000602084013e611875565b606091505b5050600f546040519192506000916001600160a01b039091169047908381818185875af1925050503d80600081146118c9576040519150601f19603f3d011682016040523d82523d6000602084013e6118ce565b606091505b50509050816119125760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016107ed565b806119525760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016107ed565b5050600c805461ff001916905550565b6001600160a01b0383166119c65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107ed565b6001600160a01b038216611a285760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107ed565b6001600160a01b03831660009081526020819052604090205481811015611aa05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107ed565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36110c4565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b3b57611b3b611f23565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bb9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bdd9190611f39565b81600181518110611bf057611bf0611f23565b60200260200101906001600160a01b031690816001600160a01b031681525050611c3b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f2c565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611c90908590600090869030904290600401611f56565b600060405180830381600087803b158015611caa57600080fd5b505af1158015611558573d6000803e3d6000fd5b600060208083528351808285015260005b81811015611ceb57858101830151858201604001528201611ccf565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611d1e57600080fd5b5035919050565b6001600160a01b0381168114610ecf57600080fd5b60008060408385031215611d4d57600080fd5b8235611d5881611d25565b946020939093013593505050565b60008060408385031215611d7957600080fd5b8235611d8481611d25565b915060208301358015158114611d9957600080fd5b809150509250929050565b600060208284031215611db657600080fd5b813561097581611d25565b600080600060608486031215611dd657600080fd5b8335611de181611d25565b92506020840135611df181611d25565b929592945050506040919091013590565b60008060408385031215611e1557600080fd5b8235611e2081611d25565b91506020830135611d9981611d25565b600181811c90821680611e4457607f821691505b602082108103611e6457634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526024908201527f43616e206e6f742073657420627579206665657320686967686572207468616e6040820152632033302560e01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561083857610838611eae565b808202811582820484141761083857610838611eae565b600082611f0b57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561083857610838611eae565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611f4b57600080fd5b815161097581611d25565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611fa65784516001600160a01b031683529383019391830191600101611f81565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122007881ef06a6b246756952bdfb9bacff61c070e5bf8534752c655e66a092bee4764736f6c63430008130033

Deployed Bytecode Sourcemap

28167:8803:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16253:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31359:246;;;;;;;;;;-1:-1:-1;31359:246:0;;;;;:::i;:::-;;:::i;:::-;;18613:201;;;;;;;;;;-1:-1:-1;18613:201:0;;;;;:::i;:::-;;:::i;:::-;;;1373:14:1;;1366:22;1348:41;;1336:2;1321:18;18613:201:0;1208:187:1;32127:195:0;;;;;;;;;;-1:-1:-1;32127:195:0;;;;;:::i;:::-;;:::i;17382:108::-;;;;;;;;;;-1:-1:-1;17470:12:0;;17382:108;;;1967:25:1;;;1955:2;1940:18;17382:108:0;1821:177:1;32497:116:0;;;;;;;;;;-1:-1:-1;32497:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;32585:20:0;32561:4;32585:20;;;:11;:20;;;;;;;;;32497:116;30286:297;;;;;;;;;;-1:-1:-1;30286:297:0;;;;;:::i;:::-;;:::i;19394:261::-;;;;;;;;;;-1:-1:-1;19394:261:0;;;;;:::i;:::-;;:::i;17224:93::-;;;;;;;;;;-1:-1:-1;17224:93:0;;17307:2;2858:36:1;;2846:2;2831:18;17224:93:0;2716:184:1;20064:238:0;;;;;;;;;;-1:-1:-1;20064:238:0;;;;;:::i;:::-;;:::i;30591:311::-;;;;;;;;;;-1:-1:-1;30591:311:0;;;;;:::i;:::-;;:::i;28862:40::-;;;;;;;;;;-1:-1:-1;28862:40:0;;;;;;;;28946:34;;;;;;;;;;-1:-1:-1;28946:34:0;;;;;;;;;;;28515:33;;;;;;;;;;-1:-1:-1;28515:33:0;;;;;;29261:38;;;;;;;;;;;;;;;;17553:127;;;;;;;;;;-1:-1:-1;17553:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;17654:18:0;17627:7;17654:18;;;;;;;;;;;;17553:127;9708:103;;;;;;;;;;;;;:::i;28339:40::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3087:32:1;;;3069:51;;3057:2;3042:18;28339:40:0;2905:221:1;32328:163:0;;;;;;;;;;;;;:::i;29091:75::-;;;;;;;;;;-1:-1:-1;29091:75:0;;;;;;;-1:-1:-1;;;;;29091:75:0;;;28987:32;;;;;;;;;;;;;;;;32619:308;;;;;;;;;;-1:-1:-1;32619:308:0;;;;;:::i;:::-;;:::i;28444:28::-;;;;;;;;;;-1:-1:-1;28444:28:0;;;;;;30908:192;;;;;;;;;;;;;:::i;9067:87::-;;;;;;;;;;-1:-1:-1;9140:6:0;;-1:-1:-1;;;;;9140:6:0;9067:87;;16472:104;;;;;;;;;;;;;:::i;31108:243::-;;;;;;;;;;-1:-1:-1;31108:243:0;;;;;:::i;:::-;;:::i;20805:436::-;;;;;;;;;;-1:-1:-1;20805:436:0;;;;;:::i;:::-;;:::i;28386:36::-;;;;;;;;;;;;;;;17886:193;;;;;;;;;;-1:-1:-1;17886:193:0;;;;;:::i;:::-;;:::i;31613:372::-;;;;;;;;;;-1:-1:-1;31613:372:0;;;;;:::i;:::-;;:::i;28909:30::-;;;;;;;;;;-1:-1:-1;28909:30:0;;;;;;;;;;;29174:77;;;;;;;;;;-1:-1:-1;29174:77:0;;;;-1:-1:-1;;;;;29174:77:0;;;29026:39;;;;;;;;;;-1:-1:-1;29026:39:0;;;;;;;;18142:151;;;;;;;;;;-1:-1:-1;18142:151:0;;;;;:::i;:::-;;:::i;28754:60::-;;;;;;;;;;;;;;;;31993:126;;;;;;;;;;;;;:::i;9966:201::-;;;;;;;;;;-1:-1:-1;9966:201:0;;;;;:::i;:::-;;:::i;28479:29::-;;;;;;;;;;-1:-1:-1;28479:29:0;;;;;;16253:100;16307:13;16340:5;16333:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16253:100;:::o;31359:246::-;8953:13;:11;:13::i;:::-;31434:9:::1;:38:::0;;;31508:2:::1;31491:19:::0;::::1;;31483:68;;;;-1:-1:-1::0;;;31483:68:0::1;;;;;;;:::i;:::-;;;;;;;;;31567:30;::::0;31583:13;;31567:30:::1;::::0;;;::::1;31359:246:::0;:::o;18613:201::-;18696:4;7698:10;18752:32;7698:10;18768:7;18777:6;18752:8;:32::i;:::-;18802:4;18795:11;;;18613:201;;;;;:::o;32127:195::-;8953:13;:11;:13::i;:::-;-1:-1:-1;;;;;32241:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;:30;;-1:-1:-1;;32241:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;32287:27;;32241:30;;:20;32287:27:::1;::::0;::::1;32127:195:::0;;:::o;30286:297::-;8953:13;:11;:13::i;:::-;-1:-1:-1;;;;;30389:27:0;::::1;30367:113;;;::::0;-1:-1:-1;;;30367:113:0;;4724:2:1;30367:113:0::1;::::0;::::1;4706:21:1::0;4763:2;4743:18;;;4736:30;4802:34;4782:18;;;4775:62;-1:-1:-1;;;4853:18:1;;;4846:34;4897:19;;30367:113:0::1;4522:400:1::0;30367:113:0::1;30491:15;:31:::0;;-1:-1:-1;;;;;;30491:31:0::1;;-1:-1:-1::0;;;;;30491:31:0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;30538:37:::1;::::0;::::1;::::0;-1:-1:-1;;30538:37:0::1;30286:297:::0;:::o;19394:261::-;19491:4;7698:10;19549:38;19565:4;7698:10;19580:6;19549:15;:38::i;:::-;19598:27;19608:4;19614:2;19618:6;19598:9;:27::i;:::-;19643:4;19636:11;;;19394:261;;;;;;:::o;20064:238::-;20152:4;7698:10;20208:64;7698:10;20224:7;20261:10;20233:25;7698:10;20224:7;20233:9;:25::i;:::-;:38;;;;:::i;:::-;20208:8;:64::i;30591:311::-;8953:13;:11;:13::i;:::-;-1:-1:-1;;;;;30698:29:0;::::1;30676:117;;;::::0;-1:-1:-1;;;30676:117:0;;5391:2:1;30676:117:0::1;::::0;::::1;5373:21:1::0;5430:2;5410:18;;;5403:30;5469:34;5449:18;;;5442:62;-1:-1:-1;;;5520:18:1;;;5513:36;5566:19;;30676:117:0::1;5189:402:1::0;30676:117:0::1;30804:15;:33:::0;;-1:-1:-1;;;;;;30804:33:0::1;;-1:-1:-1::0;;;;;30804:33:0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;30853:41:::1;::::0;::::1;::::0;-1:-1:-1;;30853:41:0::1;30591:311:::0;:::o;9708:103::-;8953:13;:11;:13::i;:::-;9773:30:::1;9800:1;9773:18;:30::i;:::-;9708:103::o:0;32328:163::-;8953:13;:11;:13::i;:::-;32402:3:::1;32381:19;:24:::0;32416:20:::1;:26:::0;;-1:-1:-1;;32416:26:0::1;::::0;;32437:5:::1;32453:13;:30:::0;32328:163::o;32619:308::-;8953:13;:11;:13::i;:::-;32720:1:::1;32706:11;:15;32698:62;;;::::0;-1:-1:-1;;;32698:62:0;;5798:2:1;32698:62:0::1;::::0;::::1;5780:21:1::0;5837:2;5817:18;;;5810:30;5876:34;5856:18;;;5849:62;-1:-1:-1;;;5927:18:1;;;5920:32;5969:19;;32698:62:0::1;5596:398:1::0;32698:62:0::1;32790:3;32775:11;:18;;32767:75;;;::::0;-1:-1:-1;;;32767:75:0;;6201:2:1;32767:75:0::1;::::0;::::1;6183:21:1::0;6240:2;6220:18;;;6213:30;6279:34;6259:18;;;6252:62;-1:-1:-1;;;6330:18:1;;;6323:42;6382:19;;32767:75:0::1;5999:408:1::0;32767:75:0::1;32849:19;:33:::0;;;32894:29:::1;::::0;1967:25:1;;;32894:29:0::1;::::0;1955:2:1;1940:18;32894:29:0::1;;;;;;;32619:308:::0;:::o;30908:192::-;8953:13;:11;:13::i;:::-;30972:14:::1;::::0;;;::::1;;;30971:15;30963:54;;;::::0;-1:-1:-1;;;30963:54:0;;6614:2:1;30963:54:0::1;::::0;::::1;6596:21:1::0;6653:2;6633:18;;;6626:30;6692:28;6672:18;;;6665:56;6738:18;;30963:54:0::1;6412:350:1::0;30963:54:0::1;31028:14;:21:::0;;-1:-1:-1;;31028:21:0::1;::::0;::::1;::::0;;31080:12:::1;31060:17;:32:::0;30908:192::o;16472:104::-;16528:13;16561:7;16554:14;;;;;:::i;31108:243::-;8953:13;:11;:13::i;:::-;31182:8:::1;:37:::0;;;31255:2:::1;31238:19:::0;::::1;;31230:68;;;;-1:-1:-1::0;;;31230:68:0::1;;;;;;;:::i;:::-;31314:29;::::0;31329:13;;31314:29:::1;::::0;;;::::1;31108:243:::0;:::o;20805:436::-;20898:4;7698:10;20898:4;20981:25;7698:10;20998:7;20981:9;:25::i;:::-;20954:52;;21045:15;21025:16;:35;;21017:85;;;;-1:-1:-1;;;21017:85:0;;6969:2:1;21017:85:0;;;6951:21:1;7008:2;6988:18;;;6981:30;7047:34;7027:18;;;7020:62;-1:-1:-1;;;7098:18:1;;;7091:35;7143:19;;21017:85:0;6767:401:1;21017:85:0;21138:60;21147:5;21154:7;21182:15;21163:16;:34;21138:8;:60::i;:::-;-1:-1:-1;21229:4:0;;20805:436;-1:-1:-1;;;;20805:436:0:o;17886:193::-;17965:4;7698:10;18021:28;7698:10;18038:2;18042:6;18021:9;:28::i;31613:372::-;8953:13;:11;:13::i;:::-;31729:1:::1;31716:10;:14;:57;;;;-1:-1:-1::0;31769:4:0::1;31749:16;28303:13;31764:1;31749:16;:::i;:::-;31748:25;;;;:::i;:::-;31734:10;:39;;31716:57;31694:185;;;::::0;-1:-1:-1;;;31694:185:0;;7770:2:1;31694:185:0::1;::::0;::::1;7752:21:1::0;7809:2;7789:18;;;7782:30;7848:34;7828:18;;;7821:62;7919:34;7899:18;;;7892:62;-1:-1:-1;;;7970:19:1;;;7963:45;8025:19;;31694:185:0::1;7568:482:1::0;31694:185:0::1;31890:18;:31:::0;;;31937:40:::1;::::0;31911:10;;31937:40:::1;::::0;;;::::1;31613:372:::0;:::o;18142:151::-;-1:-1:-1;;;;;18258:18:0;;;18231:7;18258:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18142:151::o;31993:126::-;8953:13;:11;:13::i;:::-;32074:21:::1;::::0;::::1;;32073:38;;32107:4;32073:38;;;32099:5;32073:38;32049:21;:62:::0;;-1:-1:-1;;32049:62:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31993:126::o;9966:201::-;8953:13;:11;:13::i;:::-;-1:-1:-1;;;;;10055:22:0;::::1;10047:73;;;::::0;-1:-1:-1;;;10047:73:0;;8257:2:1;10047:73:0::1;::::0;::::1;8239:21:1::0;8296:2;8276:18;;;8269:30;8335:34;8315:18;;;8308:62;-1:-1:-1;;;8386:18:1;;;8379:36;8432:19;;10047:73:0::1;8055:402:1::0;10047:73:0::1;10131:28;10150:8;10131:18;:28::i;:::-;9966:201:::0;:::o;9232:132::-;9140:6;;-1:-1:-1;;;;;9140:6:0;7698:10;9296:23;9288:68;;;;-1:-1:-1;;;9288:68:0;;8664:2:1;9288:68:0;;;8646:21:1;;;8683:18;;;8676:30;8742:34;8722:18;;;8715:62;8794:18;;9288:68:0;8462:356:1;24798:346:0;-1:-1:-1;;;;;24900:19:0;;24892:68;;;;-1:-1:-1;;;24892:68:0;;9025:2:1;24892:68:0;;;9007:21:1;9064:2;9044:18;;;9037:30;9103:34;9083:18;;;9076:62;-1:-1:-1;;;9154:18:1;;;9147:34;9198:19;;24892:68:0;8823:400:1;24892:68:0;-1:-1:-1;;;;;24979:21:0;;24971:68;;;;-1:-1:-1;;;24971:68:0;;9430:2:1;24971:68:0;;;9412:21:1;9469:2;9449:18;;;9442:30;9508:34;9488:18;;;9481:62;-1:-1:-1;;;9559:18:1;;;9552:32;9601:19;;24971:68:0;9228:398:1;24971:68:0;-1:-1:-1;;;;;25052:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25104:32;;1967:25:1;;;25104:32:0;;1940:18:1;25104:32:0;;;;;;;24798:346;;;:::o;25435:419::-;25536:24;25563:25;25573:5;25580:7;25563:9;:25::i;:::-;25536:52;;-1:-1:-1;;25603:16:0;:37;25599:248;;25685:6;25665:16;:26;;25657:68;;;;-1:-1:-1;;;25657:68:0;;9833:2:1;25657:68:0;;;9815:21:1;9872:2;9852:18;;;9845:30;9911:31;9891:18;;;9884:59;9960:18;;25657:68:0;9631:353:1;25657:68:0;25769:51;25778:5;25785:7;25813:6;25794:16;:25;25769:8;:51::i;:::-;25525:329;25435:419;;;:::o;34411:1520::-;34533:20;;;;34529:307;;;34585:11;-1:-1:-1;;;;;34570:27:0;:3;-1:-1:-1;;;;;34570:27:0;;;:58;;;;;34616:11;-1:-1:-1;;;;;34601:27:0;:3;-1:-1:-1;;;;;34601:27:0;;;34570:58;34566:263;;;34682:9;34653:39;;;;:28;:39;;;;;;34695:12;-1:-1:-1;34645:103:0;;;;-1:-1:-1;;;34645:103:0;;10191:2:1;34645:103:0;;;10173:21:1;10230:2;10210:18;;;10203:30;10269:34;10249:18;;;10242:62;-1:-1:-1;;;10320:18:1;;;10313:34;10364:19;;34645:103:0;9989:400:1;34645:103:0;34792:9;34763:39;;;;:28;:39;;;;;34805:12;34763:54;;34566:263;-1:-1:-1;;;;;34855:19:0;;34847:58;;;;-1:-1:-1;;;34847:58:0;;10596:2:1;34847:58:0;;;10578:21:1;10635:2;10615:18;;;10608:30;10674:28;10654:18;;;10647:56;10720:18;;34847:58:0;10394:350:1;34847:58:0;-1:-1:-1;;;;;34920:17:0;;34912:54;;;;-1:-1:-1;;;34912:54:0;;10951:2:1;34912:54:0;;;10933:21:1;10990:2;10970:18;;;10963:30;11029:26;11009:18;;;11002:54;11073:18;;34912:54:0;10749:348:1;34912:54:0;34991:1;34981:7;:11;34973:65;;;;-1:-1:-1;;;34973:65:0;;11304:2:1;34973:65:0;;;11286:21:1;11343:2;11323:18;;;11316:30;11382:34;11362:18;;;11355:62;-1:-1:-1;;;11433:18:1;;;11426:39;11482:19;;34973:65:0;11102:405:1;34973:65:0;35151:23;35214:3;35192:19;;28303:13;35177:34;;;;:::i;:::-;:40;;;;:::i;:::-;-1:-1:-1;;;;;35299:18:0;;;;;;:11;:18;;;;;;35151:66;;-1:-1:-1;35299:18:0;;35298:19;:40;;;;-1:-1:-1;;;;;;35322:16:0;;;;;;:11;:16;;;;;;;;35321:17;35298:40;:61;;;;-1:-1:-1;;;;;;35342:17:0;;;;35298:61;:85;;;;-1:-1:-1;;;;;;35363:20:0;;35378:4;35363:20;;35298:85;:107;;;;;35394:11;-1:-1:-1;;;;;35387:18:0;:3;-1:-1:-1;;;;;35387:18:0;;;35298:107;35294:217;;;35454:15;35443:7;35426:14;35436:3;-1:-1:-1;;;;;17654:18:0;17627:7;17654:18;;;;;;;;;;;;17553:127;35426:14;:24;;;;:::i;:::-;:43;;35418:85;;;;-1:-1:-1;;;35418:85:0;;11714:2:1;35418:85:0;;;11696:21:1;11753:2;11733:18;;;11726:30;11792:31;11772:18;;;11765:59;11841:18;;35418:85:0;11512:353:1;35418:85:0;35519:18;35540:29;35549:5;35556:3;35561:7;35540:8;:29::i;:::-;35621:18;;35611:4;35578:12;17654:18;;;;;;;;;;;;-1:-1:-1;;;;;35651:18:0;;;;:11;:18;;;;;;;35519:50;;-1:-1:-1;;35593:46:0;;35651:18;;35650:19;:40;;;;-1:-1:-1;;;;;;35674:16:0;;;;;;:11;:16;;;;;;;;35673:17;35650:40;35646:236;;;35711:14;;;;;;;35703:45;;;;-1:-1:-1;;;35703:45:0;;12072:2:1;35703:45:0;;;12054:21:1;12111:2;12091:18;;;12084:30;-1:-1:-1;;;12130:18:1;;;12123:48;12188:18;;35703:45:0;11870:342:1;35703:45:0;35778:3;-1:-1:-1;;;;;35763:18:0;:11;-1:-1:-1;;;;;35763:18:0;;:43;;;;-1:-1:-1;35785:21:0;;;;35763:43;:54;;;;;35810:7;35763:54;:69;;;;-1:-1:-1;35822:10:0;;;;;;;35821:11;35763:69;35759:116;;;35849:14;:12;:14::i;:::-;35888:39;35904:5;35911:3;35916:10;35888:15;:39::i;:::-;34519:1412;;;34411:1520;;;:::o;10327:191::-;10420:6;;;-1:-1:-1;;;;;10437:17:0;;;-1:-1:-1;;;;;;10437:17:0;;;;;;;10470:40;;10420:6;;;10437:17;10420:6;;10470:40;;10401:16;;10470:40;10390:128;10327:191;:::o;33073:1334::-;-1:-1:-1;;;;;33212:18:0;;33188:7;33212:18;;;:11;:18;;;;;;;;;:38;;-1:-1:-1;;;;;;33234:16:0;;;;;;:11;:16;;;;;;;;33212:38;33208:85;;;-1:-1:-1;33274:7:0;33267:14;;33208:85;33324:13;:26;-1:-1:-1;;;;;33374:11:0;33367:18;;;;;;33363:175;;-1:-1:-1;33413:9:0;:22;33363:175;;;33466:11;-1:-1:-1;;;;;33457:20:0;:5;-1:-1:-1;;;;;33457:20:0;;33453:85;;-1:-1:-1;33505:8:0;:21;33453:85;33609:17;;:21;;33629:1;33609:21;:::i;:::-;33593:12;:37;33589:485;;33659:17;;:21;;33679:1;33659:21;:::i;:::-;33643:12;:37;33639:432;;-1:-1:-1;33704:1:0;33639:432;;;33739:17;;:21;;33759:1;33739:21;:::i;:::-;33723:12;:37;33719:352;;-1:-1:-1;33784:2:0;33719:352;;;33820:17;;:21;;33840:1;33820:21;:::i;:::-;33804:12;:37;33800:271;;-1:-1:-1;33865:2:0;33800:271;;;33901:17;;:21;;33921:1;33901:21;:::i;:::-;33885:12;:37;33881:190;;-1:-1:-1;33946:2:0;33881:190;;;33982:17;;33966:12;:33;33962:109;;-1:-1:-1;34024:2:0;33962:109;;;-1:-1:-1;34062:1:0;33962:109;34095:11;-1:-1:-1;;;;;34088:18:0;:3;-1:-1:-1;;;;;34088:18:0;;;:41;;;;;34118:11;-1:-1:-1;;;;;34109:20:0;:5;-1:-1:-1;;;;;34109:20:0;;;34088:41;34084:111;;;-1:-1:-1;34155:13:0;:26;34084:111;34207:11;34237:12;;34233:134;;34295:3;34273:18;34283:8;34273:7;:18;:::i;:::-;34272:26;;;;:::i;:::-;34266:32;;34313:42;34329:5;34344:4;34351:3;34313:15;:42::i;:::-;34385:13;34395:3;34385:7;:13;:::i;:::-;34377:22;33073:1334;-1:-1:-1;;;;;;33073:1334:0:o;35939:536::-;35983:10;:17;;-1:-1:-1;;35983:17:0;;;;;36049:4;-1:-1:-1;17654:18:0;;;;;;;;;;;36011:44;;36071:9;36084:1;36071:14;36067:53;;36102:7;35939:536::o;36067:53::-;36158:4;17627:7;17654:18;;;;;;;;;;;36130:35;;:9;:35::i;:::-;36194:15;;36176:12;;36194:15;;;-1:-1:-1;;;;;36194:15:0;36222:23;36244:1;36222:21;:23;:::i;:::-;36194:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;36281:17:0;;:56;;36175:75;;-1:-1:-1;36262:13:0;;-1:-1:-1;;;;;36281:17:0;;;;36311:21;;36262:13;36281:56;36262:13;36281:56;36311:21;36281:17;:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36261:76;;;36358:7;36350:37;;;;-1:-1:-1;;;36350:37:0;;12762:2:1;36350:37:0;;;12744:21:1;12801:2;12781:18;;;12774:30;-1:-1:-1;;;12820:18:1;;;12813:46;12876:18;;36350:37:0;12560:340:1;36350:37:0;36406:8;36398:38;;;;-1:-1:-1;;;36398:38:0;;12762:2:1;36398:38:0;;;12744:21:1;12801:2;12781:18;;;12774:30;-1:-1:-1;;;12820:18:1;;;12813:46;12876:18;;36398:38:0;12560:340:1;36398:38:0;-1:-1:-1;;36449:10:0;:18;;-1:-1:-1;;36449:18:0;;;-1:-1:-1;35939:536:0:o;21711:806::-;-1:-1:-1;;;;;21808:18:0;;21800:68;;;;-1:-1:-1;;;21800:68:0;;13107:2:1;21800:68:0;;;13089:21:1;13146:2;13126:18;;;13119:30;13185:34;13165:18;;;13158:62;-1:-1:-1;;;13236:18:1;;;13229:35;13281:19;;21800:68:0;12905:401:1;21800:68:0;-1:-1:-1;;;;;21887:16:0;;21879:64;;;;-1:-1:-1;;;21879:64:0;;13513:2:1;21879:64:0;;;13495:21:1;13552:2;13532:18;;;13525:30;13591:34;13571:18;;;13564:62;-1:-1:-1;;;13642:18:1;;;13635:33;13685:19;;21879:64:0;13311:399:1;21879:64:0;-1:-1:-1;;;;;22029:15:0;;22007:19;22029:15;;;;;;;;;;;22063:21;;;;22055:72;;;;-1:-1:-1;;;22055:72:0;;13917:2:1;22055:72:0;;;13899:21:1;13956:2;13936:18;;;13929:30;13995:34;13975:18;;;13968:62;-1:-1:-1;;;14046:18:1;;;14039:36;14092:19;;22055:72:0;13715:402:1;22055:72:0;-1:-1:-1;;;;;22163:15:0;;;:9;:15;;;;;;;;;;;22181:20;;;22163:38;;22381:13;;;;;;;;;;:23;;;;;;22433:26;;1967:25:1;;;22381:13:0;;22433:26;;1940:18:1;22433:26:0;;;;;;;22472:37;26454:91;36483:447;36563:16;;;36577:1;36563:16;;;;;;;;36539:21;;36563:16;;;;;;;;;;-1:-1:-1;36563:16:0;36539:40;;36608:4;36590;36595:1;36590:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;36590:23:0;;;-1:-1:-1;;;;;36590:23:0;;;;;36634:13;-1:-1:-1;;;;;36634:18:0;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36624:4;36629:1;36624:7;;;;;;;;:::i;:::-;;;;;;:30;-1:-1:-1;;;;;36624:30:0;;;-1:-1:-1;;;;;36624:30:0;;;;;36665:56;36682:4;36697:13;36713:7;36665:8;:56::i;:::-;36732:190;;-1:-1:-1;;;36732:190:0;;-1:-1:-1;;;;;36732:13:0;:64;;;;:190;;36811:7;;36833:1;;36849:4;;36876;;36896:15;;36732:190;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:548:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:180::-;626:6;679:2;667:9;658:7;654:23;650:32;647:52;;;695:1;692;685:12;647:52;-1:-1:-1;718:23:1;;567:180;-1:-1:-1;567:180:1:o;752:131::-;-1:-1:-1;;;;;827:31:1;;817:42;;807:70;;873:1;870;863:12;888:315;956:6;964;1017:2;1005:9;996:7;992:23;988:32;985:52;;;1033:1;1030;1023:12;985:52;1072:9;1059:23;1091:31;1116:5;1091:31;:::i;:::-;1141:5;1193:2;1178:18;;;;1165:32;;-1:-1:-1;;;888:315:1:o;1400:416::-;1465:6;1473;1526:2;1514:9;1505:7;1501:23;1497:32;1494:52;;;1542:1;1539;1532:12;1494:52;1581:9;1568:23;1600:31;1625:5;1600:31;:::i;:::-;1650:5;-1:-1:-1;1707:2:1;1692:18;;1679:32;1749:15;;1742:23;1730:36;;1720:64;;1780:1;1777;1770:12;1720:64;1803:7;1793:17;;;1400:416;;;;;:::o;2003:247::-;2062:6;2115:2;2103:9;2094:7;2090:23;2086:32;2083:52;;;2131:1;2128;2121:12;2083:52;2170:9;2157:23;2189:31;2214:5;2189:31;:::i;2255:456::-;2332:6;2340;2348;2401:2;2389:9;2380:7;2376:23;2372:32;2369:52;;;2417:1;2414;2407:12;2369:52;2456:9;2443:23;2475:31;2500:5;2475:31;:::i;:::-;2525:5;-1:-1:-1;2582:2:1;2567:18;;2554:32;2595:33;2554:32;2595:33;:::i;:::-;2255:456;;2647:7;;-1:-1:-1;;;2701:2:1;2686:18;;;;2673:32;;2255:456::o;3339:388::-;3407:6;3415;3468:2;3456:9;3447:7;3443:23;3439:32;3436:52;;;3484:1;3481;3474:12;3436:52;3523:9;3510:23;3542:31;3567:5;3542:31;:::i;:::-;3592:5;-1:-1:-1;3649:2:1;3634:18;;3621:32;3662:33;3621:32;3662:33;:::i;3732:380::-;3811:1;3807:12;;;;3854;;;3875:61;;3929:4;3921:6;3917:17;3907:27;;3875:61;3982:2;3974:6;3971:14;3951:18;3948:38;3945:161;;4028:10;4023:3;4019:20;4016:1;4009:31;4063:4;4060:1;4053:15;4091:4;4088:1;4081:15;3945:161;;3732:380;;;:::o;4117:400::-;4319:2;4301:21;;;4358:2;4338:18;;;4331:30;4397:34;4392:2;4377:18;;4370:62;-1:-1:-1;;;4463:2:1;4448:18;;4441:34;4507:3;4492:19;;4117:400::o;4927:127::-;4988:10;4983:3;4979:20;4976:1;4969:31;5019:4;5016:1;5009:15;5043:4;5040:1;5033:15;5059:125;5124:9;;;5145:10;;;5142:36;;;5158:18;;:::i;7173:168::-;7246:9;;;7277;;7294:15;;;7288:22;;7274:37;7264:71;;7315:18;;:::i;7346:217::-;7386:1;7412;7402:132;;7456:10;7451:3;7447:20;7444:1;7437:31;7491:4;7488:1;7481:15;7519:4;7516:1;7509:15;7402:132;-1:-1:-1;7548:9:1;;7346:217::o;12217:128::-;12284:9;;;12305:11;;;12302:37;;;12319:18;;:::i;14254:127::-;14315:10;14310:3;14306:20;14303:1;14296:31;14346:4;14343:1;14336:15;14370:4;14367:1;14360:15;14386:251;14456:6;14509:2;14497:9;14488:7;14484:23;14480:32;14477:52;;;14525:1;14522;14515:12;14477:52;14557:9;14551:16;14576:31;14601:5;14576:31;:::i;14642:980::-;14904:4;14952:3;14941:9;14937:19;14983:6;14972:9;14965:25;15009:2;15047:6;15042:2;15031:9;15027:18;15020:34;15090:3;15085:2;15074:9;15070:18;15063:31;15114:6;15149;15143:13;15180:6;15172;15165:22;15218:3;15207:9;15203:19;15196:26;;15257:2;15249:6;15245:15;15231:29;;15278:1;15288:195;15302:6;15299:1;15296:13;15288:195;;;15367:13;;-1:-1:-1;;;;;15363:39:1;15351:52;;15458:15;;;;15423:12;;;;15399:1;15317:9;15288:195;;;-1:-1:-1;;;;;;;15539:32:1;;;;15534:2;15519:18;;15512:60;-1:-1:-1;;;15603:3:1;15588:19;15581:35;15500:3;14642:980;-1:-1:-1;;;14642:980:1:o

Swarm Source

ipfs://07881ef06a6b246756952bdfb9bacff61c070e5bf8534752c655e66a092bee47
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.