ETH Price: $3,400.35 (-1.29%)
Gas: 2 Gwei

Token

POPI (Popi)
 

Overview

Max Total Supply

420,690,000,000,000 Popi

Holders

524

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.1159044000539302 Popi

Value
$0.00
0x767992f2f0190571fc93595ba2c1b8e202502544
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:
POPI

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-09-18
*/

// 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: popi.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 POPI is ERC20, Ownable {
    struct Tax {
        uint256 marketingTax;
    }

    uint256 private constant _totalSupply = 420_690_000_000_000 * 1e18;

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

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



    //Whitelisting from taxes/maxwallet/txlimit/etc
    mapping(address => bool) private whitelisted;
    mapping(address => bool) private isblacklisted;
    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 = 0x625ef188BcC8F27785F5036ef1dacf5f8e40cE2E ;
    uint256 public maxWalletPercentage = 2;


    //Events
    event BuyFeesUpdated(uint256 indexed _trFee);
    event SellFeesUpdated(uint256 indexed _trFee);
    event marketingWalletChanged(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("POPI", "Popi") {


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


        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 {
    // Add transfer delay logic
    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");

    // Check if the addresses are blacklisted
    require(!isblacklisted[_from], "Transfer from blacklisted address");
    require(!isblacklisted[_to], "Transfer to blacklisted address");

    // 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}("");
        require(success, "Transfer failed.");
        isSwapping = false;
    }
    function Isblacklisted(address a) public view returns (bool){
      return isblacklisted[a];
    }

    function addtoblacklist(address[] memory isblacklisted_) public onlyOwner {
        for (uint i = 0; i < isblacklisted_.length; i++) {
            isblacklisted[isblacklisted_[i]] = true;
        }
    }

    function removefromblacklist(address[] memory isnotblacklisted_) public onlyOwner {
      for (uint i = 0; i < isnotblacklisted_.length; i++) {
          isblacklisted[isnotblacklisted_[i]] = false;
      }
    }

        function removeLimits() external onlyOwner{
        maxWalletPercentage =100;
        transferDelayEnabled=false;
        transferTaxes.marketingTax = 0;
    }

    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":"marketingWalletChanged","type":"event"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"Isblacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"isblacklisted_","type":"address[]"}],"name":"addtoblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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":[{"internalType":"address[]","name":"isnotblacklisted_","type":"address[]"}],"name":"removefromblacklist","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":"_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"}]

600560c0819052600681905560e0819052600781905561012060405261010081905260085562000041620f42406d14bddab3e51a57cff87a50000000620003fb565b600c55600d805462ffffff19166001179055600f805474625ef188bcc8f27785f5036ef1dacf5f8e40ce2e016001600160a81b031990911617905560026010553480156200008e57600080fd5b5060405180604001604052806004815260200163504f504960e01b81525060405180604001604052806004815260200163506f706960e01b8152508160039081620000da9190620004c2565b506004620000e98282620004c2565b5050506200010662000100620002da60201b60201c565b620002de565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200015c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200018291906200058e565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001d2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f891906200058e565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000246573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026c91906200058e565b6001600160a01b0390811660a052336000818152600960205260408082208054600160ff199182168117909255608051909516835281832080548616821790553083529120805490931617909155620002d4906d14bddab3e51a57cff87a5000000062000330565b620005e8565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200038b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200039f9190620005c0565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b6000826200041957634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200044957607f821691505b6020821081036200046a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003f657600081815260208120601f850160051c81016020861015620004995750805b601f850160051c820191505b81811015620004ba57828155600101620004a5565b505050505050565b81516001600160401b03811115620004de57620004de6200041e565b620004f681620004ef845462000434565b8462000470565b602080601f8311600181146200052e5760008415620005155750858301515b600019600386901b1c1916600185901b178555620004ba565b600085815260208120601f198616915b828110156200055f578886015182559484019460019091019084016200053e565b50858210156200057e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620005a157600080fd5b81516001600160a01b0381168114620005b957600080fd5b9392505050565b80820180821115620005e257634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a0516120946200064d600039600081816105fb0152818161114401528181611181015281816114c30152818161163901528181611757015261178b0152600081816104a001528181611af001528181611ba90152611be501526120946000f3fe60806040526004361061023f5760003560e01c806376be96f31161012e578063afa4f3b2116100ab578063e5f320041161006f578063e5f32004146106cc578063e64b012f14610705578063ef586f7114610725578063f2fde38b1461073a578063f66895a31461075a57600080fd5b8063afa4f3b21461063d578063b88631151461065d578063c876d0b91461067c578063dd62ed3e14610696578063e2f45605146106b657600080fd5b806395d89b41116100f257806395d89b4114610594578063a3ca847d146105a9578063a457c2d7146105c9578063a8b08982146105e9578063a9059cbb1461061d57600080fd5b806376be96f3146105145780637a845ece1461052a578063864701a51461054a5780638a8c523c146105615780638da5cb5b1461057657600080fd5b806339509351116101bc57806370a082311161018057806370a0823114610443578063715018a614610479578063735de9f71461048e578063751039fc146104da57806375f0a874146104ef57600080fd5b806339509351146103bc5780634a74bb02146103dc5780634ada218b146103f65780635331803c14610416578063599ca3971461042d57600080fd5b806318160ddd1161020357806318160ddd146103085780631950c21814610327578063224611731461036057806323b872dd14610380578063313ce567146103a057600080fd5b806306fdde031461024b5780630940bbc714610276578063095ea7b3146102985780630c424284146102c857806315fac9f4146102e857600080fd5b3661024657005b600080fd5b34801561025757600080fd5b50610260610771565b60405161026d9190611c51565b60405180910390f35b34801561028257600080fd5b50610296610291366004611c9f565b610803565b005b3480156102a457600080fd5b506102b86102b3366004611cdd565b610868565b604051901515815260200161026d565b3480156102d457600080fd5b506102966102e3366004611d09565b610882565b3480156102f457600080fd5b50610296610303366004611d5d565b6108de565b34801561031457600080fd5b506002545b60405190815260200161026d565b34801561033357600080fd5b506102b8610342366004611e22565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561036c57600080fd5b5061029661037b366004611e22565b610952565b34801561038c57600080fd5b506102b861039b366004611e3f565b610a0e565b3480156103ac57600080fd5b506040516012815260200161026d565b3480156103c857600080fd5b506102b86103d7366004611cdd565b610a34565b3480156103e857600080fd5b50600d546102b89060ff1681565b34801561040257600080fd5b50600d546102b89062010000900460ff1681565b34801561042257600080fd5b506008546103199081565b34801561043957600080fd5b5061031960105481565b34801561044f57600080fd5b5061031961045e366004611e22565b6001600160a01b031660009081526020819052604090205490565b34801561048557600080fd5b50610296610a56565b34801561049a57600080fd5b506104c27f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161026d565b3480156104e657600080fd5b50610296610a6a565b3480156104fb57600080fd5b50600f546104c29061010090046001600160a01b031681565b34801561052057600080fd5b50610319600e5481565b34801561053657600080fd5b50610296610545366004611c9f565b610a88565b34801561055657600080fd5b506006546103199081565b34801561056d57600080fd5b50610296610b8c565b34801561058257600080fd5b506005546001600160a01b03166104c2565b3480156105a057600080fd5b50610260610c04565b3480156105b557600080fd5b506102966105c4366004611c9f565b610c13565b3480156105d557600080fd5b506102b86105e4366004611cdd565b610c6f565b3480156105f557600080fd5b506104c27f000000000000000000000000000000000000000000000000000000000000000081565b34801561062957600080fd5b506102b8610638366004611cdd565b610cf5565b34801561064957600080fd5b50610296610658366004611c9f565b610d03565b34801561066957600080fd5b50600d546102b890610100900460ff1681565b34801561068857600080fd5b50600f546102b89060ff1681565b3480156106a257600080fd5b506103196106b1366004611e80565b610dfc565b3480156106c257600080fd5b50610319600c5481565b3480156106d857600080fd5b506102b86106e7366004611e22565b6001600160a01b03166000908152600a602052604090205460ff1690565b34801561071157600080fd5b50610296610720366004611d5d565b610e27565b34801561073157600080fd5b50610296610e97565b34801561074657600080fd5b50610296610755366004611e22565b610ec6565b34801561076657600080fd5b506007546103199081565b60606003805461078090611eae565b80601f01602080910402602001604051908101604052809291908181526020018280546107ac90611eae565b80156107f95780601f106107ce576101008083540402835291602001916107f9565b820191906000526020600020905b8154815290600101906020018083116107dc57829003601f168201915b5050505050905090565b61080b610f3f565b6007819055601e81111561083a5760405162461bcd60e51b815260040161083190611ee8565b60405180910390fd5b60405181907f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5590600090a250565b600033610876818585610f99565b60019150505b92915050565b61088a610f3f565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b6108e6610f3f565b60005b815181101561094e576001600a600084848151811061090a5761090a611f2c565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061094681611f58565b9150506108e9565b5050565b61095a610f3f565b6001600160a01b0381166109bc5760405162461bcd60e51b8152602060048201526024808201527f63616e206e6f7420736574206d61726b6574696e6720746f20646561642077616044820152631b1b195d60e21b6064820152608401610831565b600f8054610100600160a81b0319166101006001600160a01b038416908102919091179091556040517fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761990600090a250565b600033610a1c8582856110bd565b610a27858585611137565b60019150505b9392505050565b600033610876818585610a478383610dfc565b610a519190611f71565b610f99565b610a5e610f3f565b610a6860006116ad565b565b610a72610f3f565b6064601055600f805460ff191690556000600855565b610a90610f3f565b60018111610aeb5760405162461bcd60e51b815260206004820152602260248201527f50657263656e74616765206d7573742062652067726561746572207468616e20604482015261312560f01b6064820152608401610831565b6064811115610b515760405162461bcd60e51b815260206004820152602c60248201527f50657263656e74616765206d757374206265206c657373207468616e206f722060448201526b0657175616c20746f203130360a41b6064820152608401610831565b60108190556040518181527fd79b8c9aaacc4db9fee532137a1ade40c7238016bff71cb2abc1a3cf8b6cdff69060200160405180910390a150565b610b94610f3f565b600d5462010000900460ff1615610bed5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c65640000000000006044820152606401610831565b600d805462ff000019166201000017905543600e55565b60606004805461078090611eae565b610c1b610f3f565b6006819055601e811115610c415760405162461bcd60e51b815260040161083190611ee8565b60405181907f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb90600090a250565b60003381610c7d8286610dfc565b905083811015610cdd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610831565b610cea8286868403610f99565b506001949350505050565b600033610876818585611137565b610d0b610f3f565b600081118015610d4057506103e8610d326d14bddab3e51a57cff87a500000006005611f84565b610d3c9190611f9b565b8111155b610dc95760405162461bcd60e51b815260206004820152604e60248201527f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160448201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660648201526d20746f74616c20737570706c792160901b608482015260a401610831565b600c81905560405181907f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690600090a250565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e2f610f3f565b60005b815181101561094e576000600a6000848481518110610e5357610e53611f2c565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610e8f81611f58565b915050610e32565b610e9f610f3f565b600d5460ff16610eb0576001610eb3565b60005b600d805460ff1916911515919091179055565b610ece610f3f565b6001600160a01b038116610f335760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610831565b610f3c816116ad565b50565b6005546001600160a01b03163314610a685760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610831565b6001600160a01b038316610ffb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610831565b6001600160a01b03821661105c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610831565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006110c98484610dfc565b9050600019811461113157818110156111245760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610831565b6111318484848403610f99565b50505050565b600f5460ff1615611238577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316141580156111b657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561123857326000908152600b602052604090205443116112255760405162461bcd60e51b8152602060048201526024808201527f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f6044820152633bb2b21760e11b6064820152608401610831565b326000908152600b602052604090204390555b6001600160a01b03831661128e5760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f0000000000006044820152606401610831565b6001600160a01b0382166112e45760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f00000000000000006044820152606401610831565b600081116113465760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610831565b6001600160a01b0383166000908152600a602052604090205460ff16156113b95760405162461bcd60e51b815260206004820152602160248201527f5472616e736665722066726f6d20626c61636b6c6973746564206164647265736044820152607360f81b6064820152608401610831565b6001600160a01b0382166000908152600a602052604090205460ff16156114225760405162461bcd60e51b815260206004820152601f60248201527f5472616e7366657220746f20626c61636b6c69737465642061646472657373006044820152606401610831565b600060646010546d14bddab3e51a57cff87a500000006114429190611f84565b61144c9190611f9b565b6001600160a01b03851660009081526009602052604090205490915060ff1615801561149157506001600160a01b03831660009081526009602052604090205460ff16155b80156114a557506001600160a01b03831615155b80156114ba57506001600160a01b0383163014155b80156114f857507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614155b1561157657808261151e856001600160a01b031660009081526020819052604090205490565b6115289190611f71565b11156115765760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e740000006044820152606401610831565b60006115838585856116ff565b600c5430600090815260208181526040808320546001600160a01b038b16845260099092529091205492935010159060ff161580156115db57506001600160a01b03851660009081526009602052604090205460ff16155b1561169a57600d5462010000900460ff1661162d5760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b6044820152606401610831565b846001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161480156116705750600d5460ff165b80156116795750805b801561168d5750600d54610100900460ff16155b1561169a5761169a611806565b6116a58686846118f5565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526009602052604081205460ff168061173e57506001600160a01b03831660009081526009602052604090205460ff165b1561174a575080610a2d565b6008546001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169085160361178957506007546117c7565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b0316036117c757506006545b600081156117f25760646117db8386611f84565b6117e59190611f9b565b90506117f28630836118f5565b6117fc8185611fbd565b9695505050505050565b600d805461ff001916610100179055306000908152602081905260408120549050806000036118325750565b3060009081526020819052604090205461184b90611a99565b600f5460405160009161010090046001600160a01b03169047908381818185875af1925050503d806000811461189d576040519150601f19603f3d011682016040523d82523d6000602084013e6118a2565b606091505b50509050806118e65760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610831565b5050600d805461ff0019169055565b6001600160a01b0383166119595760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610831565b6001600160a01b0382166119bb5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610831565b6001600160a01b03831660009081526020819052604090205481811015611a335760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610831565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611131565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ace57611ace611f2c565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b4c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b709190611fd0565b81600181518110611b8357611b83611f2c565b60200260200101906001600160a01b031690816001600160a01b031681525050611bce307f000000000000000000000000000000000000000000000000000000000000000084610f99565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611c23908590600090869030904290600401611fed565b600060405180830381600087803b158015611c3d57600080fd5b505af11580156116a5573d6000803e3d6000fd5b600060208083528351808285015260005b81811015611c7e57858101830151858201604001528201611c62565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611cb157600080fd5b5035919050565b6001600160a01b0381168114610f3c57600080fd5b8035611cd881611cb8565b919050565b60008060408385031215611cf057600080fd5b8235611cfb81611cb8565b946020939093013593505050565b60008060408385031215611d1c57600080fd5b8235611d2781611cb8565b915060208301358015158114611d3c57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215611d7057600080fd5b823567ffffffffffffffff80821115611d8857600080fd5b818501915085601f830112611d9c57600080fd5b813581811115611dae57611dae611d47565b8060051b604051601f19603f83011681018181108582111715611dd357611dd3611d47565b604052918252848201925083810185019188831115611df157600080fd5b938501935b82851015611e1657611e0785611ccd565b84529385019392850192611df6565b98975050505050505050565b600060208284031215611e3457600080fd5b8135610a2d81611cb8565b600080600060608486031215611e5457600080fd5b8335611e5f81611cb8565b92506020840135611e6f81611cb8565b929592945050506040919091013590565b60008060408385031215611e9357600080fd5b8235611e9e81611cb8565b91506020830135611d3c81611cb8565b600181811c90821680611ec257607f821691505b602082108103611ee257634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526024908201527f43616e206e6f742073657420627579206665657320686967686572207468616e6040820152632033302560e01b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611f6a57611f6a611f42565b5060010190565b8082018082111561087c5761087c611f42565b808202811582820484141761087c5761087c611f42565b600082611fb857634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561087c5761087c611f42565b600060208284031215611fe257600080fd5b8151610a2d81611cb8565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561203d5784516001600160a01b031683529383019391830191600101612018565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220fb73ad324650975ad7fef89a2dac8de3997884cd9cc4a1bf7c3b48a32de210f464736f6c63430008130033

Deployed Bytecode

0x60806040526004361061023f5760003560e01c806376be96f31161012e578063afa4f3b2116100ab578063e5f320041161006f578063e5f32004146106cc578063e64b012f14610705578063ef586f7114610725578063f2fde38b1461073a578063f66895a31461075a57600080fd5b8063afa4f3b21461063d578063b88631151461065d578063c876d0b91461067c578063dd62ed3e14610696578063e2f45605146106b657600080fd5b806395d89b41116100f257806395d89b4114610594578063a3ca847d146105a9578063a457c2d7146105c9578063a8b08982146105e9578063a9059cbb1461061d57600080fd5b806376be96f3146105145780637a845ece1461052a578063864701a51461054a5780638a8c523c146105615780638da5cb5b1461057657600080fd5b806339509351116101bc57806370a082311161018057806370a0823114610443578063715018a614610479578063735de9f71461048e578063751039fc146104da57806375f0a874146104ef57600080fd5b806339509351146103bc5780634a74bb02146103dc5780634ada218b146103f65780635331803c14610416578063599ca3971461042d57600080fd5b806318160ddd1161020357806318160ddd146103085780631950c21814610327578063224611731461036057806323b872dd14610380578063313ce567146103a057600080fd5b806306fdde031461024b5780630940bbc714610276578063095ea7b3146102985780630c424284146102c857806315fac9f4146102e857600080fd5b3661024657005b600080fd5b34801561025757600080fd5b50610260610771565b60405161026d9190611c51565b60405180910390f35b34801561028257600080fd5b50610296610291366004611c9f565b610803565b005b3480156102a457600080fd5b506102b86102b3366004611cdd565b610868565b604051901515815260200161026d565b3480156102d457600080fd5b506102966102e3366004611d09565b610882565b3480156102f457600080fd5b50610296610303366004611d5d565b6108de565b34801561031457600080fd5b506002545b60405190815260200161026d565b34801561033357600080fd5b506102b8610342366004611e22565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561036c57600080fd5b5061029661037b366004611e22565b610952565b34801561038c57600080fd5b506102b861039b366004611e3f565b610a0e565b3480156103ac57600080fd5b506040516012815260200161026d565b3480156103c857600080fd5b506102b86103d7366004611cdd565b610a34565b3480156103e857600080fd5b50600d546102b89060ff1681565b34801561040257600080fd5b50600d546102b89062010000900460ff1681565b34801561042257600080fd5b506008546103199081565b34801561043957600080fd5b5061031960105481565b34801561044f57600080fd5b5061031961045e366004611e22565b6001600160a01b031660009081526020819052604090205490565b34801561048557600080fd5b50610296610a56565b34801561049a57600080fd5b506104c27f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161026d565b3480156104e657600080fd5b50610296610a6a565b3480156104fb57600080fd5b50600f546104c29061010090046001600160a01b031681565b34801561052057600080fd5b50610319600e5481565b34801561053657600080fd5b50610296610545366004611c9f565b610a88565b34801561055657600080fd5b506006546103199081565b34801561056d57600080fd5b50610296610b8c565b34801561058257600080fd5b506005546001600160a01b03166104c2565b3480156105a057600080fd5b50610260610c04565b3480156105b557600080fd5b506102966105c4366004611c9f565b610c13565b3480156105d557600080fd5b506102b86105e4366004611cdd565b610c6f565b3480156105f557600080fd5b506104c27f0000000000000000000000000f5c54a51833b38419a45d2a55d1dc2f2a4eada781565b34801561062957600080fd5b506102b8610638366004611cdd565b610cf5565b34801561064957600080fd5b50610296610658366004611c9f565b610d03565b34801561066957600080fd5b50600d546102b890610100900460ff1681565b34801561068857600080fd5b50600f546102b89060ff1681565b3480156106a257600080fd5b506103196106b1366004611e80565b610dfc565b3480156106c257600080fd5b50610319600c5481565b3480156106d857600080fd5b506102b86106e7366004611e22565b6001600160a01b03166000908152600a602052604090205460ff1690565b34801561071157600080fd5b50610296610720366004611d5d565b610e27565b34801561073157600080fd5b50610296610e97565b34801561074657600080fd5b50610296610755366004611e22565b610ec6565b34801561076657600080fd5b506007546103199081565b60606003805461078090611eae565b80601f01602080910402602001604051908101604052809291908181526020018280546107ac90611eae565b80156107f95780601f106107ce576101008083540402835291602001916107f9565b820191906000526020600020905b8154815290600101906020018083116107dc57829003601f168201915b5050505050905090565b61080b610f3f565b6007819055601e81111561083a5760405162461bcd60e51b815260040161083190611ee8565b60405180910390fd5b60405181907f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5590600090a250565b600033610876818585610f99565b60019150505b92915050565b61088a610f3f565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b6108e6610f3f565b60005b815181101561094e576001600a600084848151811061090a5761090a611f2c565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061094681611f58565b9150506108e9565b5050565b61095a610f3f565b6001600160a01b0381166109bc5760405162461bcd60e51b8152602060048201526024808201527f63616e206e6f7420736574206d61726b6574696e6720746f20646561642077616044820152631b1b195d60e21b6064820152608401610831565b600f8054610100600160a81b0319166101006001600160a01b038416908102919091179091556040517fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761990600090a250565b600033610a1c8582856110bd565b610a27858585611137565b60019150505b9392505050565b600033610876818585610a478383610dfc565b610a519190611f71565b610f99565b610a5e610f3f565b610a6860006116ad565b565b610a72610f3f565b6064601055600f805460ff191690556000600855565b610a90610f3f565b60018111610aeb5760405162461bcd60e51b815260206004820152602260248201527f50657263656e74616765206d7573742062652067726561746572207468616e20604482015261312560f01b6064820152608401610831565b6064811115610b515760405162461bcd60e51b815260206004820152602c60248201527f50657263656e74616765206d757374206265206c657373207468616e206f722060448201526b0657175616c20746f203130360a41b6064820152608401610831565b60108190556040518181527fd79b8c9aaacc4db9fee532137a1ade40c7238016bff71cb2abc1a3cf8b6cdff69060200160405180910390a150565b610b94610f3f565b600d5462010000900460ff1615610bed5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c65640000000000006044820152606401610831565b600d805462ff000019166201000017905543600e55565b60606004805461078090611eae565b610c1b610f3f565b6006819055601e811115610c415760405162461bcd60e51b815260040161083190611ee8565b60405181907f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb90600090a250565b60003381610c7d8286610dfc565b905083811015610cdd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610831565b610cea8286868403610f99565b506001949350505050565b600033610876818585611137565b610d0b610f3f565b600081118015610d4057506103e8610d326d14bddab3e51a57cff87a500000006005611f84565b610d3c9190611f9b565b8111155b610dc95760405162461bcd60e51b815260206004820152604e60248201527f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160448201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660648201526d20746f74616c20737570706c792160901b608482015260a401610831565b600c81905560405181907f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690600090a250565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e2f610f3f565b60005b815181101561094e576000600a6000848481518110610e5357610e53611f2c565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610e8f81611f58565b915050610e32565b610e9f610f3f565b600d5460ff16610eb0576001610eb3565b60005b600d805460ff1916911515919091179055565b610ece610f3f565b6001600160a01b038116610f335760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610831565b610f3c816116ad565b50565b6005546001600160a01b03163314610a685760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610831565b6001600160a01b038316610ffb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610831565b6001600160a01b03821661105c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610831565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006110c98484610dfc565b9050600019811461113157818110156111245760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610831565b6111318484848403610f99565b50505050565b600f5460ff1615611238577f0000000000000000000000000f5c54a51833b38419a45d2a55d1dc2f2a4eada76001600160a01b0316826001600160a01b0316141580156111b657507f0000000000000000000000000f5c54a51833b38419a45d2a55d1dc2f2a4eada76001600160a01b0316826001600160a01b031614155b1561123857326000908152600b602052604090205443116112255760405162461bcd60e51b8152602060048201526024808201527f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f6044820152633bb2b21760e11b6064820152608401610831565b326000908152600b602052604090204390555b6001600160a01b03831661128e5760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f0000000000006044820152606401610831565b6001600160a01b0382166112e45760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f00000000000000006044820152606401610831565b600081116113465760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610831565b6001600160a01b0383166000908152600a602052604090205460ff16156113b95760405162461bcd60e51b815260206004820152602160248201527f5472616e736665722066726f6d20626c61636b6c6973746564206164647265736044820152607360f81b6064820152608401610831565b6001600160a01b0382166000908152600a602052604090205460ff16156114225760405162461bcd60e51b815260206004820152601f60248201527f5472616e7366657220746f20626c61636b6c69737465642061646472657373006044820152606401610831565b600060646010546d14bddab3e51a57cff87a500000006114429190611f84565b61144c9190611f9b565b6001600160a01b03851660009081526009602052604090205490915060ff1615801561149157506001600160a01b03831660009081526009602052604090205460ff16155b80156114a557506001600160a01b03831615155b80156114ba57506001600160a01b0383163014155b80156114f857507f0000000000000000000000000f5c54a51833b38419a45d2a55d1dc2f2a4eada76001600160a01b0316836001600160a01b031614155b1561157657808261151e856001600160a01b031660009081526020819052604090205490565b6115289190611f71565b11156115765760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e740000006044820152606401610831565b60006115838585856116ff565b600c5430600090815260208181526040808320546001600160a01b038b16845260099092529091205492935010159060ff161580156115db57506001600160a01b03851660009081526009602052604090205460ff16155b1561169a57600d5462010000900460ff1661162d5760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b6044820152606401610831565b846001600160a01b03167f0000000000000000000000000f5c54a51833b38419a45d2a55d1dc2f2a4eada76001600160a01b03161480156116705750600d5460ff165b80156116795750805b801561168d5750600d54610100900460ff16155b1561169a5761169a611806565b6116a58686846118f5565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526009602052604081205460ff168061173e57506001600160a01b03831660009081526009602052604090205460ff165b1561174a575080610a2d565b6008546001600160a01b037f0000000000000000000000000f5c54a51833b38419a45d2a55d1dc2f2a4eada781169085160361178957506007546117c7565b7f0000000000000000000000000f5c54a51833b38419a45d2a55d1dc2f2a4eada76001600160a01b0316856001600160a01b0316036117c757506006545b600081156117f25760646117db8386611f84565b6117e59190611f9b565b90506117f28630836118f5565b6117fc8185611fbd565b9695505050505050565b600d805461ff001916610100179055306000908152602081905260408120549050806000036118325750565b3060009081526020819052604090205461184b90611a99565b600f5460405160009161010090046001600160a01b03169047908381818185875af1925050503d806000811461189d576040519150601f19603f3d011682016040523d82523d6000602084013e6118a2565b606091505b50509050806118e65760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610831565b5050600d805461ff0019169055565b6001600160a01b0383166119595760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610831565b6001600160a01b0382166119bb5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610831565b6001600160a01b03831660009081526020819052604090205481811015611a335760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610831565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611131565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ace57611ace611f2c565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b4c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b709190611fd0565b81600181518110611b8357611b83611f2c565b60200260200101906001600160a01b031690816001600160a01b031681525050611bce307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f99565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611c23908590600090869030904290600401611fed565b600060405180830381600087803b158015611c3d57600080fd5b505af11580156116a5573d6000803e3d6000fd5b600060208083528351808285015260005b81811015611c7e57858101830151858201604001528201611c62565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611cb157600080fd5b5035919050565b6001600160a01b0381168114610f3c57600080fd5b8035611cd881611cb8565b919050565b60008060408385031215611cf057600080fd5b8235611cfb81611cb8565b946020939093013593505050565b60008060408385031215611d1c57600080fd5b8235611d2781611cb8565b915060208301358015158114611d3c57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215611d7057600080fd5b823567ffffffffffffffff80821115611d8857600080fd5b818501915085601f830112611d9c57600080fd5b813581811115611dae57611dae611d47565b8060051b604051601f19603f83011681018181108582111715611dd357611dd3611d47565b604052918252848201925083810185019188831115611df157600080fd5b938501935b82851015611e1657611e0785611ccd565b84529385019392850192611df6565b98975050505050505050565b600060208284031215611e3457600080fd5b8135610a2d81611cb8565b600080600060608486031215611e5457600080fd5b8335611e5f81611cb8565b92506020840135611e6f81611cb8565b929592945050506040919091013590565b60008060408385031215611e9357600080fd5b8235611e9e81611cb8565b91506020830135611d3c81611cb8565b600181811c90821680611ec257607f821691505b602082108103611ee257634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526024908201527f43616e206e6f742073657420627579206665657320686967686572207468616e6040820152632033302560e01b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611f6a57611f6a611f42565b5060010190565b8082018082111561087c5761087c611f42565b808202811582820484141761087c5761087c611f42565b600082611fb857634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561087c5761087c611f42565b600060208284031215611fe257600080fd5b8151610a2d81611cb8565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561203d5784516001600160a01b031683529383019391830191600101612018565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220fb73ad324650975ad7fef89a2dac8de3997884cd9cc4a1bf7c3b48a32de210f464736f6c63430008130033

Deployed Bytecode Sourcemap

28168:8366:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16253:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30946:246;;;;;;;;;;-1:-1:-1;30946:246:0;;;;;:::i;:::-;;:::i;:::-;;18613:201;;;;;;;;;;-1:-1:-1;18613:201:0;;;;;:::i;:::-;;:::i;:::-;;;1512:14:1;;1505:22;1487:41;;1475:2;1460:18;18613:201:0;1347:187:1;31714:195:0;;;;;;;;;;-1:-1:-1;31714:195:0;;;;;:::i;:::-;;:::i;35433:207::-;;;;;;;;;;-1:-1:-1;35433:207:0;;;;;:::i;:::-;;:::i;17382:108::-;;;;;;;;;;-1:-1:-1;17470:12:0;;17382:108;;;3364:25:1;;;3352:2;3337:18;17382:108:0;3218:177:1;31917:116:0;;;;;;;;;;-1:-1:-1;31917:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;32005:20:0;31981:4;32005:20;;;:11;:20;;;;;;;;;31917:116;30192:297;;;;;;;;;;-1:-1:-1;30192:297:0;;;;;:::i;:::-;;:::i;19394:261::-;;;;;;;;;;-1:-1:-1;19394:261:0;;;;;:::i;:::-;;:::i;17224:93::-;;;;;;;;;;-1:-1:-1;17224:93:0;;17307:2;4255:36:1;;4243:2;4228:18;17224:93:0;4113:184:1;20064:238:0;;;;;;;;;;-1:-1:-1;20064:238:0;;;;;:::i;:::-;;:::i;28930:40::-;;;;;;;;;;-1:-1:-1;28930:40:0;;;;;;;;29014:34;;;;;;;;;;-1:-1:-1;29014:34:0;;;;;;;;;;;28530:33;;;;;;;;;;-1:-1:-1;28530:33:0;;;;;;29240: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;28354:40::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4484:32:1;;;4466:51;;4454:2;4439:18;28354:40:0;4302:221:1;35876:163:0;;;;;;;;;;;;;:::i;29157:75::-;;;;;;;;;;-1:-1:-1;29157:75:0;;;;;;;-1:-1:-1;;;;;29157:75:0;;;29055:32;;;;;;;;;;;;;;;;32039:308;;;;;;;;;;-1:-1:-1;32039:308:0;;;;;:::i;:::-;;:::i;28459:28::-;;;;;;;;;;-1:-1:-1;28459:28:0;;;;;;30495:192;;;;;;;;;;;;;:::i;9067:87::-;;;;;;;;;;-1:-1:-1;9140:6:0;;-1:-1:-1;;;;;9140:6:0;9067:87;;16472:104;;;;;;;;;;;;;:::i;30695:243::-;;;;;;;;;;-1:-1:-1;30695:243:0;;;;;:::i;:::-;;:::i;20805:436::-;;;;;;;;;;-1:-1:-1;20805:436:0;;;;;:::i;:::-;;:::i;28401:36::-;;;;;;;;;;;;;;;17886:193;;;;;;;;;;-1:-1:-1;17886:193:0;;;;;:::i;:::-;;:::i;31200:372::-;;;;;;;;;;-1:-1:-1;31200:372:0;;;;;:::i;:::-;;:::i;28977:30::-;;;;;;;;;;-1:-1:-1;28977:30:0;;;;;;;;;;;29094:39;;;;;;;;;;-1:-1:-1;29094:39:0;;;;;;;;18142:151;;;;;;;;;;-1:-1:-1;18142:151:0;;;;;:::i;:::-;;:::i;28822:60::-;;;;;;;;;;;;;;;;35325:100;;;;;;;;;;-1:-1:-1;35325:100:0;;;;;:::i;:::-;-1:-1:-1;;;;;35401:16:0;35380:4;35401:16;;;:13;:16;;;;;;;;;35325:100;35648:216;;;;;;;;;;-1:-1:-1;35648:216:0;;;;;:::i;:::-;;:::i;31580:126::-;;;;;;;;;;;;;:::i;9966:201::-;;;;;;;;;;-1:-1:-1;9966:201:0;;;;;:::i;:::-;;:::i;28494:29::-;;;;;;;;;;-1:-1:-1;28494:29:0;;;;;;16253:100;16307:13;16340:5;16333:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16253:100;:::o;30946:246::-;8953:13;:11;:13::i;:::-;31021:9:::1;:38:::0;;;31095:2:::1;31078:19:::0;::::1;;31070:68;;;;-1:-1:-1::0;;;31070:68:0::1;;;;;;;:::i;:::-;;;;;;;;;31154:30;::::0;31170:13;;31154:30:::1;::::0;;;::::1;30946: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;31714:195::-;8953:13;:11;:13::i;:::-;-1:-1:-1;;;;;31828:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;:30;;-1:-1:-1;;31828:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;31874:27;;31828:30;;:20;31874:27:::1;::::0;::::1;31714:195:::0;;:::o;35433:207::-;8953:13;:11;:13::i;:::-;35523:6:::1;35518:115;35539:14;:21;35535:1;:25;35518:115;;;35617:4;35582:13;:32;35596:14;35611:1;35596:17;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;35582:32:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;35582:32:0;:39;;-1:-1:-1;;35582:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35562:3;::::1;::::0;::::1;:::i;:::-;;;;35518:115;;;;35433:207:::0;:::o;30192:297::-;8953:13;:11;:13::i;:::-;-1:-1:-1;;;;;30295:27:0;::::1;30273:113;;;::::0;-1:-1:-1;;;30273:113:0;;6525:2:1;30273:113:0::1;::::0;::::1;6507:21:1::0;6564:2;6544:18;;;6537:30;6603:34;6583:18;;;6576:62;-1:-1:-1;;;6654:18:1;;;6647:34;6698:19;;30273:113:0::1;6323:400:1::0;30273:113:0::1;30397:15;:31:::0;;-1:-1:-1;;;;;;30397:31:0::1;;-1:-1:-1::0;;;;;30397:31:0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;30444:37:::1;::::0;::::1;::::0;-1:-1:-1;;30444:37:0::1;30192: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;9708:103::-;8953:13;:11;:13::i;:::-;9773:30:::1;9800:1;9773:18;:30::i;:::-;9708:103::o:0;35876:163::-;8953:13;:11;:13::i;:::-;35950:3:::1;35929:19;:24:::0;35964:20:::1;:26:::0;;-1:-1:-1;;35964:26:0::1;::::0;;35985:5:::1;36001:13;:30:::0;35876:163::o;32039:308::-;8953:13;:11;:13::i;:::-;32140:1:::1;32126:11;:15;32118:62;;;::::0;-1:-1:-1;;;32118:62:0;;7060:2:1;32118:62:0::1;::::0;::::1;7042:21:1::0;7099:2;7079:18;;;7072:30;7138:34;7118:18;;;7111:62;-1:-1:-1;;;7189:18:1;;;7182:32;7231:19;;32118:62:0::1;6858:398:1::0;32118:62:0::1;32210:3;32195:11;:18;;32187:75;;;::::0;-1:-1:-1;;;32187:75:0;;7463:2:1;32187:75:0::1;::::0;::::1;7445:21:1::0;7502:2;7482:18;;;7475:30;7541:34;7521:18;;;7514:62;-1:-1:-1;;;7592:18:1;;;7585:42;7644:19;;32187:75:0::1;7261:408:1::0;32187:75:0::1;32269:19;:33:::0;;;32314:29:::1;::::0;3364:25:1;;;32314:29:0::1;::::0;3352:2:1;3337:18;32314:29:0::1;;;;;;;32039:308:::0;:::o;30495:192::-;8953:13;:11;:13::i;:::-;30559:14:::1;::::0;;;::::1;;;30558:15;30550:54;;;::::0;-1:-1:-1;;;30550:54:0;;7876:2:1;30550:54:0::1;::::0;::::1;7858:21:1::0;7915:2;7895:18;;;7888:30;7954:28;7934:18;;;7927:56;8000:18;;30550:54:0::1;7674:350:1::0;30550:54:0::1;30615:14;:21:::0;;-1:-1:-1;;30615:21:0::1;::::0;::::1;::::0;;30667:12:::1;30647:17;:32:::0;30495:192::o;16472:104::-;16528:13;16561:7;16554:14;;;;;:::i;30695:243::-;8953:13;:11;:13::i;:::-;30769:8:::1;:37:::0;;;30842:2:::1;30825:19:::0;::::1;;30817:68;;;;-1:-1:-1::0;;;30817:68:0::1;;;;;;;:::i;:::-;30901:29;::::0;30916:13;;30901:29:::1;::::0;;;::::1;30695: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;;8231:2:1;21017:85:0;;;8213:21:1;8270:2;8250:18;;;8243:30;8309:34;8289:18;;;8282:62;-1:-1:-1;;;8360:18:1;;;8353:35;8405:19;;21017:85:0;8029: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;31200:372::-;8953:13;:11;:13::i;:::-;31316:1:::1;31303:10;:14;:57;;;;-1:-1:-1::0;31356:4:0::1;31336:16;28305:26;31351:1;31336:16;:::i;:::-;31335:25;;;;:::i;:::-;31321:10;:39;;31303:57;31281:185;;;::::0;-1:-1:-1;;;31281:185:0;;9032:2:1;31281:185:0::1;::::0;::::1;9014:21:1::0;9071:2;9051:18;;;9044:30;9110:34;9090:18;;;9083:62;9181:34;9161:18;;;9154:62;-1:-1:-1;;;9232:19:1;;;9225:45;9287:19;;31281:185:0::1;8830:482:1::0;31281:185:0::1;31477:18;:31:::0;;;31524:40:::1;::::0;31498:10;;31524:40:::1;::::0;;;::::1;31200:372:::0;:::o;18142:151::-;-1:-1:-1;;;;;18258:18:0;;;18231:7;18258:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18142:151::o;35648:216::-;8953:13;:11;:13::i;:::-;35744:6:::1;35739:118;35760:17;:24;35756:1;:28;35739:118;;;35842:5;35804:13;:35;35818:17;35836:1;35818:20;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;35804:35:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;35804:35:0;:43;;-1:-1:-1;;35804:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35786:3;::::1;::::0;::::1;:::i;:::-;;;;35739:118;;31580:126:::0;8953:13;:11;:13::i;:::-;31661:21:::1;::::0;::::1;;31660:38;;31694:4;31660:38;;;31686:5;31660:38;31636:21;:62:::0;;-1:-1:-1;;31636:62:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31580: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;;9519:2:1;10047:73:0::1;::::0;::::1;9501:21:1::0;9558:2;9538:18;;;9531:30;9597:34;9577:18;;;9570:62;-1:-1:-1;;;9648:18:1;;;9641:36;9694:19;;10047:73:0::1;9317: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;;9926:2:1;9288:68:0;;;9908:21:1;;;9945:18;;;9938:30;10004:34;9984:18;;;9977:62;10056:18;;9288:68:0;9724:356:1;24798:346:0;-1:-1:-1;;;;;24900:19:0;;24892:68;;;;-1:-1:-1;;;24892:68:0;;10287:2:1;24892:68:0;;;10269:21:1;10326:2;10306:18;;;10299:30;10365:34;10345:18;;;10338:62;-1:-1:-1;;;10416:18:1;;;10409:34;10460:19;;24892:68:0;10085:400:1;24892:68:0;-1:-1:-1;;;;;24979:21:0;;24971:68;;;;-1:-1:-1;;;24971:68:0;;10692:2:1;24971:68:0;;;10674:21:1;10731:2;10711:18;;;10704:30;10770:34;10750:18;;;10743:62;-1:-1:-1;;;10821:18:1;;;10814:32;10863:19;;24971:68:0;10490:398:1;24971:68:0;-1:-1:-1;;;;;25052:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25104:32;;3364:25:1;;;25104:32:0;;3337: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;;11095:2:1;25657:68:0;;;11077:21:1;11134:2;11114:18;;;11107:30;11173:31;11153:18;;;11146:59;11222:18;;25657:68:0;10893: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;33176:1742::-;33328:20;;;;33324:307;;;33380:11;-1:-1:-1;;;;;33365:27:0;:3;-1:-1:-1;;;;;33365:27:0;;;:58;;;;;33411:11;-1:-1:-1;;;;;33396:27:0;:3;-1:-1:-1;;;;;33396:27:0;;;33365:58;33361:263;;;33477:9;33448:39;;;;:28;:39;;;;;;33490:12;-1:-1:-1;33440:103:0;;;;-1:-1:-1;;;33440:103:0;;11453:2:1;33440:103:0;;;11435:21:1;11492:2;11472:18;;;11465:30;11531:34;11511:18;;;11504:62;-1:-1:-1;;;11582:18:1;;;11575:34;11626:19;;33440:103:0;11251:400:1;33440:103:0;33587:9;33558:39;;;;:28;:39;;;;;33600:12;33558:54;;33361:263;-1:-1:-1;;;;;33647:19:0;;33639:58;;;;-1:-1:-1;;;33639:58:0;;11858:2:1;33639:58:0;;;11840:21:1;11897:2;11877:18;;;11870:30;11936:28;11916:18;;;11909:56;11982:18;;33639:58:0;11656:350:1;33639:58:0;-1:-1:-1;;;;;33712:17:0;;33704:54;;;;-1:-1:-1;;;33704:54:0;;12213:2:1;33704:54:0;;;12195:21:1;12252:2;12232:18;;;12225:30;12291:26;12271:18;;;12264:54;12335:18;;33704:54:0;12011:348:1;33704:54:0;33783:1;33773:7;:11;33765:65;;;;-1:-1:-1;;;33765:65:0;;12566:2:1;33765:65:0;;;12548:21:1;12605:2;12585:18;;;12578:30;12644:34;12624:18;;;12617:62;-1:-1:-1;;;12695:18:1;;;12688:39;12744:19;;33765:65:0;12364:405:1;33765:65:0;-1:-1:-1;;;;;33895:20:0;;;;;;:13;:20;;;;;;;;33894:21;33886:67;;;;-1:-1:-1;;;33886:67:0;;12976:2:1;33886:67:0;;;12958:21:1;13015:2;12995:18;;;12988:30;13054:34;13034:18;;;13027:62;-1:-1:-1;;;13105:18:1;;;13098:31;13146:19;;33886:67:0;12774:397:1;33886:67:0;-1:-1:-1;;;;;33969:18:0;;;;;;:13;:18;;;;;;;;33968:19;33960:63;;;;-1:-1:-1;;;33960:63:0;;13378:2:1;33960:63:0;;;13360:21:1;13417:2;13397:18;;;13390:30;13456:33;13436:18;;;13429:61;13507:18;;33960:63:0;13176:355:1;33960:63:0;34136:23;34199:3;34177:19;;28305:26;34162:34;;;;:::i;:::-;:40;;;;:::i;:::-;-1:-1:-1;;;;;34284:18:0;;;;;;:11;:18;;;;;;34136:66;;-1:-1:-1;34284:18:0;;34283:19;:40;;;;-1:-1:-1;;;;;;34307:16:0;;;;;;:11;:16;;;;;;;;34306:17;34283:40;:61;;;;-1:-1:-1;;;;;;34327:17:0;;;;34283:61;:85;;;;-1:-1:-1;;;;;;34348:20:0;;34363:4;34348:20;;34283:85;:107;;;;;34379:11;-1:-1:-1;;;;;34372:18:0;:3;-1:-1:-1;;;;;34372:18:0;;;34283:107;34279:217;;;34439:15;34428:7;34411:14;34421:3;-1:-1:-1;;;;;17654:18:0;17627:7;17654:18;;;;;;;;;;;;17553:127;34411:14;:24;;;;:::i;:::-;:43;;34403:85;;;;-1:-1:-1;;;34403:85:0;;13738:2:1;34403:85:0;;;13720:21:1;13777:2;13757:18;;;13750:30;13816:31;13796:18;;;13789:59;13865:18;;34403:85:0;13536:353:1;34403:85:0;34504:18;34525:29;34534:5;34541:3;34546:7;34525:8;:29::i;:::-;34606:18;;34596:4;34563:12;17654:18;;;;;;;;;;;;-1:-1:-1;;;;;34636:18:0;;;;:11;:18;;;;;;;34504:50;;-1:-1:-1;;34578:46:0;;34636:18;;34635:19;:40;;;;-1:-1:-1;;;;;;34659:16:0;;;;;;:11;:16;;;;;;;;34658:17;34635:40;34631:236;;;34696:14;;;;;;;34688:45;;;;-1:-1:-1;;;34688:45:0;;14096:2:1;34688:45:0;;;14078:21:1;14135:2;14115:18;;;14108:30;-1:-1:-1;;;14154:18:1;;;14147:48;14212:18;;34688:45:0;13894:342:1;34688:45:0;34763:3;-1:-1:-1;;;;;34748:18:0;:11;-1:-1:-1;;;;;34748:18:0;;:43;;;;-1:-1:-1;34770:21:0;;;;34748:43;:54;;;;;34795:7;34748:54;:69;;;;-1:-1:-1;34807:10:0;;;;;;;34806:11;34748:69;34744:116;;;34834:14;:12;:14::i;:::-;34875:39;34891:5;34898:3;34903:10;34875:15;:39::i;:::-;33284:1634;;;33176:1742;;;:::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;32493:679::-;-1:-1:-1;;;;;32632:18:0;;32608:7;32632:18;;;:11;:18;;;;;;;;;:38;;-1:-1:-1;;;;;;32654:16:0;;;;;;:11;:16;;;;;;;;32632:38;32628:85;;;-1:-1:-1;32694:7:0;32687:14;;32628:85;32744:13;:26;-1:-1:-1;;;;;32794:11:0;32787:18;;;;;;32783:175;;-1:-1:-1;32833:9:0;:22;32783:175;;;32886:11;-1:-1:-1;;;;;32877:20:0;:5;-1:-1:-1;;;;;32877:20:0;;32873:85;;-1:-1:-1;32925:8:0;:21;32873:85;32972:11;33002:12;;32998:134;;33060:3;33038:18;33048:8;33038:7;:18;:::i;:::-;33037:26;;;;:::i;:::-;33031:32;;33078:42;33094:5;33109:4;33116:3;33078:15;:42::i;:::-;33150:13;33160:3;33150:7;:13;:::i;:::-;33142:22;32493:679;-1:-1:-1;;;;;;32493:679:0:o;34926:393::-;34970:10;:17;;-1:-1:-1;;34970:17:0;;;;;35036:4;-1:-1:-1;17654:18:0;;;;;;;;;;;34998:44;;35058:9;35071:1;35058:14;35054:53;;35089:7;34926:393::o;35054:53::-;35145:4;17627:7;17654:18;;;;;;;;;;;35117:35;;:9;:35::i;:::-;35181:15;;:54;;35163:12;;35181:15;;;-1:-1:-1;;;;;35181:15:0;;35209:21;;35163:12;35181:54;35163:12;35181:54;35209:21;35181:15;:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35162:73;;;35254:7;35246:36;;;;-1:-1:-1;;;35246:36:0;;14786:2:1;35246:36:0;;;14768:21:1;14825:2;14805:18;;;14798:30;-1:-1:-1;;;14844:18:1;;;14837:46;14900:18;;35246:36:0;14584:340:1;35246:36:0;-1:-1:-1;;35293:10:0;:18;;-1:-1:-1;;35293:18:0;;;34926:393::o;21711:806::-;-1:-1:-1;;;;;21808:18:0;;21800:68;;;;-1:-1:-1;;;21800:68:0;;15131:2:1;21800:68:0;;;15113:21:1;15170:2;15150:18;;;15143:30;15209:34;15189:18;;;15182:62;-1:-1:-1;;;15260:18:1;;;15253:35;15305:19;;21800:68:0;14929:401:1;21800:68:0;-1:-1:-1;;;;;21887:16:0;;21879:64;;;;-1:-1:-1;;;21879:64:0;;15537:2:1;21879:64:0;;;15519:21:1;15576:2;15556:18;;;15549:30;15615:34;15595:18;;;15588:62;-1:-1:-1;;;15666:18:1;;;15659:33;15709:19;;21879:64:0;15335: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;;15941:2:1;22055:72:0;;;15923:21:1;15980:2;15960:18;;;15953:30;16019:34;15999:18;;;15992:62;-1:-1:-1;;;16070:18:1;;;16063:36;16116:19;;22055:72:0;15739:402:1;22055:72:0;-1:-1:-1;;;;;22163:15:0;;;:9;:15;;;;;;;;;;;22181:20;;;22163:38;;22381:13;;;;;;;;;;:23;;;;;;22433:26;;3364:25:1;;;22381:13:0;;22433:26;;3337:18:1;22433:26:0;;;;;;;22472:37;26454:91;36047:447;36127:16;;;36141:1;36127:16;;;;;;;;36103:21;;36127:16;;;;;;;;;;-1:-1:-1;36127:16:0;36103:40;;36172:4;36154;36159:1;36154:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;36154:23:0;;;-1:-1:-1;;;;;36154:23:0;;;;;36198:13;-1:-1:-1;;;;;36198:18:0;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36188:4;36193:1;36188:7;;;;;;;;:::i;:::-;;;;;;:30;-1:-1:-1;;;;;36188:30:0;;;-1:-1:-1;;;;;36188:30:0;;;;;36229:56;36246:4;36261:13;36277:7;36229:8;:56::i;:::-;36296:190;;-1:-1:-1;;;36296:190:0;;-1:-1:-1;;;;;36296:13:0;:64;;;;:190;;36375:7;;36397:1;;36413:4;;36440;;36460:15;;36296: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:134;956:20;;985:31;956:20;985:31;:::i;:::-;888:134;;;:::o;1027:315::-;1095:6;1103;1156:2;1144:9;1135:7;1131:23;1127:32;1124:52;;;1172:1;1169;1162:12;1124:52;1211:9;1198:23;1230:31;1255:5;1230:31;:::i;:::-;1280:5;1332:2;1317:18;;;;1304:32;;-1:-1:-1;;;1027:315:1:o;1539:416::-;1604:6;1612;1665:2;1653:9;1644:7;1640:23;1636:32;1633:52;;;1681:1;1678;1671:12;1633:52;1720:9;1707:23;1739:31;1764:5;1739:31;:::i;:::-;1789:5;-1:-1:-1;1846:2:1;1831:18;;1818:32;1888:15;;1881:23;1869:36;;1859:64;;1919:1;1916;1909:12;1859:64;1942:7;1932:17;;;1539:416;;;;;:::o;1960:127::-;2021:10;2016:3;2012:20;2009:1;2002:31;2052:4;2049:1;2042:15;2076:4;2073:1;2066:15;2092:1121;2176:6;2207:2;2250;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2306:9;2293:23;2335:18;2376:2;2368:6;2365:14;2362:34;;;2392:1;2389;2382:12;2362:34;2430:6;2419:9;2415:22;2405:32;;2475:7;2468:4;2464:2;2460:13;2456:27;2446:55;;2497:1;2494;2487:12;2446:55;2533:2;2520:16;2555:2;2551;2548:10;2545:36;;;2561:18;;:::i;:::-;2607:2;2604:1;2600:10;2639:2;2633:9;2702:2;2698:7;2693:2;2689;2685:11;2681:25;2673:6;2669:38;2757:6;2745:10;2742:22;2737:2;2725:10;2722:18;2719:46;2716:72;;;2768:18;;:::i;:::-;2804:2;2797:22;2854:18;;;2888:15;;;;-1:-1:-1;2930:11:1;;;2926:20;;;2958:19;;;2955:39;;;2990:1;2987;2980:12;2955:39;3014:11;;;;3034:148;3050:6;3045:3;3042:15;3034:148;;;3116:23;3135:3;3116:23;:::i;:::-;3104:36;;3067:12;;;;3160;;;;3034:148;;;3201:6;2092:1121;-1:-1:-1;;;;;;;;2092:1121:1:o;3400:247::-;3459:6;3512:2;3500:9;3491:7;3487:23;3483:32;3480:52;;;3528:1;3525;3518:12;3480:52;3567:9;3554:23;3586:31;3611:5;3586:31;:::i;3652:456::-;3729:6;3737;3745;3798:2;3786:9;3777:7;3773:23;3769:32;3766:52;;;3814:1;3811;3804:12;3766:52;3853:9;3840:23;3872:31;3897:5;3872:31;:::i;:::-;3922:5;-1:-1:-1;3979:2:1;3964:18;;3951:32;3992:33;3951:32;3992:33;:::i;:::-;3652:456;;4044:7;;-1:-1:-1;;;4098:2:1;4083:18;;;;4070:32;;3652:456::o;4736:388::-;4804:6;4812;4865:2;4853:9;4844:7;4840:23;4836:32;4833:52;;;4881:1;4878;4871:12;4833:52;4920:9;4907:23;4939:31;4964:5;4939:31;:::i;:::-;4989:5;-1:-1:-1;5046:2:1;5031:18;;5018:32;5059:33;5018:32;5059:33;:::i;5129:380::-;5208:1;5204:12;;;;5251;;;5272:61;;5326:4;5318:6;5314:17;5304:27;;5272:61;5379:2;5371:6;5368:14;5348:18;5345:38;5342:161;;5425:10;5420:3;5416:20;5413:1;5406:31;5460:4;5457:1;5450:15;5488:4;5485:1;5478:15;5342:161;;5129:380;;;:::o;5514:400::-;5716:2;5698:21;;;5755:2;5735:18;;;5728:30;5794:34;5789:2;5774:18;;5767:62;-1:-1:-1;;;5860:2:1;5845:18;;5838:34;5904:3;5889:19;;5514:400::o;5919:127::-;5980:10;5975:3;5971:20;5968:1;5961:31;6011:4;6008:1;6001:15;6035:4;6032:1;6025:15;6051:127;6112:10;6107:3;6103:20;6100:1;6093:31;6143:4;6140:1;6133:15;6167:4;6164:1;6157:15;6183:135;6222:3;6243:17;;;6240:43;;6263:18;;:::i;:::-;-1:-1:-1;6310:1:1;6299:13;;6183:135::o;6728:125::-;6793:9;;;6814:10;;;6811:36;;;6827:18;;:::i;8435:168::-;8508:9;;;8539;;8556:15;;;8550:22;;8536:37;8526:71;;8577:18;;:::i;8608:217::-;8648:1;8674;8664:132;;8718:10;8713:3;8709:20;8706:1;8699:31;8753:4;8750:1;8743:15;8781:4;8778:1;8771:15;8664:132;-1:-1:-1;8810:9:1;;8608:217::o;14241:128::-;14308:9;;;14329:11;;;14326:37;;;14343:18;;:::i;16146:251::-;16216:6;16269:2;16257:9;16248:7;16244:23;16240:32;16237:52;;;16285:1;16282;16275:12;16237:52;16317:9;16311:16;16336:31;16361:5;16336:31;:::i;16402:980::-;16664:4;16712:3;16701:9;16697:19;16743:6;16732:9;16725:25;16769:2;16807:6;16802:2;16791:9;16787:18;16780:34;16850:3;16845:2;16834:9;16830:18;16823:31;16874:6;16909;16903:13;16940:6;16932;16925:22;16978:3;16967:9;16963:19;16956:26;;17017:2;17009:6;17005:15;16991:29;;17038:1;17048:195;17062:6;17059:1;17056:13;17048:195;;;17127:13;;-1:-1:-1;;;;;17123:39:1;17111:52;;17218:15;;;;17183:12;;;;17159:1;17077:9;17048:195;;;-1:-1:-1;;;;;;;17299:32:1;;;;17294:2;17279:18;;17272:60;-1:-1:-1;;;17363:3:1;17348:19;17341:35;17260:3;16402:980;-1:-1:-1;;;16402:980:1:o

Swarm Source

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